/* ==========================================================================
   DUOLUXUS - E-COMMERCE DESIGN SYSTEM & STYLESHEET
   Design Specifications based on UI reference images
   - Brand: DUOLUXUS
   - Fonts: Lufga / Outfit / Plus Jakarta Sans
   - Colors: Lime #B8EC44 | Black #010101 | Charcoal #434343 | Light #F6F6F6
   - Signature: Asymmetric Chamfered / Cut Corner Containers & Pill Buttons
   ========================================================================== */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'Lufga';
    src: url('../Lufga-Medium.otf') format('opentype'),
         local('Lufga');
    font-weight: 400 800;
    font-style: normal;
}

:root {
    /* Brand Colors */
    --lime: #B8EC44;
    --lime-hover: #A5E02E;
    --black: #010101;
    --charcoal: #434343;
    --charcoal-dark: #2B2B2B;
    --bg-page: #F6F6F6;
    --bg-card: #FFFFFF;
    --bg-input: #F0F2F5;
    
    /* Text Colors */
    --text-primary: #010101;
    --text-secondary: #52575D;
    --text-muted: #8D93A0;
    
    /* Status & Accents */
    --sale-red: #FF5B35;
    --cyan-blue: #00B4D8;
    --purple-accent: #8B5CF6;
    --border-color: #E6E9EF;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-family: 'Lufga', 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Chamfer & Corner Radius Tokens */
    --radius-chamfer: 32px 8px 32px 8px;
    --radius-chamfer-sm: 20px 6px 20px 6px;
    --radius-chamfer-lg: 40px 12px 40px 12px;
    --radius-pill: 9999px;
    --radius-standard: 16px;
}

/* Reset & Global Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

button, input, select {
    font-family: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Containers */
.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

.chamfered-card {
    border-radius: var(--radius-chamfer);
    background: var(--bg-card);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chamfered-card:hover {
    box-shadow: var(--shadow-md);
}

.chamfered-badge {
    border-radius: var(--radius-pill);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Top Utility Header Bar */
.top-bar {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.locked-spec-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--black);
    background: var(--bg-page);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

.top-link {
    font-weight: 600;
    color: var(--text-secondary);
}

.top-link:hover {
    color: var(--black);
}

/* Main Brand Header */
.main-header {
    background: #FFFFFF;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    color: var(--black);
}

.logo-badge {
    width: 42px;
    height: 42px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-badge-icon {
    width: 24px;
    height: 24px;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--black);
}

/* Search Bar */
.search-container {
    flex: 1;
    max-width: 540px;
    position: relative;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    background: var(--bg-input);
    border-radius: var(--radius-pill);
    padding: 10px 18px;
    gap: 12px;
    transition: background 0.2s ease;
}

.search-input-wrap:focus-within {
    background: #E8ECEF;
}

.search-input {
    width: 100%;
    background: transparent;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-camera-icon {
    color: var(--text-secondary);
    cursor: pointer;
}

/* Header User Controls */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-summary-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.cart-price {
    font-weight: 700;
    font-size: 0.9375rem;
}

.icon-badge-wrap {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--bg-page);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: background 0.2s ease;
}

.icon-badge-wrap:hover {
    background: #E8ECEF;
}

.badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--lime);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-profile-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-weight: 600;
    font-size: 0.875rem;
}

/* Nav Menu Bar */
.nav-bar {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-item a {
    display: block;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-primary);
    position: relative;
}

.nav-item a.active, .nav-item a:hover {
    color: var(--black);
}

.nav-item a.sale-link {
    color: var(--sale-red);
}

.nav-contact-info {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* DEDICATED SEPARATE VIDEO BANNER SECTION */
.video-banner-card {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: var(--radius-chamfer-lg);
    overflow: hidden;
    background: var(--black);
    box-shadow: var(--shadow-lg);
}

.video-banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 1, 1, 0.85) 0%, rgba(1, 1, 1, 0.25) 60%, rgba(1, 1, 1, 0.8) 100%);
    z-index: 2;
}

.video-banner-content {
    position: relative;
    z-index: 3;
    max-width: 520px;
    padding: 48px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.video-banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.video-banner-sub {
    font-size: 1rem;
    color: #E2E8F0;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* SEPARATE HERO IMAGE CARDS SECTION (Image 3 Desktop) */
.hero-section {
    padding: 32px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.hero-card-primary {
    background: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
    border-radius: var(--radius-chamfer);
    color: #FFFFFF;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 360px;
}

.hero-content {
    max-width: 320px;
    z-index: 2;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 0.9375rem;
    color: #CBD5E1;
    margin-bottom: 28px;
}

.btn-black-pill {
    background: var(--black);
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.btn-black-pill:hover {
    background: #1F2937;
    transform: translateY(-2px);
}

.hero-image-wrap {
    position: absolute;
    right: 40px;
    bottom: 0;
    max-height: 340px;
}

.hero-image-wrap img {
    height: 340px;
    object-fit: contain;
}

.hero-controls {
    position: absolute;
    bottom: 24px;
    right: 32px;
    display: flex;
    gap: 8px;
}

.circle-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.circle-nav-btn.dark {
    background: var(--black);
    color: #FFFFFF;
}

.circle-nav-btn:hover {
    background: var(--black);
}

/* Secondary Promo Card */
.hero-card-secondary {
    background: var(--lime);
    border-radius: var(--radius-chamfer);
    padding: 40px 32px;
    color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 360px;
}

.promo-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.promo-sub {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 24px;
}

.promo-img-wrap {
    align-self: flex-end;
    margin-top: -20px;
}

.promo-img-wrap img {
    height: 220px;
    object-fit: contain;
}

/* CATEGORIES CAROUSEL */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-top: 16px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.see-all-link {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.see-all-link:hover {
    color: var(--black);
}

.categories-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.category-card {
    background: var(--bg-card);
    border-radius: var(--radius-chamfer-sm);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* CATEGORIES CAROUSEL & CARDS */
.categories-grid-carousel {
    display: flex !important;
    gap: 16px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    padding: 8px 4px 16px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.categories-grid-carousel::-webkit-scrollbar {
    display: none;
}

.categories-grid-carousel .category-card,
.category-card {
    flex: 0 0 140px !important;
    min-width: 140px !important;
    max-width: 160px !important;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 20px 16px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.categories-grid-carousel .category-card:hover,
.category-card:hover,
.category-card.active {
    background: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #010101;
}

.category-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-page);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: all 0.2s ease;
}

.category-card.active .category-icon-box,
.category-card:hover .category-icon-box {
    background: var(--lime);
    color: var(--black);
}

.category-name {
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--black);
    text-align: center;
}

/* PRODUCT CARDS & GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.products-grid-scrollable {
    display: flex !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.products-grid-scrollable::-webkit-scrollbar {
    display: none;
}

.products-grid-scrollable .product-card {
    flex: 0 0 290px;
    max-width: 290px;
    scroll-snap-align: start;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-chamfer);
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-image-box {
    width: 100%;
    height: 280px;
    border-radius: 24px 6px 24px 6px;
    overflow: hidden;
    position: relative;
    background: #EFEFEF;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image-box img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--lime);
    color: var(--black);
    font-weight: 800;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
}

.quick-add-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    z-index: 5;
}

.product-card:hover .quick-add-btn {
    background: var(--lime);
    transform: scale(1.1);
}

.product-info {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: #F59E0B;
}

.review-count {
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 4px;
}

.product-price-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.product-price {
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--black);
}

.product-old-price {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.color-swatches {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* FILTERS SIDEBAR */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    padding: 32px 0;
}

.filters-sidebar {
    background: var(--bg-card);
    border-radius: var(--radius-chamfer);
    padding: 24px;
    height: fit-content;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.filters-title {
    font-weight: 700;
    font-size: 1.125rem;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group-title {
    font-weight: 700;
    font-size: 0.9375rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    cursor: pointer;
}

.filter-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.custom-checkbox input {
    accent-color: var(--lime);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-pill {
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: var(--bg-page);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-pill.active, .size-pill:hover {
    background: var(--lime);
}

.color-swatch-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-color-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s ease;
}

.filter-color-btn.active {
    border-color: var(--black);
    transform: scale(1.1);
}

.price-histogram {
    height: 40px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    margin-bottom: 12px;
}

.bar {
    flex: 1;
    background: #E2E8F0;
    border-radius: 2px;
}

.bar.highlight {
    background: var(--lime);
}

.price-range-inputs {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: 12px;
}

/* PRODUCT DETAIL PAGE */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    background: var(--bg-card);
    border-radius: var(--radius-chamfer-lg);
    padding: 36px;
    margin: 32px 0;
}

.detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-gallery-image {
    width: 100%;
    height: 520px;
    border-radius: var(--radius-chamfer);
    overflow: hidden;
    position: relative;
    background: #F1F3F5;
}

.main-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
}

.dots-indicator {
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CBD5E1;
    cursor: pointer;
}

.dot.active {
    background: var(--black);
    width: 20px;
    border-radius: 4px;
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--black);
}

.detail-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.detail-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
}

.detail-controls-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    background: var(--bg-page);
    border-radius: var(--radius-pill);
    padding: 6px;
    gap: 12px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn.dark {
    background: var(--black);
    color: #FFFFFF;
}

.qty-val {
    font-weight: 800;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

.btn-add-cart-large {
    flex: 1;
    background: var(--black);
    color: #FFFFFF;
    padding: 16px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: background 0.2s ease;
}

.btn-add-cart-large:hover {
    background: #1F2937;
}

.btn-wishlist-lime {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-pill);
    background: var(--lime);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.btn-wishlist-lime:hover {
    transform: scale(1.05);
}

/* CART DRAWER */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 440px;
    max-width: 100%;
    height: 100vh;
    background: #FFFFFF;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.cart-drawer-overlay.active .cart-drawer {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.cart-title {
    font-size: 1.5rem;
    font-weight: 800;
}

.clear-cart-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-page);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item-card {
    background: var(--bg-page);
    border-radius: var(--radius-chamfer-sm);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 16px 4px 16px 4px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.cart-item-price {
    font-weight: 800;
    font-size: 1rem;
    color: var(--black);
}

.order-summary-box {
    background: var(--bg-page);
    border-radius: var(--radius-chamfer);
    padding: 20px;
    margin: 0 24px 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-title {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 4px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.summary-row.total-row {
    background: var(--black);
    color: #FFFFFF;
    padding: 14px 18px;
    border-radius: 18px 4px 18px 4px;
    font-weight: 800;
    font-size: 1.125rem;
    margin-top: 8px;
}

.cart-checkout-bar {
    padding: 0 24px 24px 24px;
}

.btn-lime-checkout {
    width: 100%;
    background: var(--lime);
    color: var(--black);
    padding: 16px 24px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.0625rem;
    transition: transform 0.2s ease, background 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-lime-checkout:hover {
    background: var(--lime-hover);
    transform: translateY(-2px);
}

.checkout-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--black);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FOOTER FIX */
.site-footer {
    background-color: var(--black);
    color: #FFFFFF;
    width: 100%;
    padding: 60px 0 30px 0;
    margin-top: 60px;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-weight: 800;
    font-size: 1.125rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9375rem;
}

.footer-links a {
    color: #9CA3AF;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--lime);
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1F2937;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    font-size: 1.125rem;
    transition: all 0.2s ease;
}

.footer-social-btn:hover {
    background: var(--lime);
    color: var(--black);
}

.footer-bottom {
    border-top: 1px solid #1F2937;
    padding-top: 24px;
    text-align: center;
    color: #6B7280;
    font-size: 0.8125rem;
}

/* ACCOUNT PAGE STYLES */
.account-header-banner {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    border-radius: var(--radius-chamfer);
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.account-profile-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.account-avatar-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--lime);
}

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

.account-sidebar {
    background: var(--bg-card);
    border-radius: var(--radius-chamfer);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: fit-content;
}

.account-tab-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.account-tab-link.active, .account-tab-link:hover {
    background: var(--bg-page);
    color: var(--black);
}

.account-tab-link.active {
    background: var(--lime);
    color: var(--black);
}

.tab-badge {
    margin-left: auto;
    background: var(--black);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 9999px;
}

.account-content-card {
    background: var(--bg-card);
    border-radius: var(--radius-chamfer);
    padding: 32px;
}

.order-history-card {
    background: var(--bg-page);
    border-radius: var(--radius-chamfer-sm);
    padding: 24px;
    margin-bottom: 20px;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.order-id {
    font-weight: 800;
    font-size: 1.0625rem;
}

.order-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.status-pill {
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-transit {
    background: #FEF3C7;
    color: #D97706;
}

.status-delivered {
    background: #D1FAE5;
    color: #059669;
}

.order-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.order-item-thumb {
    display: flex;
    align-items: center;
    gap: 16px;
}

.order-item-thumb img {
    width: 56px;
    height: 56px;
    border-radius: 12px 4px 12px 4px;
    object-fit: cover;
}

.order-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    font-size: 0.9375rem;
}

/* FORM CONTROLS */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--black);
}

.form-input {
    background: var(--bg-input);
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.9375rem;
    color: var(--black);
    width: 100%;
}

.form-input:focus {
    background: #E8ECEF;
}

.address-card {
    background: var(--bg-page);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.address-card.default-address {
    border-color: var(--lime);
}

/* CHECKOUT PAGE STYLES */
.checkout-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
}

.checkout-card {
    background: var(--bg-card);
    border-radius: var(--radius-chamfer);
    padding: 32px;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
}

.payment-method-card {
    background: var(--bg-page);
    border-radius: var(--radius-pill);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.payment-method-card.active {
    border-color: var(--black);
    background: #FFFFFF;
}

.checkout-summary-sticky {
    position: sticky;
    top: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-chamfer);
    padding: 28px;
}

/* MOBILE UI FIXES */
.mobile-header-bar {
    display: none;
    background: var(--bg-page);
    padding: 14px 20px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 900;
}

.mobile-profile-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    font-size: 1.25rem;
    color: var(--black);
    padding: 4px;
}

.mobile-search-bar {
    display: none;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.mobile-search-bar.active {
    display: block;
}

.mobile-menu-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: #FFFFFF;
    z-index: 2001;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-menu-drawer-overlay.active .mobile-menu-drawer {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.mobile-nav-list a:hover {
    background: var(--bg-page);
}

.mobile-deal-banner {
    display: none;
    background: linear-gradient(135deg, #475569 0%, #1E293B 100%);
    border-radius: var(--radius-chamfer);
    margin: 16px 20px;
    padding: 24px;
    color: #FFFFFF;
    position: relative;
}

.timer-pill {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

/* MEDIA QUERIES FOR FULL RESPONSIVENESS & MOBILE FIXES */
@media (max-width: 1024px) {
    .video-banner-card {
        height: 320px;
    }
    .video-banner-title {
        font-size: 2rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .shop-layout {
        grid-template-columns: 1fr;
    }
    .filters-sidebar {
        display: none !important;
    }
    .mobile-filter-trigger-btn {
        display: inline-flex !important;
    }
    .account-layout {
        grid-template-columns: 1fr;
    }
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .top-bar, .main-header, .nav-bar {
        display: none;
    }
    .mobile-header-bar, .mobile-deal-banner {
        display: flex;
    }
    .mobile-deal-banner {
        display: block;
    }

    .video-banner-card {
        height: 240px;
        border-radius: var(--radius-chamfer);
    }
    .video-banner-content {
        padding: 20px;
        max-width: 100%;
    }
    .video-banner-title {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    .video-banner-sub {
        font-size: 0.8125rem;
        margin-bottom: 12px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .product-card {
        padding: 12px;
        border-radius: 24px 6px 24px 6px;
    }
    .product-image-box {
        height: 190px;
        border-radius: 18px 4px 18px 4px;
    }
    .product-title {
        font-size: 0.875rem;
    }
    .product-price {
        font-size: 1rem;
    }
    .quick-add-btn {
        width: 36px;
        height: 36px;
        bottom: 8px;
        right: 8px;
    }

    .categories-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .categories-carousel::-webkit-scrollbar {
        display: none;
    }
    .category-card {
        min-width: 110px;
        scroll-snap-align: start;
        padding: 16px 12px;
    }
    .category-icon-box {
        width: 48px;
        height: 48px;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
        padding: 20px;
        margin: 16px 0;
        gap: 24px;
    }
    .main-gallery-image {
        height: 320px;
    }
    .detail-title {
        font-size: 1.6rem;
    }

    .account-header-banner {
        padding: 24px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product-image-box {
        height: 160px;
    }
    .cart-drawer {
        width: 100%;
    }
}

/* ==========================================================================
   MOBILE & RESPONSIVE DESIGN SPECIFICATIONS (IMAGES 1 & 2)
   ========================================================================== */

/* QUANTITY CONTROL WITH FILLED BLACK CIRCLE */
.qty-control-black-circle {
    display: inline-flex;
    align-items: center;
    background: #F1F3F5;
    border-radius: var(--radius-pill);
    padding: 4px 8px;
    gap: 6px;
}

.qty-control-black-circle .qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.qty-control-black-circle .qty-btn:hover {
    opacity: 0.7;
}

.qty-val-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--black);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CIRCLE ICON BUTTONS (HEADER & FLOATING OVERLAYS) */
.circle-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F1F3F5;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.circle-icon-btn:hover {
    background: #E2E8F0;
    transform: scale(1.05);
}

.mobile-card-top-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: -36px;
    margin-bottom: 12px;
    z-index: 50;
}

.mobile-close-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--black);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* PRODUCT GALLERY OVERLAY BUTTONS & SPIN INDICATOR */
.gallery-overlay-btn {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    z-index: 30;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-overlay-btn:hover {
    background: #FFFFFF;
    transform: scale(1.08);
}

.btn-wishlist-float {
    top: 16px;
    left: 16px;
}

.btn-share-float {
    top: 16px;
    right: 16px;
}

.spin-indicator-pill {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--black);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 10;
}

/* PRODUCT DETAIL OPTIONS GRID & BADGE */
.detail-lime-badge {
    background: var(--lime) !important;
    color: var(--black) !important;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    display: inline-block;
    letter-spacing: 0.5px;
}

.options-selection-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin: 16px 0;
}

.option-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-label {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--black);
}

.select-size-pill {
    background: #F1F3F5;
    color: var(--black);
    border: none;
    border-radius: var(--radius-pill);
    padding: 10px 16px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.select-size-pill.active {
    background: var(--lime) !important;
    color: var(--black) !important;
}

.select-color-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-color-btn .check-icon {
    display: none;
    font-size: 0.75rem;
    color: var(--black);
}

.select-color-btn.active .check-icon {
    display: block;
}

/* ACCORDION DESCRIPTION */
.description-accordion {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: 16px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
    cursor: pointer;
    padding: 4px 0;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    display: none;
    padding-top: 12px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.accordion-body.open {
    display: block;
}

/* ADD TO CART LIME BUTTON */
.btn-add-cart-lime {
    background: var(--lime) !important;
    color: var(--black) !important;
    font-weight: 800 !important;
    font-size: 1.0625rem !important;
    border-radius: var(--radius-pill) !important;
    padding: 16px 32px !important;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-add-cart-lime:hover {
    background: var(--lime-hover) !important;
    transform: translateY(-2px);
}

/* MOBILE CART CARD & HEADER (IMAGE 2) */
.mobile-cart-card {
    background: #FFFFFF;
    border-radius: 36px;
    padding: 28px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.cart-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.cart-header-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
}

.black-total-pill {
    background: var(--black) !important;
    color: #FFFFFF !important;
    border-radius: 16px !important;
    padding: 16px 20px !important;
    font-weight: 800 !important;
    font-size: 1.125rem !important;
    margin-top: 12px !important;
}

.cart-checkout-bar {
    margin-top: 24px;
}

/* RESPONSIVE MEDIA OVERRIDES FOR MOBILE CANVAS */
@media (max-width: 768px) {
    body {
        background-color: #F6F6F6 !important;
        color: #010101 !important;
    }

    .site-footer {
        background-color: #010101;
    }

    .product-page-container, .cart-page-container {
        padding: 12px !important;
        max-width: 500px !important;
    }

    .product-detail-card-wrapper {
        background: #FFFFFF;
        border-radius: 36px;
        padding: 24px 20px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    }

    .product-detail-layout {
        gap: 16px;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }

    .main-gallery-image {
        height: 360px;
        border-radius: 28px;
        background: #FFFFFF;
    }

    .gallery-nav-bar .circle-nav-btn {
        display: none;
    }

    .detail-controls-wrapper {
        position: sticky;
        bottom: 12px;
        z-index: 100;
        background: #FFFFFF;
        padding: 12px 16px;
        border-radius: var(--radius-pill);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin-top: 20px;
    }

    .detail-controls-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 0;
    }

    .btn-add-cart-lime {
        flex: 1;
        padding: 14px 20px !important;
        text-align: center;
    }

    .mobile-cart-card {
        background: #FFFFFF;
        border-radius: 36px;
        padding: 24px 20px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    }
}

/* MOBILE FILTER TRIGGER BUTTON & DRAWER MODAL OVERLAY */
.mobile-filter-trigger-btn {
    display: none;
    align-items: center;
    gap: 8px;
    background: var(--lime);
    color: var(--black);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.mobile-filter-trigger-btn:hover {
    background: var(--lime-hover);
    transform: translateY(-1px);
}

.mobile-filter-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-filter-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-filter-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 85vh;
    background: #FFFFFF;
    border-radius: 32px 32px 0 0;
    z-index: 2501;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.mobile-filter-drawer-overlay.active .mobile-filter-drawer {
    transform: translateY(0);
}

.mobile-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-filter-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-filter-footer {
    display: flex;
    gap: 12px;
    padding: 16px 24px 24px 24px;
    border-top: 1px solid var(--border-color);
    background: #FFFFFF;
}

.btn-clear-filters {
    flex: 1;
    background: #F1F3F5;
    color: var(--black);
    padding: 14px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
}

.btn-apply-filters {
    flex: 2;
    background: var(--lime);
    color: var(--black);
    padding: 14px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-filter-trigger-btn {
        display: inline-flex !important;
    }

    .filters-sidebar {
        display: none !important;
    }

    .shop-layout {
        grid-template-columns: 1fr !important;
    }
}

/* BOTTOM-LEFT SALES POPUP TOAST SLIDER */
#salesPopupToast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 3000;
    background: #010101;
    color: #FFFFFF;
    border-radius: var(--radius-standard);
    padding: 14px 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 380px;
    transform: translateX(-150%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    border-left: 4px solid var(--lime);
}

#salesPopupToast.active {
    transform: translateX(0);
    opacity: 1;
}

.toast-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.toast-message-title {
    font-weight: 700;
    font-size: 0.875rem;
    color: #FFFFFF;
    line-height: 1.3;
}

.toast-message-subtitle {
    font-size: 0.75rem;
    color: var(--lime);
    margin-top: 2px;
}

.toast-close-btn {
    color: #9CA3AF;
    font-size: 0.875rem;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

.toast-close-btn:hover {
    color: #FFFFFF;
}

/* SHOP FILTER BUTTON & CATEGORY ICON BAR */
.shop-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lime);
    color: var(--black);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(184, 236, 68, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.shop-filter-btn:hover {
    background: var(--lime-hover);
    transform: translateY(-2px);
}

.category-icon-bar {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.category-icon-bar::-webkit-scrollbar {
    height: 4px;
}

.category-icon-bar::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.cat-icon-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    border: 2px solid var(--border-color);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    color: var(--black);
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.cat-icon-card:hover {
    border-color: var(--black);
    transform: translateY(-2px);
}

.cat-icon-card.active {
    background: #010101;
    color: #FFFFFF;
    border-color: #010101;
}

.cat-icon-card.active .cat-icon-name {
    color: var(--lime);
}

.cat-icon-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.1);
}

.cat-icon-info {
    display: flex;
    flex-direction: column;
}

.cat-icon-name {
    font-weight: 800;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cat-icon-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cat-icon-card.active .cat-icon-count {
    color: #94A3B8;
}

.full-width-shop-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 1200px) {
    .full-width-shop-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .full-width-shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}

@media (max-width: 480px) {
    .full-width-shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

/* USER PROFILE DROPDOWN MENU */
.user-profile-dropdown-wrap {
    position: relative;
    display: inline-block;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid var(--border-color);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.user-profile-dropdown-wrap:hover .user-dropdown-menu,
.user-profile-dropdown-wrap:focus-within .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--black);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.2s ease;
}

.user-dropdown-menu a:hover {
    background: #F1F3F5;
}

/* GLOBAL VIEWPORT OVERFLOW CONSTRAINT */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

*, *:before, *:after {
    box-sizing: border-box !important;
}

/* UNIFORM PRODUCT CARD IMAGE SIZING FIX */
.product-card-img,
.product-image-box img,
.full-width-shop-grid .product-image-box img,
.full-width-shop-grid .product-card img,
.product-image-box img.main-prod-img {
    width: 100% !important;
    height: 240px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 16px !important;
    display: block !important;
}

.cat-icon-img {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}

/* MOBILE RESPONSIVE PRODUCT IMAGE & CARD FIX (Pixel 7 & Mobile Screens) */
@media (max-width: 768px) {
    .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    /* Hero Carousel Card Mobile Constraint */
    #heroCarouselWrapper {
        border-radius: 20px !important;
    }

    .video-banner-card {
        height: 340px !important;
        min-height: 340px !important;
    }

    .video-banner-title {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
    }

    .video-banner-sub {
        font-size: 0.8125rem !important;
        max-width: 90% !important;
    }

    .video-banner-content {
        padding: 20px !important;
    }

    .product-card-img,
    .product-image-box img,
    .full-width-shop-grid .product-image-box img,
    .full-width-shop-grid .product-card img,
    .product-image-box img.main-prod-img {
        height: 150px !important;
        max-height: 155px !important;
        object-fit: cover !important;
        border-radius: 14px !important;
    }
    
    .products-grid, .full-width-shop-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        width: 100% !important;
    }
    
    .product-card {
        padding: 8px !important;
        border-radius: 16px !important;
        min-width: 0 !important;
        width: 100% !important;
    }
    
    .product-title {
        font-size: 0.8125rem !important;
        line-height: 1.25 !important;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .product-price {
        font-size: 0.9375rem !important;
    }
}

/* DESKTOP FULL-WIDTH SHOP GRID ALIGNMENT FIX */
@media (min-width: 769px) {
    .full-width-shop-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
        gap: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .full-width-shop-grid .product-card {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
}

/* BOTTOM-TO-TOP PRODUCT CARD SLIDE ANIMATION */
@keyframes slideUpModalCard {
    from {
        transform: translateY(80px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.product-detail-card-wrapper {
    animation: slideUpModalCard 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    background: #FFFFFF;
    border-radius: 36px 36px 0 0;
    padding: 24px 28px 48px 28px;
    box-shadow: 0 -12px 40px rgba(0,0,0,0.12);
    margin-top: 10px;
    position: relative;
}

.mobile-card-top-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 20;
}

.mobile-close-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #010101;
    color: #FFFFFF;
    border: none;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
}

.mobile-close-btn:hover {
    transform: scale(1.1);
}

/* TOP HERO DUAL GRID - MOBILE SCROLL MODE MERGE */
.top-hero-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .top-hero-dual-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        gap: 16px !important;
        margin-bottom: 20px !important;
        padding-bottom: 6px !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .top-hero-dual-grid::-webkit-scrollbar {
        display: none !important;
    }
    .top-hero-dual-grid .hero-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        width: 100% !important;
        scroll-snap-align: start !important;
        box-sizing: border-box !important;
    }
/* PINNED MOBILE HEADER BAR */
.mobile-header-bar {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 995;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .mobile-header-bar {
        display: flex !important;
    }
}