    /* Hide regular footer columns on mobile */
    .footer-grid {
        display: none;
    }

    .footer-accordion {
        display: block;
    }
}

.footer-accordion-item {
    border-bottom: 1px solid #333;
}

.footer-accordion-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 15px 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}

.footer-accordion-toggle i {
    transition: transform 0.3s ease;
}

.footer-accordion-item.active .footer-accordion-toggle i {
    transform: rotate(180deg);
}

/* Footer accordion smoother transitions */
.footer-accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.35s ease;
    padding: 0;
}

.footer-accordion-item.active .footer-accordion-content {
    max-height: 2400px; /* Large enough to avoid clipping */
    opacity: 1;
    padding-bottom: 15px;
}

.footer-accordion-content p {
    color: #a0a0a0;
    font-size: 0.87rem;
    margin-bottom: 6px;
    line-height: 1.6;
    white-space: pre-line; /* Зберігає переноси рядків */
    word-wrap: break-word;
}

.footer-delivery-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    color: #a0a0a0;
    font-size: 0.85rem;
    line-height: 1.45;
}

.footer-delivery-line {
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    overflow-wrap: break-word;
}

.footer-delivery-list--accordion {
    font-size: 0.87rem;
}

/* Review Photo Button */
.review-photo-btn {
    border: none;
    background: none;
    padding: 0;
    cursor: zoom-in;
    width: 100%;
}

.review-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.review-card:hover .review-photo {
    transform: scale(1.02);
}

/* About Me Social Buttons Highlight (Permanent) */
.stat-link[href*="tiktok"] {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.stat-link[href*="instagram"] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(214, 36, 159, 0.3);
}

.stat-link[href*="telegram"],
.stat-link[href*="t.me"] {
    background: #0088cc;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 136, 204, 0.3);
}

/* Hover effect */
.stat-link:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Default style reset */
.stat-link {
    color: #fff;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Review Dialog Form */
.review-form-dialog {
    padding: 0;
    border: none;
    border-radius: 12px;
    background: transparent;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.review-form-dialog::backdrop {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(3px);
}

.dialog-content {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    color: var(--text-color);
}

.close-dialog {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Review Form Styling */
.review-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

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

.form-group label {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control {
    padding: 12px 15px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(153, 189, 3, 0.3);
}

/* Stylish File Input */
input[type="file"] {
    display: none;
}

.file-input-wrapper {
    position: relative;
}

.file-input-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #2a3a2a 0%, #1f2f1f 100%);
    border: 2px dashed var(--primary-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #b0b0b0;
    font-weight: 600;
    min-height: 80px;
}

.file-input-label:hover {
    background: linear-gradient(135deg, #3a4a3a 0%, #2f3f2f 100%);
    border-color: #aad404;
    color: var(--primary-color);
}

.file-input-label i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.file-input-label span {
    text-align: center;
}

.file-input-label .file-name {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

input[type="file"]:focus + .file-input-label {
    box-shadow: 0 0 12px rgba(153, 189, 3, 0.3);
}

/* Textarea Styling */
textarea.form-control {
    resize: vertical;
    min-height: 100px;
    font-family: 'Roboto', sans-serif;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviews-header .section-title {
    margin-bottom: 0;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
}

.review-rating {
    color: #FFD700;
}

/* Reviews Grid Layout */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.review-card {
    background: rgba(42, 42, 42, 0.5);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(153, 189, 3, 0.15);
}

/* Review Text Collapsible */
.review-text.collapsible {
    max-height: 100px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.review-text.collapsible.expanded {
    max-height: none;
}

.expand-review-btn {
    background: none;
    border: none;
    color: #99bd03;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px 0;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.expand-review-btn:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Reviews Section (Inline) */
.reviews-container {
    display: block;
    margin-bottom: 40px;
}

.reviews-container.open {
    display: block;
}

.reviews-content {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    margin-top: 20px;
}

.contact-bar-section {
    margin-top: 18px;
}

.contact-bar {
    width: 100%;
    border: 1px solid #99bd03;
    background: linear-gradient(135deg, #2a2a2a 0%, #222 100%);
    color: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-bar i {
    color: #99bd03;
}

.contact-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease;
    opacity: 0;
}

.contact-container.open,
.contact-container.contact-container--open {
    max-height: 1200px;
    opacity: 1;
    margin-bottom: 40px;
}

.contact-header {
    text-align: center;
    margin-bottom: 8px;
}

.contact-bar-title {
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #99bd03;
    display: block;
    padding: 10px 0;
}

.contact-content {
    background: var(--card-bg);
    padding: 26px 28px;
    border-radius: 12px;
    border: 1px solid #333;
    margin-top: 20px;
}

.contact-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 18px;
}


/* ===== SOCIAL CARDS ===== */
.social-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.social-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: var(--bg);
    background-size: cover;
    background-position: center top;
    border: 2px solid rgba(255,255,255,0.06);
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.social-card:hover {
    transform: translateY(-4px);
}

.social-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.08) 0%,
        rgba(0,0,0,0.18) 40%,
        rgba(0,0,0,0.72) 72%,
        rgba(0,0,0,0.88) 100%
    );
    z-index: 1;
}

/* Іконка — верхній лівий кут */
.social-card-top {
    position: relative;
    z-index: 2;
    padding: 12px 12px 0;
}

.social-card-icon {
    font-size: 1.4rem;
    color: #fff;
    background: rgba(0,0,0,0.35);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

/* Нижній блок з підписниками */
.social-card-inner {
    position: relative;
    z-index: 2;
    padding: 0 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.social-card-subs {
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.9);
    letter-spacing: -0.3px;
}

.social-card-subs-label {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-weight: 600;
    margin-bottom: 3px;
}

.social-card-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.88);
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.social-card-cta {
    font-size: 0.75rem;
    font-weight: 700;
    color: #99bd03;
    letter-spacing: 0.2px;
    transition: color 0.2s;
}

.social-card:hover .social-card-cta { color: #c5e040; }

/* Ховер бордер по мережі */
.social-card--telegram:hover  { border-color: #2AABEE; box-shadow: 0 10px 28px rgba(42,171,238,0.28); }
.social-card--tiktok:hover    { border-color: #ff0050; box-shadow: 0 10px 28px rgba(255,0,80,0.28); }
.social-card--instagram:hover { border-color: #e1306c; box-shadow: 0 10px 28px rgba(225,48,108,0.28); }

.social-card--telegram:hover  .social-card-icon { color: #2AABEE; }
.social-card--tiktok:hover    .social-card-icon { color: #ff0050; }
.social-card--instagram:hover .social-card-icon { color: #e1306c; }

/* Планшет */
@media (min-width: 601px) and (max-width: 900px) {
    .social-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .social-card { height: 190px; }
}

/* Мобілка */
@media (max-width: 600px) {
    .social-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .social-card {
        height: auto;
        aspect-ratio: 16 / 7;
        border-radius: 14px;
        width: 100%;
    }
}

.contact-highlights {
    color: #d6d6d6;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.contact-highlights p {
    margin: 4px 0;
}

.contact-bar-section {
    margin-top: 18px;
    margin-bottom: 18px;
}

.contact-content {
    background: var(--card-bg);
    padding: 26px 28px;
    border-radius: 12px;
    border: 1px solid #333;
}

.contact-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 18px;
}

.contact-btn {
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 0.97rem;
    font-weight: 600;
    border: 2px solid #d4a017;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #d4a017 0%, #e8b820 100%);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212,160,23,0.35);
}

/* About Me — social cards grid всередині секції */
.about-me-social-grid {
    margin: 20px 0 18px;
    width: 100%;
    overflow: hidden;
}

.about-me-social-grid .social-card {
    height: 200px;
    background-position: center center;
    background-size: cover;
    min-width: 0;
}

/* On mobile, stack social cards inside about-me vertically */
@media (max-width: 600px) {
    .about-me-social-grid.social-cards-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .about-me-social-grid .social-card {
        height: auto;
        aspect-ratio: 16 / 7;
        border-radius: 14px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-content {
        padding: 22px 16px;
    }
    .contact-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ===== BONUS PROGRESS BAR ===== */
.bonus-progress-wrap {
    background: linear-gradient(135deg, #1a1810 0%, #1e1c0e 60%, #222 100%);
    border: 2px solid rgba(212, 160, 23, 0.85);
    border-radius: 16px;
    padding: 18px 20px 16px;
    margin-bottom: 16px;
    position: relative;
    overflow-x: hidden;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow:
        0 0 8px  2px rgba(212,160,23,0.35),
        0 0 24px 4px rgba(212,160,23,0.20),
        0 0 48px 8px rgba(212,160,23,0.10),
        0 4px 24px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: bonus-wrap-glow 3s ease-in-out infinite alternate;
}

@keyframes bonus-wrap-glow {
    0% {
        box-shadow:
            0 0 8px  2px rgba(212,160,23,0.30),
            0 0 22px 4px rgba(212,160,23,0.16),
            0 0 42px 8px rgba(212,160,23,0.08),
            0 4px 24px rgba(0,0,0,0.5),
            inset 0 1px 0 rgba(255,255,255,0.05);
    }
    100% {
        box-shadow:
            0 0 12px 3px rgba(212,160,23,0.55),
            0 0 32px 6px rgba(212,160,23,0.32),
            0 0 60px 12px rgba(212,160,23,0.16),
            0 4px 28px rgba(0,0,0,0.5),
            inset 0 1px 0 rgba(255,255,255,0.05);
    }
}

.bonus-active-banner {
    background: linear-gradient(135deg, rgba(153,189,3,0.2) 0%, rgba(153,189,3,0.10) 100%);
    border: 1px solid rgba(153,189,3,0.6);
    border-radius: 10px;
    padding: 10px 16px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: #e8e8e8;
    text-align: center;
    line-height: 1.5;
    box-shadow: 0 0 10px rgba(153,189,3,0.12), inset 0 1px 0 rgba(255,255,255,0.04);
}

.bonus-active-banner .bonus-name {
    color: #99bd03;
    font-weight: 700;
}

.bonus-progress-label {
    font-size: 0.88rem;
    color: #bbb;
    margin-bottom: 10px;
    text-align: center;
}

.bonus-progress-label strong {
    color: #99bd03;
}

.bonus-bar-outer {
    background: #222;
    border: 1px solid rgba(153,189,3,0.2);
    border-radius: 99px;
    height: 14px;
    overflow: hidden;
    position: relative;
}

.bonus-bar-inner {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, #7a9a02 0%, #99bd03 60%, #b8d91a 100%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 4px;
    position: relative;
    box-shadow: 0 0 12px rgba(153,189,3,0.75), 0 0 22px rgba(184,217,26,0.35);
    overflow: hidden;
}

.bonus-bar-inner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 100%);
    border-radius: 99px;
}

/* Living shine: a soft light sweeps across the filled part only,
   clipped by the bar's own width (overflow: hidden) */
.bonus-bar-inner::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 58%;
    min-width: 52px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.18) 28%,
        rgba(255, 255, 255, 0.72) 48%,
        rgba(255, 255, 255, 0.92) 50%,
        rgba(255, 255, 255, 0.72) 52%,
        rgba(255, 255, 255, 0.18) 72%,
        transparent 100%);
    filter: blur(0.2px);
    transform: translateX(-110%);
    animation: bonus-bar-shine 2.8s ease-in-out infinite;
    border-radius: 99px;
    pointer-events: none;
}

@keyframes bonus-bar-shine {
    0%   { transform: translateX(-110%); }
    70%  { transform: translateX(260%); }
    100% { transform: translateX(260%); }
}

.bonus-bar-full {
    background: linear-gradient(90deg, #4CAF50 0%, #66BB6A 60%, #81C784 100%) !important;
    box-shadow: 0 0 10px rgba(76,175,80,0.6) !important;
    animation: bonus-pulse 1.5s ease-in-out 1;
}

/* Tier color variants */
.bonus-bar-tier-0 {
    /* 0 – 1000: ЗЕЛЕНИЙ */
    background: linear-gradient(90deg, #4a8500 0%, #6aac00 60%, #84d000 100%);
    box-shadow: 0 0 8px rgba(106,172,0,0.55);
}
.bonus-bar-tier-1 {
    /* 1000 – 2000: ФІОЛЕТОВИЙ */
    background: linear-gradient(90deg, #5a0a9e 0%, #8b3fc8 60%, #b06ee0 100%);
    box-shadow: 0 0 8px rgba(139,63,200,0.55);
    animation: bonus-pulse-purple 1.5s ease-in-out 1;
}
.bonus-bar-tier-2 {
    /* 2000 – 3000: ЗОЛОТИЙ */
    background: linear-gradient(90deg, #a06a00 0%, #d4a017 60%, #f0c030 100%);
    box-shadow: 0 0 8px rgba(212,160,23,0.55);
    animation: bonus-pulse-gold 1.5s ease-in-out 1;
}

@keyframes bonus-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(76,175,80,0.6); }
    50%  { box-shadow: 0 0 0 8px rgba(76,175,80,0); }
    100% { box-shadow: 0 0 0 0 rgba(76,175,80,0); }
}
@keyframes bonus-pulse-purple {
    0%   { box-shadow: 0 0 0 0 rgba(155,89,182,0.6); }
    50%  { box-shadow: 0 0 0 8px rgba(155,89,182,0); }
    100% { box-shadow: 0 0 0 0 rgba(155,89,182,0); }
}
@keyframes bonus-pulse-gold {
    0%   { box-shadow: 0 0 0 0 rgba(212,172,13,0.6); }
    50%  { box-shadow: 0 0 0 8px rgba(212,172,13,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,172,13,0); }
}

.bonus-tiers-hint {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
}

/* Gift tier chips under the bar — flow in a row, wrapping as whole chips */
.bonus-tiers-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.bonus-tiers-chips .bonus-tier-chip {
    white-space: nowrap;
    text-align: center;
    line-height: 1.4;
    padding: 6px 14px;
}

@media (max-width: 480px) {
    .bonus-tiers-chips,
    .cart-delivery-chips {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 6px;
    }

    .bonus-tiers-chips .bonus-tier-chip {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        white-space: normal;
        line-height: 1.35;
    }

    .cart-delivery-chips .cdi-chip {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        white-space: normal;
        max-width: 100%;
        line-height: 1.35;
    }
}

.bonus-tier-chip {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.78rem;
    color: #999;
    white-space: nowrap;
}

.bonus-tier-chip.tier-reached {
    border-color: rgba(153,189,3,0.4);
    color: #99bd03;
    background: rgba(153,189,3,0.07);
}

/* === Cart Raffle Banner — same style as bonus-progress-wrap === */
.cart-raffle-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    border: 1px solid rgba(153, 189, 3, 0.3);
    border-radius: 14px;
    padding: 14px 20px;
    margin-bottom: 0;
    font-size: 0.88rem;
    color: #bbb;
    text-align: left;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 6px;
    word-break: break-word;
}

.cart-raffle-item {
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    overflow-wrap: break-word;
}
.cart-raffle-banner b, .cart-raffle-banner strong {
    color: #99bd03;
    font-weight: 700;
}

.wheel-cart-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: linear-gradient(135deg, #1a1810 0%, #211d12 60%, #1b1b1b 100%);
    border: 1px solid rgba(212, 160, 23, 0.35);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.wheel-cart-banner--discount {
    border-color: rgba(155, 89, 182, 0.5);
    box-shadow: 0 8px 24px rgba(91, 44, 111, 0.18);
}

.wheel-cart-banner--gift {
    border-color: rgba(212, 160, 23, 0.45);
}

.wheel-cart-banner__content {
    min-width: 0;
    flex: 1;
}

.wheel-cart-banner__title {
    color: #f3f1e6;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.45;
}

.wheel-cart-banner__title strong {
    color: #d4a017;
}

.wheel-cart-banner--discount .wheel-cart-banner__title strong {
    color: #c38cff;
}

.wheel-cart-banner__text {
    color: #b8b3a3;
    font-size: 0.84rem;
    margin-top: 4px;
    line-height: 1.45;
}

.wheel-cart-banner__timer {
    flex-shrink: 0;
    min-width: 118px;
    text-align: center;
    border-radius: 12px;
    padding: 10px 12px;
    background: linear-gradient(180deg, rgba(190, 30, 45, 0.18) 0%, rgba(120, 13, 23, 0.32) 100%);
    border: 1px solid rgba(255, 90, 90, 0.45);
    box-shadow: 0 0 14px rgba(255, 76, 76, 0.16);
}

.wheel-cart-banner__timer-label {
    display: block;
    color: #ffb3b3;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wheel-cart-banner__timer-value {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

/* Restored old wheel timer design */
.wheel-gold-timer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 2px solid #f3c447;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 219, 120, 0.25) 0%, rgba(255, 219, 120, 0) 42%),
        linear-gradient(180deg, #1f1a0f 0%, #0f0c06 100%);
    color: #ffd86f;
    font-family: 'Courier New', monospace;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(255, 204, 85, 0.5);
    box-shadow:
        inset 0 0 0 1px rgba(255, 236, 160, 0.32),
        0 0 12px rgba(255, 189, 62, 0.45),
        0 0 26px rgba(255, 168, 24, 0.28);
}

.wheel-gold-timer::before {
    content: '⏰';
    font-size: 1em;
    line-height: 1;
    filter: drop-shadow(0 0 6px rgba(255, 198, 92, 0.6));
}

.wheel-gold-timer.warning {
    border-color: #ff9f55;
    color: #ffd0a8;
    box-shadow:
        inset 0 0 0 1px rgba(255, 170, 110, 0.3),
        0 0 14px rgba(255, 108, 61, 0.45),
        0 0 26px rgba(255, 94, 46, 0.35);
}

.wheel-gold-timer--compact {
    gap: 0;
    padding: 4px 10px;
    min-width: 68px;
    font-size: 0.72rem;
    border-width: 1.5px;
    letter-spacing: 0.8px;
}

.wheel-gold-timer--compact::before {
    content: none;
}

.wheel-gold-timer--modal {
    margin: 10px auto 0;
    width: fit-content;
    min-width: 172px;
    font-size: 1.28rem;
    justify-content: center;
    text-align: center;
}

.wheel-gold-timer--cart {
    min-width: 158px;
    font-size: 1.34rem;
}

@media (max-width: 768px) {
    .wheel-gold-timer--cart,
    .wheel-gold-timer--modal {
        min-width: 136px;
        font-size: 1.08rem;
    }
}

/* === Cart Delivery Info — horizontal chips === */
.cart-delivery-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.cdi-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 500;
    border: 1px solid transparent;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
}

.cdi-chip-green  { background: rgba(76,175,80,0.1);  border-color: rgba(76,175,80,0.3);  color: #a5d6a7; }
.cdi-chip-yellow { background: rgba(255,193,7,0.1);  border-color: rgba(255,193,7,0.3);  color: #fff176; }
.cdi-chip-blue   { background: rgba(33,150,243,0.1); border-color: rgba(33,150,243,0.3); color: #90caf9; }
.cdi-chip-teal   { background: rgba(0,188,212,0.1);  border-color: rgba(0,188,212,0.3);  color: #80deea; }

/* === Bonus tiers — horizontal chips under bar === */
.bonus-tiers-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    justify-content: center;
}

.bonus-tier-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #252525;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.76rem;
    color: #888;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.bonus-tier-chip.tier-reached {
    background: rgba(153,189,3,0.1);
    border-color: rgba(153,189,3,0.45);
    color: #c8dc60;
}

/* === Bonus tiers list (vertical — legacy, keep for compat) === */
.bonus-tiers-list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bonus-tier-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 0.86rem;
    color: #aaa;
    transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.bonus-tier-row.tier-row-reached {
    background: rgba(153,189,3,0.08);
    border-color: rgba(153,189,3,0.45);
    color: #d8e88a;
}

.bonus-tier-row.tier-row-reached .bonus-tier-text strong {
    color: #99bd03;
}

.bonus-tier-icon { font-size: 1rem; flex-shrink: 0; }
.bonus-tier-text { line-height: 1.4; }
.bonus-tier-text strong { color: #ccc; font-weight: 700; }

@media (max-width: 480px) {
    .bonus-progress-wrap {
        padding: 12px 12px 10px;
        border-radius: 12px;
        margin-bottom: 10px;
    }
    .bonus-active-banner {
        font-size: 0.82rem;
        padding: 8px 12px;
        border-radius: 8px;
    }
    .bonus-progress-label {
        font-size: 0.82rem;
        margin-bottom: 8px;
    }
    .bonus-bar-outer {
        height: 12px;
    }
    .bonus-tier-chip {
        font-size: 0.72rem;
        padding: 3px 9px;
    }
    .bonus-tier-row {
        font-size: 0.82rem;
        padding: 7px 12px;
    }
    .cart-raffle-banner {
        font-size: 0.82rem;
        padding: 10px 12px;
        border-radius: 10px;
    }
    .wheel-cart-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px 14px;
    }
    .wheel-cart-banner__title {
        font-size: 0.9rem;
        text-align: center;
    }
    .wheel-cart-banner__text {
        font-size: 0.8rem;
        text-align: center;
    }
    .wheel-cart-banner__timer {
        min-width: 0;
        width: 100%;
    }
    .cdi-chip { font-size: 0.72rem; padding: 3px 9px; }
}

/* ===== GIVEAWAY PROMO CODE SECTION ===== */
.giveaway-section {
    padding: 48px 20px;
}

.giveaway-inner {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #141414 0%, #1c1c1c 100%);
    border: 2px solid #d4a017;
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 0 32px rgba(212, 160, 23, 0.18), 0 4px 24px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.giveaway-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    box-shadow: inset 0 0 40px rgba(212, 160, 23, 0.07);
    pointer-events: none;
}

.giveaway-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: giveaway-pulse 2s ease-in-out infinite;
}

@keyframes giveaway-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

.giveaway-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #d4a017;
    margin: 0 0 10px;
}

.giveaway-desc {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 22px;
}

.btn-giveaway {
    display: inline-block;
    background: linear-gradient(135deg, #d4a017 0%, #f0c040 50%, #d4a017 100%);
    color: #111;
    font-weight: 800;
    font-size: 1.05rem;
    border: none;
    border-radius: 40px;
    padding: 14px 36px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(212,160,23,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
}

.btn-giveaway:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212,160,23,0.55);
}

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

@media (max-width: 480px) {
    .giveaway-inner {
        padding: 24px 16px;
    }
    .giveaway-heading {
        font-size: 1.1rem;
    }
}

/* ===== CART MOBILE CARDS ===== */
.cart-table--desktop { display: table; }
.cart-cards--mobile  { display: none;  }

@media (max-width: 768px) {
    .cart-table--desktop { display: none !important; }
    .cart-cards--mobile  { display: block; }
    .cart-grid { grid-template-columns: 1fr !important; gap: 12px; overflow-x: hidden; max-width: 100%; }
    .cart-summary { position: static !important; top: auto !important; }
    .cart-section { padding: 12px 8px !important; overflow-x: hidden; max-width: 100%; }
    .cart-title { font-size: 1.35rem !important; margin-bottom: 10px !important; }
    body { overflow-x: hidden; max-width: 100vw; }
    html { overflow-x: clip; }
}

.cart-card {
    background: #232323;
    border: 1px solid #2e2e2e;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    transition: border-color .2s;
}
.cart-card:hover { border-color: #3a4a3a; }
.cart-card--bonus {
    background: rgba(153,189,3,.05);
    border-color: rgba(153,189,3,.35);
}
.cart-card__top {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 10px;
    padding: 12px 12px 8px;
    min-width: 0;
}

.cart-card--bonus .cart-card__top {
    grid-template-columns: 54px minmax(0, 1fr);
}
.cart-card__img {
    width: 54px; height: 54px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
    display: flex; align-items: center; justify-content: center;
}
.cart-card__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-card__img-placeholder { font-size: 1.4rem; }
.cart-card__info { flex: 1; min-width: 0; }
.cart-card__name {
    font-size: .9rem; font-weight: 600; color: #f0f0f0;
    line-height: 1.35; margin-bottom: 5px; word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
}
.cart-card__bonus-badge {
    display: inline-block; background: #99bd03; color: #111;
    font-size: .65rem; font-weight: 700; border-radius: 4px;
    padding: 1px 5px; margin-left: 5px; vertical-align: middle;
}
.cart-card__unit-price { font-size: .82rem; color: #888; }
.cart-card__price-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.cart-card__price { font-weight: 700; font-size: .9rem; }
.cart-card__qty-label, .cart-card__auto-label { font-size: .8rem; color: #888; }
.cart-card__remove {
    background: rgba(255,107,107,.15);
    border: 1px solid rgba(255,107,107,.3);
    color: #ff8888;
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: .9rem; flex-shrink: 0;
    transition: background .2s; padding: 0;
    position: static;
}
.cart-card__remove:hover { background: rgba(255,107,107,.3); }
.cart-card__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 9px 12px 12px;
    border-top: 1px solid #2a2a2a;
    gap: 10px;
}
.cart-card__total {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    text-align: right;
}
.cart-card .cart-quantity-control {
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    flex-wrap: nowrap;
}
.cart-card .cart-qty-btn {
    width: 34px; height: 34px; font-size: 1.1rem; border-radius: 8px;
    padding: 0; display: flex; align-items: center; justify-content: center;
}
.cart-card .qty-input {
    width: 40px; text-align: center; font-size: .9rem; padding: 6px 4px;
}

@media (max-width: 480px) {
    .cart-card {
        border-radius: 10px;
    }

    .cart-card__top {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        column-gap: 8px;
        padding: 10px 10px 7px;
    }

    .cart-card--bonus .cart-card__top {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .cart-card__name {
        font-size: 0.84rem;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .cart-card__remove {
        width: 30px;
        height: 30px;
        border-radius: 7px;
        font-size: 0.82rem;
    }

    .cart-card__bottom {
        grid-template-columns: 1fr;
        justify-items: start;
        padding: 8px 10px 10px;
        gap: 8px;
    }

    .cart-card__qty {
        width: 100%;
    }

    .cart-card .cart-qty-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .cart-card .qty-input {
        width: 36px;
        font-size: 0.84rem;
    }

    .cart-card__total {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .cart-cards--mobile .btn-remove,
    .cart-cards--mobile .cart-card__remove {
        position: static !important;
        top: auto !important;
        right: auto !important;
        width: 30px !important;
        height: 30px !important;
        border-radius: 8px !important;
        padding: 0 !important;
        flex-shrink: 0;
    }

    .cart-card {
        margin-bottom: 12px;
    }

    .cart-card__top {
        align-items: center;
        padding: 12px;
        gap: 9px;
    }

    .cart-card__info {
        padding-right: 2px;
        min-width: 0;
    }

    .cart-card__bottom {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 10px;
        padding: 10px 12px 12px;
    }

    .cart-card__qty {
        min-width: 0;
    }

    .cart-card__total {
        margin-left: 0;
        text-align: right;
        font-size: 1rem;
    }

    .cart-card .cart-quantity-control {
        min-height: 34px;
    }

    .cart-card__price-row {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .cart-card__top {
        padding: 10px;
        gap: 8px;
    }

    .cart-card__name {
        font-size: 0.86rem;
        line-height: 1.32;
    }

    .cart-card__bottom {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 8px;
        padding: 8px 10px 10px;
    }

    .cart-card__total {
        text-align: left;
        font-size: 0.95rem;
    }

    .summary-row {
        gap: 8px;
        margin-bottom: 11px;
    }

    .cart-cards--mobile .btn-remove,
    .cart-cards--mobile .cart-card__remove {
        width: 28px !important;
        height: 28px !important;
        border-radius: 7px !important;
    }
}

/* ====== FORTUNE WHEEL ====== */
#wheel-float-btn {
    position: fixed;
    bottom: 80px;
    right: 18px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #33280f 0%, #120f09 72%);
    border: 2px solid #f3c447;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1200;
    box-shadow: 0 0 16px rgba(255, 189, 62, 0.45), 0 8px 18px rgba(0,0,0,0.55);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: wheel-float-pulse 2.5s ease-in-out infinite;
}
#wheel-float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 24px rgba(255, 202, 81, 0.75), 0 10px 20px rgba(0,0,0,0.6);
}

/* ===== FINAL MOBILE CART FIX (priority overrides) ===== */
@media (max-width: 768px) {
    .cart-section {
        padding: 12px 8px !important;
        overflow-x: hidden !important;
    }

    .cart-grid {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }

    .cart-cards--mobile {
        display: grid;
        gap: 10px;
        overflow-x: hidden !important;
        max-width: 100%;
    }

    .cart-cards--mobile .cart-card {
        margin: 0 !important;
        border-radius: 10px !important;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cart-cards--mobile .cart-card__top {
        display: grid !important;
        grid-template-columns: 48px minmax(0, 1fr) 28px !important;
        align-items: flex-start !important;
        column-gap: 8px;
        padding: 9px !important;
        min-width: 0;
        width: 100%;
        overflow: hidden;
    }

    .cart-cards--mobile .cart-card--bonus .cart-card__top {
        grid-template-columns: 48px minmax(0, 1fr) !important;
    }

    .cart-cards--mobile .cart-card__img {
        width: 48px !important;
        height: 48px !important;
        flex-shrink: 0;
        border-radius: 7px;
    }

    .cart-cards--mobile .cart-card__info {
        min-width: 0;
        overflow: hidden;
    }

    .cart-cards--mobile .cart-card__name {
        font-size: 0.8rem;
        line-height: 1.25;
        margin-bottom: 2px;
        word-break: break-word;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .cart-cards--mobile .cart-card__unit-price {
        font-size: 0.7rem;
        color: #777;
        margin-bottom: 2px;
    }

    .cart-cards--mobile .cart-card__price-row {
        flex-wrap: wrap;
        gap: 4px;
        margin-top: 2px;
    }

    .cart-cards--mobile .cart-card__price {
        font-size: 0.8rem;
    }

    .cart-cards--mobile .cart-card__qty-label,
    .cart-cards--mobile .cart-card__auto-label {
        font-size: 0.65rem;
    }

    .cart-cards--mobile .cart-card__bottom {
        display: grid !important;
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 6px;
        padding: 7px 9px 9px;
        border-top: 1px solid #2a2a2a;
        width: 100%;
        overflow: hidden;
    }

    .cart-cards--mobile .cart-card__qty {
        min-width: 0;
        width: 100%;
    }

    .cart-cards--mobile .cart-quantity-control {
        width: 100%;
        max-width: 100%;
        display: flex;
        gap: 4px;
        flex-wrap: nowrap;
    }

    .cart-cards--mobile .cart-qty-btn {
        flex-shrink: 0;
        min-width: 26px !important;
        width: 26px !important;
        height: 26px !important;
        padding: 0 !important;
        font-size: 0.9rem !important;
        border-radius: 6px !important;
    }

    .cart-cards--mobile .qty-input {
        flex-shrink: 0;
        width: 34px !important;
        height: 26px;
        padding: 3px 0 !important;
        font-size: 0.8rem !important;
        text-align: center;
    }

    .cart-cards--mobile .cart-card__total {
        margin: 0;
        text-align: left;
        font-size: 0.9rem;
        white-space: nowrap;
        width: 100%;
    }

    .cart-cards--mobile .btn-remove,
    .cart-cards--mobile .cart-card__remove {
        position: static !important;
        top: auto !important;
        right: auto !important;
        width: 28px !important;
        height: 28px !important;
        border-radius: 6px !important;
        padding: 0 !important;
        margin: 0 !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 0.8rem;
    }

    .summary-card {
        padding: 12px !important;
        border-radius: 10px;
    }

    .summary-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .summary-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 6px;
        margin-bottom: 8px;
        font-size: 0.85rem;
    }

    .summary-row > span:first-child {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .summary-row > span:last-child {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .summary-total {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cart-section {
        padding: 10px 6px !important;
        overflow-x: hidden !important;
    }

    .cart-title {
        font-size: 1.15rem !important;
        margin-bottom: 8px !important;
    }

    .cart-grid {
        overflow-x: hidden !important;
    }

    .cart-cards--mobile {
        gap: 8px;
        overflow-x: hidden !important;
    }

    .cart-cards--mobile .cart-card {
        margin: 0 !important;
        border-radius: 9px !important;
    }

    .cart-cards--mobile .cart-card__top {
        grid-template-columns: 44px minmax(0, 1fr) 26px !important;
        padding: 8px !important;
        column-gap: 7px;
    }

    .cart-cards--mobile .cart-card--bonus .cart-card__top {
        grid-template-columns: 44px minmax(0, 1fr) !important;
    }

    .cart-cards--mobile .cart-card__img {
        width: 44px !important;
        height: 44px !important;
        border-radius: 6px;
    }

    .cart-cards--mobile .cart-card__name {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 1px;
    }

    .cart-cards--mobile .cart-card__unit-price {
        font-size: 0.65rem;
    }

    .cart-cards--mobile .cart-card__price-row {
        gap: 3px;
        margin-top: 1px;
    }

    .cart-cards--mobile .cart-card__price {
        font-size: 0.75rem;
    }

    .cart-cards--mobile .cart-card__qty-label,
    .cart-cards--mobile .cart-card__auto-label {
        font-size: 0.6rem;
    }

    .cart-cards--mobile .cart-card__bottom {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 6px 8px 8px;
    }

    .cart-cards--mobile .cart-quantity-control {
        gap: 3px;
    }

    .cart-cards--mobile .cart-qty-btn {
        min-width: 24px !important;
        width: 24px !important;
        height: 24px !important;
        font-size: 0.8rem !important;
        border-radius: 5px !important;
    }

    .cart-cards--mobile .qty-input {
        width: 32px !important;
        height: 24px;
        padding: 2px 0 !important;
        font-size: 0.75rem !important;
    }

    .cart-cards--mobile .cart-card__total {
        font-size: 0.85rem;
    }

    .cart-cards--mobile .btn-remove,
    .cart-cards--mobile .cart-card__remove {
        width: 26px !important;
        height: 26px !important;
        border-radius: 5px !important;
        font-size: 0.75rem;
    }

    .summary-card {
        padding: 10px !important;
    }

    .summary-card h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .summary-row {
        font-size: 0.8rem;
        margin-bottom: 6px;
        gap: 5px;
    }

    .summary-total {
        font-size: 0.95rem;
    }

    .summary-card .btn {
        margin-top: 10px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .summary-card .btn-link {
        margin-top: 6px;
        font-size: 0.8rem;
    }
}

.wheel-float-icon {
    font-size: 1.9rem;
    line-height: 1;
    filter: drop-shadow(0 0 6px rgba(255, 203, 87, 0.6));
}
.wheel-float-timer {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    white-space: nowrap;
    line-height: 1.1;
}
@keyframes wheel-float-pulse {
    0%, 100% { box-shadow: 0 0 18px rgba(212,160,23,0.45), 0 4px 12px rgba(0,0,0,0.5); }
    50% { box-shadow: 0 0 32px rgba(212,160,23,0.75), 0 4px 18px rgba(0,0,0,0.55); }
}

.wheel-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    backdrop-filter: blur(4px);
}
.wheel-modal {
    background: linear-gradient(160deg, #111 0%, #1a2a10 50%, #111 100%);
    border: 2px solid #d4a017;
    border-radius: 20px;
    padding: 28px 20px 24px;
    max-width: 360px;
    width: 100%;
    position: relative;
    box-shadow: 0 0 40px rgba(212,160,23,0.3), 0 8px 32px rgba(0,0,0,0.7);
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
}
.wheel-close-btn {
    position: absolute;
    top: 12px; right: 14px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.3rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.wheel-close-btn:hover { color: #fff; }
.wheel-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #d4a017;
    margin: 0 0 6px;
}
.wheel-subtitle {
    color: #bbb;
    font-size: 0.9rem;
    margin: 0 0 14px;
}
.wheel-canvas-wrap {
    position: relative;
    display: inline-block;
    margin: 4px auto 14px;
}
.wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.6rem;
    color: #d4a017;
    z-index: 2;
    line-height: 1;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
#wheelCanvas {
    border-radius: 50%;
    border: 3px solid #d4a017;
    box-shadow: 0 0 20px rgba(212,160,23,0.3);
    display: block;
}
.btn-wheel-spin {
    background: linear-gradient(90deg, #1a3a1a 0%, #d4a017 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 13px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 14px rgba(212,160,23,0.25);
    width: 100%;
    margin-top: 4px;
}
.btn-wheel-spin:hover:not(:disabled) {
    background: linear-gradient(90deg, #d4a017 0%, #1a3a1a 100%);
    box-shadow: 0 4px 20px rgba(212,160,23,0.45);
    transform: translateY(-1px);
}
.btn-wheel-spin:disabled { opacity: 0.5; cursor: not-allowed; }
.wheel-result-block, .wheel-already-block {
    animation: fadeInUp 0.4s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.wheel-result-emoji { font-size: 2.5rem; margin-bottom: 6px; }
.wheel-result-title { color: #d4a017; font-size: 1.1rem; margin: 0 0 6px; }
.wheel-result-prize {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    background: rgba(212,160,23,0.12);
    border: 1.5px solid #d4a017;
    border-radius: 12px;
    padding: 10px 18px;
    display: inline-block;
    margin: 4px 0;
}
.wheel-promo-hint { color: #bbb; font-size: 0.88rem; margin: 0 0 6px; }
.wheel-promo-hint-small { color: #888; font-size: 0.8rem; margin-top: 6px; }
.wheel-gift-hint { color: #bbb; font-size: 0.88rem; margin: 0; line-height: 1.5; }
.wheel-promo-code-row {
    display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.wheel-promo-code {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 5px;
    color: #d4a017;
    font-family: monospace;
    background: rgba(212,160,23,0.08);
    border: 2px solid #d4a017;
    border-radius: 10px;
    padding: 8px 20px;
}
.wheel-copy-btn {
    background: rgba(212,160,23,0.15);
    border: 1.5px solid #d4a017;
    color: #d4a017;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.wheel-copy-btn:hover { background: rgba(212,160,23,0.3); }
.wheel-cart-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 480px) {
    .wheel-modal { padding: 22px 14px 20px; }
    #wheelCanvas { width: 260px; height: 260px; }
    .wheel-promo-code { font-size: 1.25rem; letter-spacing: 3px; padding: 7px 14px; }
    .wheel-float-timer { bottom: -17px; }
}
/* ====== END FORTUNE WHEEL ====== */
