:root {
    --primary-indigo: #1e1b4b;
    --primary-purple: #7c3aed;
    --accent-lime: #84cc16;
    --card-bg: #FFFFFF;
    --text-dark: #1e1b4b;
    --text-light: #FFFFFF;
    --price-strike: #9ca3af;
    --success-green: #22c55e;
    --background-light: #f8fafc;
    --border-light: #e2e8f0;
    --gradient-bg: linear-gradient(135deg, #1e1b4b 0%, #7c3aed 50%, #1e1b4b 100%);
}

/* Start Custom Fonts CSS */
@font-face {
    font-family: 'Monument Extended';
    font-style: normal;
    font-weight: 600;
    font-display: auto;
    src: url('../font/MonumentExtended-Ultrabold.woff2') format('woff2');
}

@font-face {
    font-family: 'Telegraf';
    font-style: normal;
    font-weight: normal;
    font-display: auto;
    src: url('../font/FontsFree-Net-Telegraf-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Telegraf';
    font-style: normal;
    font-weight: bold;
    font-display: auto;
    src: url('../font/PPTelegraf-UltraBold.woff2') format('woff2');
}

/* End Custom Fonts CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Telegraf', sans-serif;
    background: var(--background-light);
    min-height: 100vh;
}

/* Modal body state management - Android compatible */
body.modal-open {
    overflow: hidden !important;
    /* REMOVED position: fixed for Android compatibility */
}

html.modal-open {
    overflow: hidden !important;
}

/* Android/Mobile specific modal fixes - SIMPLIFIED */
@media screen and (max-width: 768px) {
    body.modal-open {
        /* SIMPLIFIED: Only overflow hidden for Android */ overflow: hidden !important;
        height: 100vh !important;
        /* REMOVED: position: fixed, top, width - causes Android issues */
    }

    html.modal-open {
        height: 100vh !important;
        overflow: hidden !important;
    }
}

.header {
    background: var(--primary-indigo);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(30, 27, 75, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-combo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-family: 'Monument Extended', sans-serif;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
    display: flex;
}

.logo-text:hover {
    opacity: 0.8;
}

.cart-icon {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 0.8rem;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.cart-icon:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.hero {
    background: url('../images/marketers/hero-1.jpg') center/cover no-repeat;
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(135deg, rgba(30, 27, 75, 0.9) 0%, rgb(124 58 237 / 13%) 50%, rgb(30 27 75 / 3%) 100%);
    z-index: 1;
    background: radial-gradient(circle at 0% 0%, #0e228b 0%, transparent 30%), radial-gradient(circle at 100% 0%, #5a35f4 10%, transparent 40%), radial-gradient(circle at 0% 100%, #78e591 0.8%, transparent 40%), radial-gradient(circle at 0% 50%, #0e228b 0%, transparent 100%);
    background-color: #000;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-lime);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--text-dark);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.sun-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: sunGlow 3s ease-in-out infinite alternate;
}

@keyframes sunGlow {
    0% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }

    100% {
        transform: scale(1.1) rotate(5deg);
        filter: brightness(1.2);
    }
}

.festival-logo {
    font-family: 'Monument Extended', sans-serif;
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.2px;
}

.tagline {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.date-location {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* COUNTDOWN SECTION - Marketers World Style */
.countdown-section {
    background: var(--gradient-bg);
    color: white;
    padding: 0.75rem 1rem;
    text-align: center;
}

.countdown-container {
    max-width: 100%;
    margin: 0 auto;
}

.countdown-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Monument Extended', sans-serif;
    line-height: 1;
    min-width: 2.5rem;
}

.countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    margin-top: 0.2rem;
    opacity: 0.8;
}

/* Desktop responsive per countdown */
@media (min-width: 769px) {
    .countdown-section {
        padding: 0.6rem 1rem;
    }

    .countdown-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .countdown-timer {
        gap: 1.5rem;
        justify-content: space-between;
        max-width: 400px;
        margin: 0 auto;
    }

    .countdown-item {
        flex: 1;
        max-width: 80px;
    }

    .countdown-number {
        font-size: 1.4rem;
        min-width: 2rem;
    }

    .countdown-title {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }
}

/* Large desktop - ancora piu compatto */
@media (min-width: 1200px) {
    .countdown-container {
        max-width: 500px;
    }

    .countdown-timer {
        max-width: 350px;
        gap: 1rem;
    }

    .countdown-item {
        max-width: 70px;
    }
}

/* LAYOUT CONTAINER */
.layout-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    padding: 2rem 1rem;
    position: relative;
}

.main-content {
    flex: 1;
    min-width: 0;
}

.category-section {
    margin-bottom: 0;
}

.category-header {
    text-align: left;
    margin-bottom: 2rem;
}

.category-title {
    font-family: 'Monument Extended', sans-serif;
    color: var(--text-dark);
    font-size: 3.8rem;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 0.2px;
    font-weight: 600;
    text-transform: uppercase;
}

.category-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
}

.products-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(47, 95, 95, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* height: 4px; */
    /* background: linear-gradient(90deg, var(--primary-teal) 0%, var(--accent-orange) 100%); */
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(47, 95, 95, 0.2);
    border-color: var(--border-light);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card.has-items {
    border: 0;
    background: linear-gradient(94deg, var(--accent-lime) 0%, var(--accent-lime) 100%);
    border-bottom: 1px solid white;
}

.product-card.has-items::before {
    transform: scaleX(1);
}

.product-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.product-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.product-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.product-icon {
    font-size: 4.1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    border-radius: 15px;
    flex-shrink: 0;
}

.product-info {
    flex: 1;
}

.product-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    /* margin-bottom: 0.3rem; */
    font-family: 'Monument Extended', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    justify-content: center;
}

.price-original {
    color: var(--price-strike);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.price-current {
    color: var(--text-dark);
    font-weight: bold;
    font-size: 26px;
    font-family: 'Telegraf', sans-serif;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--background-light);
    border-radius: 40px;
    padding: 0.3rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.quantity-controls.active {
    opacity: 1;
    background: var(--card-bg);
    color: var(--primary-teal);
}

.quantity-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: none;
    background: var(--accent-lime);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 2.4rem;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.quantity-display {
    min-width: 24px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.quantity-display.animate {
    animation: numberPulse 0.4s ease;
}

@keyframes numberPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* MOBILE CART (stile Glovo) */
.mobile-cart-summary {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-lime);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 32px rgba(132, 204, 22, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 200px;
    font-weight: bold;
}

.mobile-cart-summary.show {
    display: flex;
    width: 80vw;
    border-radius: 15px;
}

.mobile-cart-summary:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 40px rgba(47, 95, 95, 0.5);
}

.cart-text {
    font-weight: 400;
    text-align: center;
}

.cart-text .a-text {
    font-weight: 400;
}

.cart-text strong {
    font-weight: 700;
}

/* DESKTOP CART SIDEBAR */
.desktop-cart-sidebar {
    width: 350px;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 120px;
    box-shadow: 0 8px 32px rgba(47, 95, 95, 0.1);
    display: none;
}

.desktop-cart-sidebar.show {
    display: block;
}

.cart-sidebar-header {
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.cart-sidebar-title {
    font-family: 'Monument Extended', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.cart-sidebar-empty {
    text-align: center;
    padding: 2rem 0;
    color: #999;
}

.cart-sidebar-empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.cart-sidebar-items {
    margin-bottom: 1rem;
}

.cart-sidebar-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    gap: 1rem;
}

.cart-sidebar-item:last-child {
    border-bottom: none;
}

.cart-sidebar-item-info {
    flex: 1;
}

.cart-sidebar-item-name {
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-family: 'Monument Extended';
    font-size: 1.1rem;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.cart-sidebar-item-desc {
    font-size: 0.8rem;
    color: #666;
    font-family: 'Telegraf';
}

.cart-sidebar-item-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.cart-sidebar-item-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.cart-sidebar-item-price-original {
    color: var(--price-strike);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.cart-sidebar-item-price {
    font-weight: bold;
    color: var(--primary-teal);
    font-family: 'Telegraf', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.2px;
}

.cart-sidebar-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-sidebar-quantity-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--accent-lime);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
}

.cart-sidebar-quantity-btn:hover {
    background: var(--accent-lime);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cart-sidebar-quantity-display {
    min-width: 20px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.cart-sidebar-item-price {
    font-weight: 700;
    color: var(--primary-teal);
    margin-left: 1rem;
}

.cart-sidebar-total {
    border-top: 2px solid var(--border-light);
    padding-top: 1rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

#cartTotalPrice {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cart-savings {
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

.desktop-checkout-btn {
    width: 100%;
    background: var(--accent-lime);
    color: var(--text-dark);
    border: none;
    padding: 1rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.desktop-checkout-btn:hover {
    background: #65a30d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(132, 204, 22, 0.4);
}

.desktop-checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* CART MODAL (solo mobile) - Android optimized */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
    align-items: flex-end;
    /* REMOVED problematic Android properties */
}

.cart-modal.show {
    display: flex;
}

.cart-modal-content {
    background: white;
    width: 100%;
    height: 100vh;
    border-radius: 0;
    padding: 0;
    animation: slideUp 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* SIMPLIFIED Android fixes */
    touch-action: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 1rem;
}

.cart-modal-title {
    font-family: 'Monument Extended', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.2px;
}

.cart-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    transform: scale(1);
}

.cart-modal-close:hover {
    background: rgba(0,0,0,0.05);
}

.cart-modal-close:active {
    transform: scale(0.9);
    background: rgba(0,0,0,0.1);
}

.modal-close-icon {
    width: 55px;
    height: 55px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.cart-modal-close:hover .modal-close-icon {
    opacity: 1;
}

.cart-modal-items {
    margin-bottom: 1rem;
}

.cart-modal-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    gap: 1rem;
}

.cart-modal-item:last-child {
    border-bottom: none;
}

.cart-modal-item-info {
    flex: 1;
}

.cart-modal-item-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.cart-modal-item-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.cart-modal-item-price-original {
    color: var(--price-strike);
    text-decoration: line-through;
    font-size: 0.9rem;
}

span.cart-modal-item-icon {
    font-size: 2rem;
    width: 40px;
    height: 40px;
}

.cart-modal-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-modal-quantity-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: white;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
}

.cart-modal-quantity-btn:hover {
    background: var(--background-light);
}

.cart-modal-quantity-display {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
}

.cart-modal-item-price {
    font-weight: bold;
    color: var(--primary-teal);
    font-family: 'Telegraf', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.2px;
}

/* INTEGRATED FORM STYLES */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    background: #ffffff;
    padding: 0.5em;
    border: 1px solid #2f5f5f33;
    border-radius: 7px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-checkbox label {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
    line-height: 1.3;
}

.newsletter-main-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.newsletter-sub-text {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

.form-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.form-text a {
    color: var(--accent-orange);
    text-decoration: none;
}

.error-alert {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
}

.error-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.error-list li {
    margin-bottom: 0.5rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .layout-container {
        flex-direction: column;
        padding: 0;
    }

    .desktop-cart-sidebar {
        display: none !important;
    }

    .category-header {
        padding: 1rem;
        background: var(--primary-indigo);
        /* background-image: var(--gradient-bg); */
        margin-bottom: 0;
    }

    .category-title {
        color: white;
    }

    .category-subtitle {
        color: var(--accent-lime);
        margin-top: -11px;
        opacity: 0.9;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 0;
        background: linear-gradient(180deg, var(--primary-indigo) 0%, var(--primary-purple) 50%, var(--primary-indigo) 100%);
        padding-bottom: 2rem;
    }

    .product-card {
        padding: 1rem;
        box-shadow: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        background: rgba(255, 255, 255, 0.95);
        margin-bottom: 1px;
    }

    .product-content {
        flex-direction: row;
        gap: 1rem;
        align-items: stretch;
    }

    .product-left {
        order: 0;
    }

    .quantity-controls {
        order: 2;
        align-self: center;
    }

    /* Newsletter checkbox mobile styles */
    .newsletter-main-text {
        font-size: 0.9rem;
    }

    .newsletter-sub-text {
        font-size: 0.8rem;
    }
}

@media (min-width: 769px) {
    .mobile-cart-summary {
        display: none !important;
    }

    .cart-modal {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 2em;
    }

    .products-grid.faq {
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 2em;
    }
}

/* NEW 2-STEP CHECKOUT STYLES */
/* Back Button */
.back-btn {
    background: none;
    border: none;
    color: var(--primary-teal);
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: var(--accent-orange);
}

/* Checkout Summary */
.checkout-summary {
    background: var(--accent-lime);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
}

.checkout-summary h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    text-align: center;
}

.checkout-items {
    margin-bottom: 1rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(47, 95, 95, 0.1);
    font-size: 0.9rem;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-name {
    flex: 1;
    font-weight: 500;
    color: var(--text-dark);
}

.checkout-item-qty {
    color: #666;
    margin: 0 0.5rem;
    font-size: 0.8rem;
}

.checkout-item-price {
    font-weight: 600;
    color: var(--primary-teal);
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    padding-top: 0.8rem;
    border-top: 2px solid var(--primary-teal);
}

/* Step Transitions */
.cart-step, .checkout-step, .modal-step {
    transition: all 0.3s ease;
}

/* Modal Steps with Slide Animation */
.modal-step {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    padding: 1.5rem;
    padding-bottom: 120px;
    /* Space for fixed footer */
}

.modal-step.slide-left {
    transform: translateX(-100%);
}

.modal-step.slide-right {
    transform: translateX(100%);
}

.modal-step.active {
    transform: translateX(0);
}

/* Modal Header */
.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 1rem;
    flex-shrink: 0;
}

.cart-modal-title {
    font-family: 'Monument Extended';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    flex: 1;
    text-align: center;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.cart-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    padding: 0.5rem;
    position: absolute;
    right: 1rem;
}

.cart-modal-close:hover {
    color: var(--text-dark);
}

/* Modal Body - Scrollable - Android optimized */
.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 1rem;
    /* REMOVED problematic Android scroll properties */
}

/* Modal Footer - Fixed */
.cart-modal-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--border-light);
    padding: 1.5rem;
    z-index: 2001;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.footer-content {
    width: 100%;
}

.cart-modal-total {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

#cartModalTotalPrice {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cart-savings {
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

.checkout-btn {
    width: 100%;
    background: var(--accent-lime);
    color: var(--text-dark);
    border: none;
    padding: 1rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
}

.checkout-btn:hover {
    background: #0a7a7a;
}

/* Modal Item Styles */
.cart-modal-items {
    margin-bottom: 1rem;
}

.cart-modal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.cart-modal-item:last-child {
    border-bottom: none;
}

.cart-modal-item-info {
    flex: 1;
}

.cart-modal-item-header {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.2rem;
}

.cart-modal-item-details {
    flex: 1;
}

.cart-modal-item-icon {
    font-size: 2rem;
}

.cart-modal-item-name {
    font-weight: bold;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-family: 'Monument Extended';
    margin-bottom: 0.3rem;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.cart-modal-item-desc {
    font-size: 0.8rem;
    color: #666;
    font-family: 'Telegraf';
}

.cart-modal-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-modal-quantity-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--accent-lime);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
}

.cart-modal-quantity-btn:hover {
    background: var(--background-light);
}

.cart-modal-quantity-display {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
}

.cart-modal-item-price {
    font-weight: 700;
    color: var(--text-dark);
    /* margin-left: 1rem; */
}

/* Form styling improvements */
.checkout-step .form-group {
    margin-bottom: 1rem;
}

.checkout-step .form-label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.checkout-step .form-input {
    padding: 0.7rem;
    font-size: 0.9rem;
}

.checkout-step .form-checkbox {
    margin-bottom: 0.8rem;
}

.checkout-step .form-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.checkout-step .form-checkbox label {
    font-size: 0.85rem;
}

.checkout-step .newsletter-main-text {
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-step .newsletter-sub-text {
    font-size: 0.8rem;
    color: #666;
}

.checkout-step .form-text {
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .cart-modal-header .back-btn {
        position: absolute;
        left: 1rem;
        top: 1.2rem;
        font-size: 0.8rem;
    }

    .cart-modal-title {
        text-align: center;
        flex: 1;
    }

    .checkout-summary {
        margin-bottom: 1rem;
    }

    .checkout-summary h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .checkout-item {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .checkout-total {
        font-size: 1rem;
        padding-top: 0.6rem;
    }
}

/* THANK YOU PAGE STYLES */
.thank-you-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: calc(100vh - 80px);
}

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

.success-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.screen-title {
    font-family: 'Monument Extended', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.2px;
}

.screen-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.7;
    text-align: center;
    margin-bottom: 2rem;
}

.qr-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(47, 95, 95, 0.1);
    text-align: center;
}

.qr-code {
    width: 200px;
    height: 200px;
    background: white;
    border: 3px solid var(--primary-teal);
    border-radius: 12px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--price-strike);
    position: relative;
    overflow: hidden;
}

.qr-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25% 25%, var(--primary-teal) 2px, transparent 2px), radial-gradient(circle at 75% 25%, var(--primary-teal) 2px, transparent 2px), radial-gradient(circle at 25% 75%, var(--primary-teal) 2px, transparent 2px), radial-gradient(circle at 75% 75%, var(--primary-teal) 2px, transparent 2px), linear-gradient(45deg, transparent 48%, var(--primary-teal) 48%, var(--primary-teal) 52%, transparent 52%);
    background-size: 20px 20px, 20px 20px, 20px 20px, 20px 20px, 40px 40px;
    opacity: 0.8;
}

.qr-center {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.order-id {
    font-family: 'Telegraf', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
    letter-spacing: 0.2px;
}

.email-sent {
    background: rgba(40, 167, 69, 0.1);
    border: 2px solid var(--success-green);
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: center;
}

.email-sent-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.email-sent-text {
    color: var(--success-green);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.email-address {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.thank-you-container .instructions {
    background: rgba(255, 140, 66, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.thank-you-container .instructions-title {
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.thank-you-container .instructions-list {
    list-style: none;
    color: var(--text-dark);
    line-height: 1.6;
}

.thank-you-container .instructions-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.countdown-widget {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 8px 32px rgba(47, 95, 95, 0.1);
}

.countdown-title {
    color: var(--card-bg);
    font-weight: 600;
    margin-bottom: 1rem;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.countdown-number {
    letter-spacing: 1px;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-teal);
    display: block;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--card-bg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: none;
}

.thank-you-container .btn-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-orange) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    text-decoration: none;
}

.thank-you-container .btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 95, 95, 0.3);
}

.thank-you-container .btn-secondary {
    width: 100%;
    background: white;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-container .btn-secondary:hover {
    background: var(--primary-teal);
    color: white;
}

.error-state {
    text-align: center;
    padding: 2rem;
}

.error-icon {
    font-size: 4rem;
    color: var(--error-red);
    margin-bottom: 1rem;
}

.error-title {
    font-family: 'Monument Extended', sans-serif;
    font-size: 2rem;
    color: var(--error-red);
    margin-bottom: 1rem;
    letter-spacing: 0.2px;
}

.error-message {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* FOOTER STYLES */
.footer {
    background: #0f0f23;
    border-top: 1px solid #2a2a3a;
    padding: 6rem 0 1.5rem;
    margin-top: 4rem;
    background-image: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Brand Partnership */
.brand-partnership {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.brand-logo {
    display: flex;
    align-items: center;
    margin-top: 0.9rem;
}

.logo-cds {
    height: 28vh;
    width: auto;
}

.logo-marketers {
    height: 21px;
    width: auto;
}

.brand-marketers {
    font-family: 'Monument Extended', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-lime);
    letter-spacing: -0.5px;
}

.partnership-at {
    font-size: 0.9rem;
    color: var(--price-strike);
    font-weight: 400;
}

.brand-clubdelsole {
    font-family: 'Monument Extended', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

/* Event Info */
.event-info {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--background-light);
}

.event-date {
    font-weight: 600;
    color: var(--card-bg);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    /* border-top: 1px solid #F3F4F6; */
    font-size: 0.85rem;
    color: var(--price-strike);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #ffffffbd;
    line-height: 1.4;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #ffffffbd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.footer-legal a:hover {
    color: var(--primary-teal);
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: white;
    margin: 1rem;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--price-strike);
    transition: color 0.3s ease;
}

.cookie-modal-close:hover {
    color: var(--text-dark);
}

.cookie-modal h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        background: #0f0f23;
        border-top: 1px solid #2a2a3a;
        padding: 4rem 0 1.5rem;
        margin-top: 0;
        padding-bottom: 6em;
        background-image: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
    }

    .brand-partnership {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .logo-cds {
        height: 12.5em;
    }

    .logo-marketers {
        height: 23px;
    }

    .brand-marketers {
        font-size: 1.6rem;
    }

    .brand-clubdelsole {
        font-size: 1.1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        border-top: 0;
    }

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

    .footer-legal {
        justify-content: center;
        gap: 1rem;
    }

    .cookie-modal-content {
        margin: 0.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-legal {
        flex-direction: row;
        gap: 0.8rem;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }
}

/* Product Modal Styles - Android optimized */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
    align-items: flex-end;
    /* REMOVED problematic Android properties */
}

.product-modal.show {
    display: flex;
}

.product-modal-content {
    background: white;
    width: 100%;
    height: 100vh;
    border-radius: 0;
    padding: 0;
    animation: slideUp 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* SIMPLIFIED Android fixes */
    touch-action: auto;
}

.product-modal.show .product-modal-content {
    transform: translateY(0);
}

.product-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 1rem;
    flex-shrink: 0;
    position: relative;
}

.product-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    transform: scale(1);
    position: absolute;
    right: 1rem;
}

.product-modal-close:hover {
    background: rgba(0,0,0,0.05);
}

.product-modal-close:active {
    transform: scale(0.9);
    background: rgba(0,0,0,0.1);
}

.product-modal-close .modal-close-icon {
    width: 55px;
    height: 55px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.product-modal-close:hover .modal-close-icon {
    opacity: 1;
}

.product-modal-hero {
    text-align: center;
    margin-bottom: 12px;
    display: block !important;
    width: 100%;
}

.modal-hero-bg {
    display: none;
}

.product-modal-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    width: 70px;
    height: 70px;
}

.product-modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2dd4bf, #0d9488);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(45, 212, 191, 0.3);
    margin: 0 auto;
}

.product-header-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

.product-title-section {
    text-align: center;
    width: 100%;
}

.product-modal-title {
    font-family: 'Monument Extended', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    text-align: center;
    letter-spacing: 0.2px;
    margin: 0;
}

.product-modal-description {
    color: #6b7280;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    text-align: left;
}

.product-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0 0 20px 0;
    padding-top: 4px;
}

.product-modal-tag {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #166534;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #bbf7d0;
}

.product-modal-tag:nth-child(2) {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    color: #7c3aed;
    border-color: #c4b5fd;
}

.product-modal-tag:nth-child(3) {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    color: #dc2626;
    border-color: #fca5a5;
}

/* Modal Body - Scrollable - Android optimized */
.product-modal-body {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 1rem;
    /* REMOVED problematic Android scroll properties */
}

/* Product Info Section nel Body */
.product-info-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 0.5rem;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 1rem;
    padding-top: 0;
}

.product-modal-icon-container {
    flex-shrink: 0;
}

.product-modal-icon {
    width: 60px;
    height: 60px;
    background: var(--background-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.product-header-info {
    flex: 1;
}

.product-header-info .product-modal-title {
    font-family: 'Monument Extended', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    letter-spacing: 0.2px;
    text-align: left;
}

.product-modal-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.package-includes {
    background: linear-gradient(135deg, #f4f6fa, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
}

.food-category-title, .modalFoodCategory {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.include-item {
    display: flex;
    align-items: center;
    margin: 8px 0;
    font-size: 14px;
    color: #374151;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 10px 12px;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.include-icon {
    margin-right: 8px;
    font-size: 16px;
}

.include-text {
    flex: 1;
    font-weight: 500;
}

/* Info Notification */
.selection-info {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #1e40af;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
}

.selection-info::before {
    content: "ℹ️";
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Food Options List */
.food-options-list {
    margin-top: 20px;
}

.food-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
}

.food-option-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.food-option-item:hover {
    border-color: #2dd4bf;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 212, 191, 0.15);
}

.food-option-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.food-option-ingredients {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.food-option-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 0;
}

.food-option-tag {
    background: #fef3c7;
    color: #d97706;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.quantity-controls-large {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.quantity-btn-large {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-teal);
    background: white;
    color: var(--primary-teal);
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.quantity-btn-large:hover:not(.disabled) {
    background: var(--primary-teal);
    color: white;
}

.quantity-btn-large.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: #ccc;
    color: #ccc;
}

.quantity-display-large {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-dark);
    min-width: 40px;
    text-align: center;
}

/* Modal Footer - Fisso come Cart Modal */
.product-modal-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--border-light);
    padding: 1.5rem;
    z-index: 2001;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.add-to-cart-btn {
    background: var(--primary-teal);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 0;
}

.add-to-cart-btn:hover {
    background: var(--success-green);
    transform: translateY(-2px);
}

/* Drinks Section */
.drinks-section {
    margin-top: 24px;
}

.drinks-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.drinks-options-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.drink-option-item {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    transition: all 0.2s ease;
}

.drink-option-item:hover {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    transform: translateY(-1px);
}

.drinks-options-list .drink-option-item:last-child {
    grid-column: 1 / -1;
}

.drinks-note {
    text-align: center;
    color: #64748b;
    font-size: 13px;
    font-style: italic;
    margin-top: 12px;
    padding: 8px;
    background: #f8fafc;
    border-radius: 8px;
}

/* Cocktail Specific Styles */
.cocktail-option-item {
    border-left: 4px solid var(--accent-orange);
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
}

.cocktail-option-item:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.2);
    transform: translateY(-2px);
}

.cocktail-tag {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff6b1a 100%);
    color: white !important;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(255, 140, 66, 0.3);
}

.quantity-controls-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-btn-footer {
    width: 40px;
    height: 40px;
    border: none;
    background: #2dd4bf;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn-footer:hover:not(:disabled) {
    background: #0d9488;
    transform: scale(1.1);
}

.quantity-btn-footer:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.quantity-display-footer {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    min-width: 24px;
    text-align: center;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, var(--accent-lime), var(--accent-lime));
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 212, 191, 0.3);
    flex: 1;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 212, 191, 0.4);
}

.add-to-cart-btn.in-cart {
    background: var(--success-green);
}

.add-to-cart-btn.in-cart:hover {
    background: #1e7e34;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-modal {
        align-items: flex-end;
        padding: 0;
    }

    .product-modal-content {
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 20px 20px 0 0;
        max-height: 100vh;
        height: auto;
        min-height: 50vh;
    }

    .product-modal-header {
        border-radius: 20px 20px 0 0;
        padding: 20px 20px 16px;
    }

    .product-modal-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .product-modal-description {
        font-size: 15px;
    }

    .product-modal-body {
        padding: 0 20px 24px;
        max-height: none;
    }

    .package-includes {
        margin: 16px 0;
        padding: 16px;
    }

    .food-option-item {
        padding: 14px;
    }

    .drinks-options-list {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}

/* Scrollbar Styling */
.product-modal-body::-webkit-scrollbar {
    width: 6px;
}

.product-modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.product-modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.product-modal-body::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Product Card Updates */
.product-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card.faq {
    cursor: auto !important;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-tag {
    font-size: 12px;
    color: #4A5568;
    background: var(--background-light);
    padding: 4px 8px;
    border-radius: 12px;
    margin-top: 8px;
    display: inline-block;
    border: 1px solid var(--border-light);
}

/* Desktop Responsive - Come Cart Modal */
@media (min-width: 769px) {
    .product-modal {
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .product-modal-content {
        width: 90%;
        max-width: 650px;
        height: auto;
        max-height: 90vh;
        border-radius: 20px;
        position: relative;
        top: auto;
    }

    .product-modal-header {
        padding: 2rem;
        border-radius: 20px 20px 0 0;
    }

    .product-modal-body {
        padding: 0 2rem 2rem 2rem;
    }

    .product-modal-footer {
        position: relative;
        bottom: auto;
        border-radius: 0 0 20px 20px;
        z-index: auto;
        padding: 1.5rem 2rem;
    }
}

/* Mobile Responsive - Identico al Cart Modal */
@media (max-width: 768px) {
    .product-modal {
        align-items: flex-end;
        padding: 0;
    }

    .product-modal-content {
        width: 100%;
        height: calc(100vh - 80px);
        border-radius: 20px 20px 0 0;
        top: 80px;
    }

    .product-modal-header {
        padding: 1.5rem;
        border-radius: 20px 20px 0 0;
    }

    .product-modal-body {
        padding-bottom: 120px;
        /* Space for fixed footer */
    }

    .product-modal-footer {
        position: fixed !important;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-top: 2px solid var(--border-light);
        padding: 1.5rem;
        z-index: 2001;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    }
}

/* Product Modal Food Options */
.product-food-options {
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.food-category-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.food-category-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}

.package-includes {
    margin: 16px 0;
}

.include-item {
    display: flex;
    align-items: center;
    margin: 8px 0;
    font-size: 14px;
    color: #374151;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 10px 12px;
    transition: all 0.2s ease;
    width: fit-content;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.include-icon {
    margin-right: 8px;
    font-size: 16px;
}

.food-options-list {
    margin-top: 20px;
}

.food-option-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.food-option-item:hover {
    border-color: #a855f7;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.1);
}

.food-option-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.food-option-name {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0;
    color: var(--text-dark);
    /* margin-bottom: 0.3rem; */
    font-family: 'Telegraf', sans-serif;
    letter-spacing: 0.2px;
}

.food-option-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.food-option-tag {
    background: var(--border-light);
    color: var(--primary-teal);
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

.food-option-ingredients {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

/* Drinks Section in Food Modal */
.drinks-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.drinks-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.drinks-options-list {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

.drink-option-item {
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 10px 12px;
    transition: all 0.2s ease;
}

.drink-option-item:hover {
    background: #f1f5f9;
    border-color: var(--primary-teal);
}

.drink-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.drink-option-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    min-width: 0;
}

.drink-option-size {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    flex-shrink: 0;
}

/* Product Header Info */
.product-header-info {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin: 16px 0 20px 0;
}

.product-modal-icon {
    font-size: 48px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-lime), var(--success-green));
    border-radius: 20px;
    flex-shrink: 0;
}

.product-title-section {
    flex: 1;
    min-width: 0;
}

.product-modal-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* Include item note for drink selection */
.include-item-note {
    margin: 12px 0 4px 0;
    padding: 8px 12px;
    background: rgba(59, 130, 246, 0.05);
    border-left: 3px solid rgba(59, 130, 246, 0.3);
    border-radius: 0 8px 8px 0;
}

.include-text-small {
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
    line-height: 1.3;
}

/* Loading Spinner for Modal Body */
.loading-spinner-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 16px;
    margin: 16px 0;
    color: #7c3aed;
    font-weight: 500;
}

/* Quantity Controls in Footer */
.quantity-controls-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border-radius: 8px;
    padding: 4px;
    border: 1px solid var(--border-light);
}

.quantity-btn-footer {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-teal);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn-footer:hover:not(.disabled) {
    background: var(--primary-teal);
    color: var(--text-dark);
    transform: translateY(-1px);
}

.quantity-btn-footer.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: #9ca3af;
}

.quantity-display-footer {
    min-width: 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #ddd6fe;
    border-top: 2px solid #7c3aed;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Mobile responsiveness for food options */
@media (max-width: 768px) {
    .food-option-header {
        flex-direction: column;
        gap: 8px;
    }

    .food-option-tags {
        align-self: flex-start;
    }

    .product-food-options {
        padding: 0;
        margin: 0;
    }

    .food-option-item {
        padding: 12px;
    }
}

/* Cocktail-specific styles */
.cocktail-option-item {
    border-left: 4px solid var(--accent-orange);
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
}

.cocktail-option-item:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.2);
    transform: translateY(-2px);
}

.cocktail-tag {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff6b1a 100%);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(255, 140, 66, 0.3);
}

/* Cocktail selection info styling */
.cocktail-selection-info {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff6b1a 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    text-align: center;
    margin: 16px 0;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

/* ==============================================
   ANDROID CHROME SCROLL FIX - CRITICAL UPDATES
   ============================================== */
/* 1. REMOVE GLOBAL TOUCH-ACTION RESTRICTIONS */
* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    /* REMOVED PROBLEMATIC: touch-action: pan-x pan-y; */
}

/* Allow text selection in input fields and text areas */
input, textarea, [contenteditable] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* 2. ENABLE NATURAL SCROLL ON HTML AND BODY */
html, body {
    /* CHANGED FROM: touch-action: pan-x pan-y; */
    touch-action: auto;
    /* Allow all natural touch gestures */
    -ms-touch-action: auto;
}

/* 3. APPLY TOUCH-ACTION ONLY WHERE NEEDED FOR BUTTONS */
.quantity-btn, .quantity-btn-footer, .cart-modal-quantity-btn, .cart-sidebar-quantity-btn, .product-card, .mobile-cart-summary {
    touch-action: manipulation;
    /* Only prevent double-tap zoom on interactive elements */
}

/* 4. ENSURE MAIN CONTENT IS SCROLLABLE */
.main-content, .layout-container {
    overflow: visible;
    touch-action: auto;
}

/* ==============================================
   MODAL LOADING SPINNER STYLES
   ============================================== */
/* Modal Loading Spinner - Custom Styles */
.loading-spinner-modal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.spinner-container {
    margin-bottom: 16px;
}

.spinner-circle {
    width: 32px;
    height: 32px;
    border: 3px solid #e5e7eb;
    border-top: 3px solid #0E8D8D;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-text {
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Fast Touch Response Styles - Enhanced for Android */
.quantity-btn.pressed, .quantity-btn-footer.pressed, .cart-modal-quantity-btn.pressed, .cart-sidebar-quantity-btn.pressed {
    transform: scale(0.95);
    background: var(--accent-orange) !important;
    transition: all 0.1s ease;
}

.quantity-btn.tapped {
    animation: buttonPulse 0.15s ease;
}

.quantity-display.animate {
    animation: numberPop 0.3s ease;
    color: var(--accent-orange);
}

@keyframes buttonPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes numberPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Improve button responsiveness - Android optimized */
.quantity-btn, .quantity-btn-footer, .cart-modal-quantity-btn, .cart-sidebar-quantity-btn {
    touch-action: manipulation !important;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

/* Prevent double-tap zoom specifically on buttons */
button, input[type="button"], input[type="submit"], .btn, .add-to-cart-btn {
    touch-action: manipulation !important;
}

/* Force scroll enabled on main content areas */
@media (min-width: 769px) {
    body {
        overflow-y: scroll;
        /* Force scrollbar always visible */
    }
}

/* FIX per viewport molto stretti (iPhone 12 e simili) */
@media screen and (max-width: 350px) {
    /* Riduci font dei titoli prodotto */ .product-name {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
    }

    .product-description {
        font-size: 0.75rem !important;
    }

    .category-title {
        font-size: 1.3rem !important;
    }

    .category-subtitle {
        font-size: 0.8rem !important;
    }

    /* Riduci dimensioni icone prodotto */
    .product-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 2.5rem !important;
        display: none;
    }

    /* Ottimizza spacing del product card */
    .product-content {
        padding: 12px !important;
        gap: 8px !important;
    }

    /* Riduci dimensioni quantity controls */
    .quantity-controls {
        min-width: 80px !important;
    }

    .quantity-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 16px !important;
        min-width: unset !important;
    }

    .quantity-display {
        min-width: 20px !important;
        font-size: 14px !important;
    }

    /* Riduci pricing */
    .price-current {
        font-size: 1rem !important;
    }

    .price-original {
        font-size: 0.8rem !important;
    }

    /* Assicurati che il container principale non overflow */
    .products-grid {
        gap: 8px !important;
    }

    .main-content {
        padding: 0 8px !important;
    }

    .product-card {
        padding: 10px 0;
    }

    /* Hero section piu compatto */
    .festival-logo {
        font-size: 1.8rem !important;
    }

    /* Product tag piu piccolo */
    .product-tag {
        font-size: 0.7rem !important;
        padding: 2px 6px !important;
    }
}

/* Media query aggiuntiva per casi estremi */
/* @media screen and (max-width: 320px) {
    .product-content {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .product-right {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-top: 8px !important;
    }
    
    .quantity-controls {
        margin-left: auto !important;
    }
} */
/* Ensure village-outline spans are visible and inherit festival title style on all viewports */
.festival-logo .village-outline {
    display: inline;
    font-family: 'Monument Extended', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: inherit;
    /* keep same color as surrounding title */
    -webkit-text-fill-color: inherit;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1em;
    letter-spacing: 0.1em;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #FFFFFF;
    stroke: #FFFFFF;
    color: #D9D9D960;
}

/* Mobile-specific adjustments to ensure visibility and sizing */
@media (max-width: 768px) {
    .festival-logo .village-outline {
        display: inline !important;
        font-size: inherit !important;
        line-height: 1 !important;
    }
}

/* FAQ Accordion Styles */
.faq-accordion {
    /* max-width: 800px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Telegraf', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--surface-secondary);
}

.faq-question.active {
    background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--secondary-purple) 100%);
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: var(--accent-lime);
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

/* Local spacing: give FAQ answers breathing room under the question */
.faq-accordion .faq-answer {
    padding-top: 12px;
}

.faq-accordion .faq-answer .faq-content {
    margin-top: 6px;
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-accordion {
        margin: 1rem 1rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-content {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}
