@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --brand: #8B5E3C;
    --brand-dark: #6B4226;
    --brand-light: #D4A574;
    --brand-gold: #C9A96E;
    --brand-cream: #FDF8F0;
    --dark: #1a1207;
    --dark-brown: #2C1810;
    --text: #3d2c1e;
    --text-light: #7a6555;
    --light: #FEFCF9;
    --border: #e8ddd4;
    --shadow-sm: 0 2px 8px rgba(139,94,60,0.06);
    --shadow: 0 4px 20px rgba(139,94,60,0.1);
    --shadow-lg: 0 12px 40px rgba(139,94,60,0.15);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   TOP BAR - Premium Dark Strip
   ============================================ */
.header-topbar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(201,169,110,0.15);
}
.header-topbar a {
    color: var(--brand-gold);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}
.header-topbar a:hover {
    color: #fff;
}
.header-topbar span {
    color: rgba(255,255,255,0.6);
}
.topbar-divider {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.2);
    display: inline-block;
    margin: 0 14px;
    vertical-align: middle;
}
.topbar-social {
    display: flex;
    align-items: center;
    margin-left: 16px;
    gap: 4px;
}
.topbar-social a {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    font-size: 0.72rem;
    transition: var(--transition);
}
.topbar-social a:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-1px);
}

/* ============================================
   MAIN HEADER
   ============================================ */
.header-main {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.header-main.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
}
.header-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.header-logo {
    text-decoration: none;
    flex-shrink: 0;
}
.header-logo img {
    height: 38px;
    width: auto;
    transition: var(--transition);
}
.header-main.scrolled .header-logo img {
    height: 32px;
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: -0.5px;
}

/* ============================================
   SEARCH BAR - Premium 55px Height
   ============================================ */
.header-search {
    flex: 1;
    max-width: 600px;
    display: flex;
    align-items: stretch;
    height: 48px;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid var(--border);
    background: #fff;
    transition: var(--transition);
}
.header-search:focus-within {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(139,94,60,0.08);
}
.search-select {
    border: none;
    padding: 0 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    background: var(--brand-cream);
    outline: none;
    cursor: pointer;
    min-width: 130px;
    border-right: 2px solid var(--border);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%238B5E3C' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 30px;
}
.search-input {
    flex: 1;
    border: none;
    padding: 0 16px;
    font-size: 0.88rem;
    outline: none;
    color: var(--text);
    background: transparent;
}
.search-input::placeholder {
    color: #b0a090;
}
.search-btn {
    background: var(--brand);
    border: none;
    color: #fff;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.15rem;
    transition: var(--transition);
}
.search-btn:hover {
    background: var(--brand-dark);
}

/* ============================================
   HEADER ACTIONS (Account, Wishlist, Cart)
   ============================================ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    padding: 6px 12px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    min-width: 56px;
}
.action-item i {
    font-size: 1.35rem;
    margin-bottom: 2px;
    color: var(--brand);
}
.action-item span:not(.action-badge) {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-light);
}
.action-item:hover {
    background: var(--brand-cream);
    color: var(--brand-dark);
}
.action-item:hover i {
    transform: translateY(-1px);
}
.action-badge {
    position: absolute;
    top: 2px;
    right: 8px;
    background: var(--brand);
    color: #fff;
    font-size: 0.6rem;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid #fff;
}

/* Mobile Toggle */
.mobile-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--brand-dark);
    padding: 8px;
    cursor: pointer;
    display: none;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.header-nav {
    background: var(--dark-brown);
    padding: 0;
}
.nav-row {
    display: flex;
    align-items: center;
}

/* Categories Button */
.nav-cat-btn {
    background: var(--brand);
    border: none;
    color: #fff;
    padding: 12px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-cat-btn:hover {
    background: var(--brand-dark);
}
.nav-cat-dropdown {
    min-width: 260px;
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin-top: 0 !important;
}
.nav-cat-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}
.nav-cat-dropdown .dropdown-item:hover {
    background: var(--brand-cream);
    color: var(--brand-dark);
}
.nav-cat-dropdown .cat-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
}
.nav-cat-dropdown .cat-icon-placeholder {
    font-size: 1.1rem;
    color: var(--brand);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 13px 16px;
    font-size: 0.84rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}
.nav-links a.active {
    color: var(--brand-gold);
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--brand-gold);
    border-radius: 2px 2px 0 0;
}
.nav-links .nav-admin {
    color: var(--brand-gold);
    font-weight: 600;
}

/* Nav Right */
.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
}
.nav-offer {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    background: rgba(201,169,110,0.15);
    border-radius: 20px;
    border: 1px solid rgba(201,169,110,0.3);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-offer:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}
.nav-offer i {
    color: #ff6b35;
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
    background: #fff;
    border-bottom: 2px solid var(--brand-light);
    padding: 16px;
}
.mobile-search {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid var(--border);
    margin-bottom: 12px;
}
.mobile-search input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 0.88rem;
    outline: none;
}
.mobile-search button {
    background: var(--brand);
    border: none;
    color: #fff;
    padding: 12px 18px;
    cursor: pointer;
}
.mobile-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0ebe5;
    transition: var(--transition);
}
.mobile-links a:hover {
    color: var(--brand);
    padding-left: 6px;
}
.mobile-links a i {
    font-size: 1.1rem;
    color: var(--brand);
    width: 24px;
}

/* ============================================
   HERO SECTION - Premium Incense Theme
   ============================================ */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1207 0%, #2C1810 50%, #3d2215 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    margin-top: 0;
}
.hero-smoke {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600'%3E%3Cdefs%3E%3CradialGradient id='a' cx='50%25' cy='50%25' r='50%25'%3E%3Cstop offset='0%25' stop-color='%23C9A96E' stop-opacity='0.08'/%3E%3Cstop offset='100%25' stop-color='transparent'/%3E%3C/radialGradient%3E%3C/defs%3E%3Ccircle cx='300' cy='300' r='400' fill='url(%23a)'/%3E%3Ccircle cx='1100' cy='200' r='300' fill='url(%23a)'/%3E%3C/svg%3E") center/cover no-repeat;
    opacity: 0.6;
    animation: smokeFloat 8s ease-in-out infinite;
}
@keyframes smokeFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-10px) scale(1.02); opacity: 0.8; }
}
.hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(1px 1px at 100px 50px, rgba(201,169,110,0.4), transparent),
        radial-gradient(1px 1px at 400px 150px, rgba(201,169,110,0.3), transparent),
        radial-gradient(1.5px 1.5px at 700px 80px, rgba(201,169,110,0.5), transparent),
        radial-gradient(1px 1px at 900px 200px, rgba(201,169,110,0.3), transparent),
        radial-gradient(1px 1px at 200px 300px, rgba(201,169,110,0.4), transparent),
        radial-gradient(1.5px 1.5px at 600px 350px, rgba(201,169,110,0.3), transparent);
    animation: particleFloat 12s linear infinite;
}
@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--brand-gold);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-title span {
    color: var(--brand-gold);
    display: block;
}
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin-bottom: 30px;
    line-height: 1.7;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(139,94,60,0.4);
}
.hero-cta:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139,94,60,0.5);
    color: #fff;
}
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-gold);
    padding: 14px 24px;
    border: 1px solid rgba(201,169,110,0.4);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    margin-left: 12px;
    transition: var(--transition);
}
.hero-cta-secondary:hover {
    background: rgba(201,169,110,0.1);
    border-color: var(--brand-gold);
    color: #fff;
}
.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat {
    text-align: center;
}
.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-gold);
}
.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   HERO BANNER SLIDER (when banners exist)
   ============================================ */
.hero-banner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-banner img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .header-search { max-width: 420px; }
    .search-select { min-width: 110px; }
}
@media (max-width: 991px) {
    .header-search { display: none !important; }
    .header-actions { display: none !important; }
    .mobile-toggle { display: block; }
    .header-nav .nav-row { overflow-x: auto; }
    .nav-links a { padding: 13px 12px; font-size: 0.8rem; white-space: nowrap; }
    .nav-right { display: none !important; }
    .hero-title { font-size: 2.2rem; }
    .hero-image { display: none; }
    .hero-section { min-height: 380px; }
}
@media (max-width: 576px) {
    .header-topbar .topbar-left { display: none !important; }
    .header-main { padding: 12px 0; }
    .logo-text { font-size: 1.3rem; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-cta { padding: 12px 24px; font-size: 0.85rem; }
    .hero-cta-secondary { display: none; }
    .hero-stats { gap: 20px; }
    .hero-stat-number { font-size: 1.4rem; }
    .hero-banner img { height: 220px; }
    .nav-cat-btn span { display: none; }
}


/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 12px;
    color: var(--dark-brown);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--brand);
    border-radius: 2px;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
    border: none;
    border-radius: var(--radius);
    transition: var(--transition);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.product-card .product-img {
    height: 200px;
    object-fit: contain;
    padding: 20px;
    background: linear-gradient(180deg, #faf7f4 0%, #fff 100%);
    transition: transform 0.4s;
}
.product-card:hover .product-img {
    transform: scale(1.05);
}
.product-card .card-body { padding: 16px; }
.product-card .product-title {
    font-size: 0.86rem;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.7em;
    color: var(--text);
    margin-bottom: 6px;
}
.product-card .price {
    color: var(--dark-brown);
    font-weight: 700;
    font-size: 1.1rem;
}
.product-card .mrp {
    text-decoration: line-through;
    color: #b0a090;
    font-size: 0.82rem;
}
.product-card .discount {
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.78rem;
    background: #e8f5e9;
    padding: 2px 6px;
    border-radius: 4px;
}
.product-card .action-btns {
    opacity: 0;
    transition: 0.4s;
    transform: translateY(10px);
}
.product-card:hover .action-btns {
    opacity: 1;
    transform: translateY(0);
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brand);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(139,94,60,0.3);
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.category-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    background: #fff;
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--brand-light);
}
.category-card img {
    height: 120px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s;
}
.category-card:hover img { transform: scale(1.08); }
.category-card .card-body {
    background: #fff;
    padding: 10px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-success, .btn-brand {
    background: var(--brand);
    border: none;
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}
.btn-success:hover, .btn-brand:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139,94,60,0.3);
}
.btn-outline-success, .btn-outline-brand {
    border-color: var(--brand);
    color: var(--brand);
    border-radius: 8px;
    font-weight: 500;
}
.btn-outline-success:hover, .btn-outline-brand:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}
.btn-warning {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand));
    border: none;
    color: #fff;
    border-radius: 8px;
}
.btn-warning:hover { color: #fff; background: var(--brand-dark); }

/* ============================================
   FEATURES STRIP
   ============================================ */
.features-strip .card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.features-strip .card:hover {
    border-color: var(--brand-light);
    box-shadow: var(--shadow);
}
.features-strip .card i {
    color: var(--brand) !important;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 9999;
    text-decoration: none;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
}

/* ============================================
   STAR RATING
   ============================================ */
.star-rating { color: #f59e0b; }
.star-rating .empty { color: #e0d8d0; }

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-card {
    max-width: 440px;
    margin: 50px auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: none;
    overflow: hidden;
}

/* ============================================
   DASHBOARD
   ============================================ */
.dash-card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}
.dash-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

/* ============================================
   ADMIN SIDEBAR
   ============================================ */
.admin-sidebar {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-brown) 100%);
    position: sticky;
    top: 0;
}
.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.65);
    padding: 11px 18px;
    border-radius: 8px;
    margin: 2px 10px;
    font-size: 0.85rem;
    transition: var(--transition);
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: var(--brand);
    color: #fff;
    transform: translateX(3px);
}

/* ============================================
   FORMS
   ============================================ */
.form-control, .form-select {
    border-radius: 8px;
    border: 2px solid var(--border);
    padding: 10px 14px;
    transition: var(--transition);
    font-size: 0.88rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(139,94,60,0.1);
}

/* ============================================
   CARDS & SHADOWS
   ============================================ */
.card {
    border-radius: var(--radius);
    border: none;
}
.shadow-sm { box-shadow: var(--shadow-sm) !important; }

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: linear-gradient(180deg, var(--dark) 0%, #0d0a04 100%) !important;
}
footer h5, footer h6 { font-weight: 600; font-family: 'Playfair Display', serif; }
footer .social-links a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: var(--transition);
    margin-right: 8px;
}
footer .social-links a:hover {
    background: var(--brand);
    transform: translateY(-3px);
}

/* ============================================
   ORDER TRACKING
   ============================================ */
.order-track { display: flex; justify-content: space-between; position: relative; }
.order-track::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: #e8ddd4;
    border-radius: 2px;
}
.order-track .step { text-align: center; position: relative; z-index: 1; }
.order-track .step .icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e8ddd4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 0.85rem;
    transition: var(--transition);
}
.order-track .step.active .icon {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 4px 12px rgba(139,94,60,0.3);
}

/* ============================================
   MISC
   ============================================ */
.like-btn { cursor: pointer; transition: 0.3s; }
.like-btn.liked { color: #e74c3c; }
.like-btn:hover { transform: scale(1.2); }

.filter-sidebar {
    border-radius: var(--radius);
    position: sticky;
    top: 80px;
}
.filter-sidebar h6 { font-size: 0.9rem; }
.price-range input { width: 80px; }

.variant-btn {
    min-width: 50px;
    font-weight: 500;
    border-radius: 6px !important;
    transition: all 0.2s;
}
.variant-btn.active {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.table { font-size: 0.86rem; }
.table th { font-weight: 600; background: var(--brand-cream); }

.badge { font-weight: 500; padding: 5px 10px; border-radius: 6px; }
.badge-sm { font-size: 0.55rem; padding: 3px 5px; border-radius: 50%; }

/* ============================================
   DROPDOWN
   ============================================ */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 8px;
}
.dropdown-item {
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.86rem;
    transition: var(--transition);
}
.dropdown-item:hover { background: var(--brand-cream); color: var(--brand-dark); }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f5f0eb; }
::-webkit-scrollbar-thumb { background: var(--brand-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.5s ease forwards; }

/* ============================================
   RESPONSIVE EXTRAS
   ============================================ */
@media (max-width: 768px) {
    .hero-banner img { height: 220px; }
    .product-card .product-img { height: 150px; padding: 10px; }
    .product-card .action-btns { opacity: 1; transform: translateY(0); }
    .section-title { font-size: 1.2rem; }
    .admin-sidebar { display: none; }
    .category-card img { height: 90px; }
}
