﻿@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;600;700;800&display=swap');

/* ===================== CSS VARIABLES â€” SEPL BRAND ===================== */
/*  Logo Colors:
    Blue   #2F75C5  â†’ "EPL", Â® symbol, top of S icon, nav bar
    Orange #F5A31C  â†’ "S" in SEPL, ".WE DO", CTAs, prices, highlights
    Grey   #464C5A  â†’ "THINK BIG", bottom of S icon, dark text        */
:root {
    --primary:        #2F75C5;   /* SEPL Blue  */
    --primary-dark:   #1d5aa0;
    --primary-darker: #174a88;
    --primary-light:  #eaf2fb;

    --accent:         #F5A31C;   /* SEPL Orange */
    --accent-dark:    #d4880e;
    --accent-light:   #fff8ec;

    --sepl-grey:      #464C5A;   /* Logo dark grey */
    --dark:           #1e2230;
    --bg-light:       #f4f6fa;
    --bg-white:       #ffffff;
    --text-dark:      #222535;
    --text-muted:     #6b7280;
    --text-light:     #a0aab4;
    --border:         #dde3ef;

    --shadow-sm:  0 2px 8px  rgba(47,117,197,0.08);
    --shadow-md:  0 4px 20px rgba(47,117,197,0.12);
    --shadow-lg:  0 8px 40px rgba(47,117,197,0.16);
    --radius:     8px;
    --transition: all 0.25s ease;
}

/* ===================== RESET ===================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
body {
    font-family: 'Public Sans', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===================== TOP ANNOUNCEMENT BAR ===================== */
.top-bar {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 0.5rem 2%;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.top-bar a {
    background: var(--primary);
    color: #fff;
    padding: 0.2rem 0.9rem;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}
.top-bar a:hover { background: var(--primary-dark); }

/* ===================== UTILITY BAR ===================== */
.utility-bar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 0.35rem 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}
.utility-bar a { color: var(--text-muted); transition: var(--transition); }
.utility-bar a:hover { color: var(--primary); }
.utility-bar .util-left, .utility-bar .util-right { display: flex; gap: 1.25rem; align-items: center; }

/* ===================== MAIN HEADER ===================== */
.main-header {
    background: var(--bg-white);
    padding: 1.2rem 2%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.site-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 180px;
}
.site-logo i { font-size: 1.4rem; }

/* Search Bar */
.search-bar {
    flex: 1;
    display: flex;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.search-bar:focus-within { border-color: var(--primary); }
.search-bar input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    background: #fff;
}
.search-bar button {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 0 1.25rem;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}
.search-bar button:hover { background: var(--primary-dark); }

/* Header Action Icons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.header-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--text-dark);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.header-action-btn i { font-size: 1.4rem; color: var(--text-dark); }
.header-action-btn:hover { color: var(--primary); }
.header-action-btn:hover i { color: var(--primary); }
.cart-badge {
    position: absolute;
    top: -6px; right: -8px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ===================== NAV BAR (BLUE) ===================== */
.nav-bar {
    background: var(--primary);
    padding: 0 2%;
    display: flex;
    align-items: stretch;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(55,125,255,0.2);
}
.nav-categories-btn {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: var(--transition);
    font-family: inherit;
}
.nav-categories-btn:hover { background: rgba(255,255,255,0.25); }
.nav-links {
    display: flex;
    flex: 1;
    align-items: stretch;
}
.nav-links a {
    color: rgba(255,255,255,0.9);
    padding: 0 1.5rem;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-bottom-color: #fff;
}
.nav-cart {
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}
.nav-cart:hover { background: rgba(255,255,255,0.25); }

/* ===================== HERO SECTION ===================== */
.hero-section {
    display: flex;
    gap: 0;
    padding: 1.5rem 2%;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Category Sidebar */
.hero-sidebar {
    width: 250px;
    min-width: 220px;
    height: 380px; /* Match slider height exactly */
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-right: 1.5rem;
}
.hero-sidebar ul {
    overflow-y: auto;
    flex: 1;
}
.hero-sidebar ul::-webkit-scrollbar { width: 4px; }
.hero-sidebar ul::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
.hero-sidebar .sidebar-title {
    background: var(--primary);
    color: #fff;
    padding: 0.85rem 1rem;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-sidebar ul li a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.25rem;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.hero-sidebar ul li:last-child a { border-bottom: none; }
.hero-sidebar ul li a:hover { background: var(--primary-light); color: var(--primary); padding-left: 1.25rem; }
.hero-sidebar ul li a i { color: var(--primary); font-size: 14px; width: 16px; text-align: center; }

/* Hero Banner */
.hero-banner {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, #0d2348 0%, #1a3f7a 40%, #2756A5 75%, #3a6bbf 100%);
    min-height: 380px;
    display: flex;
    align-items: center;
    padding: 3rem;
    position: relative;
}
.hero-banner-content { z-index: 2; max-width: 500px; }
.hero-banner .badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    padding: 0.3rem 1rem;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 1rem;
}
.hero-banner h1 {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.hero-banner h1 span { color: #F47920; }
.hero-banner p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 1.75rem; }
.hero-banner .btn-group { display: flex; gap: 1rem; }
.btn {
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #eef3fb; box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 4px 16px rgba(244,121,32,0.35); }
.btn-blue { background: var(--primary); color: #fff; }
.btn-blue:hover { background: var(--primary-dark); box-shadow: 0 4px 16px rgba(39,86,165,0.35); }
.hero-banner-deco {
    position: absolute;
    right: -20px; top: 50%; transform: translateY(-50%);
    font-size: 16rem;
    color: rgba(255,255,255,0.05);
    z-index: 1;
}

/* ===================== SECTION HEADER ===================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}
.section-header h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    position: relative;
    padding-left: 0.85rem;
}
.section-header h2::before {
    content: '';
    position: absolute;
    left: 0; top: 4px; bottom: 4px;
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
}
.section-header .view-all {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}
.section-header .view-all:hover { gap: 0.5rem; }

/* ===================== SECTION WRAPPER ===================== */
.store-section {
    padding: 1.5rem 2%;
    max-width: 1600px;
    margin: 0 auto;
}

/* ===================== CATEGORY CARDS ===================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}
.category-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.category-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(55,125,255,0.12);
    transform: translateY(-4px);
}
.category-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
    display: block;
}
.category-card span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===================== PRODUCT CARDS ===================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.products-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-3px);
}
.product-img-wrap {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #fafafa;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.product-img-wrap img {
    max-height: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-img-wrap .no-image {
    font-size: 3.5rem;
    color: #ddd;
}
.product-badge {
    position: absolute;
    top: 8px; left: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
}
.product-info { padding: 0.9rem; flex: 1; display: flex; flex-direction: column; }
.product-category {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
}
.product-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-rating { display: flex; gap: 2px; margin-bottom: 0.5rem; }
.product-rating i { font-size: 11px; color: #F59E0B; }
.product-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    margin-top: auto;
}
.product-price .old-price {
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 0.4rem;
}
.product-stock-in  { font-size: 11px; color: #16a34a; margin-top: 3px; }
.product-stock-out { font-size: 11px; color: #dc2626; margin-top: 3px; }
.product-add-btn {
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 6px;
    padding: 0.5rem;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 0.75rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: inherit;
}
.product-add-btn:hover { background: var(--accent); color: #fff; }

/* ===================== PROMO BANNER ===================== */
.promo-banner {
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, #0d1f3c 0%, #1a3f7a 55%, #2756A5 100%);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 0;
}
.promo-banner h2 { font-size: 1.8rem; color: #fff; font-weight: 800; margin-bottom: 0.5rem; }
.promo-banner p { color: rgba(255,255,255,0.75); font-size: 14px; }
.promo-banner .promo-right { text-align: right; }
.promo-banner .promo-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F47920;
    font-family: 'Public Sans', sans-serif;
}

/* ===================== FOOTER ===================== */
.store-footer {
    background: var(--dark);
    color: #ccc;
    margin-top: 3rem;
}
.footer-top {
    background: #1a1a2a;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { font-size: 1.4rem; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 0.4rem; }
.footer-logo i { color: var(--primary); }
.footer-newsletter { display: flex; gap: 0; }
.footer-newsletter input {
    padding: 0.7rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    color: #fff;
    font-size: 13px;
    border-radius: var(--radius) 0 0 var(--radius);
    width: 260px;
    font-family: inherit;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter input:focus { outline: none; border-color: var(--primary); }
.footer-newsletter button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.7rem 1.25rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}
.footer-newsletter button:hover { background: var(--primary-dark); }
.footer-main {
    padding: 2.5rem 5%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}
.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: #999; font-size: 13px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer-col p { color: #888; font-size: 13px; line-height: 1.8; margin-bottom: 0.5rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 5%;
    text-align: center;
    font-size: 12px;
    color: #666;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .products-grid, .products-grid-4 { grid-template-columns: repeat(4, 1fr); }
    .category-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
    .hero-sidebar { display: none; }
    .products-grid, .products-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; }
    
    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .promo-banner .promo-right { text-align: center; }
}
@media (max-width: 768px) {
    .main-header {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .search-bar { order: 3; width: 100%; flex: 100%; }
    .footer-top { flex-direction: column; text-align: center; }
    .footer-newsletter input { width: 200px; }
}
@media (max-width: 600px) {
    .products-grid, .products-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .category-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    
    .hero-section { padding: 1rem 5%; }
    .hero-banner { min-height: 250px; padding: 1.5rem; }
    .hero-banner h1 { font-size: 1.5rem; margin-bottom: 0.5rem; }
    .hero-banner p { font-size: 13px; margin-bottom: 1rem; }
    .hero-banner .btn { padding: 0.5rem 1rem; font-size: 12px; }
    
    .nav-links { display: none; }
    .nav-categories-btn { font-size: 12px; padding: 0 1rem; }
    .nav-cart { font-size: 12px; padding: 0 1rem; }
    
    .store-section { padding: 1rem 5%; }
    .section-header h2 { font-size: 1.1rem; }
    
    .product-img-wrap { height: 140px; }
    .product-img-wrap img { max-height: 120px; }
    .product-info { padding: 0.6rem; }
    .product-name { font-size: 12px; }
    .product-price { font-size: 1rem; }
    
    .footer-main { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem 5%; }
    .utility-bar { display: none; }
    .header-actions { gap: 0.75rem; }
    .header-action-btn span { display: none; }
    .header-action-btn i { font-size: 1.2rem; }
}
@media (max-width: 400px) {
    .products-grid, .products-grid-4 { grid-template-columns: repeat(1, 1fr); }
    .footer-newsletter { flex-direction: column; }
    .footer-newsletter input { width: 100%; border-radius: var(--radius); margin-bottom: 0.5rem; }
    .footer-newsletter button { border-radius: var(--radius); width: 100%; }
}

/* ===================== ADVANCED STRUCTURAL LAYOUTS ===================== */

/* LAYOUT: CLASSIC */
body.layout-classic .hero-sidebar { display: none !important; }
body.layout-classic .hero-section { max-width: 100%; padding: 0; }
body.layout-classic .hero-banner-container { border-radius: 0; min-height: 500px; }
body.layout-classic .product-card { border-radius: 0; box-shadow: none; border: 1px solid #ddd; }
body.layout-classic .category-card { border-radius: 0; }
body.layout-classic .btn, body.layout-classic .product-add-btn { border-radius: 0; }

/* LAYOUT: MINIMALIST */
body.layout-minimal { background: #fff; }
body.layout-minimal .top-bar { display: none !important; }
body.layout-minimal .utility-bar { display: none !important; }
body.layout-minimal .product-card { border: none; box-shadow: none; border-bottom: 1px solid var(--border); border-radius: 0; }
body.layout-minimal .category-card { border: none; box-shadow: none; }
body.layout-minimal .hero-banner-container { box-shadow: none; }

/* LAYOUT: ELEGANT */
body.layout-elegant .main-header { flex-direction: column; padding: 2rem 5%; justify-content: center; gap: 2rem; }
body.layout-elegant .site-logo { margin: 0 auto; transform: scale(1.3); }
body.layout-elegant .search-bar { max-width: 600px; margin: 0 auto; }
body.layout-elegant .products-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 2.5rem; }
body.layout-elegant .product-img-wrap { height: 260px; }
body.layout-elegant .product-img-wrap img { max-height: 220px; }

/* LAYOUT: VIBRANT */
body.layout-vibrant .nav-bar { background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%) !important; border:none; }
body.layout-vibrant .btn-blue { background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); border: none; }
body.layout-vibrant .btn-primary { background: linear-gradient(90deg, var(--accent) 0%, #ff5e62 100%); border: none; }
body.layout-vibrant .store-footer { background: linear-gradient(135deg, var(--dark) 0%, #201a30 100%); }

/* ===================== ACTIVE ECOMMERCE CMS UI UPGRADES ===================== */

/* Product Card Hover Actions */
.product-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.product-img-wrap {
    position: relative;
}
.product-card .hover-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}
.product-card:hover .hover-actions {
    bottom: 15px;
    opacity: 1;
}
.hover-actions .h-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.2s;
    text-decoration: none;
}
.hover-actions .h-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    display: none; /* hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    z-index: 9999;
    padding: 0.5rem 0;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #eaeaea;
}
.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    font-size: 11px;
    text-decoration: none;
    position: relative;
    transition: 0.2s;
}
.mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.mobile-bottom-nav .nav-item.active {
    color: var(--primary);
}
.mobile-bottom-nav .nav-badge {
    position: absolute;
    top: -5px;
    right: 5px;
    background: var(--accent);
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .mobile-bottom-nav { display: flex; }
    body { padding-bottom: 70px; } /* Create space for bottom nav */
    #wa-float { bottom: 85px !important; }
}
/* Dropdown styles */.dropdown-hover { position: relative; display: inline-block; }.dropdown-hover-content { display: none; position: absolute; background-color: #fff; min-width: 180px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1); z-index: 1; border-radius: 4px; overflow: hidden; top: 100%; left: 0; margin-top: 0.5rem; }.dropdown-hover-content a { color: #333; padding: 12px 16px; text-decoration: none; display: block; border-bottom: 1px solid #f1f1f1; }.dropdown-hover-content a:last-child { border-bottom: none; }.dropdown-hover-content a:hover { background-color: #f8f9fa; color: var(--primary-color); }.dropdown-hover:hover .dropdown-hover-content { display: block; }


