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

/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root {
    --bg-light: #F0F4F8;
    /* Light Blue/Grey */
    --brand-primary: #001f3f;
    /* Deep Navy Blue */
    --brand-accent: #007BFF;
    /* Bright Blue */
    --text-dark: #121212;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

a {
    text-decoration: none !important;
    color: inherit;
    transition: 0.2s;
}

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

/* =========================================
   2. HEADER (NYT STYLE WITH IMAGE)
   ========================================= */
#header-placeholder {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

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

/* --- TOP BAR --- */
.header-top-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 8px 5%;
    font-size: 12px;
    color: #666;
}

.header-top-bar .section-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.selector-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.selector-wrapper:hover {
    color: #000;
}

.selector-wrapper select {
    border: none;
    background: transparent;
    font-size: 12px;
    color: inherit;
    cursor: pointer;
    outline: none;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
}

/* --- ROW 1: MAIN (Logo, Search, Icons) --- */
.header-main-row {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    background: #fff;
}

.header-grid {
    display: grid;
    /* Logo(Left), Search(Center), Icons(Right) */
    grid-template-columns: 200px 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left: Logo */
.header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Center: Integrated Search */
.header-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-search-container {
    display: flex;
    width: 100%;
    max-width: 600px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.header-search-container:focus-within {
    border-color: var(--brand-primary);
}

.search-category-select {
    border: none;
    border-right: 1px solid #eee;
    padding: 0 15px;
    font-size: 13px;
    color: #444;
    background: #fcfcfc;
    cursor: pointer;
    outline: none;
    min-width: 130px;
}

.search-input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
}

.search-submit-btn {
    background: var(--brand-primary);
    color: #fff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.search-submit-btn:hover {
    background: var(--brand-accent);
}

/* Right: Actions Icons */
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #121212;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

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

.action-item svg {
    width: 24px;
    height: 24px;
}

/* icon-btn reset for cart button */
.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.action-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--brand-primary);
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.logo-link {
    display: block;
    line-height: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

/* --- ROW 2: NAVIGATION (Desktop) --- */
.header-nav-row {
    background: #fff;
    padding: 14px 0;
    display: block;
}

.desktop-nav {
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333;
    position: relative;
}

.nav-links a:hover {
    color: #000;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #000;
    transition: width 0.3s;
}

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

/* --- RESPONSIVENESS --- */
.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .header-grid {
        grid-template-columns: 1fr auto 1fr;
        gap: 15px;
    }

    .header-center {
        display: none;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .header-main-row {
        border-bottom: none;
        padding: 10px 0;
    }

    .logo-img {
        height: 30px;
    }
}

.mobile-search-row {
    padding: 10px 5%;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: none;
}

@media (max-width: 1024px) {
    .mobile-search-row {
        display: block;
    }

    .mobile-search-row .header-search-container {
        max-width: 100%;
        border: 1px solid #eee;
    }
}




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

.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(--brand-primary);
}

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

.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(--brand-accent);
}

.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(--brand-primary);
}

.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 CAROUSEL SECTION
   ========================================= */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    height: 100%;
}

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

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

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--brand-primary);
    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;
}

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

.hero-btn:hover {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #fff;
}

/* Carousel Controls */
.carousel-nav {
    position: absolute;
    bottom: 40px;
    left: 10%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-arrow {
    background: none;
    border: 1px solid rgba(0,0,0,0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.carousel-arrow:hover {
    background-color: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--brand-primary);
    width: 24px;
    border-radius: 4px;
}

@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-light {
    background-color: var(--bg-light);
}

.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(--brand-accent);
    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(--brand-primary);
    color: white;
    padding: 4rem 5% 2rem 5%;
    margin-top: auto;
    text-align: center;
}





/* Add this to style.css */

.site-footer {
    background-color: var(--brand-primary);
    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);
}

.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(--brand-accent);
    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%;
    }
}

/* =========================================
   8. LATEST PRODUCTS (WOKIEE STYLE)
   ========================================= */
.container-indent {
    margin: 80px auto;
    padding: 0 10%;
    max-width: 1400px;
}

.tt-block-title {
    text-align: center;
    margin-bottom: 40px;
}

.tt-block-title .tt-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 10px;
}

.tt-block-title .tt-title a:hover {
    color: var(--brand-accent);
}

.tt-block-title .tt-description {
    color: #777;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.row.tt-layout-product-item {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-6 {
    width: 50%;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .col-md-4 {
        width: 33.3333%;
    }
}

@media (min-width: 1024px) {
    .col-lg-3 {
        width: 25%;
    }
}

.tt-product {
    background: #fff;
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
}

.tt-product:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: transparent;
}

.tt-image-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 1;
}

.tt-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tt-product:hover .tt-image-box img {
    transform: scale(1.08);
}

.tt-btn-wishlist,
.tt-btn-compare,
.tt-btn-quickview {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(20px);
    transition: 0.3s;
    z-index: 5;
}

.tt-product:hover .tt-btn-wishlist,
.tt-product:hover .tt-btn-compare,
.tt-product:hover .tt-btn-quickview {
    opacity: 1;
    transform: translateX(0);
}

.tt-btn-wishlist {
    top: 15px;
    right: 15px;
}

.tt-btn-quickview {
    top: 65px;
    right: 15px;
    transition-delay: 0.05s;
}

.tt-btn-compare {
    top: 115px;
    right: 15px;
    transition-delay: 0.1s;
}

.tt-btn-wishlist svg,
.tt-btn-compare svg {
    width: 18px;
    height: 18px;
}

.tt-description .tt-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-body);
    min-height: 2.4em;
    overflow: hidden;
}

.tt-description .tt-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.tt-add-info {
    list-style: none;
    margin-bottom: 10px;
}

.tt-add-info a {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
}

.tt-product-inside-hover {
    margin-top: 15px;
}

.tt-btn-addtocart {
    width: 100%;
    background: #e0e0e0;
    color: #333;
    border: none;
    padding: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tt-btn-addtocart:hover {
    background: var(--brand-accent);
    color: white;
}

.slider-add-btn {
    width: 100%;
    background: #e0e0e0;
    color: #333;
    border: none;
    padding: 10px;
    margin-top: 10px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
    text-transform: uppercase;
}

.slider-add-btn:hover {
    background: var(--brand-accent);
    color: white;
}

.title-hover-underline {
    position: relative;
}

.title-hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--brand-accent);
    transition: 0.3s;
}

.title-hover-underline:hover::after {
    width: 100%;
}

.btn-border {
    border: 2px solid #eee;
    padding: 12px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    display: inline-block;
    transition: 0.3s;
}

.btn-border:hover {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: white;
}

.btn-top {
    margin-top: 40px;
}

/* =========================================
   9. MEDIA CAROUSEL (Most Featured)
   ========================================= */
.media-carousel-section {
    padding: 0;
    padding-left: 30px;
    background-color: #fff;
}

.media-carousel-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--brand-primary);
}

.media-carousel-content {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 40px 0 40px 10%;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.media-carousel-content::-webkit-scrollbar {
    display: none;
}

.media-carousel-content:active {
    cursor: grabbing;
}

.media-carousel-card {
    min-width: 450px;
    width: 450px;
    flex: 0 0 auto;
    position: relative;
    border-radius: 0;
    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;
}

.media-carousel-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.media-carousel-card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.media-carousel-card:hover img {
    transform: scale(1.05);
}

.media-carousel-card h3 {
    position: absolute;
    top: 30px;
    left: 30px;
    bottom: auto;
    right: auto;
    padding: 0;
    background: none;
    color: #fff;
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    z-index: 2;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .media-carousel-card {
        min-width: 280px;
        width: 280px;
    }

    .media-carousel-card img {
        height: 380px;
    }
}