@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700;800&display=swap');

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette — Fiery Cosmic Theme */
    --primary-bg: #0F0A05;
    --secondary-bg: rgba(15, 10, 5, 0.97);
    --card-bg: rgba(255, 80, 0, 0.04);
    --accent-purple: #FF4500;
    --accent-pink: #FF6B00;
    --accent-blue: #FFBB00;
    --text-primary: #F0DCC8;
    --text-secondary: rgba(160, 120, 88, 0.82);
    --border-color: rgba(255, 100, 0, 0.12);

    /* Gradients */
    --gradient-primary: radial-gradient(circle at 12% 8%, rgba(107,26,26,0.28), transparent 28%), radial-gradient(circle at 84% 12%, rgba(255,69,0,0.12), transparent 24%), radial-gradient(circle at 78% 88%, rgba(255,187,0,0.05), transparent 18%), linear-gradient(180deg, #120907 0%, #0f0a05 42%, #0d0905 100%);
    --gradient-accent: linear-gradient(135deg, #FF4500, #FF8C00);
    --gradient-success: linear-gradient(to right, #00b09b, #96c93d);

    /* Glass */
    --glass-bg: rgba(255, 80, 0, 0.04);
    --glass-border: 1px solid rgba(255, 100, 0, 0.12);
    --backdrop-blur: blur(14px);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.22);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.55);
    --shadow-glow: 0 0 20px rgba(255, 69, 0, 0.28);

    /* Typography */
    --font-primary: 'Manrope', 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Manrope', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    font-size: 15px;
    background: var(--gradient-primary);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================
   HEADER
   ========================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 10, 5, 0.92);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border-bottom: var(--glass-border);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-image {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 100, 0, 0.4));
}

.logo-image:hover { transform: scale(1.05); }

.logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown > .nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.nav-dropdown-trigger {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    cursor: pointer;
}

.nav-dropdown > .nav-btn::after {
    content: '';
    width: 0.48rem;
    height: 0.48rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.75;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-dropdown.is-open > .nav-btn::after {
    transform: rotate(225deg) translateY(-1px);
    opacity: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    min-width: 220px;
    padding: 0.7rem;
    display: grid;
    gap: 0.35rem;
    background: rgba(9, 22, 31, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 1.2rem;
    width: 14px;
    height: 14px;
    background: rgba(9, 22, 31, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 44px;
    padding: 0.72rem 0.95rem;
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    background: transparent;
    border: 1px solid transparent;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: rgba(255, 100, 0, 0.09);
    border-color: rgba(255, 100, 0, 0.22);
    color: #fff;
    transform: translateX(2px);
}

.nav-dropdown-menu a:first-child {
    color: var(--accent-pink);
}

.nav-btn, a.nav-btn {
    padding: 0.55rem 1.1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 0.845rem;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.nav-btn:hover {
    color: var(--text-primary);
    border-color: rgba(255, 69, 0, 0.5);
    background: rgba(255, 100, 0, 0.07);
}

.nav-btn.active {
    background: var(--gradient-accent);
    color: #fff;
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(255, 69, 0, 0.28);
}

.nav-btn.nav-optional-link,
a.nav-btn.nav-optional-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #d8b4fe;
    font-weight: 700;
    border-color: rgba(167, 139, 250, 0.32);
    background:
        linear-gradient(135deg, rgba(88, 28, 135, 0.2), rgba(30, 41, 59, 0.12)),
        rgba(15, 23, 42, 0.52);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-btn.nav-optional-link:hover,
a.nav-btn.nav-optional-link:hover {
    color: #f5f3ff;
    border-color: rgba(192, 132, 252, 0.48);
    background:
        linear-gradient(135deg, rgba(109, 40, 217, 0.28), rgba(56, 189, 248, 0.14)),
        rgba(15, 23, 42, 0.68);
}

.header-actions--utility {
    min-width: max-content;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.55rem 0.95rem;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cart-icon:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-pink);
}

.cart-icon-glyph {
    font-size: 0.92rem;
    line-height: 1;
    opacity: 0.9;
}

.cart-icon-label {
    font-size: 0.96rem;
    line-height: 1;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.45rem;
    border-radius: 10px;
    min-width: 20px;
    line-height: 1.1;
    text-align: center;
    animation: pulse 2s infinite;
}

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

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    padding: 6rem 0 4rem;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.14) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 2rem;
    align-items: center;
}

.hero-copy {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 100, 0, 0.09);
    border: 1px solid rgba(255, 100, 0, 0.28);
    color: var(--accent-pink);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #FF4500 55%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 0.875rem 2rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-glow);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.55);
}

.btn-hero-secondary {
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.btn-hero-secondary:hover {
    border-color: var(--accent-pink);
    background: rgba(255, 100, 0, 0.09);
    transform: translateY(-3px);
}

.hero-socials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.hero-social-link {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    border: var(--glass-border);
    background: rgba(255,255,255,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-social-link span {
    font-weight: 700;
}

.hero-social-link small {
    color: var(--text-secondary);
    font-size: 0.78rem;
}

.hero-social-link:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 69, 0, 0.5);
    box-shadow: var(--shadow-glow);
}

.hero-social-link.is-disabled {
    opacity: 0.7;
}

.hero-social-link.is-disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border-color);
}

.hero-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.hero-chip:hover {
    border-color: rgba(255, 69, 0, 0.5);
    background: rgba(255, 69, 0, 0.14);
    transform: translateY(-2px);
}

.hero-mascot-wrap {
    position: relative;
    z-index: 1;
}

.hero-mascot-card {
    position: relative;
    min-height: 520px;
    border-radius: 32px;
    border: var(--glass-border);
    background:
        radial-gradient(circle at top, rgba(255,255,255,0.22), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.hero-mascot-glow {
    position: absolute;
    inset: auto 8% 6%;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(38,208,206,0.22), transparent 70%);
    filter: blur(20px);
}

.hero-mascot-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    max-height: 560px;
    object-fit: contain;
    display: none;
}

.hero-mascot-image.visible {
    display: block;
}

.hero-mascot-placeholder {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    max-width: 320px;
}

.hero-mascot-emoji {
    font-size: 5rem;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

.hero-mascot-text {
    font-size: 1.2rem;
    font-weight: 800;
}

.hero-mascot-note {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

/* =========================================
   COLLECTIONS SECTION (index)
   ========================================= */
.collections-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #fff 0%, #FF6B00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.collection-card {
    background: var(--card-bg);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: block;
    color: var(--text-primary);
}

.collection-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-pink);
    background: rgba(255, 255, 255, 0.08);
}

.collection-media {
    width: 100%;
    min-height: 84px;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-media.is-image img {
    width: auto;
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.22));
}

.collection-media.is-icon span {
    font-size: 3rem;
    line-height: 1;
    display: inline-block;
}

.collection-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.collection-desc { font-size: 0.9rem; color: var(--text-secondary); }

.homepage-card-editor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.homepage-card-editor-item {
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 18, 26, 0.26);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.homepage-card-editor-item h4 {
    margin: 0;
    font-size: 1rem;
}

.homepage-card-preview {
    min-height: 86px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.homepage-card-preview img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
}

.homepage-card-preview span {
    font-size: 2.5rem;
    line-height: 1;
}

.homepage-card-clear {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* =========================================
   SERIES SUB-NAVIGATION
   ========================================= */
.series-nav-section {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: var(--glass-border);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.series-nav {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.series-btn {
    padding: 0.6rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.series-btn:hover {
    color: var(--text-primary);
    border-color: var(--accent-pink);
    background: rgba(255, 100, 0, 0.09);
    transform: translateY(-2px);
}

.series-btn.active {
    background: var(--gradient-accent);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

/* =========================================
   VERSION SUB-FILTER
   ========================================= */
.version-nav-section {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: var(--glass-border);
    animation: slideDown 0.3s ease;
}

.version-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.version-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.version-select {
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    min-width: 200px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2326d0ce' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.version-select:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(255, 100, 0, 0.12);
}

.version-select option {
    background: #0F0A05;
    color: white;
}

/* =========================================
   SEARCH & FILTER SECTION
   ========================================= */
.search-filter-section {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: var(--glass-border);
}

.search-filter-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.search-box { width: 100%; }

.search-input {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    backdrop-filter: var(--backdrop-blur);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(255, 100, 0, 0.09);
    background: rgba(255, 255, 255, 0.08);
}

.search-input::placeholder { color: var(--text-secondary); }

.quick-filters {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.filter-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.filter-btn {
    padding: 0.45rem 0.9rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: var(--accent-pink);
    background: rgba(255, 100, 0, 0.09);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-accent);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.sort-select {
    padding: 0.45rem 0.9rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.sort-select:focus {
    outline: none;
    border-color: var(--accent-pink);
}

.sort-select option { background: #0F0A05; color: white; }

.clear-filters-btn {
    padding: 0.45rem 1rem;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.3);
    color: #f472b6;
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.clear-filters-btn:hover {
    background: rgba(244, 63, 94, 0.2);
    border-color: #f472b6;
    transform: translateY(-2px);
}

.results-counter {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
}

.results-counter strong {
    color: var(--accent-pink);
    font-weight: 700;
}

/* =========================================
   LOADING SKELETON
   ========================================= */
@keyframes shimmerSkeleton {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    border: var(--glass-border);
}

.skeleton-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%;
    animation: shimmerSkeleton 1.5s infinite;
}

.skeleton-info { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

.skeleton-text {
    height: 14px;
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%;
    animation: shimmerSkeleton 1.5s infinite;
    border-radius: 4px;
}

.skeleton-text.title { height: 22px; width: 80%; }
.skeleton-text.description { width: 100%; }
.skeleton-text.price { width: 40%; height: 20px; }

/* =========================================
   PRODUCTS SECTION
   ========================================= */
.products-section { padding: 3rem 0 5rem; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.no-products .no-icon { font-size: 4rem; margin-bottom: 1rem; }
.no-products h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--text-primary); }

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: var(--glass-border);
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    animation: fadeInUp 0.5s ease-out both;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 100, 0, 0.38);
}

.product-card.out-of-stock { opacity: 0.65; }

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
    background: rgba(255,255,255,0.03);
}

.product-image-placeholder {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    font-size: 4rem;
    color: rgba(255,255,255,0.2);
}

.product-card:hover .product-image { transform: scale(1.08); }

.product-info { padding: 1.25rem; }

.product-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.product-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.65rem;
    background: var(--gradient-accent);
    color: white;
    border-radius: 5px;
}

.rarity-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.65rem;
    border-radius: 5px;
    color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.rarity-ssr {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.55);
    animation: shimmerGold 2.5s infinite;
}

@keyframes shimmerGold {
    0%, 100% { box-shadow: 0 0 12px rgba(255, 215, 0, 0.55); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.9); }
}

.rarity-sr {
    background: linear-gradient(135deg, #a855f7 0%, #d946ef 100%);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.rarity-r {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.rarity-ur {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.45);
}

.product-meta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.series-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.15rem 0;
}

.stock-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.15rem 0.5rem;
    background: rgba(255,255,255,0.06);
    border-radius: 5px;
}

.stock-low { color: #f87171; background: rgba(231, 76, 60, 0.1); }
.stock-out { color: #888; text-decoration: line-through; }

.product-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.product-description {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.01em;
}

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

.product-price {
    font-size: 1.15rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.add-to-cart-btn {
    padding: 0.6rem 1.25rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.28);
    white-space: nowrap;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.5);
}

.add-to-cart-btn:disabled {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* =========================================
   CART MODAL
   ========================================= */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active { display: flex; }

.modal-content {
    background: rgba(15, 10, 5, 0.97);
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    max-height: 85vh;
    overflow: hidden;
    border: var(--glass-border);
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.modal-header h3 { font-size: 1.3rem; font-weight: 700; }

.close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.4rem;
    border-radius: 6px;
    line-height: 1;
}

.close-btn:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.empty-cart {
    text-align: center;
    color: var(--text-secondary);
    padding: 3rem 1rem;
}

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

.cart-item {
    display: flex;
    gap: 0.875rem;
    padding: 0.875rem;
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border: var(--glass-border);
    transition: all 0.2s ease;
    position: relative;
}

.cart-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: var(--accent-pink);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.03);
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    color: var(--accent-pink);
    font-weight: 700;
    font-size: 1rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.35rem;
}

.qty-btn {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    line-height: 1;
}

.qty-btn:hover { background: var(--accent-pink); border-color: var(--accent-pink); color: white; }

.qty-value { font-weight: 600; min-width: 18px; text-align: center; font-size: 0.85rem; }

.remove-item-btn {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.25);
    color: #f87171;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.remove-item-btn:hover { background: rgba(244, 63, 94, 0.25); border-color: #f87171; transform: scale(1.1); }

.modal-footer {
    padding: 1.25rem 1.5rem;
    border-top: var(--glass-border);
    flex-shrink: 0;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.total-amount {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-actions { display: flex; gap: 0.75rem; flex-direction: column; }

.checkout-btn {
    width: 100%;
    padding: 0.875rem;
    background: var(--gradient-success);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 176, 155, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 176, 155, 0.5);
}

.continue-btn {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.continue-btn:hover { color: var(--text-primary); border-color: var(--accent-pink); }

/* =========================================
   TOAST NOTIFICATION
   ========================================= */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(15, 10, 5, 0.95);
    border: 1px solid var(--accent-pink);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 9999;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-glow);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success { border-color: #00b09b; box-shadow: 0 0 20px rgba(0, 176, 155, 0.3); }
.toast.error { border-color: #e74c3c; box-shadow: 0 0 20px rgba(231, 76, 60, 0.3); }

/* =========================================
   LAUNCH NOTE / POLICY
   ========================================= */
.launch-note-section {
    padding: 0 0 2rem;
}

.launch-note-card {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    background: rgba(255, 100, 0, 0.07);
    border: 1px solid rgba(255, 100, 0, 0.22);
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.launch-note-card strong {
    color: var(--accent-pink);
    white-space: nowrap;
}

.featured-drops-section {
    padding: 0 0 4.5rem;
    position: relative;
}

.daily-deal-layout {
    display: grid;
    grid-template-columns: minmax(340px, 430px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.daily-deal-wheel-card {
    position: sticky;
    top: 108px;
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
    padding: 1.45rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 225, 148, 0.16);
    background:
        radial-gradient(circle at top right, rgba(255, 196, 74, 0.28), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 100, 0, 0.18), transparent 38%),
        linear-gradient(160deg, rgba(8, 20, 27, 0.98), rgba(20, 47, 58, 0.96));
    backdrop-filter: blur(16px);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.daily-deal-wheel-card::after {
    content: '';
    position: absolute;
    inset: auto 12% -16% 12%;
    height: 120px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 100, 0, 0.18), transparent 70%);
    filter: blur(18px);
    pointer-events: none;
}

.daily-deal-wheel-card > * {
    position: relative;
    z-index: 1;
}

.daily-deal-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.daily-deal-jackpot {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    max-width: 100%;
    padding: 0.56rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 208, 92, 0.16), rgba(255, 132, 108, 0.12));
    border: 1px solid rgba(255, 208, 92, 0.3);
    color: #ffe28f;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.35;
}

.daily-deal-chip,
.daily-deal-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.daily-deal-chip {
    background: rgba(255, 208, 92, 0.14);
    border: 1px solid rgba(255, 208, 92, 0.3);
    color: #ffe28f;
}

.daily-deal-reset {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

.daily-deal-hero {
    display: grid;
    gap: 1.1rem;
}

.daily-deal-copy h3 {
    font-size: 1.44rem;
    line-height: 1.2;
    margin-bottom: 0.45rem;
}

.daily-deal-copy p {
    color: rgba(240, 244, 248, 0.78);
    font-size: 0.93rem;
    line-height: 1.72;
}

.deal-wheel-scene {
    --deal-wheel-radius: 122px;
    --deal-wheel-size: calc(var(--deal-wheel-radius) * 2);
    position: relative;
    width: min(100%, 340px);
    height: 340px;
    margin: 0 auto;
    display: grid;
    place-items: center;
}

.deal-wheel-halo {
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 214, 98, 0.22), transparent 52%),
        radial-gradient(circle at 50% 65%, rgba(255, 106, 145, 0.18), transparent 62%);
    filter: blur(18px);
    transform: scale(1.08);
    pointer-events: none;
}

.deal-wheel-bulbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.deal-wheel-bulb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    margin: -6.5px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fffdf8 0 32%, #ffe27e 33% 68%, #ff8b67 69% 100%);
    box-shadow:
        0 0 0 2px rgba(255, 120, 146, 0.25),
        0 0 14px rgba(255, 216, 110, 0.55);
    transform: rotate(calc(360deg / var(--bulb-count) * var(--bulb-index)))
        translateY(calc((var(--deal-wheel-radius) + 18px) * -1));
}

.deal-wheel-pointer {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 58px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background: linear-gradient(180deg, #f7dfb6 0%, #cf9f61 100%);
    border: 2px solid rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.35));
    z-index: 4;
}

.deal-wheel-disc {
    --segment-angle: 60deg;
    width: var(--deal-wheel-size);
    height: var(--deal-wheel-size);
    position: relative;
    border-radius: 50%;
    border: 14px solid rgba(255, 114, 150, 0.96);
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), transparent 42%),
        conic-gradient(
            from -90deg,
            #fff8d8 0deg 60deg,
            #ffe9b0 60deg 120deg,
            #ffd07d 120deg 180deg,
            #ffe9b0 180deg 240deg,
            #fff6d9 240deg 300deg,
            #ffb45e 300deg 360deg
        );
    box-shadow:
        inset 0 0 0 4px rgba(255, 232, 173, 0.92),
        inset 0 0 0 8px rgba(255, 120, 146, 0.28),
        0 24px 40px rgba(0, 0, 0, 0.28),
        0 0 42px rgba(255, 120, 146, 0.14);
    transform: rotate(var(--deal-wheel-rotation, 0deg));
    transition: transform 5.3s cubic-bezier(0.12, 0.9, 0.18, 1);
    overflow: hidden;
    z-index: 1;
}

.deal-wheel-disc::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.36);
    pointer-events: none;
}

.deal-wheel-disc::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, transparent 0 38%, rgba(255, 255, 255, 0.14) 38.5% 39.5%, transparent 40%),
        repeating-conic-gradient(
            from -90deg,
            transparent 0deg 58deg,
            rgba(255, 255, 255, 0.62) 58deg 60deg
        );
    opacity: 0.75;
    pointer-events: none;
}

.deal-wheel-disc.is-spinning {
    filter: saturate(1.08) brightness(1.04);
}

.deal-wheel-labels {
    position: absolute;
    inset: 0;
}

.deal-wheel-label {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34%;
    transform:
        translate(-50%, -50%)
        rotate(calc((var(--segment-index) * var(--segment-angle)) + 30deg))
        translateY(calc(var(--deal-wheel-radius) * -0.76));
    transform-origin: center;
    text-align: center;
    pointer-events: none;
    z-index: 2;
}

.deal-wheel-label-content {
    transform: rotate(calc((var(--segment-index) * -1 * var(--segment-angle)) - 30deg));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.12rem;
}

.deal-wheel-label-icon {
    display: block;
    font-size: 1.44rem;
    line-height: 1;
    filter: drop-shadow(0 5px 8px rgba(255, 135, 48, 0.25));
}

.deal-wheel-label strong {
    color: #713300;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.15;
    padding: 0.14rem 0.38rem;
    border-radius: 999px;
    background: rgba(255, 248, 224, 0.72);
    box-shadow: 0 4px 10px rgba(255, 198, 120, 0.22);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.52);
}

.deal-wheel-label-content--miss strong {
    color: #6c5a38;
}

.deal-wheel-label-content--gift strong {
    color: #9f3200;
}

.deal-wheel-label-content--discount strong {
    color: #7b3d00;
}

.deal-wheel-center {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    width: 118px;
    height: 118px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 40%),
        linear-gradient(155deg, rgba(255, 248, 220, 0.92), rgba(235, 184, 104, 0.96));
    border: 3px solid rgba(255, 255, 255, 0.48);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
    z-index: 3;
}

.deal-wheel-spin-core {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.16rem;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    border-radius: 50%;
    border: 0;
    padding: 0.5rem;
    cursor: pointer;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 36%),
        linear-gradient(145deg, #ffb958 0%, #ff7e65 44%, #ff5f86 100%);
    color: #fffdf6;
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.28),
        inset 0 -2px 0 rgba(121, 27, 44, 0.18),
        0 10px 22px rgba(255, 120, 101, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.deal-wheel-spin-core:hover:not(:disabled) {
    transform: scale(1.04);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.32),
        inset 0 -2px 0 rgba(121, 27, 44, 0.22),
        0 16px 28px rgba(255, 120, 101, 0.36);
}

.deal-wheel-spin-core:disabled {
    cursor: not-allowed;
    opacity: 0.88;
}

.deal-wheel-spin-core span {
    color: rgba(255, 249, 231, 0.84);
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
}

.deal-wheel-spin-core strong {
    font-size: 1.2rem;
    line-height: 1.05;
}

.deal-wheel-spin-core small {
    color: rgba(255, 249, 231, 0.82);
    font-size: 0.66rem;
    line-height: 1;
}

.daily-deal-prizes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.daily-deal-prize-chip {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.7rem 0.75rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    min-height: 74px;
}

.daily-deal-prize-chip strong {
    font-size: 0.9rem;
    line-height: 1.15;
}

.daily-deal-prize-chip span {
    color: var(--text-secondary);
    font-size: 0.74rem;
    line-height: 1.45;
}

.daily-deal-prize-chip.is-discount strong {
    color: #ffe28f;
}

.daily-deal-prize-chip.is-gift strong {
    color: #77f5cb;
}

.daily-deal-prize-chip.is-miss strong {
    color: #d5dce3;
}

.daily-deal-result {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.daily-deal-result.is-win {
    border-color: rgba(255, 208, 92, 0.24);
    box-shadow: inset 0 0 0 1px rgba(255, 208, 92, 0.08), 0 0 26px rgba(255, 208, 92, 0.08);
}

.daily-deal-result.is-gift {
    border-color: rgba(109, 255, 178, 0.22);
    box-shadow: inset 0 0 0 1px rgba(109, 255, 178, 0.07), 0 0 24px rgba(109, 255, 178, 0.08);
}

.daily-deal-result.is-miss {
    border-color: rgba(255, 255, 255, 0.08);
}

.daily-deal-result-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-pink);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.daily-deal-result h4 {
    font-size: 1.18rem;
    line-height: 1.25;
    margin-bottom: 0.35rem;
}

.daily-deal-result p {
    color: rgba(240, 244, 248, 0.76);
    font-size: 0.9rem;
    line-height: 1.65;
}

.daily-deal-result-code {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(9, 18, 24, 0.45);
    border: 1px dashed rgba(255, 100, 0, 0.22);
}

.daily-deal-result-code span {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.daily-deal-result-code strong {
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: #f8fdff;
}

.daily-deal-win-overlay {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.daily-deal-win-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.daily-deal-win-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 15, 0.72);
    backdrop-filter: blur(8px);
}

.daily-deal-win-dialog {
    position: relative;
    width: min(470px, calc(100vw - 32px));
    padding: 1.45rem 1.4rem 1.22rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        radial-gradient(circle at top right, rgba(255, 221, 127, 0.26), transparent 35%),
        radial-gradient(circle at bottom left, rgba(255, 121, 148, 0.18), transparent 34%),
        linear-gradient(160deg, rgba(14, 27, 36, 0.98), rgba(27, 54, 66, 0.96));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    transform: translateY(14px) scale(0.96);
    transition: transform 0.24s ease;
    overflow: hidden;
}

.daily-deal-win-overlay.is-open .daily-deal-win-dialog {
    transform: translateY(0) scale(1);
}

.daily-deal-win-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    font-size: 1rem;
}

.daily-deal-win-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.42rem 0.86rem;
    border-radius: 999px;
    background: rgba(255, 208, 92, 0.14);
    border: 1px solid rgba(255, 208, 92, 0.28);
    color: #ffe28f;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.daily-deal-win-burst {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 84px;
    margin: 0.88rem 0 0;
}

.daily-deal-win-burst span {
    position: absolute;
    width: 12px;
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff3bd 0%, #ff8a65 100%);
    transform: rotate(calc(var(--ray, 0) * 1deg)) translateY(-28px);
    transform-origin: center 52px;
    box-shadow: 0 0 14px rgba(255, 208, 92, 0.32);
}

.daily-deal-win-burst span:nth-child(1) { --ray: 0; }
.daily-deal-win-burst span:nth-child(2) { --ray: 60; }
.daily-deal-win-burst span:nth-child(3) { --ray: 120; }
.daily-deal-win-burst span:nth-child(4) { --ray: 180; }
.daily-deal-win-burst span:nth-child(5) { --ray: 240; }
.daily-deal-win-burst span:nth-child(6) { --ray: 300; }

.daily-deal-win-emblem-wrap {
    position: relative;
    display: grid;
    place-items: center;
    margin: -0.6rem 0 0.55rem;
}

.daily-deal-win-emblem-glow {
    position: absolute;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 208, 92, 0.42), rgba(255, 127, 101, 0.16) 48%, transparent 70%);
    filter: blur(6px);
}

.daily-deal-win-emblem {
    position: relative;
    z-index: 2;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 3rem;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.34), transparent 35%),
        linear-gradient(145deg, #fff6da 0%, #ffc972 36%, #ff8e7b 72%, #ff6795 100%);
    border: 4px solid rgba(255, 255, 255, 0.52);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        0 18px 36px rgba(255, 116, 108, 0.3);
    animation: dealWinFloat 2.6s ease-in-out infinite;
}

.daily-deal-win-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.daily-deal-win-confetti span {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 4px;
    opacity: 0.9;
    animation: dealConfettiDrop 1.7s ease-in-out infinite;
}

.daily-deal-win-confetti span:nth-child(1) { top: 8px; left: calc(50% - 78px); background: #ffd05c; animation-delay: 0.05s; }
.daily-deal-win-confetti span:nth-child(2) { top: 2px; left: calc(50% - 24px); background: #ff7aa4; animation-delay: 0.16s; }
.daily-deal-win-confetti span:nth-child(3) { top: 14px; right: calc(50% - 18px); background: #7bf4d0; animation-delay: 0.1s; }
.daily-deal-win-confetti span:nth-child(4) { top: 22px; right: calc(50% - 70px); background: #72b6ff; animation-delay: 0.22s; }
.daily-deal-win-confetti span:nth-child(5) { bottom: 28px; left: calc(50% - 62px); background: #ffe28f; animation-delay: 0.3s; }
.daily-deal-win-confetti span:nth-child(6) { bottom: 20px; right: calc(50% - 58px); background: #ffb36e; animation-delay: 0.38s; }

.daily-deal-win-title {
    font-size: 2rem;
    line-height: 1.05;
    margin-bottom: 0.55rem;
}

.daily-deal-win-text {
    color: rgba(240, 244, 248, 0.8);
    font-size: 0.98rem;
    line-height: 1.68;
}

.daily-deal-win-code {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(6, 14, 20, 0.38);
    border: 1px dashed rgba(255, 208, 92, 0.28);
}

.daily-deal-win-code span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.daily-deal-win-code strong {
    font-size: 1.16rem;
    letter-spacing: 0.08em;
}

.daily-deal-win-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.daily-deal-win-action {
    min-height: 50px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.daily-deal-win-action:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.daily-deal-win-action--primary {
    border-color: transparent;
    background: linear-gradient(135deg, #ffd05c 0%, #FF6B00 42%, #FF4500 100%);
}

.daily-deal-win-overlay.is-gift .daily-deal-win-badge {
    background: rgba(101, 255, 174, 0.12);
    border-color: rgba(101, 255, 174, 0.24);
    color: #9af4d2;
}

.daily-deal-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.daily-deal-action {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    min-height: 48px;
    border-radius: 16px;
    padding: 0.85rem 1rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.daily-deal-action:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: rgba(255, 100, 0, 0.34);
    box-shadow: 0 0 18px rgba(255, 100, 0, 0.13);
}

.daily-deal-action:disabled {
    opacity: 0.56;
    cursor: not-allowed;
}

.daily-deal-action--primary {
    border-color: transparent;
    background: linear-gradient(135deg, #ffd05c 0%, #FF6B00 38%, #FF4500 100%);
    color: #fff;
    box-shadow: 0 10px 26px rgba(255, 100, 0, 0.15);
}

.daily-deal-note {
    color: rgba(240, 244, 248, 0.62);
    font-size: 0.78rem;
    line-height: 1.6;
}

.daily-deal-products {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.daily-deal-products .featured-drops-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.daily-deal-products .featured-drop-card--lead {
    min-height: 420px;
}

.daily-deal-products .featured-drop-card--lead .featured-drop-media {
    min-height: 420px;
    padding: 0;
}

.daily-deal-products .featured-drop-card--lead .featured-drop-media img {
    max-width: none;
    max-height: none;
}

.daily-deal-products .featured-drops-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.daily-deal-products .featured-drops-stack > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.daily-deal-products .featured-drops-stack .featured-drop-card--mini {
    min-height: 340px;
}

.daily-deal-products .featured-drops-stack .featured-drop-card--mini .featured-drop-media {
    min-height: 340px;
    padding: 0;
    align-items: stretch;
}

.daily-deal-products .featured-drops-stack .featured-drop-card--mini .featured-drop-media img {
    max-width: none;
    max-height: none;
}

.daily-deal-products .featured-drops-stack .featured-drop-card--mini .featured-drop-body {
    padding: 4rem 1rem 1rem;
    gap: 0.4rem;
}

.daily-deal-products .featured-drops-stack .featured-drop-card--mini .featured-drop-footer {
    align-items: flex-end;
}

.daily-deal-products .featured-drops-stack .featured-drop-card--mini .featured-drop-price strong {
    font-size: 1.3rem;
}

.daily-deal-products-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.daily-deal-products-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 100, 0, 0.07);
    border: 1px solid rgba(255, 100, 0, 0.20);
    color: var(--accent-pink);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.daily-deal-products-intro h3 {
    font-size: 1.45rem;
    line-height: 1.2;
}

.daily-deal-products-intro p {
    max-width: 360px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.55;
}

.featured-drops-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 1.75rem;
}

.featured-drops-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 100, 0, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.28);
    color: var(--accent-pink);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.featured-drops-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.15rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.featured-drops-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 100, 0, 0.38);
    box-shadow: 0 0 18px rgba(255, 100, 0, 0.15);
}

.featured-drops-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
    gap: 1.25rem;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.featured-drops-shell.is-single {
    grid-template-columns: 1fr;
}

.featured-drops-stack {
    display: grid;
    gap: 1rem;
}

.featured-drop-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at top right, rgba(255, 100, 0, 0.13), transparent 35%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.featured-drop-card--visual {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.featured-drop-card--visual.featured-drop-card--lead,
.featured-drops-stack .featured-drop-card--visual {
    display: block;
    grid-template-columns: none;
}

.featured-drop-card::after {
    content: '';
    position: absolute;
    inset: auto -10% -32% 16%;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 100, 0, 0.15), transparent 70%);
    pointer-events: none;
}

.featured-drop-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 100, 0, 0.34);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28), 0 0 24px rgba(255, 69, 0, 0.14);
}

.featured-drop-card--visual::after {
    display: none;
}

.featured-drop-card--visual:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.featured-drop-card--lead {
    display: grid;
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
    min-height: 320px;
}

.featured-drops-stack .featured-drop-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 172px;
}

.featured-drop-media {
    position: relative;
    min-height: 100%;
    padding: 1.15rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at top left, rgba(255, 100, 0, 0.1), transparent 45%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-drop-card--visual .featured-drop-media {
    padding: 0;
    min-height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 69, 0, 0.1), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.featured-drop-media img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 320px;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.32));
}

.featured-drop-card--visual .featured-drop-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    transition: transform 0.38s ease, filter 0.38s ease;
    filter: saturate(1.04) contrast(1.03);
}

.featured-drop-card--visual:hover .featured-drop-media img {
    transform: scale(1.05) translateY(-5px);
    filter: saturate(1.08) contrast(1.04);
}

.featured-drops-stack .featured-drop-media img {
    max-width: 128px;
    max-height: 128px;
}

.featured-drop-media-fallback {
    position: absolute;
    inset: 1rem;
    z-index: 1;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top left, rgba(255, 100, 0, 0.18), transparent 45%),
        linear-gradient(155deg, rgba(15, 10, 5, 0.5), rgba(28, 13, 4, 0.28));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    padding: 1rem;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.featured-drop-media.has-image .featured-drop-media-fallback {
    opacity: 0;
    transform: scale(0.96);
    pointer-events: none;
}

.featured-drop-media-icon {
    font-size: 2.4rem;
    line-height: 1;
}

.featured-drop-media-fallback strong {
    font-size: 0.92rem;
    max-width: 16ch;
}

.featured-drop-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    padding: 1.4rem 1.5rem;
}

.featured-drop-card--visual .featured-drop-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 5rem 1.2rem 1.15rem;
    gap: 0.42rem;
    background: linear-gradient(180deg, rgba(6, 3, 0, 0) 0%, rgba(6, 3, 0, 0.34) 24%, rgba(6, 3, 0, 0.9) 68%, rgba(6, 3, 0, 0.98) 100%);
    transition: transform 0.28s ease, padding-bottom 0.28s ease;
}

.featured-drop-card--visual:hover .featured-drop-body {
    padding-bottom: 1.35rem;
}

.featured-drop-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.featured-drop-pills {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.featured-drop-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.featured-drop-pill--spotlight {
    background: rgba(255, 208, 92, 0.16);
    border-color: rgba(255, 208, 92, 0.28);
    color: #ffe28f;
}

.featured-drop-pill--signal {
    background: rgba(255, 120, 120, 0.12);
    border-color: rgba(255, 120, 120, 0.2);
    color: #ffb5b5;
}

.featured-drop-series {
    color: var(--text-secondary);
    font-size: 0.94rem;
    margin-top: -0.25rem;
}

.featured-drop-card--visual .featured-drop-series {
    color: rgba(240, 244, 248, 0.82);
    font-size: 0.84rem;
    margin: 0;
}

.featured-drop-title {
    font-size: clamp(1.18rem, 2vw, 1.7rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.featured-drop-card--visual .featured-drop-title {
    font-size: clamp(1.08rem, 2vw, 1.55rem);
    line-height: 1.16;
    color: #f7fbff;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.featured-drops-stack .featured-drop-title {
    font-size: 1.12rem;
}

.featured-drop-desc {
    color: rgba(240, 244, 248, 0.8);
    font-size: 0.92rem;
    line-height: 1.62;
}

.featured-drops-stack .featured-drop-desc {
    font-size: 0.88rem;
    line-height: 1.6;
}

.featured-drop-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.featured-drop-highlight {
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 600;
}

.featured-drop-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.featured-drop-card--visual .featured-drop-footer {
    justify-content: flex-start;
    align-items: flex-end;
}

.featured-drop-price {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.featured-drop-price strong {
    font-size: 1.45rem;
    line-height: 1;
    color: #ffe8a3;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.36);
}

.featured-drop-price span {
    color: var(--text-secondary);
    font-size: 0.78rem;
}

.featured-drop-card--visual .featured-drop-price strong {
    font-size: 1.58rem;
}

.featured-drop-card--visual .featured-drop-price span {
    color: rgba(240, 244, 248, 0.72);
}

.featured-drop-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.featured-drop-meta-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.72rem;
    font-weight: 700;
}

.featured-drop-stock-chip {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.38rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 110, 110, 0.16);
    border: 1px solid rgba(255, 144, 144, 0.28);
    color: #ffd0d0;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.featured-drop-card--lead .featured-drop-body {
    justify-content: flex-end;
    gap: 0.55rem;
}

.featured-drop-card--lead .featured-drop-title {
    font-size: clamp(1.24rem, 2.2vw, 1.95rem);
}

.featured-drop-card--lead .featured-drop-price strong {
    font-size: 2rem;
}

.featured-drop-card--lead .featured-drop-price span {
    font-size: 0.88rem;
}

.featured-drop-card--mini {
    display: flex;
    flex-direction: column;
}

.featured-drop-card--mini .featured-drop-media {
    min-height: 228px;
    padding: 1rem 1rem 0.2rem;
    align-items: flex-end;
}

.featured-drop-card--mini .featured-drop-media img {
    max-width: 168px;
    max-height: 168px;
}

.featured-drop-card--mini .featured-drop-body {
    gap: 0.42rem;
    padding: 4rem 1rem 1rem;
}

.featured-drop-card--mini .featured-drop-series,
.featured-drop-card--mini .featured-drop-desc {
    display: none;
}

.featured-drop-card--mini .featured-drop-title {
    font-size: 1rem;
    line-height: 1.24;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-drop-card--mini .featured-drop-highlights {
    gap: 0.42rem;
}

.featured-drop-card--mini .featured-drop-highlight {
    font-size: 0.72rem;
    padding: 0.34rem 0.58rem;
}

.featured-drop-card--mini .featured-drop-price strong {
    font-size: 1.3rem;
}

.featured-drop-card--mini .featured-drop-price span {
    font-size: 0.72rem;
}

@keyframes dealWinFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.03); }
}

@keyframes dealConfettiDrop {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.82; }
    50% { transform: translateY(14px) rotate(18deg); opacity: 1; }
}

.featured-drop-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.2rem;
    min-width: 148px;
    border-radius: 16px;
    background: var(--gradient-accent);
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(255, 100, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-drop-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(255, 100, 0, 0.22);
}

.featured-drops-empty {
    grid-column: 1 / -1;
    padding: 2rem;
    border-radius: 24px;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    color: var(--text-secondary);
}

.featured-drops-empty strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.featured-drop-card.is-loading {
    min-height: 180px;
}

.featured-drop-skeleton {
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    background-size: 220% 100%;
    animation: featured-skeleton-wave 1.4s linear infinite;
}

.featured-drop-skeleton--badge {
    width: 96px;
    height: 26px;
}

.featured-drop-skeleton--title {
    width: 72%;
    height: 26px;
}

.featured-drop-skeleton--text {
    width: 100%;
    height: 14px;
    border-radius: 12px;
}

.featured-drop-skeleton--text.short {
    width: 68%;
}

.featured-drops-section.is-highlighted .featured-drops-shell {
    box-shadow: 0 0 0 1px rgba(255, 100, 0, 0.18), 0 0 32px rgba(255, 69, 0, 0.14);
}

.mascot-sidekick {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 9000;
    display: flex;
    align-items: flex-end;
    gap: 0.9rem;
    pointer-events: none;
}

.mascot-sidekick > * {
    pointer-events: auto;
}

.mascot-sidekick-launcher {
    position: relative;
    width: 88px;
    height: 88px;
    border: 0;
    border-radius: 28px;
    background: transparent;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.mascot-sidekick-launcher:hover {
    transform: translateY(-4px) rotate(-4deg);
}

.mascot-sidekick-orb {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 35%),
        linear-gradient(145deg, rgba(255, 69, 0, 0.9), rgba(255, 100, 0, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24), 0 0 26px rgba(255, 100, 0, 0.20);
}

.mascot-sidekick-orb::after {
    content: '';
    position: absolute;
    inset: auto 18% -10% 18%;
    height: 18px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.24);
    filter: blur(10px);
}

.mascot-sidekick-face,
.mascot-sidekick-face img {
    position: absolute;
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 22px;
}

.mascot-sidekick-face {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 2.2rem;
    animation: mascot-float 3.4s ease-in-out infinite;
}

.mascot-sidekick-face img {
    object-fit: cover;
}

.mascot-sidekick-ping {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #6dffb2;
    border: 3px solid rgba(15, 10, 5, 0.92);
    box-shadow: 0 0 0 0 rgba(109, 255, 178, 0.5);
    animation: mascot-ping 1.8s ease-out infinite;
}

.mascot-sidekick-panel {
    width: min(360px, calc(100vw - 42px));
    padding: 1rem 1rem 1.05rem;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at top right, rgba(255, 100, 0, 0.18), transparent 34%),
        linear-gradient(165deg, rgba(15, 10, 5, 0.95), rgba(32, 58, 67, 0.92));
    backdrop-filter: blur(16px);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.26);
    opacity: 0;
    transform: translateY(14px) scale(0.96);
    transform-origin: bottom left;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.mascot-sidekick.is-expanded .mascot-sidekick-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.mascot-sidekick-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.mascot-sidekick-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.28rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 69, 0, 0.14);
    color: var(--accent-pink);
    border: 1px solid rgba(255, 100, 0, 0.15);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mascot-sidekick-close {
    border: 0;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    width: 34px;
    height: 34px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.mascot-sidekick-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.mascot-sidekick-copy h3 {
    font-size: 1.16rem;
    line-height: 1.25;
    margin-bottom: 0.45rem;
}

.mascot-sidekick-copy p {
    color: rgba(240, 244, 248, 0.76);
    font-size: 0.9rem;
    line-height: 1.65;
}

.mascot-sidekick-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.mascot-sidekick-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.78rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mascot-sidekick-action:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 100, 0, 0.30);
    box-shadow: 0 0 18px rgba(255, 69, 0, 0.14);
}

.mascot-sidekick-action--primary {
    background: var(--gradient-accent);
    border-color: transparent;
}

.site-marquee-shell {
    padding: 0.85rem 0 0;
    position: relative;
    z-index: 3;
}

.site-marquee-bar {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 100, 0, 0.30);
    background: linear-gradient(135deg, rgba(255, 100, 0, 0.15), rgba(26, 41, 128, 0.24));
    box-shadow: 0 0 24px rgba(255, 69, 0, 0.14);
}

.site-marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    min-width: 100%;
    padding: 0.82rem 0;
    white-space: nowrap;
    animation: site-marquee-loop 28s linear infinite;
    will-change: transform;
}

.site-marquee-text {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #f7fbff;
    text-shadow: 0 0 12px rgba(255, 100, 0, 0.20);
}

.site-marquee-text::before {
    content: 'Lưu ý';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(15, 10, 5, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--accent-pink);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@keyframes site-marquee-loop {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.5rem)); }
}

@keyframes featured-skeleton-wave {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}

@keyframes mascot-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes mascot-ping {
    0% { box-shadow: 0 0 0 0 rgba(109, 255, 178, 0.45); }
    100% { box-shadow: 0 0 0 16px rgba(109, 255, 178, 0); }
}

.policy-page {
    padding: 3rem 0 4rem;
}

.policy-shell {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 920px;
    margin: 0 auto;
}

.policy-card {
    background: var(--card-bg);
    border: var(--glass-border);
    border-radius: 22px;
    padding: 1.6rem 1.6rem 1.4rem;
    backdrop-filter: blur(12px);
}

.policy-card h1,
.policy-card h2,
.policy-card h3 {
    margin-bottom: 0.9rem;
}

.policy-card p,
.policy-card li {
    color: var(--text-secondary);
    line-height: 1.75;
}

.policy-card ul {
    padding-left: 1.15rem;
    display: grid;
    gap: 0.45rem;
}

.policy-meta {
    display: grid;
    gap: 0.6rem;
    color: var(--text-secondary);
}

.policy-meta strong {
    color: var(--text-primary);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: var(--glass-border);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline { color: var(--text-secondary); font-size: 0.9rem; }

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--accent-pink); }

.footer-links-secondary {
    gap: 1.1rem;
}

.footer-meta {
    display: grid;
    gap: 0.35rem;
    color: var(--text-secondary);
    font-size: 0.86rem;
}

.footer-meta strong {
    color: var(--text-primary);
}

.footer-bottom {
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    .header {
        padding: 0.82rem 0;
    }

    .header-content {
        flex-wrap: wrap;
        align-items: stretch;
        gap: 0.9rem;
    }

    .logo {
        width: 100%;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        margin: 0 -0.1rem;
        scrollbar-width: none;
    }

    .nav::-webkit-scrollbar {
        display: none;
    }

    .nav > .nav-btn,
    .nav > .nav-dropdown {
        flex: 0 0 auto;
    }

    .header-actions,
    .header-actions--utility {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .header-actions .nav-btn,
    .header-actions .cart-icon,
    .header-actions--utility .nav-btn,
    .header-actions--utility .cart-icon {
        width: 100%;
        min-height: 46px;
        justify-content: center;
        padding: 0.7rem 0.9rem;
    }

    .nav-dropdown {
        width: auto;
    }

    .nav-dropdown-menu {
        left: 0;
        transform: translateY(10px);
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        transform: translateY(0);
    }

    .hero {
        padding: 2.9rem 0 3rem;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .hero-copy,
    .hero-content {
        text-align: left;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-socials {
        grid-template-columns: 1fr;
    }

    .hero-quick-links {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.3rem;
        scrollbar-width: none;
    }

    .hero-quick-links::-webkit-scrollbar {
        display: none;
    }

    .hero-chip {
        flex: 0 0 auto;
    }

    .hero-mascot-card {
        min-height: 380px;
        padding: 1rem;
        border-radius: 24px;
    }

    .launch-note-card {
        flex-direction: column;
    }

    .site-marquee-shell {
        padding: 0.65rem 0 0;
    }

    .site-marquee-track {
        gap: 1.8rem;
        padding: 0.72rem 0;
        animation-duration: 22s;
    }

    .site-marquee-text {
        gap: 0.6rem;
        font-size: 0.84rem;
    }

    .site-marquee-text::before {
        font-size: 0.67rem;
        padding: 0.16rem 0.52rem;
    }

    .featured-drops-header { flex-direction: column; align-items: flex-start; }
    .daily-deal-layout { grid-template-columns: 1fr; }
    .daily-deal-wheel-card { position: relative; top: auto; }
    .daily-deal-products-intro { flex-direction: column; align-items: flex-start; }
    .featured-drops-shell { grid-template-columns: 1fr; }
    .featured-drop-card--lead .featured-drop-media { min-height: 320px; }
    .daily-deal-products .featured-drop-card--lead { min-height: 360px; }
    .daily-deal-products .featured-drops-stack { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1rem;
    }

    .header-actions,
    .header-actions--utility {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-actions .cart-icon,
    .header-actions--utility .cart-icon {
        grid-column: 1 / -1;
    }

    .nav-btn,
    a.nav-btn,
    .cart-icon {
        min-height: 48px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 2.5rem 0 2.8rem;
    }

    .hero-title {
        font-size: clamp(2.15rem, 11vw, 3rem);
    }

    .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .hero-badge {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        padding: 0.38rem 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-mascot-card {
        min-height: 320px;
        padding: 0.95rem;
    }

    .header-actions--utility { justify-content: center; }
    .nav-btn.nav-optional-link,
    a.nav-btn.nav-optional-link {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .nav-dropdown {
        width: auto;
        justify-content: flex-start;
    }

    .nav-dropdown-menu {
        min-width: 220px;
        max-width: calc(100vw - 32px);
    }

    .quick-filters { flex-direction: column; align-items: stretch; gap: 0.875rem; }
    .filter-group { flex-direction: column; align-items: flex-start; }
    .filter-buttons { width: 100%; }
    .filter-btn { flex: 1; text-align: center; }
    .sort-select { width: 100%; }
    .clear-filters-btn { margin-left: 0; width: 100%; text-align: center; }

    .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
    .collections-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .featured-drops-section { padding-bottom: 4rem; }
    .daily-deal-prizes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .daily-deal-actions { grid-template-columns: 1fr; }
    .deal-wheel-scene { --deal-wheel-radius: 108px; height: 312px; }
    .featured-drop-card--visual .featured-drop-body { padding: 4rem 0.95rem 0.95rem; }
    .featured-drop-footer { flex-direction: column; align-items: flex-start; }
    .mascot-sidekick {
        left: max(14px, env(safe-area-inset-left));
        bottom: calc(14px + env(safe-area-inset-bottom));
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 0.55rem;
    }

    .mascot-sidekick-launcher {
        width: 70px;
        height: 70px;
    }

    .mascot-sidekick-panel {
        width: min(292px, calc(100vw - 24px));
        max-height: 58vh;
        overflow-y: auto;
    }

    .daily-deal-products .featured-drops-stack { grid-template-columns: 1fr; }
    .daily-deal-products .featured-drops-stack > :last-child:nth-child(odd) { grid-column: auto; }
    .daily-deal-products .featured-drops-stack .featured-drop-card--mini { min-height: 310px; }
    .daily-deal-products .featured-drops-stack .featured-drop-card--mini .featured-drop-media { min-height: 310px; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .logo-text {
        font-size: 0.94rem;
    }

    .nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
        overflow: visible;
        margin: 0;
        padding-bottom: 0;
    }

    .nav > .nav-btn,
    .nav > .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > .nav-btn {
        width: 100%;
    }

    .header-actions,
    .header-actions--utility {
        grid-template-columns: 1fr;
    }

    .header-actions .cart-icon,
    .header-actions--utility .cart-icon {
        grid-column: auto;
    }

    .cart-icon-glyph {
        font-size: 0.82rem;
    }

    .cart-icon-label {
        font-size: 0.88rem;
    }

    .hero-title { font-size: 1.9rem; }
    .hero-actions { flex-direction: column; }
    .hero-socials { grid-template-columns: 1fr; }
    .hero-mascot-card { min-height: 320px; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card { max-width: 380px; margin: 0 auto; }
    .toast { left: 1rem; right: 1rem; bottom: 1rem; }
    .daily-deal-wheel-card { padding: 1.1rem; border-radius: 24px; }
    .deal-wheel-scene { --deal-wheel-radius: 92px; height: 278px; }
    .deal-wheel-disc { border-width: 10px; }
    .deal-wheel-label { width: 38%; }
    .deal-wheel-label-icon { font-size: 1.1rem; }
    .deal-wheel-label strong { font-size: 0.62rem; }
    .deal-wheel-center { width: 98px; height: 98px; }
    .daily-deal-prizes { grid-template-columns: 1fr; }
    .daily-deal-products .featured-drops-stack { grid-template-columns: 1fr; }
    .featured-drop-title { font-size: 1.08rem; }
    .featured-drops-stack .featured-drop-card { min-height: 290px; }
    .featured-drop-card--visual .featured-drop-body { padding: 3.6rem 0.88rem 0.88rem; }
    .featured-drop-card--visual .featured-drop-price strong { font-size: 1.32rem; }
    .mascot-sidekick { left: max(12px, env(safe-area-inset-left)); bottom: calc(12px + env(safe-area-inset-bottom)); }
    .mascot-sidekick-panel {
        width: min(268px, calc(100vw - 24px));
        border-radius: 22px;
    }
    .mascot-sidekick-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .mascot-sidekick-action {
        width: 100%;
    }
}

/* =========================================
   DEAL HOT SLIDER REFRESH
   ========================================= */
.featured-drops-title {
    background: linear-gradient(135deg, #ffb39d 0%, #ff6b6b 42%, #ff304f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.featured-drops-kicker--hot,
.daily-deal-products-kicker {
    background: rgba(255, 87, 87, 0.1);
    border-color: rgba(255, 103, 103, 0.24);
    color: #ff7676;
    box-shadow: inset 0 0 0 1px rgba(255, 123, 123, 0.08);
}

.daily-deal-products {
    min-width: 0;
    gap: 0.85rem;
}

.daily-deal-products-intro {
    align-items: center;
}

.daily-deal-products-intro h3 {
    color: #ffe6e8;
}

.daily-deal-products-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.daily-deal-products-actions p {
    margin: 0;
    color: rgba(240, 244, 248, 0.72);
    font-size: 0.88rem;
    line-height: 1.5;
}

.featured-drops-shell--slider {
    display: block;
    min-width: 0;
}

.featured-drops-hero-shell {
    margin-bottom: 1rem;
}

.featured-drop-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    min-height: 430px;
    border-radius: 34px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background:
        radial-gradient(circle at top right, rgba(255, 94, 98, 0.2), transparent 34%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    box-shadow: 0 24px 48px rgba(4, 12, 18, 0.32), 0 0 34px rgba(255, 94, 98, 0.1);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.featured-drop-hero:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 56px rgba(4, 12, 18, 0.38), 0 0 38px rgba(255, 94, 98, 0.14);
}

.featured-drop-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(6, 12, 18, 0.02) 0%, rgba(6, 12, 18, 0.1) 42%, rgba(6, 12, 18, 0.78) 100%),
        radial-gradient(circle at 18% 78%, rgba(255, 172, 65, 0.16), transparent 34%);
    pointer-events: none;
}

.featured-drop-hero-media,
.featured-drop-hero-media .featured-drop-media {
    min-height: 430px;
    height: 100%;
}

.featured-drop-hero-media .featured-drop-media {
    padding: 0;
    border-radius: 34px;
}

.featured-drop-hero-media .featured-drop-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-drop-hero .featured-drop-media-fallback {
    inset: 0;
    border: 0;
    border-radius: 34px;
}

.featured-drop-hero .featured-drop-stock-chip {
    top: 1rem;
    right: 1rem;
    z-index: 3;
}

.featured-drop-hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.5rem 1.55rem 1.55rem;
}

.featured-drop-hero-kicker {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.46rem 0.88rem;
    border-radius: 999px;
    background: rgba(255, 87, 87, 0.14);
    border: 1px solid rgba(255, 120, 120, 0.22);
    color: #ffd2d2;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-drop-hero-title {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 0.98;
    color: #fff7f7;
    text-shadow: 0 16px 28px rgba(0, 0, 0, 0.34);
}

.featured-drop-hero-series {
    margin: 0;
    color: rgba(248, 237, 237, 0.8);
    font-size: 1rem;
    line-height: 1.55;
    max-width: 36ch;
}

.featured-drop-hero-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.35rem;
}

.featured-drop-hero-price {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}

.featured-drop-hero-price strong {
    font-size: clamp(2.4rem, 3.4vw, 3.2rem);
    line-height: 1;
    color: #ffd88a;
    text-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
}

.featured-drop-hero-price span {
    color: rgba(249, 236, 236, 0.84);
    font-size: 0.94rem;
    line-height: 1.45;
    max-width: 30ch;
}

.featured-drop-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0.95rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffbf58 0%, #FF6B00 42%, #FF4500 100%);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 14px 30px rgba(255, 100, 0, 0.15);
}

.featured-drops-slider-shell {
    min-width: 0;
}

.featured-drops-slider-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.featured-drops-slider-btn {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 106, 106, 0.2), rgba(255, 52, 90, 0.18));
    color: #fff2f2;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(255, 72, 102, 0.14);
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.featured-drops-slider-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(255, 72, 102, 0.2);
}

.featured-drops-slider-btn:disabled {
    opacity: 0.36;
    cursor: default;
    box-shadow: none;
}

.featured-drops-shell--slider .featured-drops-slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(228px, 21vw, 272px);
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 0.15rem 0 0.4rem;
    scrollbar-width: none;
}

.featured-drops-shell--slider .featured-drops-slider-track::-webkit-scrollbar {
    display: none;
}

.featured-drop-card--slider {
    position: relative;
    min-height: 390px;
    border-radius: 30px;
    overflow: hidden;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 20px 42px rgba(4, 12, 18, 0.28);
}

.featured-drop-card--slider::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(6, 12, 18, 0.04) 0%, rgba(6, 12, 18, 0.18) 38%, rgba(6, 12, 18, 0.84) 100%),
        radial-gradient(circle at top right, rgba(255, 105, 105, 0.18), transparent 34%);
    pointer-events: none;
}

.featured-drop-card--slider.featured-drop-card--visual {
    box-shadow: 0 20px 42px rgba(4, 12, 18, 0.28);
}

.featured-drop-card--slider.featured-drop-card--visual:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 28px 54px rgba(4, 12, 18, 0.36), 0 0 28px rgba(255, 82, 109, 0.12);
}

.featured-drop-card--slider .featured-drop-media {
    min-height: 390px;
    height: 100%;
    border-radius: 30px;
}

.featured-drop-card--slider .featured-drop-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-drop-card--slider .featured-drop-media-fallback {
    inset: 0;
    border: 0;
    border-radius: 30px;
}

.featured-drop-card--slider .featured-drop-stock-chip {
    top: 0.9rem;
    right: 0.9rem;
    z-index: 3;
    background: rgba(34, 48, 58, 0.54);
    border-color: rgba(255, 140, 140, 0.28);
    color: #ffc4c4;
    backdrop-filter: blur(10px);
}

.featured-drop-hover-shell {
    position: absolute;
    inset: 1rem 1rem 5.8rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.6rem;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
}

.featured-drop-card--slider:hover .featured-drop-hover-shell,
.featured-drop-card--slider:focus-visible .featured-drop-hover-shell {
    opacity: 1;
    transform: translateY(0);
}

.featured-drop-hover-kicker {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 84, 84, 0.16);
    border: 1px solid rgba(255, 123, 123, 0.24);
    color: #ffd6d6;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-drop-hover-title {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.12;
    color: #fff8f8;
    text-shadow: 0 12px 22px rgba(0, 0, 0, 0.34);
}

.featured-drop-price-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 1.05rem 1.1rem 1.15rem;
    background: linear-gradient(180deg, rgba(6, 12, 18, 0) 0%, rgba(6, 12, 18, 0.62) 42%, rgba(6, 12, 18, 0.94) 100%);
}

.featured-drop-price-strip-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.featured-drop-price-strip-copy strong {
    font-size: 1.82rem;
    font-weight: 800;
    line-height: 1;
    color: #ffd88a;
    text-shadow: 0 12px 22px rgba(0, 0, 0, 0.34);
}

.featured-drop-price-strip-copy span {
    color: rgba(249, 236, 236, 0.8);
    font-size: 0.8rem;
    line-height: 1.4;
}

.featured-drop-price-strip-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.featured-drop-card--slider.is-loading {
    min-height: 390px;
}

.featured-drop-card--slider.is-loading .featured-drop-media {
    min-height: 390px;
}

@media (max-width: 900px) {
    .daily-deal-products-intro {
        align-items: flex-start;
    }

    .daily-deal-products-actions {
        width: 100%;
        margin-left: 0;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .featured-drop-hero {
        grid-template-columns: 1fr;
        min-height: 400px;
    }

    .featured-drop-hero-media,
    .featured-drop-hero-media .featured-drop-media {
        min-height: 400px;
    }

    .featured-drop-hero-copy {
        position: absolute;
        inset: auto 0 0 0;
        padding-top: 5rem;
        background: linear-gradient(180deg, rgba(6, 12, 18, 0) 0%, rgba(6, 12, 18, 0.34) 28%, rgba(6, 12, 18, 0.92) 100%);
    }

    .featured-drops-shell--slider .featured-drops-slider-track {
        grid-auto-columns: minmax(250px, 68vw);
    }
}

@media (max-width: 768px) {
    .featured-drops-shell--slider .featured-drops-slider-track {
        grid-auto-columns: minmax(240px, 78vw);
    }

    .featured-drop-hero {
        min-height: 360px;
    }

    .featured-drop-hero-media,
    .featured-drop-hero-media .featured-drop-media {
        min-height: 360px;
    }

    .featured-drop-hero-title {
        font-size: 1.9rem;
    }

    .featured-drop-hero-price strong {
        font-size: 2.2rem;
    }

    .featured-drop-hover-shell {
        opacity: 1;
        transform: none;
        inset: auto 0 5.2rem 0;
        padding: 0 1rem;
    }

    .featured-drop-hover-kicker {
        display: none;
    }

    .featured-drop-card--slider,
    .featured-drop-card--slider .featured-drop-media,
    .featured-drop-card--slider.is-loading,
    .featured-drop-card--slider.is-loading .featured-drop-media {
        min-height: 340px;
    }

    .featured-drop-price-strip-copy strong {
        font-size: 1.6rem;
    }

    .featured-drop-hover-title {
        font-size: 1.18rem;
    }
}

@media (max-width: 480px) {
    .daily-deal-products-actions {
        gap: 0.7rem;
    }

    .daily-deal-products-actions p {
        font-size: 0.82rem;
    }

    .featured-drops-shell--slider .featured-drops-slider-track {
        grid-auto-columns: 84vw;
        gap: 0.88rem;
    }

    .featured-drop-hero {
        min-height: 320px;
        border-radius: 28px;
    }

    .featured-drop-hero-media,
    .featured-drop-hero-media .featured-drop-media {
        min-height: 320px;
        border-radius: 28px;
    }

    .featured-drop-hero-copy {
        padding: 4.4rem 1rem 1rem;
    }

    .featured-drop-hero-title {
        font-size: 1.55rem;
    }

    .featured-drop-hero-series {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .featured-drop-hero-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-drop-hero-price strong {
        font-size: 1.9rem;
    }

    .featured-drop-hero-cta {
        min-height: 48px;
        padding: 0.82rem 1rem;
        font-size: 0.76rem;
    }

    .featured-drops-slider-btn {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .featured-drop-card--slider,
    .featured-drop-card--slider .featured-drop-media,
    .featured-drop-card--slider.is-loading,
    .featured-drop-card--slider.is-loading .featured-drop-media {
        min-height: 300px;
    }

    .featured-drop-price-strip {
        padding: 0.95rem 0.95rem 1rem;
    }

    .featured-drop-price-strip-copy strong {
        font-size: 1.46rem;
    }

    .featured-drop-price-strip-cta {
        padding: 0.64rem 0.8rem;
        font-size: 0.68rem;
    }
}

/* =========================================
   DEAL HOT LAYOUT COMPACT PASS
   ========================================= */
.daily-deal-layout {
    grid-template-columns: minmax(320px, 372px) minmax(0, 1.18fr);
    gap: 1.1rem;
    align-items: stretch;
}

.daily-deal-wheel-card {
    gap: 0.85rem;
    padding: 1.18rem;
    border-radius: 28px;
}

.daily-deal-copy h3 {
    font-size: 1.18rem;
    margin-bottom: 0.35rem;
}

.daily-deal-copy p {
    font-size: 0.88rem;
    line-height: 1.58;
}

.daily-deal-jackpot {
    padding: 0.48rem 0.82rem;
    font-size: 0.76rem;
}

.deal-wheel-scene {
    --deal-wheel-radius: 104px;
    width: min(100%, 292px);
    height: 292px;
}

.daily-deal-prizes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.daily-deal-prize-chip {
    min-height: auto;
    padding: 0.55rem 0.78rem;
    border-radius: 999px;
    gap: 0;
    flex: 0 0 auto;
}

.daily-deal-prize-chip strong {
    font-size: 0.82rem;
    line-height: 1;
}

.daily-deal-prize-chip span {
    display: none;
}

.daily-deal-result {
    gap: 0.6rem;
    padding: 0.9rem;
    border-radius: 20px;
}

.daily-deal-result h4 {
    font-size: 1.02rem;
    margin-bottom: 0.18rem;
}

.daily-deal-result p {
    font-size: 0.84rem;
    line-height: 1.48;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.daily-deal-result-code {
    padding: 0.72rem 0.84rem;
}

.daily-deal-result-code strong {
    font-size: 0.92rem;
}

.daily-deal-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.daily-deal-action {
    min-height: 44px;
    padding: 0.72rem 0.82rem;
    font-size: 0.84rem;
}

.daily-deal-action--primary {
    grid-column: 1 / -1;
}

.daily-deal-note {
    font-size: 0.72rem;
    line-height: 1.5;
    max-width: 40ch;
}

.daily-deal-products {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0.95rem;
    min-height: 100%;
}

.daily-deal-products-intro {
    align-items: center;
}

.daily-deal-products-intro h3 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.02;
    color: #ffe8eb;
}

.daily-deal-products-actions {
    align-items: center;
    margin-left: auto;
}

.daily-deal-products-actions p {
    max-width: 300px;
}

.featured-drops-shell--slider {
    display: block;
    min-height: 100%;
}

.featured-drops-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.94fr);
    gap: 1rem;
    align-items: stretch;
    min-height: 100%;
}

.featured-drops-hero-shell {
    margin-bottom: 0;
}

.featured-drops-rail-shell {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0.9rem;
    min-width: 0;
}

.featured-drops-rail-note {
    display: grid;
    gap: 0.28rem;
    padding: 1rem 1.05rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 121, 121, 0.16);
    background:
        radial-gradient(circle at top right, rgba(255, 87, 87, 0.16), transparent 34%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.featured-drops-rail-note strong {
    font-size: 1rem;
    color: #ffe7ea;
    letter-spacing: 0.02em;
}

.featured-drops-rail-note span {
    color: rgba(248, 238, 238, 0.76);
    font-size: 0.88rem;
    line-height: 1.5;
}

.featured-drops-slider-shell {
    min-width: 0;
    min-height: 100%;
}

.featured-drops-shell--slider .featured-drops-slider-track {
    grid-auto-columns: clamp(236px, 19vw, 280px);
    height: 100%;
    align-content: start;
}

.featured-drop-hero {
    min-height: 100%;
}

.featured-drop-hero-copy {
    justify-content: flex-end;
}

.featured-drop-hero-title {
    max-width: 12ch;
}

.featured-drop-card--slider,
.featured-drop-card--slider .featured-drop-media,
.featured-drop-card--slider.is-loading,
.featured-drop-card--slider.is-loading .featured-drop-media {
    min-height: 420px;
}

@media (max-width: 900px) {
    .daily-deal-layout {
        grid-template-columns: 1fr;
    }

    .daily-deal-wheel-card {
        padding: 1.1rem;
    }

    .featured-drops-showcase {
        grid-template-columns: 1fr;
    }

    .featured-drops-shell--slider .featured-drops-slider-track {
        grid-auto-columns: minmax(250px, 70vw);
    }
}

/* =========================================
   DAILY SPIN FIERY COSMIC OVERRIDES
   ========================================= */
.cart-daily-spin-card-shell,
.checkout-daily-spin-card-shell {
    display: grid;
    gap: 0.75rem;
}

.cart-daily-spin-card-shell:not([hidden]),
.checkout-daily-spin-card-shell:not([hidden]) {
    margin-bottom: 1rem;
}

.daily-deal-win-overlay {
    padding: 1.25rem;
}

.daily-deal-win-backdrop {
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 69, 0, 0.12), transparent 30%),
        radial-gradient(circle at 82% 22%, rgba(255, 187, 0, 0.1), transparent 24%),
        radial-gradient(circle at 60% 80%, rgba(107, 26, 26, 0.5), transparent 38%),
        rgba(15, 10, 5, 0.9);
    backdrop-filter: blur(12px);
}

.daily-deal-win-dialog {
    width: min(1120px, calc(100vw - 32px));
    padding: 1.4rem 1.4rem 1.2rem;
    border-radius: 34px;
    border: 1px solid rgba(255, 187, 0, 0.18);
    background:
        radial-gradient(circle at top right, rgba(255, 187, 0, 0.08), transparent 24%),
        radial-gradient(circle at bottom left, rgba(255, 69, 0, 0.16), transparent 28%),
        linear-gradient(160deg, rgba(15, 10, 5, 0.98), rgba(28, 18, 8, 0.98));
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 187, 0, 0.06),
        0 0 42px rgba(255, 69, 0, 0.12);
}

.daily-deal-win-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-right: 2.75rem;
    margin-bottom: 1rem;
}

.daily-deal-win-topcopy {
    display: grid;
    gap: 0.5rem;
    max-width: 720px;
}

.daily-deal-win-badge {
    background: rgba(255, 69, 0, 0.12);
    border-color: rgba(255, 187, 0, 0.22);
    color: #ffbb00;
    letter-spacing: 0.11em;
}

.daily-deal-win-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow:
        0 0 18px rgba(255, 69, 0, 0.16),
        0 0 28px rgba(255, 187, 0, 0.14);
}

.daily-deal-win-text {
    color: #e8d5b0;
    font-size: 1rem;
    line-height: 1.68;
}

.daily-deal-win-text strong,
.daily-deal-modal-expiry strong,
.daily-deal-voucher-result-expiry strong,
.daily-spin-voucher-expiry strong {
    color: #ffbb00;
    text-shadow:
        0 0 25px #ffbb00,
        0 0 40px rgba(255, 187, 0, 0.24);
}

.daily-deal-win-shell {
    display: grid;
    grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
    gap: 1rem;
    align-items: stretch;
}

.daily-deal-spin-panel,
.daily-deal-voucher-panel {
    min-width: 0;
    border-radius: 28px;
    border: 1px solid rgba(255, 187, 0, 0.14);
    background:
        linear-gradient(160deg, rgba(28, 18, 8, 0.96), rgba(15, 10, 5, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.daily-deal-spin-panel {
    padding: 1.1rem;
    display: grid;
    gap: 1rem;
}

.daily-deal-spin-wheel-frame {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at center, rgba(107, 26, 26, 0.42), transparent 44%),
        radial-gradient(circle at 50% 50%, rgba(255, 69, 0, 0.14), transparent 70%);
}

.deal-wheel-halo--modal {
    width: 428px;
    height: 428px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 187, 0, 0.16), rgba(255, 69, 0, 0.12) 42%, transparent 70%);
    filter: blur(18px);
}

.deal-wheel-pointer--modal {
    top: 34px;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 46px solid #ffbb00;
    filter:
        drop-shadow(0 0 10px rgba(255, 187, 0, 0.72))
        drop-shadow(0 0 24px rgba(255, 69, 0, 0.38));
}

.deal-wheel-disc--modal {
    width: min(100%, 390px);
    height: min(100%, 390px);
    border-width: 14px;
    border-color: rgba(255, 187, 0, 0.24);
    background:
        conic-gradient(
            from -90deg,
            #2c0a0a 0deg 45deg,
            #6b1a1a 45deg 90deg,
            #ff4500 90deg 135deg,
            #7f1408 135deg 180deg,
            #3a0f0b 180deg 225deg,
            #a1270d 225deg 270deg,
            #4b1209 270deg 315deg,
            #ff8c00 315deg 360deg
        );
    box-shadow:
        0 0 0 1px rgba(255, 187, 0, 0.08),
        0 0 44px rgba(255, 69, 0, 0.22),
        0 20px 42px rgba(0, 0, 0, 0.4);
}

.deal-wheel-disc--modal::before {
    background:
        radial-gradient(circle at 50% 50%, transparent 0 39%, rgba(255, 255, 255, 0.08) 39.4% 40.3%, transparent 40.8%),
        repeating-conic-gradient(
            from -90deg,
            rgba(255, 255, 255, 0.02) 0deg 43deg,
            rgba(255, 187, 0, 0.18) 43deg 45deg
        );
}

.deal-wheel-disc--modal::after {
    opacity: 0.38;
}

.deal-wheel-labels--modal .deal-wheel-label {
    width: 38%;
}

.deal-wheel-labels--modal .deal-wheel-label strong {
    color: #fff8ef;
    background: rgba(15, 10, 5, 0.6);
    border: 1px solid rgba(255, 187, 0, 0.18);
    box-shadow:
        0 10px 18px rgba(0, 0, 0, 0.26),
        0 0 16px rgba(255, 187, 0, 0.08);
    text-shadow: none;
}

.deal-wheel-center--modal {
    width: 154px;
    height: 154px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 38%),
        linear-gradient(145deg, rgba(15, 10, 5, 0.98), rgba(42, 16, 10, 0.98));
    border: 1px solid rgba(255, 187, 0, 0.24);
    box-shadow:
        inset 0 0 22px rgba(255, 187, 0, 0.08),
        0 0 28px rgba(255, 69, 0, 0.22);
}

.daily-deal-modal-spin-btn {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #ff4500 0%, #ff8c00 100%);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 0 24px rgba(255, 69, 0, 0.36),
        0 0 44px rgba(255, 187, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.daily-deal-modal-spin-btn:hover:not(:disabled) {
    transform: scale(1.03);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 34px rgba(255, 69, 0, 0.48),
        0 0 56px rgba(255, 187, 0, 0.24);
}

.daily-deal-modal-spin-btn:disabled {
    opacity: 0.72;
    cursor: not-allowed;
}

.daily-deal-modal-spin-btn span,
.daily-deal-modal-spin-btn small {
    color: rgba(255, 245, 232, 0.88);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.daily-deal-modal-spin-btn strong {
    font-size: 1.22rem;
    letter-spacing: -0.02em;
}

.daily-deal-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 0.95rem 1rem 0;
    border-top: 1px solid rgba(255, 187, 0, 0.08);
}

.daily-deal-modal-expiry,
.daily-deal-modal-link {
    color: #e8d5b0;
    font-size: 0.9rem;
}

.daily-deal-modal-link {
    text-decoration: none;
    color: #ffbb00;
}

.daily-deal-voucher-panel {
    position: relative;
    padding: 1.15rem;
    display: grid;
    align-content: start;
    gap: 0.9rem;
    overflow: hidden;
}

.daily-deal-voucher-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 84% 14%, rgba(255, 187, 0, 0.08), transparent 24%),
        radial-gradient(circle at 16% 78%, rgba(255, 69, 0, 0.1), transparent 26%);
    pointer-events: none;
}

.daily-deal-win-emblem-wrap {
    margin: 0;
    min-height: 168px;
}

.daily-deal-win-emblem-glow {
    width: 180px;
    height: 180px;
    background:
        radial-gradient(circle, rgba(255, 187, 0, 0.18), rgba(255, 69, 0, 0.16) 48%, transparent 72%);
    filter: blur(16px);
}

.daily-deal-win-emblem {
    width: 132px;
    height: 132px;
    font-size: 3.6rem;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 34%),
        linear-gradient(145deg, #2c0a0a 0%, #6b1a1a 46%, #ff4500 100%);
    border: 1px solid rgba(255, 187, 0, 0.28);
    box-shadow:
        0 0 0 1px rgba(255, 187, 0, 0.12),
        0 0 34px rgba(255, 69, 0, 0.28);
}

.daily-deal-win-confetti span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.daily-deal-voucher-result {
    position: relative;
    z-index: 1;
    min-height: 100%;
}

.daily-deal-voucher-result-empty,
.daily-deal-voucher-result-card {
    display: grid;
    gap: 0.8rem;
    padding: 1.15rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 187, 0, 0.12);
    background:
        linear-gradient(160deg, rgba(28, 18, 8, 0.92), rgba(15, 10, 5, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 0 24px rgba(255, 69, 0, 0.08);
}

.daily-deal-voucher-result-empty strong,
.daily-deal-voucher-result-topline,
.daily-spin-voucher-kicker {
    color: #ffbb00;
}

.daily-deal-voucher-result-empty p,
.daily-deal-voucher-result-body p,
.daily-spin-voucher-detail,
.daily-spin-voucher-meta {
    color: #e8d5b0;
    line-height: 1.68;
}

.daily-deal-voucher-result-topline,
.daily-spin-voucher-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.daily-deal-voucher-result-kicker,
.daily-spin-voucher-kicker {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.daily-deal-voucher-result-badge,
.daily-spin-voucher-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0.34rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 187, 0, 0.18);
    background: rgba(255, 69, 0, 0.1);
    color: #ffbb00;
    font-size: 0.74rem;
    font-weight: 700;
}

.daily-deal-voucher-result-body h4,
.daily-spin-voucher-reward {
    color: #ffffff;
    font-size: 1.45rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.daily-deal-voucher-result-code,
.daily-spin-voucher-code-shell {
    display: grid;
    gap: 0.28rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 187, 0, 0.14);
    background: rgba(12, 8, 5, 0.88);
}

.daily-deal-voucher-result-code span,
.daily-spin-voucher-code-shell span {
    color: rgba(232, 213, 176, 0.78);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.daily-deal-voucher-result-code strong,
.daily-spin-voucher-code {
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.daily-deal-voucher-result-meta {
    color: #ffbb00;
    font-size: 0.84rem;
}

.daily-deal-win-actions,
.daily-spin-voucher-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.daily-deal-win-action,
.daily-spin-voucher-btn,
.daily-spin-voucher-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 187, 0, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.daily-deal-win-action:hover,
.daily-spin-voucher-btn:hover,
.daily-spin-voucher-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 187, 0, 0.28);
    box-shadow: 0 0 22px rgba(255, 69, 0, 0.14);
}

.daily-deal-win-action--primary,
.daily-spin-voucher-btn--primary {
    background: linear-gradient(135deg, #ff4500 0%, #ff8c00 100%);
    border-color: transparent;
    box-shadow:
        0 0 18px rgba(255, 69, 0, 0.24),
        0 0 34px rgba(255, 187, 0, 0.1);
}

.daily-spin-voucher-card {
    display: grid;
    gap: 0.95rem;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 187, 0, 0.14);
    background:
        radial-gradient(circle at top right, rgba(255, 187, 0, 0.08), transparent 22%),
        linear-gradient(160deg, rgba(28, 18, 8, 0.98), rgba(15, 10, 5, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 28px rgba(255, 69, 0, 0.08);
}

.daily-spin-voucher-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px;
    gap: 1rem;
    align-items: center;
}

.daily-spin-voucher-mascot {
    position: relative;
    min-height: 120px;
    display: grid;
    place-items: center;
}

.daily-spin-voucher-mascot-glow {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.18), rgba(255, 187, 0, 0.14) 44%, transparent 72%);
    filter: blur(8px);
}

.daily-spin-voucher-mascot-image,
.daily-spin-voucher-mascot-emoji {
    position: relative;
    z-index: 1;
}

.daily-spin-voucher-mascot-image {
    max-width: 104px;
    max-height: 104px;
    object-fit: contain;
}

.daily-spin-voucher-mascot-emoji {
    font-size: 4rem;
}

.daily-spin-voucher-link {
    color: #e8d5b0;
}

.modal-footer > .cart-daily-spin-card-shell {
    margin-bottom: 1.05rem;
}

.checkout-daily-spin-card-shell {
    margin: 0.15rem 0 0.25rem;
}

@media (max-width: 900px) {
    .daily-deal-win-dialog {
        width: min(94vw, 760px);
        padding: 1.15rem;
    }

    .daily-deal-win-shell {
        grid-template-columns: 1fr;
    }

    .daily-deal-spin-wheel-frame {
        min-height: 450px;
    }

    .deal-wheel-disc--modal {
        width: min(100%, 332px);
        height: min(100%, 332px);
    }

    .deal-wheel-halo--modal {
        width: 360px;
        height: 360px;
    }
}

@media (max-width: 640px) {
    .daily-deal-win-overlay {
        padding: 0.8rem;
    }

    .daily-deal-win-dialog {
        width: calc(100vw - 16px);
        padding: 0.95rem;
        border-radius: 26px;
    }

    .daily-deal-win-topline {
        padding-right: 2.25rem;
        margin-bottom: 0.8rem;
    }

    .daily-deal-win-title {
        font-size: 1.52rem;
    }

    .daily-deal-win-text {
        font-size: 0.92rem;
    }

    .daily-deal-spin-wheel-frame {
        min-height: 388px;
        padding-top: 0.35rem;
    }

    .deal-wheel-halo--modal {
        width: 300px;
        height: 300px;
        filter: blur(14px);
    }

    .deal-wheel-disc--modal {
        width: min(100%, 280px);
        height: min(100%, 280px);
        border-width: 11px;
    }

    .deal-wheel-labels--modal .deal-wheel-label {
        width: 40%;
    }

    .deal-wheel-labels--modal .deal-wheel-label strong {
        font-size: 0.62rem;
        padding: 0.14rem 0.28rem;
    }

    .deal-wheel-center--modal {
        width: 122px;
        height: 122px;
    }

    .daily-deal-modal-spin-btn strong {
        font-size: 1rem;
    }

    .daily-deal-modal-footer,
    .daily-deal-win-actions,
    .daily-spin-voucher-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .daily-spin-voucher-body {
        grid-template-columns: 1fr;
    }

    .daily-spin-voucher-mascot {
        order: -1;
        min-height: 88px;
    }
}
