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

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

: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;
}

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

/* ========================================
   HEADER
======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: var(--border-color);
    border-radius: 15px;
    color: white;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
}

.modal-content h2 {
    margin-bottom: 20px;
    font-size: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.modal-content button {
    padding: 10px 25px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#yesBtn {
    background: #6b2df0;
    color: #fff;
}

#yesBtn:hover {
    background: #3e8e41;
}

#noBtn {
    background: #9d3bf6;
    color: #fff;
}

#noBtn:hover {
    background: #d32f2f;
}

/* Warning section */
.warn {
    font-size: 16px;
    background-color: #000;
    color: white;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;

}
.warn.active {
    display: 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: var(--spacing-md) 0;
}

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

.logo img {
    width: 70px;
    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: 97px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 73px);
    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-stats {
    display: flex;
    gap: var(--spacing-xl);
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

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

.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;
    gap: var(--spacing-md);
    width: max-content;
    animation: scroll 30s linear infinite;
}

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

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

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

    to {
        transform: translateX(-50%);
    }
}



.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: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2d3250 0%, #1a1d3a 100%);
}

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

.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%;
    }
}


.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 {
    position: relative;
    width: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 40px 100px;
}

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

.footer-logo {
    padding: 35px 20px;
    padding-top: 20px;
    margin-right: 40px;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-cont {
    width: 100%;
    display: flex;
    color: white;
    font-size: 26px;
    gap: 80px;
    padding-bottom: 35px;
    border-bottom: 2px solid gray;
    position: relative;
}

.foot-cont-one {
    display: flex;
    gap: 80px;
}

.copyright {
    width: 100%;
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid gray;

    color: rgb(168, 167, 167);
}

footer svg {
    fill: rgba(255, 255, 255, 0.842);
    stroke-miterlimit: 10;
    stroke-width: 1px;
    width: 40px;
}

.city {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
}

.cont-col {
    display: flex;
    flex-direction: column;
}

.cont-col:first-child {
    color: rgb(168, 167, 167);
}

.cont-col:first-child a:first-child {
    color: white;
}

.foot-cont-two {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.foot-cont-two div {
    align-items: center;
    display: flex;
    gap: 20px;
}

.foot-cont-three {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: white;
    font-size: 20px;
}

.foot-cont-three p:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.foot-cont-three p {
    position: relative;
    padding-right: 16px;
}

.foot-cont-three p::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.foot-cont-three p.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.foot-cont-three a {
    display: none;
}

.social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    border-bottom: 2px solid gray;
}

@media (max-width: 768px) and (min-width: 320px) {
    footer {
        align-items: center;
        padding: 40px 40px;
    }

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

    .footer-logo {
        margin-right: 0;
    }

    .social {
        gap: 0;
    }

    .footer-logo img {
        object-fit: cover;
        width: 90px;
    }

    .footer-cont {
        font-size: 18px;
        flex-direction: column;
    }

    .foot-cont-two {
        padding-top: 35px;
        border-top: 2px solid gray;
    }

    .foot-cont-three {
        flex-direction: column;
    }


}

/* ========================================
   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-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);
    }
}

.footer {
    background-color: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-xl) 0 var(--spacing-lg);

    font-size: 0.875rem;
}

.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: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0.6;
    filter: grayscale(0.5) blur(1px);
    transform: scale(0.9);
    position: relative;
    z-index: 1;
}

@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 450px;
    opacity: 1;
    filter: grayscale(0) blur(0);
    transform: scale(1.2) translateY(-10px);
    z-index: 50;
    border-color: #ef4444;
    background: rgba(26, 29, 58, 0.95);
    backdrop-filter: blur(30px);
    box-shadow: 0 30px 60px rgba(239, 68, 68, 0.5), 0 0 100px rgba(0, 0, 0, 0.8);
}

.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 {
    height: 180px;
    /* Small image default */
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.7s ease;
}

@media (max-width: 768px) {
    .adalya-card .product-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .adalya-card .product-image-wrapper {
        height: 150px;
    }
}

.adalya-card:hover .product-image-wrapper,
.adalya-card.active .product-image-wrapper {
    height: 420px;
}

.adalya-card .product-info {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    padding: 0;
}

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

.adalya-card .product-image-wrapper img {
    width: 110%;
    height: 110%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.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;
        filter: none;
    }

    .adalya-card .product-image-wrapper {
        height: 250px;
    }

    .adalya-card.active {
        flex: 0 0 auto;
        width: 100%;
        transform: scale(1.05);
    }

    .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);
        filter: none;
    }
}


@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 {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

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

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

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

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

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

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



    .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;
    }

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

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

    .logo img {
        width: 50px;
    }

    .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(2, 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;
}

.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 {
    flex: 0 0 300px;
    height: 240px;
    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 {
    max-width: 100%;
    max-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 {
        flex: 0 0 250px;
        height: 250px;
    }

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

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

    .blur-visual {
        flex: 0 0 180px;
        height: 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: all 1s cubic-bezier(0.23, 1, 0.32, 1) !important;
    text-align: center;
}

/* Haunted Floating Animation */
.ghost-card:nth-child(1) {
    animation: spectralFloat 6s ease-in-out infinite;
}

.ghost-card:nth-child(2) {
    animation: spectralFloat 6s ease-in-out infinite 2s;
    margin-top: -40px;
}

.ghost-card:nth-child(3) {
    animation: spectralFloat 6s ease-in-out infinite 4s;
}

@keyframes spectralFloat {

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

    33% {
        transform: translateY(-15px) rotate(1deg);
    }

    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

.ghost-card:hover {
    transform: translateY(-40px) scale(1.05) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1), 0 20px 40px rgba(0, 0, 0, 0.6) !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: var(--spacing-lg);
}

.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,
.adalya-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,
.adalya-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   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;
    }
}