/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-primary: #042E25;      /* Forest Green Escuro (Fundo do Hero e Seção de Cadastro) */
    --color-bg-secondary: #060F0D;    /* Carbon Black (Fundo Geral/Rodapé) */
    --color-accent: #f9b03d;          /* Laranja de Branding Vilas Prime */
    --color-accent-gold: #f9b03d;     /* Alinhado com o Laranja de Branding */
    --color-accent-hover: #e09d30;
    --color-text-primary: #F3F7F5;    /* Off-White */
    --color-text-secondary: #A0B2AE;  /* Verde Acinzetado */
    --color-border: rgba(255, 255, 255, 0.08);
    --color-glass-bg: rgba(255, 255, 255, 0.03);
    --color-glass-border: rgba(255, 255, 255, 0.06);
    --color-glass-shadow: rgba(0, 0, 0, 0.5);

    /* Fonts */
    --font-headings: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Layout & Spacing */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --max-width-content: 1140px;
    --max-width-narrow: 820px;       /* Aumentado para ~70% de largura no desktop */
    --transition-speed: 0.3s;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 0 24px;
}

.narrow-container {
    width: 100%;
    max-width: var(--max-width-narrow);
    position: relative;
    z-index: 10;
}

.text-center {
    text-align: center;
}

strong {
    font-weight: 700;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-headings);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-align: center;
    width: auto;
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(249, 176, 61, 0.35);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(249, 176, 61, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 24px rgba(220, 39, 67, 0.25);
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(220, 39, 67, 0.35);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-large {
    font-size: 1rem;
    padding: 18px 32px;
}

.btn-link {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px;
    margin-top: 12px;
}

.btn-link:hover {
    color: var(--color-text-primary);
}

/* Pulsing effect for main CTA */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 176, 61, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(249, 176, 61, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 176, 61, 0);
    }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 12px 0;
    background: linear-gradient(to bottom, rgba(6, 15, 13, 0.9), rgba(6, 15, 13, 0));
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 0 24px;
}

.logo-img {
    height: 263px; /* 25% a mais do anterior (210px) */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-btn {
        display: none !important;
    }
    .header-container {
        justify-content: center !important;
    }
    .logo-img {
        height: 300px !important; /* 25% a mais do anterior (240px) */
    }
}

/* ==========================================================================
   HERO SECTION (Matches reference top fold - Giant Full Bleed Background)
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 180px 0 100px 0;
    background-color: var(--color-bg-primary);
    /* Drink como imagem gigante de fundo na direita com overlay para cobrir a esquerda de verde sólido */
    background-image: 
        linear-gradient(to right, #042E25 38%, rgba(4, 46, 37, 0.95) 52%, rgba(4, 46, 37, 0.4) 75%, rgba(4, 46, 37, 0.1) 100%),
        url('welcome_drink.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(6, 15, 13, 0.3) 0%, rgba(4, 46, 37, 0) 100%);
    pointer-events: none;
}

.hero-container {
    display: block; /* Removido o grid de duas colunas */
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 620px; /* Limita a largura do texto para garantir leitura sobre o gradiente */
}

.hero-tag {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-accent-gold);
    margin-bottom: 24px;
    background: rgba(242, 169, 0, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(242, 169, 0, 0.2);
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-subtitle strong {
    color: #ffffff;
}

@media (max-width: 991px) {
    .hero-section {
        background-image: 
            linear-gradient(to bottom, rgba(4, 46, 37, 0.95) 0%, rgba(4, 46, 37, 0.85) 60%, rgba(4, 46, 37, 0.95) 100%),
            url('welcome_drink.png');
        background-position: center center;
        min-height: auto;
        padding: 332px 0 80px 0; /* 12px (header) + 300px (logo) + 20px (margem) */
    }
    
    .hero-content {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
}

/* ==========================================================================
   COMO FUNCIONA (White Background Section with Horizontal Step Cards)
   ========================================================================== */
.how-it-works-section {
    padding: 120px 0;
    background-color: #ffffff;
    color: #080D0C;
}

.how-it-works-section .section-title {
    color: #042E25;
    font-size: 2.4rem;
}

.how-it-works-section .section-desc {
    color: #556864;
}

.how-it-works-section .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Mantém os passos um do lado do outro */
    gap: 30px;
    margin-top: 48px;
}

.how-it-works-section .step-card {
    background-color: #F8FAF9;
    border: 1px solid rgba(4, 46, 37, 0.08);
    border-radius: var(--border-radius-md);
    padding: 40px 32px;
    box-shadow: 0 10px 30px rgba(4, 46, 37, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all var(--transition-speed) ease;
}

.how-it-works-section .step-card:hover {
    border-color: rgba(249, 176, 61, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(4, 46, 37, 0.06);
}

.how-it-works-section .step-number {
    color: var(--color-accent-gold);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1;
}

.how-it-works-section .step-title {
    color: #042E25;
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.how-it-works-section .step-text {
    color: #556864;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .how-it-works-section .steps-grid {
        grid-template-columns: 1fr; /* Stack em telas menores para leitura móvel */
        gap: 20px;
    }
}

/* ==========================================================================
   CADASTRO SECTION (Matches Visual Reference form area)
   ========================================================================== */
.cadastro-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-bg-secondary);
    background-image: radial-gradient(circle at 50% 50%, rgba(4, 46, 37, 0.3) 0%, transparent 70%);
}

.form-glass-card {
    background: rgba(4, 46, 37, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 5;
}

.form-header {
    margin-bottom: 40px;
}

.form-title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
    text-transform: uppercase;
}

.label-center {
    text-align: center;
}

/* Date Selector Grid (Exactly 3 buttons: Friday, Saturday, Sunday) */
.date-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 10px;
}

.date-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-sm);
    padding: 16px 12px;
    color: var(--color-text-secondary);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
}

.date-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.date-btn.active {
    background: rgba(249, 176, 61, 0.12);
    border-color: var(--color-accent);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(249, 176, 61, 0.2);
}

.date-btn.sold-out {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
    border-color: rgba(220, 53, 69, 0.3);
    background: rgba(220, 53, 69, 0.03);
}

.date-day-name {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.date-day-num {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.date-badge {
    font-size: 0.55rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    white-space: nowrap;
}

.date-badge.warning {
    background-color: rgba(242, 169, 0, 0.15);
    color: var(--color-accent-gold);
    border: 1px solid rgba(242, 169, 0, 0.25);
}

.date-badge.danger {
    background-color: rgba(220, 53, 69, 0.15);
    color: #ff6b7a;
    border: 1px solid rgba(220, 53, 69, 0.25);
}

/* Drink Selector Options */
.drink-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.drink-option-card {
    position: relative;
    cursor: pointer;
}

.drink-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-sm);
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-speed) ease;
    height: 100%;
}

.drink-option-card:hover .option-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.drink-option-card input[type="radio"]:checked + .option-content {
    border-color: var(--color-accent-gold);
    background: rgba(242, 169, 0, 0.05);
    box-shadow: 0 4px 15px rgba(242, 169, 0, 0.1);
}

.option-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.option-desc {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

/* Form Inputs */
.input-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-input {
    width: 100%;
    height: 52px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-sm);
    padding: 0 16px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all var(--transition-speed) ease;
}

.form-input:focus {
    border-color: var(--color-accent);
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 10px rgba(249, 176, 61, 0.1);
}

/* Validation styling */
.form-input.invalid {
    border-color: #ff4a5a;
    box-shadow: 0 0 10px rgba(255, 74, 90, 0.1);
}

.error-message {
    font-size: 0.75rem;
    color: #ff4a5a;
    position: absolute;
    bottom: -18px;
    left: 4px;
    display: none;
    font-weight: 600;
}

.input-wrapper.has-error .error-message {
    display: block;
}

/* ==========================================================================
   VOUCHER / TICKET DE SUCESSO
   ========================================================================== */
.voucher-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(37, 211, 102, 0.15);
    border: 2px solid #25D366;
    color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px auto;
}

.success-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.success-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

/* Premium Digital Ticket CSS */
.voucher-ticket {
    background: radial-gradient(circle at 0 50%, transparent 12px, var(--color-bg-secondary) 12px) 0 50% / 100% 100% no-repeat,
                radial-gradient(circle at 100% 50%, transparent 12px, var(--color-bg-secondary) 12px) 100% 50% / 100% 100% no-repeat;
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-md);
    width: 100%;
    max-width: 440px;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    margin-bottom: 24px;
    overflow: hidden;
}

.voucher-ticket::before {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 88px;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.1);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 16px;
}

.ticket-logo {
    height: 120px; /* Aumentado em 250% (de 48px para 120px) */
}

.ticket-badge {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--color-accent-gold);
    letter-spacing: 0.05em;
    background: rgba(242, 169, 0, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
}

.ticket-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
}

.ticket-qr-container {
    background: #ffffff;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.ticket-qr-container img {
    width: 140px;
    height: 140px;
}

.ticket-info {
    width: 100%;
}

.ticket-info h3 {
    font-size: 1.4rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 0.9rem;
}

.info-row span {
    color: var(--color-text-secondary);
}

.info-row strong {
    color: #ffffff;
    font-weight: 700;
}

.ticket-footer {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    padding-top: 12px;
}

/* VIP Instagram Raffle Card */
.vip-raffle-card {
    background: linear-gradient(135deg, rgba(249, 176, 61, 0.15) 0%, rgba(249, 176, 61, 0.05) 100%);
    border: 1px solid rgba(249, 176, 61, 0.25);
    border-radius: var(--border-radius-md);
    padding: 24px;
    width: 100%;
    max-width: 440px;
    margin-bottom: 24px;
}

.vip-badge {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-accent-gold);
    letter-spacing: 0.1em;
    background: rgba(242, 169, 0, 0.15);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
}

.vip-raffle-card h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.vip-raffle-card p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.success-actions {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   REGRAS DE USO SECTION (BLINDAGEM DE CAIXA)
   ========================================================================== */
.rules-section {
    padding: 60px 0;
    background-color: var(--color-bg-secondary);
}

.rules-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-md);
    padding: 30px;
}

.rules-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.warning-icon {
    font-size: 1.5rem;
}

.rules-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.rules-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rules-list li {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.rules-list li::before {
    content: "•";
    color: var(--color-accent);
    position: absolute;
    left: 4px;
    top: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.rules-list strong {
    color: var(--color-text-primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    padding: 60px 0;
    background-color: #030807;
    border-top: 1px solid var(--color-border);
}

.footer-logo {
    height: 220px; /* 100% a mais do anterior (110px) */
    margin: 0 auto 24px auto;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVIDADE)
   ========================================================================== */
@media (max-width: 991px) {
    .container {
        padding: 0 30px;
    }
    
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .how-it-works-section .steps-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 15px;
    }
    
    .header-container {
        padding: 0 30px;
    }
    
    .how-it-works-section {
        padding: 40px 0;
    }
    
    .how-it-works-section .steps-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        margin-top: 24px;
    }
    
    .how-it-works-section .step-card {
        padding: 12px 6px !important;
        border-radius: var(--border-radius-sm);
        text-align: center;
    }
    
    .how-it-works-section .step-number {
        font-size: 1.6rem !important;
        margin-bottom: 2px;
    }
    
    .how-it-works-section .step-title {
        font-size: 0.8rem !important;
        margin-bottom: 2px;
    }
    
    .how-it-works-section .step-text {
        font-size: 0.65rem !important;
        line-height: 1.25;
    }
    
    .cadastro-section {
        padding: 40px 0 !important;
    }
    
    .rules-section {
        padding: 20px 0 !important;
    }
    
    .form-glass-card {
        padding: 24px 30px;
    }
    
    .date-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
    
    .date-btn {
        padding: 10px 4px !important;
    }
    
    .date-day-name {
        font-size: 0.6rem !important;
    }
    
    .date-day-num {
        font-size: 0.95rem !important;
        margin-bottom: 4px;
    }
    
    .date-badge {
        font-size: 0.5rem !important;
        padding: 2px 4px !important;
    }
    
    .drink-options {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
    
    .option-content {
        padding: 12px 4px !important;
    }
    
    .option-title {
        font-size: 0.75rem !important;
        margin-bottom: 2px;
    }
    
    .option-desc {
        font-size: 0.6rem !important;
        line-height: 1.2;
    }
    
    .input-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .ticket-body {
        gap: 16px;
    }
    
    .voucher-ticket {
        padding: 20px;
    }
}
