/* style.css - v6.0 (Final: Mobile Scroll + Gaps + Formatting) */

/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root { 
    --bg-cream: #FFF6EC; 
    --aden-blue: #001f3f; 
    --aden-clay: #007BFF; 
    --text-dark: #121212; 
    --font-heading: 'Playfair Display', serif; 
    --font-body: 'Inter', sans-serif; 

    /* New variables from eCentraal design */
    --navy:          #001f3f;
    --navy-mid:      #003366;
    --blue:          #007BFF;
    --blue-dark:     #0056b3;
    --blue-light:    #e8f4ff;
    --bg-body:       #F0F4F8;
    --bg-white:      #ffffff;
    --bg-light:      #f8f9fa;
    --border:        #e5e5e5;
    --border-dark:   #d0d0d0;
    --text-primary:  #121212;
    --text-muted:    #555555;
    --text-light:    #888888;
    --text-white:    #ffffff;
    --sp-1: 4px;    --sp-2: 8px;    --sp-3: 12px;
    --sp-4: 16px;   --sp-5: 20px;   --sp-6: 24px;
    --sp-8: 32px;   --sp-10: 40px;  --sp-12: 48px;
    --sp-16: 64px;  --sp-20: 80px;  --sp-24: 96px;
    --container-max: 1400px;
    --container-pad: 5%;
    --t-fast:   0.15s ease;
    --t-mid:    0.25s ease;
    --t-slow:   0.4s ease;
    --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
    --shadow-md:  0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
    --shadow-xl:  0 16px 48px rgba(0,0,0,.16);
    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  16px;
    --radius-full: 9999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body { 
    font-family: var(--font-body); 
    background-color: var(--bg-cream); 
    color: var(--text-dark); 
    line-height: 1.6; 
    overflow-x: hidden; 
    min-height: 100vh; 
    display: flex; flex-direction: column; 
}

/* Bidirectional Text Rendering Adaptations */
p, .hero-text, .spot-text, .coll-desc-text, .card-desc, .fui-desc, .card-info, .trend-text {
    unicode-bidi: plaintext;
    text-align: start;
}

a { text-decoration: none !important; color: inherit; transition: 0.2s; }
img { display: block; max-width: 100%; }

/* =========================================
   2. HEADER (ECENTRAAL NEW DESIGN)
   ========================================= */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

#site-header.header-hidden { transform: translateY(-100%); }

#header-placeholder { position: sticky; top: 0; z-index: 1000; width: 100%; }

/* Top Bar */
.topbar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.topbar-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 6px var(--container-pad);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-right {
    display: flex;
    gap: var(--sp-5);
}

.topbar-right a:hover { color: var(--navy); }

/* Main Header */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    width: 100%;
}

.header-grid {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: var(--sp-8);
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--sp-4) var(--container-pad);
}

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

/* Search Bar */
.header-search {
    display: flex;
    width: 100%;
    max-width: 580px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--t-fast);
    background: var(--bg-white);
}

.header-search:focus-within { border-color: var(--navy); }

.search-input {
    flex: 1;
    border: none;
    padding: var(--sp-3) var(--sp-4);
    font-size: 0.9rem;
    outline: none;
    background: transparent;
}

.search-btn {
    background: var(--navy);
    color: var(--text-white);
    border: none;
    padding: 0 var(--sp-5);
    display: flex;
    align-items: center;
    transition: background var(--t-fast);
}

.search-btn:hover { background: var(--blue); }

/* Header Actions */
.header-right {
    display: flex;
    align-items: center;
    gap: var(--sp-5);
}

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

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--text-primary);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 500;
    transition: color var(--t-fast);
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
}

.action-item:hover { color: var(--blue); }

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--navy);
    color: var(--text-white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    animation: badge-pop 0.2s ease;
}

@keyframes badge-pop {
    from { transform: scale(0.5); }
    to   { transform: scale(1); }
}

/* Mobile Search Row (hidden on desktop) */
.mobile-search-row {
    display: none;
    padding: var(--sp-3) var(--container-pad);
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.mobile-search-row .header-search { max-width: 100%; }

/* Site Navigation */
.site-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: var(--sp-10);
    padding: var(--sp-4) var(--container-pad);
    list-style: none;
    margin: 0;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    position: relative;
    padding-bottom: 2px;
    transition: color var(--t-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--navy);
    transition: width var(--t-mid);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

/* Hamburger Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all var(--t-mid);
}

/* Responsive Header rules */
@media (max-width: 1024px) {
    .header-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--sp-4);
        padding: var(--sp-3) var(--container-pad);
    }
    .header-center { display: none; }
    .mobile-search-row { display: block; }
    .site-nav { display: none; }
    .mobile-menu-btn { display: flex !important; }
    
    .header-actions .action-item[href*="compare.html"],
    .header-actions .action-item[href*="wishlist"] {
        display: none !important;
    }

    .header-actions .action-item span {
        display: none !important;
    }

    .header-actions {
        gap: var(--sp-3);
    }

    .header-right {
        gap: var(--sp-4);
    }
}

@media (max-width: 768px) {
    .topbar { display: none; }
}

@media (max-width: 480px) {
    .logo-img { height: 30px; }
}
/* =========================================
   3. CART SIDEBAR
   ========================================= */
.cart-overlay, .mobile-menu-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9998;
    opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(2px);
}
.cart-overlay.open, .mobile-menu-overlay.open { opacity: 1; visibility: visible; }

.cart-sidebar, #mobile-menu {
    position: fixed; top: 0; height: 100vh; height: 100dvh; background: white; z-index: 9999;
    width: 350px !important; max-width: 85% !important; 
    display: flex; flex-direction: column;
    box-shadow: 0 0 25px rgba(0,0,0,0.2); transition: transform 0.3s ease;
}

.cart-sidebar { right: 0; transform: translateX(100%); border-left: 1px solid #eee; }
#mobile-menu { left: 0; transform: translateX(-100%); border-right: 1px solid #eee; padding: 25px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.cart-sidebar.open { transform: translateX(0); }
#mobile-menu.open { transform: translateX(0); }

/* Cart Content */
.cart-header-side { padding: 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.cart-header-side h2 { font-family: var(--font-heading); margin: 0; font-size: 1.5rem; color: var(--aden-blue); }
.close-cart, .close-menu-btn { background: none; border: none; font-size: 1.8rem; cursor: pointer; color: #777; line-height: 1; }
.cart-items-scroll { flex: 1; overflow-y: auto; padding: 20px; -webkit-overflow-scrolling: touch; }
.cart-item-side { display: flex; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid #f9f9f9; padding-bottom: 15px; position: relative; }
.cart-item-side img { width: 70px; height: 70px; object-fit: cover; border-radius: 4px; background: #f9f9f9; border: 1px solid #eee; }
.cart-item-details { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.cart-item-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; display: block; color: #121212; }
.cart-item-price { color: #555; font-size: 0.9rem; }
.cart-qty-wrapper { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty-btn-side { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; background: white; border: 1px solid #ddd; border-radius: 3px; cursor: pointer; }
.qty-val-side { font-size: 0.9rem; font-weight: 600; min-width: 15px; text-align: center; }
.cart-remove-btn { position: absolute; top: 0; right: 0; color: #999; font-size: 1.2rem; background: none; border: none; cursor: pointer; line-height: 1; }
.cart-remove-btn:hover { color: var(--aden-clay); }
.cart-footer-side { padding: 20px; border-top: 1px solid #eee; background: #fff; }
.cart-total-row { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.2rem; margin-bottom: 15px; color: var(--aden-blue); }
.checkout-btn-side { width: 100%; background: #121212; color: white; padding: 15px; text-transform: uppercase; font-weight: 700; border: none; cursor: pointer; }
.view-cart-btn-side { display: block; text-align: center; margin-bottom: 10px; text-decoration: underline; font-size: 0.9rem; color: #777; }
.mobile-nav-header { display: flex; justify-content: flex-end; margin-bottom: 30px; }
.mobile-nav-links a { display: block; padding: 15px 0; border-bottom: 1px solid #f5f5f5; font-size: 1.15rem; color: #121212; font-weight: 500; }

/* =========================================
   4. HERO SECTION (Edge-to-Edge)
   ========================================= */
.hero-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--bg-cream); 
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    border: none;
    min-height: 85vh; 
}

.hero-content-side {
    padding: 0 10%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--bg-cream); 
}

.hero-image-side {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem; 
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--aden-blue); 
    text-align: left;
}

.hero-text {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: var(--text-dark); 
    line-height: 1.6;
    text-align: left;
    max-width: 500px;
    font-family: var(--font-body);
}

.hero-btn {
    display: inline-block;
    background-color: var(--text-dark); 
    color: #fff;
    padding: 18px 40px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0;
}
.hero-btn:hover { background-color: var(--aden-clay); border-color: var(--aden-clay); color: #fff; }

@media (max-width: 900px) {
    .hero-split { grid-template-columns: 1fr; min-height: auto; }
    .hero-content-side { order: 2; padding: 60px 20px; align-items: center; text-align: center; }
    .hero-title, .hero-text { text-align: center; }
    .hero-image-side { order: 1; height: 60vh; min-height: 400px; }
    .hero-title { font-size: 3rem; }
}

/* =========================================
   5. LAYOUT HELPERS (Full Width & Spacing)
   ========================================= */
.section-full {
    width: 100%;
    /* INCREASED Spacing as requested */
    padding: 100px 0; 
    display: block;
}

.bg-cream { background-color: var(--bg-cream); }
.bg-white { background-color: #ffffff; }

/* Inner Container: Keeps content centered */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

/* =========================================
   6. CATEGORIES GRID (Scroll on Mobile)
   ========================================= */
.cat-grid-edge {
    /* Desktop Default: 4-Column Grid */
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    width: 100%;
    margin: 0;
    
    /* Gaps & Edge Padding */
    gap: 20px;
    padding: 0 20px; 
}

.cat-card {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.cat-card:hover .cat-img { transform: scale(1.05); }

.cat-overlay { 
    position: absolute; inset: 0; 
    background: rgba(0,0,0,0.25); 
    display: flex; align-items: center; justify-content: center; 
    transition: background 0.3s; 
}
.cat-card:hover .cat-overlay { background: rgba(0,0,0,0.1); }

.cat-name { 
    color: white; 
    font-family: var(--font-heading); 
    font-size: 2rem; 
    border-bottom: 2px solid white; 
    padding-bottom: 5px; 
}

/* --- MOBILE SCROLL LOGIC --- */
@media (max-width: 900px) {
    .cat-grid-edge {
        display: flex; /* Switch to flex row */
        overflow-x: auto; /* Enable scroll */
        scroll-snap-type: x mandatory; /* Snap effect */
        -webkit-overflow-scrolling: touch; 
        padding-bottom: 20px; /* Space for scrollbar */
        gap: 15px;
    }

    .cat-card {
        min-width: 85vw; /* Each card takes 85% of screen width */
        height: 400px;
        scroll-snap-align: center; /* Center the card when scrolling stops */
    }

    /* Hide ugly scrollbars */
    .cat-grid-edge::-webkit-scrollbar { display: none; }
    .cat-grid-edge { -ms-overflow-style: none; scrollbar-width: none; }
}

/* =========================================
   7. COMPONENTS (Sliders, Spotlight, Newsletter)
   ========================================= */

/* Sliders */
.scrolling-wrapper { display: flex; gap: 30px; overflow-x: auto; padding: 10px 0; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
.scrolling-wrapper::-webkit-scrollbar { display: none; }

.trend-card { min-width: 280px; scroll-snap-align: start; }
.trend-img-box { position: relative; margin-bottom: 15px; background: #fff; aspect-ratio: 1; }
.trend-img { width: 100%; height: 100%; object-fit: cover; }
.quick-add-btn { position: absolute; bottom: 10px; right: 10px; background: white; color: black; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.15); transition: transform 0.2s; }
.quick-add-btn:hover { background: #121212; color: white; transform: scale(1.1); }
.trend-title { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 5px; display: block; }
.trend-price { color: #555; font-size: 0.95rem; }
.old-price { text-decoration: line-through; color: #aaa; margin-right: 8px; font-size: 0.85rem; }
.sale-price { color: var(--aden-clay); font-weight: 600; }

/* Spotlight */
.spotlight { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; margin: 0; padding: 0; width: 100%; }
.spot-img { width: 100%; height: 500px; object-fit: cover; border-radius: 4px; display: block; }
.spot-content { padding: 20px; }
.spot-title { font-family: var(--font-heading); font-size: 2.8rem; margin-bottom: 20px; line-height: 1.2; }
.spot-text { color: #555; line-height: 1.8; margin-bottom: 30px; font-size: 1.05rem; }
.spot-btn { border-bottom: 1px solid #121212; padding-bottom: 2px; text-transform: uppercase; font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; }

@media (max-width: 768px) {
    .spotlight { grid-template-columns: 1fr; gap: 40px; }
    .spot-img { height: 350px; }
}

/* Newsletter */
.newsletter-content { text-align: center; max-width: 600px; margin: 0 auto; }
.nl-input { padding: 15px; border: 1px solid #ddd; width: 300px; max-width: 100%; margin-right: 10px; }
.nl-btn { padding: 15px 30px; background: #121212; color: white; border: none; font-weight: 600; text-transform: uppercase; cursor: pointer; }

@media (max-width: 768px) { .nl-input { margin-bottom: 10px; margin-right: 0; width: 100%; } }

/* Footer */
footer { background-color: var(--aden-blue); color: white; padding: 4rem 5% 2rem 5%; margin-top: auto; text-align: center; }





/* Add this to style.css */

.site-footer {
    background-color: var(--aden-blue);
    color: #fff;
    padding-top: 80px;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% 60px 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-brand { flex: 1; min-width: 300px; max-width: 400px; }
.footer-logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 1px; }
.footer-desc { font-family: var(--font-body); font-size: 0.95rem; line-height: 1.6; color: rgba(255, 255, 255, 0.8); text-align: start; }

.footer-nav { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 20px; color: #fff; letter-spacing: 0.5px; }
.footer-col a { display: block; color: rgba(255, 255, 255, 0.7); margin-bottom: 12px; font-size: 0.9rem; transition: color 0.2s ease, transform 0.2s; }
.footer-col a:hover { color: var(--aden-clay); transform: translateX(5px); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 25px 5%; text-align: center; font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }

@media (max-width: 768px) {
    .footer-content { flex-direction: column; gap: 40px; }
    .footer-nav { flex-direction: column; gap: 30px; width: 100%; }
    .footer-brand { max-width: 100%; }
}

/* ========================================================
   LANDING PAGE STYLES FROM ORIGINAL STORE (Simple Hero, Sliders)
   ======================================================== */
.simple-hero {
    width: 100%;
    line-height: 0;
}
.hero-full-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar Track/Thumb */
.fui-scroll-container {
    width: 300px;
    margin: 20px auto 0;
    padding: 5px 0;
    cursor: pointer;
}
.fui-scroll-track {
    width: 100%;
    height: 2px;
    background: #eee;
    position: relative;
    border-radius: 10px;
}
.fui-scroll-thumb {
    position: absolute;
    top: -1px;
    left: 0;
    height: 4px;
    width: 40px;
    background: #007BFF;
    border-radius: 10px;
    transition: background 0.3s ease, left 0.1s ease;
}
.fui-scroll-thumb:hover {
    background: #001f3f;
}

.fui-products-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: 5%;
    padding-right: 5%;
}
.fui-products-slider::-webkit-scrollbar {
    display: none;
}

.fui-card {
    min-width: 300px;
    width: 300px;
    flex: 0 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #edf2f7;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fui-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.fui-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f9f9f9;
}
.fui-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fui-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #001f3f;
    color: #fff;
    padding: 4px 10px;
    font-size: 0.75rem;
    z-index: 2;
}
.fui-tag.is-new {
    background: #ffd700;
    color: #000;
    font-weight: 700;
}

.fui-info {
    padding-top: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.fui-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #001f3f;
    font-weight: 700;
    margin-bottom: 8px;
}
.fui-currency {
    font-size: 0.75rem;
    font-weight: 500;
}
.fui-amount {
    font-size: 1.25rem;
}
.fui-name {
    font-size: 0.95rem;
    color: #001f3f;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
    font-weight: 500;
}
.fui-desc {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 15px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.fui-add-btn {
    width: 100%;
    background: #e2e8f0;
    color: #333;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.fui-add-btn:hover {
    background: #007BFF;
    color: #fff;
}

/* Media Carousel Categories */
.media-carousel-section {
    padding: 60px 0;
    background-color: #fff;
}
.media-carousel-title {
    font-family: var(--font-body);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--aden-blue);
    font-weight: 700;
}
.media-carousel-content {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0 20px 5%;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.media-carousel-content::-webkit-scrollbar {
    display: none;
}
.media-carousel-card {
    min-width: 400px;
    width: 400px;
    flex: 0 0 auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    background: #f9f9f9;
    border: 1px solid #edf2f7;
    aspect-ratio: 3/4;
}
.media-carousel-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.media-carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.media-carousel-card:hover img {
    transform: scale(1.04);
}
.media-carousel-card h3 {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.3rem;
    z-index: 2;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
    .media-carousel-card {
        min-width: 260px;
        width: 260px;
    }
    .media-carousel-content {
        margin-left: 24px;
        margin-right: 24px;
        gap: 20px;
    }
    .fui-products-slider {
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 10px;
    }
    .fui-card {
        width: calc(50vw - 23px);
        min-width: calc(50vw - 23px);
        padding: 10px;
    }
    .fui-name {
        font-size: 0.8rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    .fui-desc {
        display: none;
    }
    .fui-price {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    .fui-amount {
        font-size: 0.95rem;
    }
    .fui-add-btn {
        padding: 8px;
        font-size: 0.75rem;
    }
}