/* ==========================================================================
   OAKZZ Premium E-commerce Stylesheet
   Design System & Layout Architecture
   ========================================================================== */

:root {
    --bg-dark: #070707;
    --bg-sidebar: #050505;
    --bg-hero: #0a0a0a;
    --bg-light: #ecebe6;
    --bg-card: #f5f4ef;
    
    --color-primary: #111111;
    --color-gold: #c5a880;
    --color-gold-hover: #b3956d;
    --color-muted: #888888;
    --color-white: #ffffff;
    --color-border-dark: rgba(255, 255, 255, 0.08);
    --color-border-light: rgba(0, 0, 0, 0.08);

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --sidebar-width: 240px;
    --topbar-height: 38px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--color-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scroll Reveal Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delay Helpers */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }
.delay-7 { transition-delay: 0.56s; }

/* ==========================================================================
   PRELOADER SCREEN
   ========================================================================== */
.site-preloader {
    position: fixed;
    inset: 0;
    background-color: #050505;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--color-gold);
    margin-bottom: 2px;
    animation: preloaderPulse 1.4s ease-in-out infinite alternate;
}

.preloader-sub {
    font-size: 10px;
    letter-spacing: 4px;
    color: #666666;
    display: block;
    margin-bottom: 25px;
}

.preloader-spinner {
    width: 130px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.spinner-line {
    width: 45%;
    height: 100%;
    background: var(--color-gold);
    position: absolute;
    animation: preloaderBar 1.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes preloaderBar {
    0% { left: -45%; }
    100% { left: 100%; }
}

@keyframes preloaderPulse {
    0% { opacity: 0.75; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1.02); }
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION BAR
   ========================================================================== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #050505;
    border-top: 1px solid var(--color-border-dark);
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 5px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888888;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    gap: 3px;
    width: 20%;
    padding: 6px 0;
    transition: var(--transition);
}

.bottom-nav-item i {
    font-size: 16px;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: var(--color-gold);
}

.bottom-badge-wrapper {
    position: relative;
    display: inline-block;
}

.bottom-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--color-gold);
    color: #000000;
    font-size: 9px;
    font-weight: 700;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}



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

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

/* Helper Utilities */
.text-gold { color: var(--color-gold) !important; }
.bg-gold { background-color: var(--color-gold) !important; }
.font-serif { font-family: var(--font-serif) !important; }
.letter-spacing-3 { letter-spacing: 3px; }
.max-w-600 { max-width: 600px; }
.max-w-700 { max-width: 700px; }

/* App Layout Grid */
.app-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

/* ==========================================================================
   SIDEBAR NAVIGATION (LEFT FIXED)
   ========================================================================== */
.sidebar-nav {
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--bg-sidebar);
    border-right: 1px solid var(--color-border-dark);
    display: flex;
    flex-direction: column;
    z-index: 1050;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 #050505;
}

.sidebar-header {
    padding: 35px 25px 25px 25px;
    text-align: center;
    border-bottom: 1px solid var(--color-border-dark);
    position: relative;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-gold);
    line-height: 1.1;
}

.brand-est {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--color-muted);
    margin-top: 4px;
    font-weight: 500;
}

.sidebar-menu {
    padding: 15px 0;
    flex-grow: 1;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 9px 24px;
    color: #a0a0a0;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.nav-link:hover {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.03);
}

.nav-item.active .nav-link {
    color: var(--color-gold);
    font-weight: 500;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-gold);
}

.nav-icon {
    width: 18px;
    font-size: 13px;
    margin-right: 12px;
    text-align: center;
    color: #888;
}

.nav-item.active .nav-icon {
    color: var(--color-gold);
}

.dropdown-arrow {
    margin-left: auto;
    font-size: 10px;
    opacity: 0.6;
}

.nav-badge {
    margin-left: auto;
    background-color: var(--color-gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-divider {
    height: 1px;
    background-color: var(--color-border-dark);
    margin: 15px 24px;
}

.sidebar-footer {
    padding: 20px 24px 30px;
    border-top: 1px solid var(--color-border-dark);
}

.sidebar-footer p {
    font-size: 11px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Header Toggle Bar */
.mobile-top-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 54px;
    background-color: var(--bg-sidebar);
    border-bottom: 1px solid var(--color-border-dark);
    z-index: 1040;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-btn, .close-sidebar-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.mobile-logo {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-gold);
}

.mobile-action-icon {
    color: #fff;
    font-size: 16px;
    position: relative;
}

.mobile-action-icon .badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--color-gold);
    color: #000;
    font-size: 9px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1045;
}

/* ==========================================================================
   MAIN CONTENT AREA
   ========================================================================== */
.main-content {
    margin-left: var(--sidebar-width);
    flex-grow: 1;
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh;
    background-color: var(--bg-light);
}

/* Top Announcement Bar */
.top-announcement-bar {
    height: var(--topbar-height);
    background-color: #000000;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    padding-left: 50px;
}

.announcement-content i {
    font-size: 12px;
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #aaa;
    font-size: 10px;
}

.currency-selector:hover {
    color: #fff;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    background: radial-gradient(circle at 65% 50%, #1c1c1c 0%, #0a0a0a 70%);
    color: var(--color-white);
    position: relative;
    padding: 50px 0 40px 0;
    overflow: hidden;
}

.hero-container {
    padding: 0 40px 0 60px;
}

.hero-text-col {
    padding-right: 30px;
}

.hero-category-tag {
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 64px;
    line-height: 1.05;
    font-weight: 500;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.hero-title-gold {
    color: var(--color-gold);
    font-style: italic;
    font-weight: 400;
}

.hero-description {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.btn-gold {
    background-color: var(--color-gold);
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 14px 32px;
    border-radius: 0;
    border: 1px solid var(--color-gold);
    transition: var(--transition);
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    color: #000000;
}

.btn-outline-light-custom {
    background-color: transparent;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 14px 32px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.btn-outline-light-custom:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.hero-features-row {
    display: flex;
    gap: 30px;
    padding-top: 20px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature-icon {
    color: var(--color-gold);
    font-size: 18px;
}

.hero-feature-text {
    display: flex;
    flex-direction: column;
}

.hero-feature-text strong {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.hero-feature-text span {
    font-size: 11px;
    color: #888888;
}

/* Hero Media & Gallery Stack */
.hero-media-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    position: relative;
}

.hero-main-image-container {
    width: 380px;
    height: 480px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background-color: #111;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-gallery-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.gallery-thumbs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumb-item {
    width: 65px;
    height: 85px;
    border: 1px solid transparent;
    cursor: pointer;
    overflow: hidden;
    opacity: 0.6;
    transition: var(--transition);
}

.thumb-item:hover, .thumb-item.active {
    opacity: 1;
    border-color: var(--color-gold);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.gallery-nav-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-nav-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.gallery-counter {
    font-size: 11px;
    color: #888;
    letter-spacing: 1px;
    margin: 4px 0;
}

.gallery-counter #currentSlide {
    color: #fff;
    font-weight: 600;
}

/* ==========================================================================
   SHOP BY CATEGORY SECTION
   ========================================================================== */
.shop-category-section {
    padding: 50px 40px;
    background-color: var(--bg-light);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 25px;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #111111;
    margin: 0;
}

.btn-outline-dark-sm {
    background: transparent;
    border: 1px solid #ccc;
    color: #333;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 8px 18px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-outline-dark-sm:hover {
    background-color: #111;
    color: #fff;
    border-color: #111;
}

.btn-dark-sm {
    background-color: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 9px 20px;
    border-radius: 0;
    border: 1px solid #111;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.category-card {
    background-color: #ffffff;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.03);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.category-img-wrapper {
    height: 180px;
    width: 100%;
    overflow: hidden;
    background-color: #e5e5e5;
}

.category-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-info {
    padding: 15px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-icon {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}

.category-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2px;
    color: #111;
}

.category-sub {
    font-size: 10px;
    color: #888;
}

/* ==========================================================================
   PROMOTIONAL BANNERS SECTION
   ========================================================================== */
.promo-banners-section {
    padding: 10px 40px 50px 40px;
    background-color: var(--bg-light);
}

.banner-card {
    position: relative;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px;
}

.banner-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.banner-card:hover .banner-bg-img {
    transform: scale(1.04);
}

.banner-overlay {
    position: absolute;
    inset: 0;
}

.banner-dark .banner-overlay {
    background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 60%, transparent 100%);
}

.banner-light .banner-overlay {
    background: linear-gradient(90deg, rgba(236,235,230,0.95) 0%, rgba(236,235,230,0.4) 60%, transparent 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 260px;
}

.banner-subtitle {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.banner-dark .banner-subtitle {
    color: var(--color-gold);
}

.banner-light .banner-subtitle {
    color: #555555;
}

.banner-title {
    font-family: var(--font-serif);
    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 20px;
}

.banner-dark .banner-title {
    color: #ffffff;
}

.banner-light .banner-title {
    color: #111111;
}

.btn-banner-outline {
    border: 1px solid #111;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 10px 22px;
    border-radius: 0;
}

.banner-dark .btn-banner-outline {
    border-color: #ffffff;
    color: #ffffff;
}

.banner-dark .btn-banner-outline:hover {
    background-color: #ffffff;
    color: #000000;
}

.banner-light .btn-banner-outline {
    border-color: #111111;
    color: #111111;
}

.banner-light .btn-banner-outline:hover {
    background-color: #111111;
    color: #ffffff;
}

/* ==========================================================================
   BEST SELLERS & PRODUCT CARDS
   ========================================================================== */
.best-sellers-section {
    padding: 10px 40px 60px 40px;
    background-color: var(--bg-light);
}

.product-card {
    background-color: transparent;
    transition: var(--transition);
}

.product-img-wrapper {
    position: relative;
    height: 250px;
    background-color: #e5e5e5;
    overflow: hidden;
    margin-bottom: 12px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.06);
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #111;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist-btn:hover {
    background: #ffffff;
    color: #e74c3c;
}

.product-info {
    text-align: left;
}

.product-title {
    font-size: 11px;
    font-weight: 500;
    color: #333333;
    line-height: 1.4;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-title a:hover {
    color: #000;
}

.product-price {
    font-size: 12px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

.product-swatches {
    display: flex;
    align-items: center;
    gap: 5px;
}

.swatch {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.swatch-more {
    font-size: 10px;
    color: #777777;
    margin-left: 2px;
}

/* ==========================================================================
   SHOP CATALOG PAGE STYLING
   ========================================================================== */
.shop-header-banner {
    background-color: #111;
    color: #fff;
    padding: 40px 0;
}

.shop-page-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 5px;
}

.shop-page-subtitle {
    color: #888;
    font-size: 13px;
    margin: 0;
}

.shop-filter-widget {
    background-color: #fff;
    padding: 24px;
    border: 1px solid #e5e5e5;
}

.filter-widget-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    color: #111;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 8px;
}

.filter-list a {
    color: #666;
    font-size: 13px;
}

.filter-list a:hover, .filter-list a.active {
    color: #000;
    font-weight: 600;
}

.filter-divider {
    height: 1px;
    background-color: #eee;
    margin: 20px 0;
}

/* Product Detail Customization */
.detail-main-img-box {
    height: 520px;
    background-color: #111;
    overflow: hidden;
}

.detail-main-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-thumb-item {
    width: 80px;
    height: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    overflow: hidden;
    opacity: 0.6;
}

.detail-thumb-item.active, .detail-thumb-item:hover {
    opacity: 1;
    border-color: var(--color-gold);
}

.detail-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-picker-item input, .size-btn-item input {
    display: none;
}

.color-dot {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
}

.color-picker-item input:checked + .color-dot {
    border-color: #000;
    transform: scale(1.1);
}

.size-btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ccc;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.size-btn-item input:checked + .size-btn-box {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

/* ==========================================================================
   CLIENT TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background-color: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card {
    transition: var(--transition);
    border-radius: 0;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.testimonial-rating {
    font-size: 13px;
}

.testimonial-quote {
    font-size: 13px;
    line-height: 1.6;
    font-style: italic;
    color: #222222;
}

.author-avatar {
    font-size: 14px;
    letter-spacing: 1px;
}

/* ==========================================================================
   MAIN MULTI-COLUMN FOOTER
   ========================================================================== */
.site-main-footer {
    background-color: #050505;
    color: #a0a0a0;
    border-top: 1px solid var(--color-border-dark);
}

.footer-widget-title {
    color: #ffffff;
    font-size: 11px;
}

.footer-links-list a {
    color: #888888;
    transition: var(--transition);
}

.footer-links-list a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-social-icons a {
    color: #888888;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
}

.payment-methods-icons i {
    color: #777777;
    transition: var(--transition);
}

.payment-methods-icons i:hover {
    color: #ffffff;
}

.footer-bottom-line {
    background-color: #030303;
}

/* ==========================================================================
   FOOTER HIGHLIGHTS BAR
   ========================================================================== */

.footer-highlights {
    background-color: #080808;
    color: var(--color-white);
    padding: 30px 40px;
    border-top: 1px solid var(--color-border-dark);
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.footer-icon {
    font-size: 20px;
    color: var(--color-gold);
}

.footer-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 2px;
}

.footer-subtitle {
    font-size: 11px;
    color: #777777;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991.98px) {
    .sidebar-nav {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar-nav.active {
        transform: translateX(0);
    }
    
    .sidebar-backdrop.active {
        display: block;
    }

    .mobile-top-bar {
        display: flex;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
        margin-top: 54px;
        padding-bottom: 60px;
    }


    .hero-section {
        padding: 40px 20px;
    }

    .hero-container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-media-wrapper {
        margin-top: 40px;
        justify-content: center;
    }

    .shop-category-section,
    .promo-banners-section,
    .best-sellers-section {
        padding: 30px 20px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .hero-main-image-container {
        width: 260px;
        height: 350px;
    }

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

    .announcement-content {
        padding-left: 0;
        font-size: 9px;
    }

    .footer-item {
        justify-content: flex-start;
    }
}
