:root {
    --primary-crimson: #8c0e12;  /* Exact crimson red from your MEH logo background */
    --accent-gold: #d4af37;     /* Elegant gold accent matching your typography border */
    --background-cream: #fbf9f5; /* Premium soft cream background */
    --text-dark: #221c1a;       /* Deep charcoal chocolate for superb readability */
    --banner-yellow: #f1c40f;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.menu-toggle {
    display: none!important;
}


.logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

body {
    background: #ffffff;
    color: var(--text-dark);
    padding-bottom: 70px;
    overflow-x: hidden;
}

/* Announcement Banner */
.announcement-banner {
    background: var(--banner-yellow);
    color: #000;
    text-align: center;
    padding: 8px 10px;
    font-size: 0.82rem;
    font-weight: 700;
}

/* Header Navbar Layouts */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu-toggle, .search-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.logo-container { display: flex; flex-direction: column; align-items: center; }
.sub-brand { font-size: 0.58rem; letter-spacing: 2px; display: block; color: #666; font-weight: bold; margin-top: 2px; }

.cart-link { text-decoration: none; color: var(--text-dark); display: flex; align-items: center; position: relative; }
.cart-badge { position: absolute; top: -7px; right: -8px; background: var(--primary-crimson); color: #fff; font-size: 0.65rem; padding: 2px 6px; border-radius: 50%; font-weight: bold; }

/* Product Link Structural Adjustments */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.product-card-link:hover h3 {
    color: var(--primary-crimson);
}

/* ========================================== */
/* HAMBURGER SIDEBAR OVERLAY & DRAWER CORES   */
/* ========================================== */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}

.sidebar-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    z-index: 99999;
    box-shadow: 4px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: left 0.3s cubic-bezier(0.1, 0.9, 0.2, 1);
}
.sidebar-drawer.open {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: var(--background-cream);
}
.drawer-header h3 {
    font-size: 1.1rem;
    color: var(--primary-crimson);
    font-weight: 800;
}
.close-drawer-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #777;
}

.drawer-links { list-style: none; padding: 15px 0; }
.drawer-links li a { display: block; padding: 15px 25px; color: var(--text-dark); text-decoration: none; font-weight: 600; font-size: 0.95rem; border-bottom: 1px solid #fafafa; transition: background 0.2s; }
.drawer-links li a:hover { background: #fdf5f5; color: var(--primary-crimson); }

/* ========================================== */
/* FULL-WIDTH BACKGROUND HERO BANNER ENGINE   */
/* ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 8%;
    background-image: url('../images/hero.png'); 
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-color: var(--background-cream);
    border-bottom: 4px solid var(--primary-crimson);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(90deg, rgba(251,249,245,0.96) 0%, rgba(251,249,245,0.80) 50%, rgba(251,249,245,0.1) 100%);*/
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
    text-align: left;
}

.hero-subtitle {
    color: var(--primary-crimson); 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.8rem; 
    display: block; 
    margin-bottom: 12px;
}

.hero-content h1 { font-size: 2.8rem; color: var(--text-dark); line-height: 1.15; font-weight: 900; margin-bottom: 15px; }
.hero-content p { font-weight: bold; color: #5c534e; font-size: 1rem; margin-bottom: 25px; line-height: 1.6; }
.cta-btn { background: var(--primary-crimson); color: #fff; text-decoration: none; padding: 14px 32px; font-weight: bold; border-radius: 4px; font-size: 0.88rem; display: inline-block; border: 1px solid transparent; transition: all 0.3s; box-shadow: 0 4px 12px rgba(140,14,18,0.2); }
.cta-btn:hover { background: transparent; color: var(--primary-crimson); border-color: var(--primary-crimson); }

/* Crisp Round SVG Trust Icons Grid */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    padding: 30px 10px;
    text-align: center;
}

.badge-item { display: flex; flex-direction: column; align-items: center; font-size: 0.72rem; font-weight: 700; color: #333; }
.icon-circle { width: 48px; height: 48px; border: 1px solid #e2e8f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #fff; margin-bottom: 10px; color: var(--primary-crimson); }

/* Section Heading UI Elements */
.section-header { display: flex; justify-content: space-between; align-items: center; padding: 30px 20px 15px; }
.section-header h2 { font-size: 1.35rem; color: var(--primary-crimson); font-weight: 800; }
.view-all-link { font-size: 0.85rem; color: var(--primary-crimson); text-decoration: none; font-weight: 700; }

/* Grid Cards Configurations */
.products-grid { display: grid; grid-template-columns: 1fr; gap: 20px; padding: 0 20px; }
.product-card { border: 1px solid #eef0f2; border-radius: 8px; padding: 20px; text-align: center; background: #fff; }
.img-wrapper { height: 180px; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.img-wrapper img { max-height: 100%; max-width: 100%; object-fit: contain; }
.product-card h3 { font-size: 1.05rem; font-weight: 700; color: #111; margin-bottom: 6px; }
.rating-row { color: var(--accent-gold); margin-bottom: 8px; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; gap: 4px; }
.rating-row .count { color: #888; font-weight: 500; }
.price-row { font-size: 1.25rem; font-weight: 800; margin-bottom: 15px; color: #111; }

.buy-now-btn { width: 100%; background: #fff; border: 1.5px solid var(--primary-crimson); color: var(--primary-crimson); padding: 11px; font-weight: 700; border-radius: 4px; cursor: pointer; font-size: 0.85rem; transition: all 0.2s; }
.buy-now-btn:hover { background: var(--primary-crimson); color: #fff; }

/* USP & Blog UI */
.usp-banner { display: grid; grid-template-columns: 1fr; gap: 20px; background: var(--background-cream); padding: 35px 20px; margin-top: 40px; border-top: 1px solid #eae2d5; }
.usp-item { display: flex; align-items: center; gap: 15px; }
.usp-item .icon-circle { shrink: 0; background: transparent; border-color: #cbd5e1; margin-bottom: 0; }
.usp-item h4 { font-size: 0.98rem; font-weight: 700; color: #111; margin-bottom: 2px; }
.usp-item p { font-size: 0.82rem; color: #666; font-weight: 500; }

.blog-card { padding: 0 20px 40px; }
.blog-card img { width: 100%; border-radius: 8px; margin-bottom: 15px; object-fit: cover; aspect-ratio: 2.2 / 1; }
.category-tag { font-size: 0.68rem; text-transform: uppercase; color: var(--primary-crimson); font-weight: 700; display: block; margin-bottom: 4px; }
.blog-info h3 { font-size: 1.2rem; font-weight: 800; color: #111; margin-bottom: 6px; }
.blog-info .meta { font-size: 0.8rem; color: #777; font-weight: 500; }

/* Branded Floating WhatsApp Button Styles */
.whatsapp-floating {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
    z-index: 9999;
}

/* Bottom Nav Dock */
.mobile-nav-dock { position: fixed; bottom: 0; left: 0; right: 0; height: 60px; background: #fff; border-top: 1px solid #eef0f2; display: flex; justify-content: space-around; align-items: center; z-index: 10000; }
.dock-item { text-decoration: none; color: #777; font-size: 1.1rem; display: flex; flex-direction: column; align-items: center; font-weight: 500; }
.dock-item span { font-size: 0.65rem; margin-top: 3px; font-weight: 600; }
.dock-item.active { color: var(--primary-crimson); }

/* Responsive Grid Adjustments */
@media (min-width: 768px) {
    .menu-toggle { display: flex; }
    .hero-section { min-height: 520px; padding: 60px 8%; background-position: center right; }
    .hero-content h1 { font-size: 3.4rem; }
    .trust-badges-grid { max-width: 1000px; margin: 0 auto; gap: 20px; padding: 40px 20px; }
    .badge-item { font-size: 0.85rem; }
    .icon-circle { width: 56px; height: 56px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); max-width: 1200px; margin: 0 auto; gap: 30px; }
    .usp-banner { grid-template-columns: repeat(4, 1fr); padding: 40px 60px; }
    .blog-card { max-width: 1200px; margin: 0 auto; padding: 0 20px 60px; }
    .mobile-nav-dock { display: none; }
    body { padding-bottom: 0; }
}

@media (max-width: 767px) {
    .hero-section { min-height: 420px; padding: 40px 20px; background-position: center center; }
    .hero-overlay { background: rgba(251, 249, 245, 0.40); }
    .hero-content h1 { font-size: 2.2rem; }
}