﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

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

:root {
    /* Colors */
    --primary-bg: #050614;
    --secondary-bg: #0a0b1e;
    --card-bg: rgba(26, 29, 58, 0.6);
    --glass: rgba(255, 255, 255, 0.03);
    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-pink: #ec4899;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --gradient-1: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%);
    --gradient-3: linear-gradient(135deg, #f43f5e 0%, #fb923c 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

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

html.age-gate-locked body,
body.age-gate-locked {
    overflow: hidden;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at top, rgba(236, 72, 153, 0.18), transparent 38%),
        rgba(5, 6, 20, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

html.age-gate-approved .age-gate,
.age-gate-approved .age-gate,
.age-gate.is-hidden {
    display: none;
}

.age-gate-panel {
    width: min(100%, 440px);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(18, 20, 40, 0.96) 0%, rgba(9, 10, 24, 0.98) 100%);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    text-align: center;
}

.age-gate-kicker {
    margin-bottom: 0.75rem;
    color: #fda4af;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.age-gate-title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.05;
}

.age-gate-description {
    margin: 0 auto;
    max-width: 30ch;
    color: var(--text-secondary);
    font-size: 1rem;
}

.age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.75rem;
}

.age-gate-confirm,
.age-gate-decline {
    width: 100%;
}

.age-gate-decline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.age-gate-decline:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========================================
   HEADER
======================================== */
/* Warning section */
.warn {
    font-size: 16px;
    background-color: #000;
    color: white;
    width: 100%;
    text-align: center;
    padding: 2px 0;
    font-weight: bold;
    overflow: hidden;
    max-height: 80px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.45s ease, padding 0.45s ease, opacity 0.35s ease,
        transform 0.35s ease;
}

.warn.active,
.warn.is-hidden {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
}

.header {
    background-color: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.header.scrolled {
    background-color: rgba(5, 6, 20, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
}

.logo img {
    width: 58px;
    height: auto;
}

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

.nav-desktop {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-3);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: 0.8s;
}

.btn-primary:hover::after {
    left: 120%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    display: none;
    top: 80px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background-color: var(--secondary-bg);
    padding: var(--spacing-lg);
    transition: all 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    right: 0;
    transition: all 0.4s ease;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--text-primary);
    background-color: var(--card-bg);
}

.mobile-btn {
    margin-top: var(--spacing-md);
    width: 100%;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    padding: var(--spacing-xl) 0;
    background: radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: var(--radius-lg);
    color: var(--accent-purple);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

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

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.hero-keywords {
    font-size: 0.95rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    margin-top: -0.2rem;
    margin-bottom: var(--spacing-lg);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-md);
}

.stat-item {
    flex: 1;
    position: relative;
    padding: 1.25rem 1rem;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(124, 58, 237, 0.14), rgba(15, 23, 42, 0.88));
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: calc(var(--radius-lg) + 2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 38px rgba(3, 7, 18, 0.28);
    overflow: hidden;
}

.stat-item::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 50%;
    width: 68%;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(192, 132, 252, 0.9), transparent);
    opacity: 0.85;
}

.stat-number {
    font-size: 2.65rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    line-height: 1;
    letter-spacing: -0.04em;
    text-shadow: 0 0 28px rgba(192, 132, 252, 0.22);
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(226, 232, 240, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.45;
}

.hero-image {
    position: relative;
}

.hero-card {
    position: relative;
    aspect-ratio: 1;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.hero-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--gradient-1);
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
}

/* ========================================
   SECTION COMMON
======================================== */
.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -1px;
}

.section-header-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    margin-bottom: var(--spacing-lg);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.see-all {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.see-all:hover {
    color: var(--text-primary);
}

/* ========================================
   CATEGORIES
======================================== */
.categories {
    padding: var(--spacing-xl) 0;
}


.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: var(--spacing-md) 0;
    /* Fade effect at edges */
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.marquee-content {
    display: flex;
    align-items: stretch;
    gap: var(--spacing-md);
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    animation: scroll 34s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-content .category-card {
    width: 220px;
    flex-shrink: 0;
    margin: 0;
}

@keyframes scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-50% - (var(--spacing-md) / 2)), 0, 0);
    }
}



.category-card {
    display: block;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    /* For anchor tags */
    color: var(--text-primary);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    color: var(--text-primary);
}

.category-icon {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.category-icon img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.category-name {
    font-size: 1.125rem;
    font-weight: 600;
}

/* ========================================
   NEW ITEMS / PRODUCTS
======================================== */
.new-items {
    padding: var(--spacing-xl) 0;
    background-color: var(--secondary-bg);
}

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

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.1);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2d3250 0%, #1a1d3a 100%);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: 0;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}



.product-info {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.product-detail {
    font-size: 0.95rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.product-type {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.product-btn {
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
    margin-top: auto;
}

#pages .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}


.btn-icon {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-icon:hover {
    border-color: var(--accent-pink);
    transform: scale(1.1);
}

/* ========================================
   MERRYMI SECTION
======================================== */
.merrymi-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, rgba(124, 58, 237, 0.05) 50%, var(--primary-bg) 100%);
}

.merrymi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

@media (max-width: 1024px) {
    .merrymi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   JNR SLIDER SECTION
======================================== */
.jnr-section {
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    /* Prevent horizontal scroll on body */
}

.slider-controls {
    display: flex;
    gap: var(--spacing-sm);
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    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.3s ease;
    font-size: 1.25rem;
}

.slider-btn:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: scale(1.1);
}

.slider-wrapper {
    margin-top: var(--spacing-lg);
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.slider-wrapper:active {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    gap: var(--spacing-lg);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.slider-track .product-card {
    flex: 0 0 calc(25% - (var(--spacing-lg) * 3 / 4));
    width: 100%;
}

@media (max-width: 1024px) {
    .slider-track .product-card {
        flex: 0 0 calc(50% - (var(--spacing-lg) * 1 / 2));
    }
}

@media (max-width: 640px) {
    .slider-track .product-card {
        flex: 0 0 100%;
    }

    .product-image-wrapper {
        aspect-ratio: 1 / 1;
    }

    .product-info {
        padding: var(--spacing-sm);
        gap: 0.25rem;
    }

    .product-name {
        font-size: 1.05rem;
    }

    .product-detail {
        font-size: 0.85rem;
    }

    .product-type {
        font-size: 0.8rem;
        margin-bottom: var(--spacing-xs);
    }

    .product-price {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-sm);
    }

    .product-card {
        border-radius: var(--radius-md);
    }
}


.sellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.seller-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.seller-card:hover {
    transform: translateX(5px);
    border-color: var(--accent-purple);
}

.seller-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-1);
    flex-shrink: 0;
}

.seller-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.seller-sales {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ========================================
   HOT COLLECTIONS
======================================== */
.hot-collections {
    padding: var(--spacing-xl) 0;
    background-color: var(--secondary-bg);
}

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

.collection-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: all 0.3s ease;
}

.collection-card:hover {
    transform: scale(1.03);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-card:hover img {
    transform: scale(1.1);
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.collection-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.collection-count {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: var(--spacing-xl) 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.cta-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.cta-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    width: min(1200px, calc(100% - 2rem));
    margin: 2rem auto;
    padding: clamp(1.25rem, 2vw, 2rem);
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 26%),
        linear-gradient(180deg, rgba(11, 17, 38, 0.96) 0%, rgba(7, 12, 28, 0.98) 100%);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.42);
    color: #e2ecff;
}

.footer-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
}

.footer-col {
    min-width: 0;
}

.footer-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-side-columns {
    display: grid;
    grid-template-columns: minmax(180px, 0.9fr) minmax(180px, 0.9fr);
    gap: clamp(1rem, 2.5vw, 2rem);
}

.footer-col-offset {
    padding-top: 0.9rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.3rem;
    color: #ffffff;
}

.footer-logo {
    width: 58px;
    height: 58px;
    display: block;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(59, 130, 246, 0.25);
}

.footer-brand-text {
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-weight: 700;
    line-height: 1.1;
}

.footer-col h3 {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #afc4ea;
    font-size: 0.98rem;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover,
.footer-brand:hover,
.footer-toggle:hover {
    color: #ffffff;
}

.footer-links a:hover {
    transform: translateX(4px);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(96, 165, 250, 0.24);
    background: rgba(255, 255, 255, 0.05);
    color: #d7e6ff;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social-link svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.footer-social-link:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.18);
    border-color: rgba(96, 165, 250, 0.45);
    transform: translateY(-2px);
}

.footer-expand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.15rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.footer-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.25s ease;
}

.footer-toggle-arrow {
    color: #60a5fa;
    font-size: 0.85rem;
    pointer-events: none;
    transition: transform 0.25s ease;
}

.footer-toggle[aria-expanded="true"] .footer-toggle-arrow {
    transform: rotate(180deg);
}

.footer-cities {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-cities[hidden] {
    display: none;
}

.footer-cities li {
    margin: 0;
}

.footer-cities a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.58rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(96, 165, 250, 0.24);
    background: rgba(255, 255, 255, 0.04);
    color: #c7d8f4;
    font-size: 0.92rem;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-cities a:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.18);
    border-color: rgba(96, 165, 250, 0.45);
    transform: translateY(-2px);
}

.footer-copy {
    margin: 0;
    text-align: center;
    color: #8fa6cb;
    font-size: 0.92rem;
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-side-columns {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) and (min-width: 320px) {
    .footer {
        width: calc(100% - 1rem);
        margin: 1rem auto;
        padding: 1.15rem;
    }

    .warn {
        font-size: 10px !important;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-side-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-col-offset {
        padding-top: 0;
    }

    .footer-brand {
        align-items: center;
        gap: 0.85rem;
    }

    .footer-logo {
        width: 52px;
        height: 52px;
    }

    .footer-brand-text {
        font-size: 1.15rem;
    }

    .footer-toggle {
        text-align: center;
        line-height: 1.3;
    }

    .footer-cities a {
        font-size: 0.88rem;
        padding: 0.52rem 0.9rem;
    }
}

/* ========================================
   FUMOT COLLECTION SLIDER (Center-Focus)
======================================== */
.fumot-section {
    padding: var(--spacing-xl) 0;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
}

.fumot-slider-container {
    position: relative;
    padding: var(--spacing-lg) 0;
    overflow: hidden;
}

.fumot-track {
    display: flex;
    gap: 0;
    /* Gap handled by item padding for center effect */
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.fumot-item {
    flex: 0 0 33.333%;
    padding: 0 var(--spacing-md);
    transition: all 0.6s ease;
    opacity: 0.4;
    transform: scale(0.85);
    filter: blur(2px);
}

.fumot-item.active {
    opacity: 1;
    transform: scale(1.05);
    filter: blur(0);
    z-index: 2;
}

.fumot-item .product-card {
    cursor: default;
}

.fumot-item .product-image-wrapper {
    aspect-ratio: 1 / 1;
}

.fumot-item .product-image-wrapper img {
    width: 100%;
    height: 100%;
    margin: 0;
}

.fumot-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
}

.fumot-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.fumot-dot.active {
    background: var(--accent-blue);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .fumot-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 640px) {
    .fumot-item {
        flex: 0 0 100%;
    }

    .fumot-item.active {
        transform: scale(1);
    }
}

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

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

.newsletter-btn {
    padding: 0.75rem 1.25rem;
    background: var(--gradient-1);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

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

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

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

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

/* ========================================
   ADALYA SECTION (Skewed Flow)
======================================== */
.adalya-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(45deg, var(--primary-bg) 0%, rgba(239, 68, 68, 0.05) 100%);
    overflow: hidden;
}

.adalya-container {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xl) 0;
    perspective: 2000px;
    height: 850px;
    /* Fixed height to prevent layout jump */
    align-items: center;
    overflow-y: visible;
}

@media (max-width: 1200px) {
    .adalya-container {
        height: auto;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .adalya-container {
        height: auto;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 480px) {
    .adalya-container {
        padding: var(--spacing-md) 0;
        gap: var(--spacing-md);
    }
}

.adalya-card {
    flex: 0 0 150px;
    /* Small default width */
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm) 5px;
    transition:
        flex-basis 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease,
        border-color 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.45s ease;
    cursor: pointer;
    opacity: 0.72;
    transform: translate3d(0, 0, 0) scale(0.96);
    position: relative;
    z-index: 1;
    overflow: hidden;
    will-change: transform, flex-basis, opacity;
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    .adalya-card {
        flex: 0 0 280px;
        width: 280px;
        opacity: 1;
        filter: none;
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .adalya-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        padding: var(--spacing-sm);
    }
}

/* Dim others when one is active/hovered */


.adalya-card:hover,
.adalya-card.active {
    flex: 0 0 380px;
    opacity: 1;
    transform: translate3d(0, -6px, 0) scale(1.01);
    z-index: 50;
    border-color: #ef4444;
    background: rgba(26, 29, 58, 0.95);
    box-shadow: 0 18px 36px rgba(239, 68, 68, 0.2), 0 16px 28px rgba(0, 0, 0, 0.3);
}

.adalya-container:hover .adalya-card:not(:hover),
.adalya-container.has-active .adalya-card:not(.active) {
    opacity: 0.58;
    transform: translate3d(0, 0, 0) scale(0.94);
}

.adalya-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(239, 68, 68, 0.1), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    pointer-events: none;
}

.adalya-card:hover::before {
    left: 100%;
}

.adalya-card .product-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.adalya-card:hover .product-image-wrapper,
.adalya-card.active .product-image-wrapper {
    transform: scale(1.04);
}

.adalya-card .product-info {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(8px);
    transition: max-height 0.45s ease, opacity 0.25s ease, transform 0.35s ease, padding 0.35s ease;
    padding: 0;
}

.adalya-card:hover .product-info,
.adalya-card.active .product-info {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    padding: var(--spacing-md) 0;
}

.adalya-card .product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    transition: transform 0.45s ease, filter 0.35s ease;
    will-change: transform;
}

.adalya-card:hover .product-image-wrapper img,
.adalya-card.active .product-image-wrapper img {
    transform: translateY(-2px) scale(1.015);
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.45));
}

.adalya-card .product-name {
    font-size: 1.1rem;
    color: #ef4444;
    /* Distinct Adalya Red */
    margin-bottom: 0.5rem;
}

.adalya-card .product-btn {
    background: #ef4444;
    border: none;
}

.adalya-card .product-btn:hover {
    background: #dc2626;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

@media (max-width: 1200px) {
    .adalya-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .adalya-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .adalya-container {
        grid-template-columns: 1fr;
    }

    .adalya-card {
        transform: none;
    }
}

@media (max-width: 1024px) {
    .adalya-container {
        flex-direction: column;
        height: auto;
        min-height: 0;
        gap: var(--spacing-lg);
    }

    .adalya-card {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
        transform: scale(1);
        opacity: 1;
        border-color: rgba(239, 68, 68, 0.55);
        box-shadow: 0 18px 36px rgba(239, 68, 68, 0.18), 0 16px 28px rgba(0, 0, 0, 0.28);
    }

    .adalya-card .product-image-wrapper {
        height: 250px;
        transform: scale(1.04);
    }

    .adalya-card .product-image-wrapper img {
        transform: translateY(-2px) scale(1.015);
        filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.45));
    }

    .adalya-card.active {
        flex: 0 0 auto;
        width: 100%;
        transform: translate3d(0, -4px, 0) scale(1.01);
    }

    .adalya-card .product-info {
        max-height: 300px;
        opacity: 1;
        padding: var(--spacing-md) 0;
    }

    .adalya-container:hover .adalya-card:not(:hover),
    .adalya-container.has-active .adalya-card:not(.active) {
        opacity: 1;
        transform: scale(1);
    }

    .adalya-card.revealed,
    .adalya-card.revealed:hover,
    .adalya-card.revealed.active {
        opacity: 1;
    }
}


@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    .nav-desktop,
    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .hero-text {
        display: contents;
    }

    .hero-badge {
        order: 1;
        margin-bottom: 0;
    }

    .hero-image {
        order: 2;
    }

    .hero-title {
        order: 3;
    }

    .hero-description {
        order: 4;
    }

    .hero-stats {
        order: 5;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
        margin-top: var(--spacing-sm);
    }

    .stat-item {
        padding: 1.1rem 0.9rem;
        border-radius: var(--radius-lg);
    }

    .stat-number {
        font-size: 2.15rem;
    }

    .stat-label {
        font-size: 0.76rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    #pages .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-image-wrapper {
        aspect-ratio: 1 / 1;
    }

    .product-info {
        padding: var(--spacing-sm);
    }

    .product-name {
        font-size: 1.1rem;
    }

    .product-price {
        font-size: 1.25rem;
    }



    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .merrymi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-stats {
        gap: 0.8rem;
    }

    .stat-item {
        padding: 1rem 0.75rem;
    }

    .stat-number {
        font-size: 1.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-header-line {
        width: 40px;
    }

    .logo img {
        width: 44px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    #pages .products-grid {
        grid-template-columns: 1fr;
    }

    .merrymi-grid {
        grid-template-columns: 1fr;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
    }

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

    .warn {
        font-size: 12px;
        padding: 8px 0;
    }
}

/* ========================================
   AL FAKHER PREMIUM FEATURE
======================================== */
.alfakher-section {
    padding: var(--spacing-xl) 0;
    background: radial-gradient(circle at right, rgba(251, 191, 36, 0.1) 0%, transparent 60%);
    position: relative;
}

.alfakher-highlight {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    backdrop-filter: blur(10px);
}

.alfakher-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.alfakher-visual img {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.3));
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.alfakher-content .product-name {
    font-size: 2.5rem;
    color: #fbbf24;
    /* Gold accent */
    margin-bottom: var(--spacing-sm);
}

.alfakher-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
    line-height: 1.6;
}

.alfakher-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.feature-icon {
    color: #fbbf24;
    font-size: 1.2rem;
    font-weight: bold;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.alfakher-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #b45309 100%);
    color: #000 !important;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: var(--radius-md);
}

@media (max-width: 1024px) {
    .alfakher-highlight {
        grid-template-columns: 1fr;
        padding: var(--spacing-lg);
        text-align: center;
    }

    .feature-item {
        justify-content: center;
    }

    .alfakher-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .alfakher-visual img {
        max-width: 300px;
    }

    .alfakher-content .product-name {
        font-size: 1.75rem;
    }

    .alfakher-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .alfakher-highlight {
        padding: var(--spacing-md);
    }

    .alfakher-visual img {
        max-width: 200px;
    }

    .alfakher-content .product-name {
        font-size: 1.5rem;
    }

    .alfakher-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .alfakher-btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
    }
}

/* ========================================
   BLUR COLLECTION SECTION
======================================== */
.blur-section {
    padding: var(--spacing-xl) 0;
    background: radial-gradient(circle at left, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
}

.blur-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.blur-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.blur-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: 0.5s;
}

.blur-card:hover::before {
    left: 100%;
}

.blur-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #06b6d4;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(6, 182, 212, 0.1);
}

.blur-visual {
    width: min(100%, 320px);
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.blur-card:hover .blur-visual {
    transform: scale(1.1) rotate(-5deg);
}

.blur-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.3));
}

.blur-details {
    flex: 1;
}

.blur-brand {
    font-size: 0.875rem;
    color: #06b6d4;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.blur-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
    line-height: 1.2;
}

.blur-capacity {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blur-capacity::before {
    content: '⚡';
}

.blur-btn {
    background: #06b6d4;
    color: #000 !important;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.blur-btn:hover {
    background: #22d3ee;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

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

@media (max-width: 768px) {
    .blur-card {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-lg);
    }

    .blur-visual {
        width: min(100%, 250px);
    }

    .blur-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blur-card {
        padding: var(--spacing-md);
    }

    .blur-visual {
        width: min(100%, 180px);
    }

    .blur-name {
        font-size: 1.25rem;
    }

    .blur-capacity {
        font-size: 1rem;
    }
}

/* ========================================
   GHOST BRAND SECTION
======================================== */
.ghost-section {
    padding: var(--spacing-xl) 0;
    background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
    position: relative;
    overflow: hidden;
}

.ghost-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
}

.ghost-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px) !important;
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.45s ease,
        filter 0.45s ease !important;
    text-align: center;
    will-change: transform;
}

/* Haunted Floating Animation */
.ghost-card:nth-child(1) {
    animation: spectralFloat 7.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.ghost-card:nth-child(2) {
    animation: spectralFloat 7.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite 2s;
    margin-top: -24px;
}

.ghost-card:nth-child(3) {
    animation: spectralFloat 7.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite 4s;
}

@keyframes spectralFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    33% {
        transform: translateY(-8px) rotate(0.6deg);
    }

    66% {
        transform: translateY(-3px) rotate(-0.6deg);
    }
}

.ghost-card:hover {
    transform: translateY(-14px) scale(1.03) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.08), 0 18px 34px rgba(0, 0, 0, 0.42) !important;
    animation-play-state: paused !important;
}

.ghost-card .product-detail {
    color: #e2e8f0;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.ghost-btn {
    background: #fff !important;
    color: #000 !important;
    border-radius: 50px !important;
    padding: 0.8rem 2rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.ghost-btn:hover {
    background: #e2e8f0 !important;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
    .ghost-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: var(--spacing-xl);
    }

    .ghost-card:nth-child(2) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .ghost-grid {
        max-width: 100%;
        gap: var(--spacing-lg);
    }

    .ghost-section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 480px) {
    .ghost-grid {
        gap: var(--spacing-md);
    }

    .ghost-card .product-name {
        font-size: 1.25rem;
    }
}

/* ========================================
   HAYATI BRAND SECTION
======================================== */
.hayati-section {
    padding: var(--spacing-xl) 0;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(13, 148, 136, 0.03) 100%);
}

.hayati-section .section-title {
    color: var(--accent-purple);
}

.hayati-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.hayati-card {
    background: var(--card-bg) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-xl) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) !important;
    max-width: 500px;
    /* Bigger width */
    width: 100%;
}

.hayati-card:hover {
    transform: translateY(-20px) scale(1.02) !important;
    box-shadow: 0 40px 80px rgba(124, 58, 237, 0.2) !important;
    border-color: rgba(124, 58, 237, 0.5) !important;
    background: rgba(26, 29, 58, 0.95) !important;
}

.hayati-card .product-image-wrapper {
    background: linear-gradient(135deg, #2d3250 0%, #1a1d3a 100%) !important;
    aspect-ratio: 1 !important;
    /* Forces 1:1 ratio */
    padding: 0;
}

.hayati-card .product-image-wrapper img {
    width: 100%;
    height: 100%;
    margin: 0;
}

.hayati-card .product-name {
    color: var(--text-primary) !important;
    font-size: 1.75rem !important;
    font-weight: 800 !important;
}

.hayati-card .product-detail {
    color: var(--accent-blue) !important;
    /* Blue accent */
    font-size: 1.25rem !important;
}

.hayati-card .product-type {
    color: var(--text-secondary) !important;
}

.hayati-btn {
    background: var(--gradient-1) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 1rem !important;
    font-size: 1.1rem !important;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3) !important;
    text-align: center !important;
}

.hayati-btn::after {
    display: none !important;
}

.hayati-btn:hover {
    background: linear-gradient(135deg, #d946ef 0%, #8b5cf6 100%) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.5) !important;
}

@media (max-width: 768px) {
    .hayati-grid {
        flex-direction: column;
        align-items: center;
    }

    .hayati-card {
        max-width: 100%;
    }

    .hayati-card .product-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hayati-section {
        padding: var(--spacing-lg) 0;
    }

    .hayati-card {
        max-width: 100%;
    }

    .hayati-card .product-name {
        font-size: 1.25rem;
    }

    .hayati-card .product-detail {
        font-size: 1.1rem;
    }
}

/* ========================================
   SPACEMAN TECH-COMMAND SECTION
======================================== */
.spaceman-section {
    padding: var(--spacing-xl) 0;
    background: radial-gradient(circle at 70% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        #020412;
    position: relative;
    overflow: hidden;
}

.spaceman-tech-wrap {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    backdrop-filter: blur(20px);
    position: relative;
}

.spaceman-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.spaceman-brand-tag {
    color: #818cf8;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    display: block;
}

.spaceman-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: var(--spacing-md);
}

.spaceman-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.spaceman-tech-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.spaceman-tech-visual img {
    max-width: 450px;
    width: 100%;
    filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.4));
}

.spaceman-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.spec-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.spec-box:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(5px);
}

.spec-val {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #818cf8;
}

.spec-lab {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spaceman-cta {
    margin-top: var(--spacing-xl);
    display: flex;
    gap: var(--spacing-md);
}

.btn-tech {
    background: #6366f1;
    color: #fff !important;
    font-weight: 700;
    border-radius: 4px;
    /* Industrial look */
    padding: 1rem 3rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
}

.btn-tech:hover::before {
    left: 100%;
}

@media (max-width: 1024px) {
    .spaceman-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .spaceman-cta {
        justify-content: center;
    }

    .spaceman-tech-wrap {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .spaceman-title {
        font-size: 2rem;
    }

    .spaceman-tech-visual img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .spaceman-section {
        padding: var(--spacing-lg) 0;
    }

    .spaceman-tech-wrap {
        padding: var(--spacing-md);
    }

    .spaceman-header {
        margin-bottom: var(--spacing-lg);
    }

    .spaceman-title {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
    }

    .spaceman-specs-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .spec-box {
        padding: var(--spacing-sm);
    }

    .spec-val {
        font-size: 1.1rem;
    }

    .spec-lab {
        font-size: 0.75rem;
    }

    .spaceman-cta {
        flex-direction: column;
    }

    .btn-tech {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* ========================================
   REVEAL ANIMATIONS
======================================== */
.reveal-trigger {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1), transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-trigger.revealed {
    opacity: 1;
    transform: translateY(0);
}

.product-card,
.category-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease;
}

.product-card.revealed,
.category-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.adalya-card {
    opacity: 0;
}

.adalya-card.revealed {
    opacity: 0.72;
}

.adalya-card.revealed:hover,
.adalya-card.revealed.active {
    opacity: 1;
}

/* ========================================
   DESCRIPTION SECTION
======================================== */
.description-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, rgba(26, 29, 58, 0.3) 0%, rgba(10, 11, 30, 0.3) 100%);
}

.description-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.description-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.description-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.description-card.hidden {
    display: none;
}

.description-card h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.show-more-container {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xl);
}

.show-more-btn {
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    background: var(--gradient-1);
    color: white;
    transition: all 0.4s ease;
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
}

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

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .description-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .description-card h1 {
        font-size: 1.1rem;
    }

    .description-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .description-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .description-card {
        padding: var(--spacing-md);
    }

    .description-card h1 {
        font-size: 1.1rem;
    }

    .description-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .show-more-btn {
        padding: 10px 30px;
        font-size: 0.95rem;
    }
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    padding: var(--spacing-xl) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.faq-item {
    padding: var(--spacing-lg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(26, 29, 58, 0.72) 0%, rgba(10, 11, 30, 0.88) 100%);
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.faq-item:hover {
    transform: translateY(-6px);
    border-color: var(--accent-blue);
    box-shadow: 0 18px 36px rgba(59, 130, 246, 0.14);
}

.faq-item h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.15rem;
    line-height: 1.35;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .faq-item {
        padding: var(--spacing-md);
    }
}

@media (max-width: 640px) {
    .age-gate-panel {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .age-gate-title {
        font-size: 2.15rem;
    }
}
