/**
 * LOTIPRO - Estilos de Tienda v3
 * Compact, Elegant Card Design - No extra space
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --shop-bg: #0a1628;
    --shop-bg-secondary: #0f2137;
    --shop-card-bg: #162844;
    --shop-primary: #ffc107;
    --shop-primary-dark: #e6a800;
    --shop-text: #ffffff;
    --shop-text-secondary: #b0c4de;
    --shop-text-muted: #6b7fa3;
    --shop-border: rgba(255, 255, 255, 0.1);
    --shop-success: #22c55e;
    --shop-warning: #f59e0b;
    --shop-danger: #ef4444;
    --shop-radius: 10px;
    --shop-transition: 0.3s ease;
}

/* ============================================
   SHOP PAGE LAYOUT
   ============================================ */
.shop-page {
    min-height: 100vh;
    background: var(--shop-bg);
    padding-bottom: 40px;
}

.shop-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   SHOP HERO
   ============================================ */
.shop-hero {
    background: linear-gradient(135deg, var(--shop-bg-secondary) 0%, var(--shop-bg) 100%);
    padding: 30px 0 20px;
    border-bottom: 1px solid var(--shop-border);
    margin-bottom: 25px;
}

.shop-hero-content {
    text-align: center;
}

.shop-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--shop-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-hero-subtitle {
    font-size: 1rem;
    color: var(--shop-text-secondary);
}

/* ============================================
   SORTEOS DIARIOS SECTION
   ============================================ */
.sorteos-diarios-header {
    text-align: center;
    margin-bottom: 30px;
}

.sorteos-diarios-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--shop-text);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sorteos-diarios-title i {
    color: var(--shop-primary);
}

/* ============================================
   DAY SECTION
   ============================================ */
.day-section {
    margin-bottom: 35px;
    position: relative;
    /* Required for ::before pseudo-element */
}

.day-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--shop-border);
}

.day-icon {
    width: 45px;
    height: 45px;
    background: var(--shop-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--shop-bg);
    font-size: 1rem;
    font-weight: 700;
}

.day-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--shop-text);
    margin: 0;
}

.day-date {
    font-size: 0.85rem;
    color: var(--shop-text-muted);
}

/* ============================================
   SHIFT SECTION
   ============================================ */
.shift-section {
    margin-bottom: 25px;
    background: var(--shop-bg-secondary);
    border-radius: var(--shop-radius);
    padding: 20px;
    border: 1px solid var(--shop-border);
}

.shift-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.shift-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.shift-badge.mediodia {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.shift-badge.tarde {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
}

.shift-badge.noche {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
}

.shift-time {
    font-size: 0.8rem;
    color: var(--shop-text-muted);
}

.shift-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* ============================================
   LOTTERY CARD - COMPACT DESIGN v3
   ============================================ */
.lottery-card {
    background: var(--shop-card-bg);
    border-radius: var(--shop-radius);
    overflow: hidden;
    border: 1px solid var(--shop-border);
    transition: all var(--shop-transition), opacity 0.3s ease, transform 0.3s ease;
    /* Flexbox card sizing for proper centering */
    flex: 0 1 300px;
    max-width: 350px;
    min-width: 280px;
}

.lottery-card:hover {
    transform: translateY(-4px);
    border-color: var(--shop-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lottery-card.sold-out {
    display: none !important;
}

/* ============================================
   DYNAMIC VISIBILITY - DAY/SHIFT/CARD
   ============================================ */

/* Transitions for smooth show/hide animations */
.day-section,
.shift-section {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hidden state for day sections and shift sections */
.day-section.hidden,
.shift-section.hidden {
    display: none !important;
}

/* Future days hidden until active day exhausted */
.day-section.future-hidden {
    display: none !important;
}

/* Shift sections hidden when all draws sold out */
.shift-section.shift-hidden {
    display: none !important;
}


/* Fading out animation (before hiding) */
.day-section.fading,
.shift-section.fading,
.lottery-card.fading {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

/* Appearing animation (after showing) */
.day-section.appearing,
.shift-section.appearing,
.lottery-card.appearing {
    animation: fadeInScale 0.3s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Indicator for exhausted day sections (moved to end) */
.day-section[data-exhausted="true"] {
    order: 999;
    /* Force to end of flex container if needed */
}

/* ============================================
   CIRCULAR WEEKLY ROTATION ANIMATIONS
   ============================================ */

/* Base transition for day sections during reorder */
.day-section {
    transition: transform 0.4s ease-out,
        opacity 0.4s ease-out,
        margin-top 0.3s ease-out;
}

/* When a day is about to be reordered */
.day-section.reordering {
    opacity: 0.7;
    transform: translateX(-10px);
}

/* Slide-in animation when day takes new position */
.day-section.slide-in {
    animation: slideInFromTop 0.4s ease-out forwards;
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* When day section becomes the first (hero) position */
.day-section:first-child::before {
    content: '';
    display: block;
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--shop-primary), transparent);
    border-radius: 2px;
    opacity: 0;
    animation: heroGlow 0.6s ease-out 0.2s forwards;
}

@keyframes heroGlow {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Smooth transition when hiding exhausted days */
.day-section.fading-out {
    animation: fadeOutDown 0.3s ease-out forwards;
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

/* Card Image - Featured Image */
.card-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: var(--shop-bg);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lottery-card:hover .card-image img {
    transform: scale(1.05);
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--shop-primary);
    background: linear-gradient(135deg, var(--shop-bg), var(--shop-card-bg));
}

/* Card Content - NO EXTRA PADDING AT BOTTOM */
.card-content {
    padding: 14px 14px 10px 14px;
}

/* Card Subtitle - Lotería . "Label" . Día. Turno */
.card-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 700;
    color: var(--shop-primary);
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.4;
    gap: 0;
}

.card-subtitle span {
    white-space: nowrap;
}

/* Elegant Diamond Separator */
.card-subtitle .subtitle-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin: 0 4px;
    position: relative;
}

.card-subtitle .subtitle-dot::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 50%, #ffd54f 100%);
    transform: rotate(45deg);
    border-radius: 1px;
    box-shadow: 0 0 6px rgba(255, 193, 7, 0.6), 0 0 12px rgba(255, 152, 0, 0.3);
}

/* Remove default bullet separators - using explicit dots now */
.card-subtitle span:not(:last-child):not(.subtitle-dot)::after {
    content: '';
    margin: 0;
}


/* Info Grid - Compact (only Hora, Fecha) */
.card-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.card-info-grid.compact {
    padding: 6px 8px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.info-label {
    font-size: 0.65rem;
    color: var(--shop-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 0.8rem;
    color: var(--shop-text);
    font-weight: 500;
}

/* Price & Prize - Bs FIRST (large), USD small */
.card-price-prize {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.price-box,
.prize-box {
    flex: 1;
    text-align: center;
    padding: 6px 8px;
    border-radius: 6px;
}

.price-box {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.prize-box {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.price-label,
.prize-label {
    display: block;
    font-size: 0.6rem;
    color: var(--shop-text-muted);
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* Large Bs value */
.price-value-bs {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--shop-primary);
    line-height: 1.2;
}

.prize-value-bs {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--shop-success);
    line-height: 1.2;
}

/* Small USD value */
.price-usd-small,
.prize-usd-small {
    display: block;
    font-size: 0.7rem;
    color: var(--shop-text-muted);
    margin-top: 2px;
}

/* Legacy support */
.price-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--shop-primary);
}

.prize-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--shop-success);
}

.price-bs {
    display: block;
    font-size: 0.65rem;
    color: var(--shop-text-muted);
    margin-top: 1px;
}

/* Progress Bar - Dynamic color via JS */
.card-progress {
    margin-bottom: 10px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 4px;
}

.progress-fill {
    height: 100%;
    background: var(--shop-success);
    /* Default green, changed by JS */
    border-radius: 10px;
    transition: width 0.8s ease, background 0.5s ease;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--shop-text-muted);
}

.progress-labels strong {
    color: var(--shop-text);
}

/* Buy Button - 100% WIDTH, more side padding, smaller font */
.card-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--shop-primary), var(--shop-primary-dark));
    color: var(--shop-bg);
    border: none;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--shop-transition);
    white-space: nowrap;
}

.card-buy-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.card-buy-btn i {
    font-size: 0.75rem;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.shop-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--shop-bg-secondary);
    border-radius: var(--shop-radius);
    border: 1px dashed var(--shop-border);
}

.shop-empty-icon {
    font-size: 3rem;
    color: var(--shop-text-muted);
    margin-bottom: 15px;
}

.shop-empty-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--shop-text);
    margin: 0 0 8px 0;
}

.shop-empty-text {
    font-size: 0.95rem;
    color: var(--shop-text-muted);
    margin: 0;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
    .shop-hero-title {
        font-size: 1.5rem;
    }

    .sorteos-diarios-title {
        font-size: 1.2rem;
    }

    .shift-cards-grid {
        grid-template-columns: 1fr;
    }

    .card-title {
        font-size: 18px;
    }

    .card-buy-btn {
        font-size: 0.65rem;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .shop-container {
        padding: 0 12px;
    }

    .shift-section {
        padding: 15px;
    }

    .card-content {
        padding: 12px 12px 8px 12px;
    }

    .day-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .card-buy-btn {
        font-size: 0.6rem;
        padding: 9px 12px;
    }
}

/* ============================================
   CLICKABLE CARDS
   ============================================ */
.lottery-card {
    cursor: pointer;
    position: relative;
}

.lottery-card:active {
    transform: scale(0.98);
}

/* Prevent button from blocking card click */
.card-buy-btn {
    position: relative;
    z-index: 2;
}

/* ============================================
   FUTURE DRAW WARNING MODAL
   ============================================ */
.future-draw-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.future-draw-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.future-draw-modal {
    background: linear-gradient(145deg, #1a2942 0%, #0f1d30 100%);
    border-radius: 16px;
    max-width: 450px;
    width: 100%;
    border: 2px solid var(--shop-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 193, 7, 0.15);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.future-draw-modal-overlay.active .future-draw-modal {
    transform: scale(1) translateY(0);
}

.future-draw-modal-header {
    background: linear-gradient(135deg, var(--shop-primary), var(--shop-primary-dark));
    padding: 18px 24px;
    text-align: center;
}

.future-draw-modal-header h3 {
    margin: 0;
    color: var(--shop-bg);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.future-draw-modal-header h3 i {
    font-size: 1.4rem;
}

.future-draw-modal-body {
    padding: 24px;
}

.future-draw-modal-message {
    text-align: center;
    margin-bottom: 20px;
}

.future-draw-modal-message p {
    color: var(--shop-text-secondary);
    font-size: 0.95rem;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.future-draw-info {
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 12px;
    padding: 16px;
    margin: 15px 0;
}

.future-draw-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.future-draw-info-row i {
    color: var(--shop-primary);
    width: 20px;
    text-align: center;
}

.future-draw-info-row span {
    color: var(--shop-text);
    font-weight: 500;
}

.future-draw-today-note {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-top: 15px;
    text-align: center;
}

.future-draw-today-note p {
    margin: 0;
    color: var(--shop-success);
    font-size: 0.9rem;
}

.future-draw-today-note strong {
    color: #4ade80;
}

.future-draw-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.future-draw-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    text-align: center;
}

.future-draw-btn-primary {
    background: linear-gradient(135deg, var(--shop-success), #16a34a);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.future-draw-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.future-draw-btn-primary i {
    font-size: 1.1rem;
}

.future-draw-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--shop-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.future-draw-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--shop-text);
    border-color: rgba(255, 255, 255, 0.25);
}

.future-draw-btn-secondary .btn-sublabel {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 3px;
}

/* Close button */
.future-draw-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--shop-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.future-draw-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Modal responsive */
@media (max-width: 480px) {
    .future-draw-modal {
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    .future-draw-modal-header {
        padding: 14px 18px;
    }

    .future-draw-modal-header h3 {
        font-size: 1.1rem;
    }

    .future-draw-modal-body {
        padding: 18px;
    }

    .future-draw-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

/* ============================================
   LIGHT THEME SUPPORT - Premium Edition
   ============================================ */
[data-theme="light"] {
    /* Premium backgrounds */
    --shop-bg: #eef2f6;
    --shop-bg-secondary: #f8fafc;
    --shop-card-bg: #ffffff;

    /* High contrast text */
    --shop-text: #0a1628;
    --shop-text-secondary: #374151;
    --shop-text-muted: #4b5563;

    /* Premium borders */
    --shop-border: rgba(15, 23, 42, 0.12);

    /* Premium gold accent */
    --shop-primary: #b8860b;
    --shop-primary-dark: #a67c00;
}

[data-theme="light"] .shop-page {
    background: var(--shop-bg);
}

[data-theme="light"] .shop-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 2px 15px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .shop-hero-title {
    color: #b8860b;
    text-shadow: none;
}

[data-theme="light"] .shift-section {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .lottery-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .lottery-card:hover {
    border-color: rgba(184, 134, 11, 0.4);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.12);
}

[data-theme="light"] .card-image {
    background: #f0f4f8;
}

[data-theme="light"] .card-image-placeholder {
    background: linear-gradient(135deg, #f4f6f9 0%, #e8eef4 100%);
    color: #b8860b;
}

[data-theme="light"] .card-subtitle {
    color: #b8860b;
}

[data-theme="light"] .card-info-grid {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .info-label {
    color: #4b5563;
}

[data-theme="light"] .info-value {
    color: #0a1628;
}

[data-theme="light"] .price-box {
    background: rgba(184, 134, 11, 0.08);
    border-color: rgba(184, 134, 11, 0.25);
}

[data-theme="light"] .prize-box {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.25);
}

[data-theme="light"] .price-value-bs {
    color: #b8860b;
}

[data-theme="light"] .progress-bar {
    background: rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .progress-labels {
    color: #4b5563;
}

[data-theme="light"] .progress-labels strong {
    color: #0a1628;
}

[data-theme="light"] .card-buy-btn {
    background: linear-gradient(135deg, #b8860b 0%, #a67c00 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.25);
}

[data-theme="light"] .card-buy-btn:hover {
    background: linear-gradient(135deg, #d4a106 0%, #b8860b 100%);
    box-shadow: 0 6px 18px rgba(184, 134, 11, 0.35);
}

[data-theme="light"] .day-header {
    border-bottom-color: rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .day-name {
    color: #0a1628;
}

[data-theme="light"] .day-date {
    color: #4b5563;
}

[data-theme="light"] .day-icon {
    background: linear-gradient(135deg, #b8860b 0%, #a67c00 100%);
    color: #ffffff;
}

[data-theme="light"] .shift-badge.mediodia {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

[data-theme="light"] .shift-badge.tarde {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

[data-theme="light"] .shift-badge.noche {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

[data-theme="light"] .shop-empty-state {
    background: #ffffff;
    border: 1px dashed rgba(15, 23, 42, 0.2);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .shop-empty-title {
    color: #0a1628;
}

[data-theme="light"] .shop-empty-text {
    color: #4b5563;
}

[data-theme="light"] .future-draw-modal {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #b8860b;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
}

[data-theme="light"] .future-draw-modal-header {
    background: linear-gradient(135deg, #b8860b 0%, #a67c00 100%);
}

[data-theme="light"] .future-draw-info {
    background: rgba(184, 134, 11, 0.06);
    border-color: rgba(184, 134, 11, 0.2);
}

[data-theme="light"] .future-draw-info-row span {
    color: #0a1628;
}

[data-theme="light"] .future-draw-btn {
    background: linear-gradient(135deg, #b8860b 0%, #a67c00 100%);
    color: #ffffff;
}