/* CSS Variables - Premium Modern Palette */
:root {
    /* Primary Brand Colors */
    --primary-color: #4f46e5;
    /* Indigo */
    --primary-light: #818cf8;
    --primary-dark: #3730a3;
    --secondary-color: #7c3aed;
    /* Violet */

    /* Semantic Colors */
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #0ea5e9;

    /* Neutrals & Text */
    --text-dark: #0f172a;
    /* Slate 900 */
    --text-main: #334155;
    /* Slate 700 */
    --text-gray: #64748b;
    /* Slate 500 */
    --text-light: #94a3b8;
    /* Slate 400 */

    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #0f172a;

    /* Surfacing & Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --surface-border: #cbd5e1;
    --border-color: #cbd5e1;

    /* Design Tokens */
    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);

    --container-width: 1200px;
    --header-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout Spacing - Optimized for UX */
    --page-padding-y: 4rem;
    --section-padding-y: 6rem;
}

/* Reset & Base */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.011em;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

h1 {
    font-size: 2rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 1.5rem;
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.125rem;
    letter-spacing: -0.02em;
}

h4 {
    font-size: 1.125rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.875rem;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Standard Page Components */
.page-header {
    padding: var(--page-padding-y) 0;
    text-align: center;
    border-bottom: 1px solid var(--surface-border);
    background: var(--bg-white);
    margin-bottom: 3rem;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 800;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 550px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Base Responsive Utilities */
.hide-mobile {
    display: block !important;
}

.hauteur-full {
    height: 100%;
}

.aspect-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: white;
}

.aspect-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .hide-desktop {
        display: block !important;
    }
}

.hauteur-full {
    height: 100%;
    display: flex;
    align-items: center;
}

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

@media (max-width: 768px) {
    .main-nav {
        display: none !important;
    }

    .main-nav.active {
        display: block !important;
    }

    #mobileMenuToggle {
        display: flex !important;
    }

    .header-links,
    .search-bar.hide-mobile,
    .header-action-text.hide-mobile {
        display: none !important;
    }

    .hide-mobile {
        display: none !important;
    }

    .hide-desktop {
        display: block !important;
    }
}

/* Header Styles */
.site-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 2500;
    /* Increased to stay above products and reveal animations */
    transition: var(--transition);
}

.header-top {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.625rem 0;
    font-size: 0.8125rem;
    font-weight: 500;
}

.header-top a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.header-top a:hover {
    color: white;
}

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

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-contact a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-contact i {
    color: var(--primary-light);
}

.header-top .divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
}

.header-announcement {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge {
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Inter', sans-serif;
}

.badge-primary {
    background: var(--primary-color);
    color: white;
}

.announcement-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
}

.header-links {
    display: flex;
    gap: 1.5rem;
}

.header-main {
    padding: 1rem 0;
}

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

.site-logo {
    display: flex;
    align-items: center;
    margin-left: -5px;
    /* Offset for internal logo whitespace */
}

.site-logo img {
    height: 48px;
    /* Slightly larger for premium feel */
    width: auto;
    display: block;
}

/* Search Bar - Elite Design */
.search-bar {
    flex: 1;
    max-width: 580px;
}

.search-form {
    position: relative;
    display: flex;
}

/* Global Input Standard - Ultra Readable */
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.08);
}

input::placeholder,
textarea::placeholder {
    color: #94a3b8;
}

.search-input {
    width: 100%;
    padding: 0.875rem 3.5rem 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-full);
    font-size: 1rem;
    transition: var(--transition);
}

.search-input:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.search-button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 42px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-main);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.header-action:hover {
    color: var(--primary-color);
}

.header-action i {
    font-size: 1.375rem;
}

.header-action-text {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary-color);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    height: 18px;
    min-width: 18px;
    padding: 0 4px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-white);
}

/* Navigation */
.main-nav {
    border-top: 1px solid var(--surface-border);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    padding: 0;
}

.nav-menu li a {
    display: block;
    padding: 1.25rem 0;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    transition: var(--transition);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

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

/* Product Detail Modernization */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 6rem;
}

/* CRITICAL: Fix for Swiper stretching in Grid */
.product-detail-layout>div {
    min-width: 0;
}

.product-gallery-stable {
    position: sticky;
    top: 120px;
}

.main-view-wrapper {
    margin-bottom: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--surface-border);
    background: white;
    cursor: zoom-in;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.main-view-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 92%;
    max-height: 92%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.aspect-wrapper {
    display: none;
    /* Removing as aspect-ratio handles it now */
}

/* Swiper Gallery Adjustments */
.product-thumbs-slider {
    padding: 2px;
}

.product-thumbs-slider .swiper-slide {
    cursor: pointer;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0.6;
}

.product-thumbs-slider .swiper-slide-thumb-active {
    border-color: var(--primary-color);
    opacity: 1;
}

.product-thumbs-slider img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.product-info-panel h1 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.price-box {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
}

.price-box .price {
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--primary-color);
}

.price-box .old-price {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--text-light);
    font-weight: 600;
}

.variant-selector {
    padding: 2.5rem;
    background: var(--bg-gray);
    border-radius: var(--border-radius-lg);
    margin-bottom: 3rem;
}

.variant-selector h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.variant-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.variant-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--surface-border);
    background: white;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-main);
}

.variant-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-color);
}

.variant-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.cart-controls {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.quantity-box {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 56px;
}

.quantity-box button {
    width: 48px;
    height: 100%;
    border: none;
    background: var(--bg-gray);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
}

.quantity-box button:hover {
    background: var(--surface-border);
}

.quantity-box input {
    width: 60px;
    height: 100%;
    text-align: center;
    border: none;
    font-weight: 800;
    font-size: 1.125rem;
    background: white;
    padding: 0;
}

.tab-container {
    background: white;
    border: 1px solid var(--surface-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 6rem;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid var(--surface-border);
    background: var(--bg-gray);
}

.tab-trigger {
    padding: 1.5rem 3rem;
    border: none;
    background: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: var(--text-gray);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-trigger.active {
    color: var(--primary-color);
}

.tab-trigger.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.tab-content {
    padding: 2rem 1rem;
    max-width: none;
}

.tab-content h3 {
    margin-bottom: 2rem;
}

/* Lightbox Customization */
.glightbox-container .gslide-image {
    background: white !important;
    border-radius: var(--border-radius-lg);
}

@media (max-width: 992px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .product-gallery-stable {
        position: static;
    }
}

/* Footer - Premium Layout */
.site-footer {
    background: var(--bg-dark);
    color: #e2e8f0;
    margin-top: 6rem;
    padding: 5rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Outfit', sans-serif;
}

.footer-about p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

.payment-methods {
    display: flex;
    gap: 0.75rem;
    opacity: 0.7;
}

.payment-methods i {
    font-size: 1.5rem;
}

/* Product Grid - Elite Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--surface-border);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.product-image {
    position: relative;
    padding-top: 100%;
    background: #ffffff;
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #ffffff;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: auto;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
}

/* Section Headers - Universal Scale */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Category Cards - New Premium Style */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.category-card {
    position: relative;
    height: 240px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

.category-card:hover {
    transform: scale(1.02);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(79, 70, 229, 0.8) 0%, rgba(0, 0, 0, 0) 80%);
}

.category-name {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Buttons - Elite Refresh */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.35);
}

.btn-outline {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

/* Auth Cards */
.auth-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--surface-border);
}

.auth-card-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Slider - Elite Design */
.hero-slider.modern-slider {
    aspect-ratio: 21 / 9;
    min-height: 400px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.1) 70%);
    z-index: 2;
}

.slider-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.5s ease;
    transform: scale(1.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slider-content {
    position: relative;
    z-index: 10;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

.slider-item.active .slider-content {
    transform: translateY(0);
    opacity: 1;
}

.slider-badge {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: rgba(79, 70, 229, 0.15);
    color: var(--primary-light);
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    border: 1px solid rgba(79, 70, 229, 0.3);
    backdrop-filter: blur(8px);
    text-transform: uppercase;
}

.slider-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.slider-subtitle {
    font-size: clamp(1rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin-bottom: 3.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.slider-nav {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 20;
    display: flex;
    gap: 1rem;
}

.slider-nav button {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.slider-nav button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.4);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 20;
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-dot.active {
    width: 32px;
    background: var(--primary-color);
}

@media (max-width: 1024px) {
    .hero-slider.modern-slider {
        aspect-ratio: 16 / 9;
    }

    .slider-title {
        font-size: 3rem;
    }
}

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

    .slider-dots {
        left: 50%;
        transform: translateX(-50%);
    }
}

.site-main {
    margin-top: 0;
}

@media (min-width: 1025px) {
    .site-main {
        margin-top: 0;
    }
}

/* Section Headers */
.section-header {
    margin-bottom: 3.5rem;
    text-align: center;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Pagination - Advanced Style */
.pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.page-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    background: var(--bg-white);
    border: 1px solid var(--surface-border);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* Mobile Drawer Menu & Overlays */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-search-bar {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--surface-border);
}

.mobile-search-bar.active {
    display: block;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--surface-border);
    margin-bottom: 1rem;
}

.mobile-nav-header span {
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: var(--text-dark);
}

#closeMobileMenu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .header-container {
        gap: 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    /* Fixed Force-Fit Viewport */
    body {
        width: 100vw;
        overflow-x: hidden;
    }

    .container {
        padding: 0 1rem;
    }

    /* Header Mobile Refinement */
    .header-main {
        padding: 0.75rem 0;
    }

    .header-container {
        gap: 1rem;
        justify-content: space-between;
    }

    .site-logo img {
        height: 32px;
    }

    #mobileMenuToggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        order: -1;
        cursor: pointer;
        background: transparent;
        border: none;
        color: var(--text-main);
        font-size: 1.5rem;
    }

    .search-bar.hide-mobile,
    .header-links.hide-mobile,
    .header-action-text.hide-mobile,
    .nav-menu:not(.main-nav.active .nav-menu) {
        display: none !important;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .header-actions {
        gap: 0.75rem;
    }

    .header-action i {
        font-size: 1.25rem;
    }

    /* Mobile Drawer Menu */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 300px;
        max-width: 85vw;
        background: var(--bg-white);
        z-index: 2000;
        transform: translateX(-100%);
        border: none;
        padding-top: 0;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--bg-gray);
    }

    .nav-menu li a {
        padding: 1rem 0;
        font-size: 1rem;
    }

    .nav-menu li a::after {
        display: none;
    }

    /* Grid Stacking */
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-card {
        height: 180px;
    }

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

    .product-info {
        padding: 1rem;
    }

    .product-title {
        font-size: 0.9375rem;
    }

    .product-price {
        font-size: 1.125rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Hero Slider */
    .hero-slider.modern-slider {
        aspect-ratio: 1 / 1;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .slider-title {
        font-size: 1.875rem;
    }
}

/* Skeleton & Utils */
@keyframes skeleton-loading {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

/* FINAL DEFINITIVE MOBILE FIXES */
@media (max-width: 768px) {

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

    #mobileMenuToggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 1001;
    }

    .main-nav {
        display: none !important;
        position: fixed !important;
        top: 0;
        left: -100%;
        width: 280px !important;
        height: 100vh !important;
        background: white !important;
        z-index: 1050;
        transition: transform 0.3s ease;
    }

    .main-nav.active {
        display: block !important;
        left: 0 !important;
    }

    .nav-menu {
        flex-direction: column !important;
        padding: 2rem !important;
        gap: 1rem !important;
        width: 100% !important;
        display: flex !important;
    }

    .nav-menu li {
        width: 100% !important;
    }

    .nav-menu li a {
        padding: 1rem !important;
        border-bottom: 1px solid var(--bg-gray);
        display: block !important;
    }

    .hide-mobile {
        display: none !important;
    }

    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Side Drawer Quick Cart */
.side-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 420px;
    max-width: 90vw;
    background: white;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    padding: 2rem;
    border-bottom: 1px solid var(--surface-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
}

.drawer-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
}

.drawer-close:hover {
    background: var(--bg-gray);
    color: var(--text-dark);
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.drawer-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.drawer-item:hover {
    background: var(--bg-gray);
}

.drawer-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    background: white;
}

.drawer-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.drawer-item-title {
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9375rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
}

.drawer-item-title:hover {
    color: var(--primary-color);
}

.drawer-item-variant {
    font-size: 0.8125rem;
    color: var(--text-gray);
}

.drawer-item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
}

.drawer-footer {
    padding: 2rem;
    border-top: 1px solid var(--surface-border);
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .side-drawer {
        width: 100vw;
        max-width: 100vw;
    }
}

/* Modal System - Elite Premium UI */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--bg-white);
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 1.75rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.modal-close {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--danger-color);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    font-size: 1.0625rem;
    color: var(--text-main);
    line-height: 1.6;
}

.modal-footer {
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Modal Variants */
.modal-warning .modal-header h3 {
    color: var(--warning-color);
}

.modal-error .modal-header h3 {
    color: var(--danger-color);
}

.modal-success .modal-header h3 {
    color: var(--success-color);
}

@media (max-width: 576px) {
    .modal-container {
        margin-top: auto;
        border-radius: 24px 24px 0 0;
        transform: translateY(100%);
    }

    .modal-overlay.active .modal-container {
        transform: translateY(0);
    }
}

/* =====================================================
   HOMEPAGE MODERNIZATION (Elite Edition) 
   ===================================================== */

/* 1. Global Utilities */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.shadow-premium {
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* 2. Quick Categories (Service Cards) */
.quick-categories {
    padding: 2rem 0 4rem;
    background: var(--bg-light);
}

.quick-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.quick-cat-item {
    display: flex;
    align-items: center;
    padding: 1.75rem;
    background: white;
    border-radius: 24px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.quick-cat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.quick-cat-icon {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-right: 1.25rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.quick-cat-item:hover .quick-cat-icon {
    transform: scale(1.1) rotate(5deg);
}

.quick-cat-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 0.2rem 0;
    line-height: 1.2;
}

.quick-cat-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* 3. Modernized Product Card */
.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.1);
    border-color: var(--primary-light);
}

.product-image {
    background: #ffffff;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    display: block;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    background-color: #ffffff;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.product-badge-discount {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--danger-color);
    color: white;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.product-info {
    padding: 1.5rem !important;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.product-category-badge {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-actions-mini button {
    background: none;
    border: none;
    padding: 0;
    color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.product-actions-mini button:hover {
    color: var(--danger-color);
    transform: scale(1.2);
}

.product-title {
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    font-size: 1rem;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.product-card:hover .product-title {
    color: var(--primary-color);
}

.product-price {
    margin-top: auto;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sale-price {
    color: var(--danger-color);
    font-size: 1.3rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.regular-price {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
}

.product-quick-add button {
    transition: var(--transition);
    border: none;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 14px;
    height: 50px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.product-quick-add button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.product-card:hover .product-quick-add button::after {
    left: 100%;
}

.product-quick-add button:hover {
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
    transform: scale(1.02);
}

/* 4. Banner Grid Enhancements */
.banners-section {
    padding: 6rem 0;
    background: #fff;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.banner-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-md);
    background: #f1f5f9;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.banner-item:hover img {
    transform: scale(1.1);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    text-decoration: none;
    color: white;
    transition: all 0.5s ease;
}

.banner-item:hover .banner-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent 80%);
}

.banner-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: white;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.banner-item:hover .banner-content h3 {
    transform: translateY(0);
}

.banner-content .btn-white {
    pointer-events: none;
    font-weight: 800;
    border-radius: 30px;
    padding: 10px 25px;
    background: white;
    color: var(--text-dark);
}

/* 5. Section Titles & Layouts */
.products-section,
.categories-section,
.quick-categories {
    padding: 6rem 0;
    position: relative;
}

.products-section.alt-bg,
.categories-section.alt-bg,
.quick-categories.alt-bg {
    background-color: var(--bg-gray);
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
    position: relative;
    z-index: 1;
}

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

.section-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.section-title-wrapper>div {
    position: relative;
}

.section-title-wrapper>div::before {
    content: 'EXCLUSIVE COLLECTION';
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    margin: 0;
    letter-spacing: -0.03em;
}

.section-subtitle {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 1.125rem;
    margin-top: 1rem;
    max-width: 600px;
}

.view-all-link {
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    padding-bottom: 0.5rem;
}

.view-all-link:hover {
    gap: 0.8rem;
    color: var(--primary-dark);
}

/* 6. Product Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

/* 7./* Category Grid & Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    height: 300px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: block;
    background: var(--bg-gray);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category-name {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.category-explore {
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.9;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
}

.category-explore i {
    margin-left: 8px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.category-card:hover .category-explore i {
    transform: translateX(4px);
}

/* 7. Responsive Adjustments */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .quick-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .section-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

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

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

    .quick-cat-item {
        padding: 1.25rem;
    }
}

@media (max-width: 640px) {
    .quick-cat-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .product-info {
        padding: 1.25rem !important;
    }

    .product-title {
        font-size: 0.95rem !important;
    }
}