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

:root {
    /* Primary Colors */
    --primary-blue: #4353FF;
    --primary-dark: #1a1f36;
    --primary-light: #f7f9fc;

    /* Accent Colors */
    --accent-green: #22c55e;
    --accent-orange: #ff9933;
    --accent-pink: #ff3366;
    --accent-purple: #9333ea;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4353FF 0%, #9333ea 100%);
    --gradient-success: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    --gradient-warning: linear-gradient(135deg, #ff9933 0%, #f59e0b 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;

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

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--gray-900);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition-base);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.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: white;
    border-radius: 15px;
    color: black;
    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 {
    position: fixed;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

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

.logo img {
    width: 70px;
    height: 70px;
}

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

.nav-desktop a {
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition-base);
}

.nav-desktop a:hover {
    color: var(--primary-blue);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: var(--transition-base);
}

.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 */
.mobile-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: var(--white);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: var(--spacing-lg);
}

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

.mobile-menu a {
    display: block;
    padding: var(--spacing-sm);
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.mobile-menu a:hover {
    background: var(--gray-100);
    color: var(--primary-blue);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(67, 83, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-label {
    display: inline-block;
    background: var(--gradient-warning);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
    width: fit-content;
}

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

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
    display: inline-block;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-hero-secondary {
    background: var(--white);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-blue);
    display: inline-block;
}

.btn-hero-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

@keyframes float {

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

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

/* ===================================
   SLIDER SYSTEM (Merrymi & JNR)
   =================================== */
.slider-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: var(--spacing-2xl);
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

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

.slider-item {
    flex: 0 0 calc((100% - (var(--spacing-lg) * 2)) / 3);
    box-sizing: border-box;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.slider-arrow:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.slider-arrow.prev {
    left: -25px;
}

.slider-arrow.next {
    right: -25px;
}

/* Responsive Sliders */
@media (max-width: 1024px) {
    .slider-item {
        flex: 0 0 calc((100% - var(--spacing-lg)) / 2);
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-arrow.prev {
        left: -15px;
    }

    .slider-arrow.next {
        right: -15px;
    }
}

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

    .slider-track {
        gap: 0;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }

    .slider-arrow.prev {
        left: 5px;
    }

    .slider-arrow.next {
        right: 5px;
    }

    .slider-container {
        overflow: hidden;
    }
}

/* ===================================
   PROMO GRID SECTION (Merrymi)
   =================================== */
.promo-grid-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.product-item-v2 {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-item-v2:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.product-image-v2 {
    width: 100%;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.product-image-v2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-base);
}

.product-item-v2:hover .product-image-v2 img {
    transform: scale(1.05);
}

.product-content-v2 h1 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.product-content-v2 p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.btn-primary-v2 {
    display: inline-block;
    margin-top: var(--spacing-md);
    padding: 0.75rem 1.5rem;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

/* Brand Belt */
.brand-belt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--gray-100);
}

.brand-item {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--gray-300);
    letter-spacing: 2px;
    transition: var(--transition-base);
}

.brand-item:hover {
    color: var(--gray-800);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-50);
}

.section-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
}

.btn-reviews {
    background: var(--accent-green);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    margin: 0 auto var(--spacing-xl);
    display: block;
    box-shadow: var(--shadow-md);
}

.btn-reviews:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-header {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-info h5 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.stars {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-card h6 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.testimonial-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===================================
   PRODUCTS SHOWCASE SECTION
   =================================== */
.products-showcase {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

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

.section-header-center h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.section-header-center p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.7;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.showcase-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.showcase-image {
    height: 250px;
    background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-content {
    padding: var(--spacing-lg);
}

.showcase-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.showcase-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================================
   BESTSELLERS SECTION
   =================================== */
.bestsellers {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-50);
}

.section-label {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.75rem;
    z-index: 10;
}

.product-badge.bestseller {
    background: var(--accent-green);
}

.product-badge.sale {
    background: var(--accent-pink);
}

.product-badge.new {
    background: var(--accent-purple);
}

.product-image {
    height: 280px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.product-info h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.product-rating .stars {
    color: #fbbf24;
    font-size: 0.875rem;
}

.product-rating .reviews {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.product-description {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-200);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.price del {
    color: var(--gray-400);
    font-size: 1rem;
    margin-right: var(--spacing-xs);
}

.btn-add-cart {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.btn-add-cart:hover {
    transform: scale(1.05);
}

/* ===================================
   PROMOTIONS SECTION
   =================================== */
.promotions {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.promo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

.promo-card {
    background: linear-gradient(135deg, #4353FF 0%, #9333ea 100%);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.promo-card.large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.promo-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.promo-content h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.promo-content p {
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.btn-promo {
    background: var(--white);
    color: var(--primary-blue);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
}

.btn-promo:hover {
    transform: scale(1.05);
}

.promo-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-image img {
    max-width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */
.newsletter {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
}

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

.newsletter-label {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.newsletter-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.newsletter-text p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.btn-newsletter {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
}

.btn-newsletter:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.newsletter-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary-blue);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    cursor: pointer;
    user-select: none;
}

.faq-question h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-blue);
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

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

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    position: relative;
    width: 100%;
    background-color: black;
    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;
    }

    .featured-title {
        font-size: 1.25rem;
    }

    .featured-desc {
        font-size: 0.9rem;
    }

    .featured-btns {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .featured-btns a {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

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

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

    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

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

    .promo-card.large {
        grid-template-columns: 1fr;
    }

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

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

/* Mobile */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .btn-primary {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
    }

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

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

    .hero-buttons {
        flex-direction: row;
        gap: var(--spacing-sm);
    }

    .hero-image {
        aspect-ratio: 1 / 1;
        max-width: 300px;
        margin: 0 auto;
    }
        max-width: 300px;
    }

    .section-header h3,
    .section-header-center h3 {
        font-size: 1.75rem;
    }

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

    .brand-item {
        font-size: 0.875rem;
    }

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

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

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

    .promo-content h4 {
        font-size: 1.5rem;
    }

    .newsletter-text h3 {
        font-size: 1.75rem;
    }

    .newsletter-text p {
        font-size: 1rem;
    }

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

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

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

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .section-header h3,
    .section-header-center h3 {
        font-size: 1.5rem;
    }

    .showcase-item {
        min-width: 100%;
    }

    .product-card {
        min-width: 100%;
    }
}

/* ===================================
   JNR COLLECTION SECTION
   =================================== */
.jnr-collection {
    padding: var(--spacing-2xl) 0;
    background: #111;
    color: var(--white);
}

.section-title-v3 {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title-v3 h2 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #ff9900;
    /* JNR Accent Color */
}

.title-line {
    width: 80px;
    height: 4px;
    background: #ff9900;
    margin: 0 auto;
}

.jnr-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.jnr-card {
    background: #222;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    border-top: 4px solid #ff9900;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.jnr-card:hover {
    transform: translateY(-10px);
    background: #2a2a2a;
}

.jnr-image {
    width: 100%;
    margin-bottom: var(--spacing-sm);
    background: #333;
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
}

.jnr-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.jnr-info h1 {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jnr-info p {
    font-size: 0.875rem;
    color: #ccc;
}

.btn-jnr {
    display: block;
    margin-top: var(--spacing-md);
    padding: 0.6rem 1rem;
    background: #ff9900;
    color: #000;
    font-weight: 800;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: var(--transition-base);
}

.btn-jnr:hover {
    background: var(--white);
    color: #000;
}

/* JNR Responsive */
@media (max-width: 1200px) {
    .jnr-grid-10 {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

@media (max-width: 600px) {
    .jnr-grid-10 {
        grid-template-columns: 1fr;
    }

    .section-title-v3 h2 {
        font-size: 1.75rem;
    }
}

/* ===================================
   FUMOT COLLECTION SECTION
   =================================== */
.fumot-collection {
    padding: var(--spacing-2xl) 0;
    background: #fdf4ff;
    /* Light Pink/Purple tint */
    position: relative;
    overflow: hidden;
}

/* Decorative background element */
.fumot-collection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(147, 51, 234, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.section-title-v4 {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.section-title-v4 h2 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #9333ea 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fallback for browsers not supporting text clip */
    color: #9333ea;
}

@supports (-webkit-background-clip: text) {
    .section-title-v4 h2 {
        color: transparent;
    }
}

.title-line-fumot {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #9333ea, #db2777);
    margin: 0 auto;
    border-radius: 5px;
}

.fumot-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    text-align: center;
    border: 1px solid rgba(219, 39, 119, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 25px -5px rgba(147, 51, 234, 0.05);
    position: relative;
    overflow: hidden;
}

.fumot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px -10px rgba(236, 72, 153, 0.2);
    border-color: #f0abfc;
}

.fumot-image {
    width: 100%;
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f0fc 0%, #fdf2f8 100%);
    padding: var(--spacing-md);
    transition: var(--transition-base);
}

.fumot-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.05));
}

.fumot-card:hover .fumot-image {
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
}

.fumot-card:hover .fumot-image img {
    transform: scale(1.12) rotate(2deg);
}

.fumot-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fumot-info h1 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #4c1d95;
    line-height: 1.3;
    min-height: 3rem;
    /* Ensure alignment */
    display: flex;
    align-items: center;
    justify-content: center;
}

.fumot-info p {
    font-size: 0.9rem;
    color: #831843;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.btn-fumot {
    display: block;
    margin-top: var(--spacing-md);
    padding: 0.8rem 1.5rem;
    background: linear-gradient(90deg, #9333ea, #db2777);
    color: var(--white);
    font-weight: 700;
    border-radius: var(--radius-lg);
    text-transform: uppercase;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(219, 39, 119, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-fumot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #db2777, #9333ea);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-fumot:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
}

.btn-fumot:hover::before {
    opacity: 1;
}

/* Fumot Responsive */
@media (max-width: 768px) {
    .section-title-v4 h2 {
        font-size: 1.75rem;
    }

    .fumot-info h1 {
        font-size: 1.1rem;
        min-height: auto;
    }
}

/* ===================================
   ADALYA COLLECTION SECTION
   =================================== */
.adalya-collection {
    padding: var(--spacing-2xl) 0;
    background: #111111;
    color: var(--white);
    position: relative;
}

/* Background Texture */
.adalya-collection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

.adalya-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.adalya-subtitle {
    display: inline-block;
    color: #ef4444;
    /* Red accent */
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
}

.adalya-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.adalya-separator {
    width: 60px;
    height: 4px;
    background: #ef4444;
    margin: 0 auto var(--spacing-md);
}

.adalya-header p {
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* Grid Layout */
.adalya-grid-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    /* Feature is larger */
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

/* Main Feature Card */
.adalya-main-card {
    background: linear-gradient(145deg, #1f1f1f, #161616);
    border: 1px solid #333;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.adalya-main-card:hover {
    border-color: #ef4444;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.15);
}

.adalya-badge {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-lg);
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 4px;
    z-index: 5;
}

.adalya-image-large {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.adalya-image-large::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, transparent 70%);
    z-index: -1;
}

.adalya-image-large img {
    max-height: 100%;
    width: auto;
    transition: transform 0.5s ease;
}

.adalya-main-card:hover .adalya-image-large img {
    transform: scale(1.1) translateY(-10px);
}


.adalya-content-large h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--white);
    line-height: 1.2;
}

.adalya-content-large p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.adalya-content-large p:last-of-type {
    margin-bottom: var(--spacing-lg);
}

.btn-adalya-large {
    display: inline-block;
    background: #ef4444;
    color: white;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    text-transform: uppercase;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-adalya-large:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

/* Sub Grid (2x2) */
.adalya-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--spacing-lg);
}

.adalya-small-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    /* Changed to column for better mobile handling */
    align-items: center;
    transition: var(--transition-base);
    text-align: center;
}

.adalya-small-card:hover {
    background: #222;
    border-color: #555;
    transform: translateY(-5px);
}

.adalya-image-small {
    width: 180px;
    height: 180px;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.adalya-image-small img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.adalya-content-small {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.adalya-content-small h1 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--white);
    line-height: 1.3;
}

.adalya-content-small p {
    color: #ef4444;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.btn-adalya-small {
    display: inline-block;
    background: #ef4444;
    color: white;
    padding: 0.5rem 1rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    text-transform: uppercase;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-adalya-small:hover {
    color: #ef4444;
    border-bottom-color: #ef4444;
}

/* Adalya Responsive */
@media (max-width: 992px) {
    .adalya-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .adalya-main-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .adalya-image-large {
        width: 40%;
        height: 200px;
        margin-bottom: 0;
        margin-right: var(--spacing-lg);
    }

    .adalya-content-large {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .adalya-main-card {
        flex-direction: column;
        text-align: center;
    }

    .adalya-image-large {
        width: 100%;
        margin-bottom: var(--spacing-md);
        margin-right: 0;
    }

    .adalya-content-large {
        width: 100%;
    }

    .adalya-header h2 {
        font-size: 2rem;
    }

    .adalya-subgrid {
        grid-template-columns: 1fr;
    }

    .adalya-small-card {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: var(--spacing-sm);
    }

    .adalya-image-small {
        margin-bottom: 0;
        margin-right: var(--spacing-md);
        width: 80px;
        height: 80px;
    }

    .adalya-content-small {
        align-items: flex-start;
    }
}

/* ===================================
   AL FAKHER SECTION
   =================================== */
.alfakher-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.alfakher-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.alfakher-content {
    flex: 1;
}

.alfakher-label {
    display: inline-block;
    background: linear-gradient(90deg, #fbbf24, #d97706);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.alfakher-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    background: linear-gradient(90deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.alfakher-desc {
    color: #94a3b8;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
}

.alfakher-features {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.af-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.af-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: #fbbf24;
}

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

.af-text {
    font-weight: 600;
    color: #e2e8f0;
}

.btn-alfakher {
    display: inline-block;
    background: linear-gradient(90deg, #fbbf24, #b45309);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.btn-alfakher:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
}

.alfakher-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.af-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    z-index: -1;
    animation: pulse-glow 3s infinite alternate;
}

.af-product-img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease;
}

.alfakher-image-container:hover .af-product-img {
    transform: scale(1.05) rotate(2deg);
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Al Fakher Responsive */
@media (max-width: 960px) {
    .alfakher-wrapper {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xl);
    }

    .alfakher-desc {
        margin: 0 auto var(--spacing-xl);
    }

    .alfakher-features {
        justify-content: center;
    }

    .alfakher-content h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .alfakher-content h2 {
        font-size: 1.75rem;
    }

    .af-feature {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   BLUR COLLECTION SECTION
   =================================== */
.blur-collection {
    padding: var(--spacing-2xl) 0;
    background: #eef2f6;
    /* Soft cool grey */
}

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

.blur-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #334155;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
}

.blur-line {
    width: 60px;
    height: 4px;
    background: #0ea5e9;
    /* Sky blue */
    margin: 0 auto var(--spacing-md);
    border-radius: 2px;
}

.blur-header p {
    color: #64748b;
    font-size: 1.125rem;
}

.blur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.blur-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.blur-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(14, 165, 233, 0.15);
    /* Blue glow */
    border-color: #7dd3fc;
}

.blur-image-wrapper {
    position: relative;
    background: #f1f5f9;
    padding: var(--spacing-lg);
    overflow: hidden;
}

.blur-image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.blur-card:hover .blur-image-wrapper img {
    transform: scale(1.1);
}

.blur-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.blur-puffs {
    font-weight: 800;
    color: #0ea5e9;
    font-size: 0.875rem;
}

.blur-content {
    padding: var(--spacing-lg);
}

.blur-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: var(--spacing-sm);
}

.blur-desc {
    color: #64748b;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.btn-blur {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--white);
    color: #0ea5e9;
    border: 2px solid #0ea5e9;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-blur:hover {
    background: #0ea5e9;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

/* Blur Responsive */
@media (max-width: 768px) {
    .blur-header h2 {
        font-size: 2rem;
    }
}

/* ===================================
   GHOST COLLECTION SECTION
   =================================== */
.ghost-collection {
    padding: var(--spacing-2xl) 0;
    background: #000000;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ghost-collection::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(103, 232, 249, 0.15) 0%, transparent 70%);
    z-index: 0;
    filter: blur(60px);
}

.ghost-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.ghost-tag {
    color: #67e8f9;
    /* Cyan */
    font-size: 0.875rem;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
}

.ghost-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 0 20px rgba(103, 232, 249, 0.5);
}

.ghost-glow-line {
    width: 80px;
    height: 4px;
    background: #67e8f9;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 0 15px #67e8f9;
}

.ghost-header p {
    color: #94a3b8;
    font-size: 1.125rem;
}

.ghost-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.ghost-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.ghost-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: #67e8f9;
    box-shadow: 0 0 30px rgba(103, 232, 249, 0.15);
    transform: translateY(-5px);
}

.ghost-card.featured {
    flex-direction: row;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(103, 232, 249, 0.05) 100%);
}

.ghost-content {
    flex: 1;
}

.ghost-content.center {
    text-align: center;
    margin-top: var(--spacing-md);
}

.ghost-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.ghost-specs {
    color: #67e8f9;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ghost-desc {
    color: #cbd5e1;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.btn-ghost {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: #67e8f9;
    border: 1px solid #67e8f9;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.btn-ghost::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #67e8f9;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-ghost:hover {
    color: #000;
}

.btn-ghost:hover::before {
    left: 0;
}

.btn-ghost.small {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
}

.ghost-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ghost-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(103, 232, 249, 0.2));
    transition: transform 0.5s ease;
}

.ghost-card:hover .ghost-image img {
    filter: drop-shadow(0 0 30px rgba(103, 232, 249, 0.4));
}

.ghost-card.featured .ghost-image img {
    max-height: 300px;
}

.ghost-image.small img {
    height: 180px;
}

/* Ghost Responsive */
@media (max-width: 992px) {
    .ghost-grid {
        grid-template-columns: 1fr;
    }

    .ghost-card.featured {
        flex-direction: column;
        text-align: center;
    }

    .ghost-card.featured .ghost-image {
        margin-top: var(--spacing-lg);
    }
}

/* ===================================
   HAYATI COLLECTION SECTION
   =================================== */
.hayati-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(to bottom, #f8fafc, #e2e8f0);
    position: relative;
    overflow: hidden;
}

.hayati-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.hayati-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.hayati-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
}

.hayati-divider {
    width: 50px;
    height: 5px;
    background: #475569;
    margin: 0 auto var(--spacing-md);
    border-radius: 10px;
}

.hayati-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.hayati-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hayati-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.hayati-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.hayati-content-box {
    padding: var(--spacing-xl);
    flex: 1;
    z-index: 2;
}

.hayati-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.twist-theme .hayati-badge {
    background: #e0f2fe;
    color: #0284c7;
}

.pro-theme .hayati-badge {
    background: #f3e8ff;
    color: #7e22ce;
}

.hayati-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hayati-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    color: #334155;
}

.hayati-desc {
    color: #64748b;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.btn-hayati {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.twist-theme .btn-hayati {
    background: #0284c7;
    color: white;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.twist-theme .btn-hayati:hover {
    background: #0369a1;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.4);
}

.pro-theme .btn-hayati {
    background: #7e22ce;
    color: white;
    box-shadow: 0 4px 15px rgba(126, 34, 206, 0.3);
}

.pro-theme .btn-hayati:hover {
    background: #6b21a8;
    box-shadow: 0 8px 20px rgba(126, 34, 206, 0.4);
}

.hayati-visual {
    height: 320px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: var(--spacing-md);
}

.visual-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(30px);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.hayati-card:hover .visual-circle {
    opacity: 1;
}

.twist-theme .visual-circle {
    background: radial-gradient(circle, #38bdf8 0%, transparent 70%);
}

.pro-theme .visual-circle {
    background: radial-gradient(circle, #a855f7 0%, transparent 70%);
}

.hayati-visual img {
    position: relative;
    z-index: 2;
    max-height: 90%;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.hayati-card:hover .hayati-visual img {
    transform: scale(1.1) translateY(-10px) rotate(-5deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Hayati Responsive */
@media (max-width: 768px) {
    .hayati-duo {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hayati-header h2 {
        font-size: 2rem;
    }
}

/* ===================================
   SPACEMAN COLLECTION SECTION
   =================================== */
.spaceman-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
    background: #0b0d17;
    color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.spaceman-universe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(white, rgba(255, 255, 255, .2) 2px, transparent 3px),
        radial-gradient(white, rgba(255, 255, 255, .15) 1px, transparent 2px),
        radial-gradient(white, rgba(255, 255, 255, .1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    opacity: 0.8;
    z-index: 1;
}

.spaceman-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: var(--spacing-2xl);
}

.spaceman-content {
    flex: 1;
    max-width: 600px;
}

.space-badge {
    background: linear-gradient(90deg, #ff00cc, #333399);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.4);
}

.spaceman-content h2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: var(--spacing-md);
    background: -webkit-linear-gradient(#fff, #a5a5a5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.space-hero-txt {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: var(--spacing-xl);
    line-height: 1.5;
}

.space-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    backdrop-filter: blur(5px);
}

.stat-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff00cc;
}

.stat-lbl {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e2e8f0;
}

.btn-spaceman {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 3rem;
    background: white;
    color: black;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.btn-spaceman:hover {
    transform: scale(1.05);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 204, 0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-spaceman:hover .btn-glow {
    opacity: 1;
}

.spaceman-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.planet-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #333399 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
    opacity: 0.6;
}

.spaceman-product {
    position: relative;
    z-index: 5;
    max-width: 100%;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    animation: float-space 6s ease-in-out infinite;
}

.rock {
    position: absolute;
    background: #475569;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 2;
}

.r1 {
    width: 40px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation: float-rock 8s infinite;
}

.r2 {
    width: 20px;
    height: 20px;
    bottom: 30%;
    right: 15%;
    animation: float-rock 12s infinite reverse;
}

.r3 {
    width: 10px;
    height: 10px;
    top: 10%;
    right: 30%;
    animation: float-rock 15s infinite;
}

@keyframes float-space {

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

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

@keyframes float-rock {

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

    50% {
        transform: translate(10px, -10px);
    }
}

/* Spaceman Responsive */
/* Spaceman Responsive */
@media (max-width: 960px) {
    .spaceman-layout {
        flex-direction: column-reverse;
        /* Put image on top on mobile if desired, or keep column. Let's try column to match desktop flow or reverse for visual impact? Actually column is standard. Let's stick to column but maybe ensure spacing */
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xl);
    }

    .spaceman-content h2 {
        font-size: 3rem;
    }

    .space-stats {
        justify-content: center;
    }

    .spaceman-visual {
        min-height: 300px;
    }
}

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

    .spaceman-content h2 {
        font-size: 2rem;
    }

    .space-hero-txt {
        font-size: 1rem;
    }

    .space-stats {
        gap: var(--spacing-sm);
        flex-wrap: wrap;
    }

    .stat-box {
        padding: 0.75rem 1rem;
        flex: 1 1 40%;
    }

    .stat-val {
        font-size: 1.25rem;
    }

    .btn-spaceman {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .spaceman-visual {
        min-height: 250px;
    }

    .spaceman-product {
        max-width: 80%;
    }
}