/* ================================================================
   LITAURAA - Main Stylesheet
   Brand Color: #A78285 (default) / #C4A35A (jewellery)
   ================================================================ */

:root {
    --brand: #A78285;
    --brand-dark: #8a6a6d;
    --brand-light: #c9a5a8;
    --brand-ultra-light: #f5f0f0;
    --text-dark: #2c2c2c;
    --text-body: #555;
    --text-muted: #999;
    --bg-light: #faf8f8;
    --bg-white: #ffffff;
    --border: #eee;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-elegant: 'Cormorant Garamond', serif;
}

/* =================== RESET =================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--bg-white); line-height: 1.6; font-size: 14px; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* =================== ANNOUNCEMENT BAR =================== */
.announcement-bar {
    background: var(--brand);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
    position: relative;
    z-index: 1001;
}
.announcement-bar .container { display: flex; align-items: center; justify-content: center; }
.announcement-bar p { margin: 0; letter-spacing: 0.5px; }
.announcement-close {
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    color: rgba(255,255,255,0.7); font-size: 14px; transition: var(--transition);
}
.announcement-close:hover { color: #fff; }

/* =================== TOP BAR =================== */
.top-bar {
    background: #2c2426;
    padding: 8px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 20px; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left i { color: var(--brand-light); font-size: 11px; }
.top-bar-right { display: flex; gap: 14px; }
.top-bar-right a { color: rgba(255,255,255,0.6); font-size: 13px; transition: var(--transition); }
.top-bar-right a:hover { color: var(--brand-light); }

/* =================== HEADER =================== */
.main-header {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-sm);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 0px;
}

/* Logo */
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 50px; width: auto; }
.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--brand);
    letter-spacing: 4px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}
.logo-tagline {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

/* Search */
.header-search {
    flex: 1;
    max-width: 480px;
}
.header-search form {
    display: flex;
    border: 2px solid #eee;
    border-radius: 50px;
    overflow: hidden;
    transition: var(--transition);
}
.header-search form:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(167,130,133,0.1); }
.header-search input {
    flex: 1;
    padding: 11px 20px;
    border: none;
    outline: none;
    font-size: 13px;
    color: var(--text-dark);
    background: transparent;
}
.header-search button {
    padding: 11px 18px;
    color: var(--brand);
    font-size: 15px;
    transition: var(--transition);
}
.header-search button:hover { color: var(--brand-dark); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.header-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    position: relative;
    transition: var(--transition);
}
.header-action-btn:hover { color: var(--brand); background: var(--brand-ultra-light); }
.header-action-btn i { font-size: 18px; }
.action-label { font-size: 10px; color: var(--text-muted); font-weight: 500; }
.action-badge {
    position: absolute;
    top: 2px; right: 4px;
    background: var(--brand);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mobile-menu-toggle { display: none; }
.search-toggle-mobile { display: none; }

/* =================== NAVIGATION =================== */
.main-nav {
    background: var(--bg-white);
    border-top: 1px solid #f0f0f0;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 20px; right: 20px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--brand); }
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { transform: scaleX(1); }

.nav-menu > li > a i.fa-chevron-down { font-size: 9px; transition: var(--transition); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-nav li a {
    display: block;
    padding: 8px 22px;
    font-size: 13px;
    color: var(--text-body);
    transition: var(--transition);
}
.dropdown-menu-nav li a:hover { color: var(--brand); background: var(--brand-ultra-light); padding-left: 28px; }
.dropdown-menu-nav li.view-all a { color: var(--brand); font-weight: 600; font-size: 12px; }

.nav-close-mobile { display: none; }

/* =================== MOBILE SEARCH =================== */
.mobile-search-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 2000;
    display: none; align-items: flex-start; justify-content: center; padding-top: 100px;
}
.mobile-search-overlay.active { display: flex; }
.mobile-search-inner {
    background: #fff; width: 90%; max-width: 500px; border-radius: var(--radius);
    padding: 20px; display: flex; gap: 10px; box-shadow: var(--shadow-lg);
}
.mobile-search-inner input { flex: 1; padding: 12px 16px; border: 2px solid #eee; border-radius: 50px; font-size: 14px; outline: none; }
.mobile-search-inner input:focus { border-color: var(--brand); }
.mobile-search-inner button { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mobile-search-inner button[type="submit"] { background: var(--brand); color: #fff; }
.close-search { color: var(--text-muted); font-size: 18px; }

.mobile-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 1500;
}
.mobile-overlay.active { display: block; }

/* =================== HERO SECTION =================== */
.hero-section { position: relative; overflow: hidden; }
.hero-slide {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(44,36,38,0.5), rgba(44,36,38,0.2));
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 600px; padding: 40px 60px;
    color: #fff;
    text-align: center;
}
.hero-content .hero-subtitle {
    font-family: var(--font-elegant);
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.9;
}
.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}
.hero-content p { font-size: 15px; opacity: 0.85; margin-bottom: 30px; line-height: 1.7; }
.hero-content .btn-hero {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 36px;
    background: var(--brand);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid transparent;
}
.hero-content .btn-hero:hover {
    background: transparent;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.hero-section .swiper-pagination-bullet { background: #fff; opacity: 0.5; width: 10px; height: 10px; }
.hero-section .swiper-pagination-bullet-active { opacity: 1; background: var(--brand); width: 30px; border-radius: 5px; }

/* =================== SECTION STYLES =================== */
.section { padding: 80px 0; }
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header .section-subtitle {
    font-family: var(--font-elegant);
    font-size: 16px;
    color: var(--brand);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 12px;
}
.section-header p { color: var(--text-muted); max-width: 500px; margin: 0 auto; font-size: 14px; }
.section-header .section-line {
    width: 60px; height: 2px; background: var(--brand); margin: 15px auto 0;
}

.section-alt { background: var(--bg-light); }

/* =================== PRODUCT CARDS =================== */
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
}
.product-card:hover {
    box-shadow: var(--shadow);
    border-color: rgba(167,130,133,0.1);
    transform: translateY(-5px);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #f9f7f7;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.08); }

/* Product Badges */
.product-badges {
    position: absolute; top: 12px; left: 12px;
    display: flex; flex-direction: column; gap: 5px; z-index: 2;
}
.product-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.badge-sale { background: #e74c3c; color: #fff; }
.badge-new { background: var(--brand); color: #fff; }
.badge-bestseller { background: #f39c12; color: #fff; }
.badge-out { background: #333; color: #fff; }

/* Product Actions */
.product-card-actions {
    position: absolute; right: 12px; top: 12px;
    display: flex; flex-direction: column; gap: 8px;
    opacity: 0; transform: translateX(10px);
    transition: all 0.3s ease; z-index: 2;
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }

.product-action-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
}
.product-action-btn:hover { background: var(--brand); color: #fff; }
.product-action-btn.wishlisted { color: #e74c3c; }

/* Product Info */
.product-card-info {
    padding: 18px;
    text-align: center;
}
.product-card-category {
    font-size: 11px;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 500;
}
.product-card-name {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-name a { color: var(--text-dark); }
.product-card-name a:hover { color: var(--brand); }

.product-card-price { display: flex; align-items: center; justify-content: center; gap: 8px; }
.current-price { font-size: 18px; font-weight: 700; color: var(--text-dark); }
.compare-price { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.discount-percent { font-size: 12px; color: #e74c3c; font-weight: 600; }

.product-card-rating {
    margin-top: 8px;
    display: flex; align-items: center; justify-content: center; gap: 5px;
}
.star-rating { color: #f39c12; }
.star-rating .far { color: #ddd; }
.rating-count { font-size: 11px; color: var(--text-muted); }

.product-card-footer {
    padding: 0 18px 18px;
}
.btn-add-cart {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1.5px solid var(--brand);
    color: var(--brand);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-add-cart:hover { background: var(--brand); color: #fff; }
.btn-add-cart.out-of-stock { border-color: #ccc; color: #ccc; pointer-events: none; }

/* =================== PRODUCT GRID =================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* =================== CATEGORY CARDS =================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}
.category-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.1); }
.category-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(44,36,38,0.85));
    padding: 30px 20px 20px;
    color: #fff;
    text-align: center;
}
.category-card-overlay h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}
.category-card-overlay span {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =================== BUTTONS =================== */
.btn-primary-brand {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 32px;
    background: var(--brand);
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid var(--brand);
}
.btn-primary-brand:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    box-shadow: 0 4px 15px rgba(167,130,133,0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline-brand {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 32px;
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}
.btn-outline-brand:hover {
    background: var(--brand);
    color: #fff;
}

/* =================== USP / FEATURES BAR =================== */
.usp-section { padding: 40px 0; border-bottom: 1px solid #f0f0f0; }
.usp-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.usp-item { display: flex; align-items: center; gap: 14px; }
.usp-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--brand-ultra-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--brand);
    font-size: 20px;
    flex-shrink: 0;
}
.usp-text h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.usp-text p { font-size: 12px; color: var(--text-muted); }

/* =================== TESTIMONIALS =================== */
.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid #f5f0f0;
}
.testimonial-card .quote-icon {
    font-size: 30px;
    color: var(--brand-light);
    margin-bottom: 15px;
}
.testimonial-card p {
    font-family: var(--font-elegant);
    font-size: 17px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}
.testimonial-author { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.testimonial-location { font-size: 12px; color: var(--text-muted); }
.testimonial-rating { margin-bottom: 10px; }

/* =================== FOOTER =================== */
.footer-newsletter {
    background: var(--brand);
    padding: 50px 0;
    color: #fff;
}
.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.newsletter-text h3 { font-family: var(--font-heading); font-size: 26px; margin-bottom: 5px; }
.newsletter-text p { opacity: 0.85; font-size: 14px; }
.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    overflow: hidden;
    max-width: 420px;
    width: 100%;
}
.newsletter-form input {
    flex: 1; padding: 14px 24px; background: transparent;
    border: none; outline: none; color: #fff; font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form button {
    padding: 14px 24px; background: rgba(255,255,255,0.2);
    color: #fff; font-size: 16px; transition: var(--transition);
    border-radius: 0 50px 50px 0;
}
.newsletter-form button:hover { background: rgba(255,255,255,0.3); }

.footer-main { background: #2c2426; padding: 60px 0 40px; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-col h4 {
    color: #fff; font-family: var(--font-heading);
    font-size: 18px; margin-bottom: 20px; font-weight: 500;
    position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 30px; height: 2px; background: var(--brand);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 13px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--brand-light); padding-left: 5px; }

.footer-logo { height: 40px; margin-bottom: 15px; filter: brightness(10); }
.footer-logo-text { font-family: var(--font-heading); color: var(--brand-light); font-size: 24px; letter-spacing: 3px; margin-bottom: 15px; }
.footer-about { font-size: 13px; line-height: 1.8; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.08); display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 15px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }

.footer-contact .contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13px; }
.footer-contact .contact-item i { color: var(--brand-light); margin-top: 3px; }
.footer-contact .contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact .contact-item a:hover { color: var(--brand-light); }

.payment-icons { margin-top: 20px; }
.payment-icons span { font-size: 12px; margin-bottom: 8px; display: block; }
.payment-icons-list { display: flex; gap: 12px; font-size: 24px; color: rgba(255,255,255,0.4); }

.footer-bottom {
    background: #231e1f; padding: 18px 0; text-align: center;
    font-size: 12px; color: rgba(255,255,255,0.4);
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-credit i { font-size: 10px; }

/* =================== WHATSAPP FLOAT =================== */
.whatsapp-float {
    position: fixed; bottom: 25px; right: 25px;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; z-index: 998;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
}

/* =================== BACK TO TOP =================== */
.back-to-top {
    position: fixed; bottom: 90px; right: 25px;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--brand); color: #fff;
    display: none; align-items: center; justify-content: center;
    font-size: 16px; z-index: 997;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--brand-dark); transform: translateY(-3px); }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .header-search { display: none; }
    .search-toggle-mobile { display: flex !important; }
    .mobile-menu-toggle { display: flex !important; flex-direction: column; gap: 5px; padding: 10px; z-index: 10; }
    .mobile-menu-toggle span { width: 22px; height: 2px; background: var(--text-dark); transition: var(--transition); }
    .action-label { display: none; }

    .logo-text h1 { font-size: 20px; letter-spacing: 3px; }

    /* Mobile Nav */
    .main-nav {
        position: fixed; top: 0; left: -300px; width: 290px; height: 100vh;
        background: var(--bg-white); z-index: 2000;
        transition: left 0.3s ease; overflow-y: auto;
        box-shadow: var(--shadow-lg);
    }
    .main-nav.active { left: 0; }
    .nav-menu { flex-direction: column; align-items: flex-start; padding: 20px; }
    .nav-menu > li { width: 100%; }
    .nav-menu > li > a { padding: 12px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
    .nav-menu > li > a::after { display: none; }
    .nav-close-mobile { display: block !important; width: 100%; margin-bottom: 10px; }
    .nav-close-mobile button { font-size: 16px; color: var(--text-muted); padding: 10px 0; display: flex; align-items: center; gap: 8px; }

    .has-dropdown .dropdown-menu-nav {
        position: static; box-shadow: none; opacity: 1; visibility: visible;
        transform: none; padding: 0 0 0 20px; display: none;
    }
    .has-dropdown.open .dropdown-menu-nav { display: block; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content h2 { font-size: 30px; }
    .hero-content { padding: 30px; }
    .hero-slide { min-height: 400px; }
    .section { padding: 50px 0; }
    .section-header h2 { font-size: 28px; }
    .newsletter-wrapper { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-bottom .container { flex-direction: column; gap: 5px; }
    .usp-grid { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-card-info { padding: 12px; }
    .product-card-name { font-size: 14px; }
    .current-price { font-size: 15px; }
    .compare-price { font-size: 12px; }
    .hero-content h2 { font-size: 24px; }
    .categories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .category-card { aspect-ratio: 1/1; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* =================== ANIMATIONS =================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* =================== LOADING SKELETON =================== */
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 8px; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }