/* ============================================================
   MOTO GLASS — COMPLETE RESPONSIVE CSS
   Reference: MotoShop BD AI Studio Design
   ============================================================ */

/* ── GLOBAL BASE (overrides WordPress defaults) ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background-color: #022c22 !important;
  color: #fff !important;
  font-family: 'Hind Siliguri', 'Inter', sans-serif !important;
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Ambient Background Glow Orbs — fixed to viewport */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 700px 600px at 15% 25%, rgba(16,185,129,0.20) 0%, transparent 70%),
    radial-gradient(ellipse 600px 700px at 85% 65%, rgba(3,105,161,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 900px 800px at 50% 50%, rgba(6,78,59,0.40) 0%, transparent 70%);
}

#main-wrapper, #page, .site, #content {
  background: transparent !important;
  position: relative;
  z-index: 1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Hind Siliguri', 'Space Grotesk', sans-serif;
  line-height: 1.15;
  color: #fff;
}

/* WordPress / WooCommerce overrides */
.woocommerce-page,
.woocommerce { background: transparent !important; }


/* ── Announcement Bar ── */
.mg-announce-bar {
    background: linear-gradient(90deg, #059669, #10b981, #059669);
    background-size: 200% 100%;
    animation: mgGradient 6s ease infinite;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    height: 36px;
    overflow: hidden;
    position: relative;
    z-index: 999;
}
.mg-announce-inner {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.mg-announce-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: mgTicker 30s linear infinite;
    white-space: nowrap;
    padding-left: 100%;
}
.mg-announce-msg { padding: 0 20px; }
.mg-announce-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: #fff;
    cursor: pointer;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}
@keyframes mgTicker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes mgGradient {
    0%,100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* ── Header ── */
.mg-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(2, 44, 34, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.10);
    transition: box-shadow 0.3s ease;
}
.mg-header.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.40);
    background: rgba(2, 44, 34, 0.97);
}
.container-fluid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(14px, 4vw, 24px);
    width: 100%;
}
.mg-header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px;
}

/* Logo */
.mg-logo { flex-shrink: 0; }
.mg-logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.mg-logo-text {
    font-family: var(--font-heading, 'Hind Siliguri', 'Space Grotesk', sans-serif);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
.mg-logo-accent { color: #10b981; }
.mg-logo-badge {
    background: #10b981;
    color: #022c22;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* Search */
.mg-search-wrap {
    flex: 1;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
}
.mg-search-inner { position: relative; }
.mg-search-form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 9999px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.mg-search-form:focus-within {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.20);
}
.mg-search-icon-left { padding: 0 12px; color: rgba(255,255,255,0.40); flex-shrink: 0; }
.mg-search-input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    color: #fff !important;
    padding: 10px 0;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    box-shadow: none !important;
}
.mg-search-input::placeholder { color: rgba(255,255,255,0.35) !important; }
.mg-search-btn {
    padding: 8px 16px;
    background: #10b981;
    color: #fff;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.mg-search-btn:hover { background: #059669; }
.mg-search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 300;
    max-height: 360px;
    overflow-y: auto;
    border-radius: 16px;
    padding: 8px;
}

/* Header Actions */
.mg-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.mg-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
}
.mg-location-text { display: flex; flex-direction: column; gap: 1px; }
.mg-location-label { font-size: 9px; font-weight: 700; text-transform: uppercase; color: #10b981; letter-spacing: 1px; }
.mg-location-value { font-size: 12px; font-weight: 600; color: #fff; }

.mg-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.80);
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    text-decoration: none;
}
.mg-icon-btn:hover { background: rgba(255,255,255,0.12); border-color: #10b981; color: #10b981; }
.mg-icon-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #10b981;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #022c22;
}
.mg-icon-badge.wishlist-count { background: #ef4444; }
.mg-phone-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #10b981;
    background: rgba(16,185,129,0.10);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 9999px;
    padding: 6px 14px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.mg-phone-btn:hover { background: rgba(16,185,129,0.20); }

/* Desktop Nav */
.mg-nav {
    background: rgba(2,44,34,0.70);
    border-top: 1px solid rgba(255,255,255,0.07);
}
.mg-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
}
.mg-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.mg-nav-item { position: relative; }
.mg-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.70);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.mg-nav-link:hover, .mg-nav-link.active { color: #10b981; background: rgba(16,185,129,0.08); }
.mg-nav-deals { color: #fb923c !important; font-weight: 700; }
.mg-nav-link-sm {
    font-size: 12px;
    color: rgba(255,255,255,0.50);
    padding: 4px 8px;
    transition: color 0.2s;
    text-decoration: none;
}
.mg-nav-link-sm:hover { color: #10b981; }
.mg-nav-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.20);
    border-radius: 9999px;
    padding: 4px 12px;
    text-decoration: none;
    transition: all 0.2s;
}
.mg-nav-phone:hover { background: rgba(16,185,129,0.18); }
.mg-nav-secondary { gap: 8px; }

/* Mega Menu */
.mg-has-mega { position: relative; }
.mg-mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 480px;
    padding: 20px;
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
}
.mg-has-mega:hover .mg-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mg-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.mg-mega-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    border-radius: 12px;
    padding: 12px 8px;
    border: 1px solid transparent;
    transition: all 0.2s;
    text-align: center;
}
.mg-mega-item:hover { background: rgba(16,185,129,0.10); border-color: #10b981; color: #10b981; }
.mg-mega-img-wrap {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mg-mega-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.mg-mega-emoji { font-size: 32px; }
.mg-mega-name { font-size: 12px; font-weight: 600; }
.mg-mega-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
}
.mg-mega-view-all { color: #10b981; font-weight: 700; text-decoration: none; }
.mg-mega-view-all:hover { text-decoration: underline; }

/* Hamburger */
.mg-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;
    cursor: pointer;
}
.mg-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Drawer */
.mg-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.60);
    z-index: 600;
    backdrop-filter: blur(4px);
}
.mg-mobile-overlay.open { display: block; }
.mg-mobile-drawer {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(320px, 85vw);
    z-index: 700;
    display: flex;
    flex-direction: column;
    border-radius: 0 20px 20px 0;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    overflow-y: auto;
    background: rgba(2,44,34,0.97) !important;
}
.mg-mobile-drawer.open { transform: translateX(0); }
.mg-mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.mg-mobile-close {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;
    padding: 6px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mg-mobile-search {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mg-mobile-search .mg-search-form { background: rgba(255,255,255,0.06); }
.mg-mobile-nav { padding: 12px 12px; flex: 1; display: flex; flex-direction: column; gap: 2px; }
.mg-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.15s;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}
.mg-mobile-link:hover { background: rgba(16,185,129,0.08); color: #10b981; }
.mg-mobile-deals { color: #fb923c !important; font-weight: 700; }
.mg-mobile-accordion-btn {
    border-radius: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}
.mg-mobile-sub {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-left: 2px solid rgba(16,185,129,0.30);
    margin: 4px 0 4px 20px;
}
.mg-mobile-sub-link {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.60);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.15s;
}
.mg-mobile-sub-link:hover { color: #10b981; }
.mg-mobile-drawer-footer {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mg-mobile-phone {
    color: #10b981;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
}
.mg-mobile-hours { font-size: 11px; color: rgba(255,255,255,0.40); }
.mg-mobile-wa {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #25D366;
    color: #fff;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    justify-content: center;
    margin-top: 8px;
    transition: background 0.2s;
}
.mg-mobile-wa:hover { background: #128C7E; }

/* ── HERO SECTION ── */
.mg-hero {
    position: relative;
    min-height: clamp(400px, 65vw, 700px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #011a14;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.mg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2,44,34,0.85) 0%, rgba(2,44,34,0.55) 60%, rgba(2,44,34,0.25) 100%);
    z-index: 1;
}
.mg-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.mg-hero-glow-l {
    left: -100px;
    top: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16,185,129,0.30), transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}
.mg-hero-glow-r {
    right: -100px;
    bottom: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56,189,248,0.20), transparent 70%);
    animation: glowPulse 5s ease-in-out infinite 1s;
}
.mg-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: clamp(40px, 6vw, 80px);
    padding-bottom: clamp(40px, 6vw, 80px);
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}
.mg-hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(16,185,129,0.30);
    color: #10b981;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(16,185,129,0.20);
    animation: slideUpFade 0.6s ease 0.1s both;
}
.mg-hero-h1 {
    font-family: var(--font-heading, 'Hind Siliguri', 'Space Grotesk', sans-serif);
    font-size: clamp(36px, 8vw, 80px);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 0 4px 32px rgba(0,0,0,0.50);
    animation: slideUpFade 0.7s ease 0.2s both;
}
.mg-hero-h1-accent {
    background: linear-gradient(90deg, #34d399, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mg-hero-sub {
    font-size: clamp(14px, 2.5vw, 18px);
    color: rgba(255,255,255,0.80);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 36px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.30);
    animation: slideUpFade 0.8s ease 0.35s both;
}
.mg-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    animation: slideUpFade 0.8s ease 0.5s both;
}
.mg-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #10b981;
    color: #022c22;
    font-family: var(--font-heading, 'Hind Siliguri', sans-serif);
    font-weight: 800;
    font-size: 14px;
    border-radius: 9999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
    box-shadow: 0 0 20px rgba(16,185,129,0.30);
    border: none;
    cursor: pointer;
}
.mg-btn-primary:hover {
    background: #34d399;
    box-shadow: 0 0 30px rgba(16,185,129,0.50);
    transform: scale(1.03) translateY(-2px);
    color: #022c22;
}
.mg-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: rgba(255,255,255,0.10);
    color: #fff;
    font-family: var(--font-heading, 'Hind Siliguri', sans-serif);
    font-weight: 700;
    font-size: 14px;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.20);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(12px);
    transition: all 0.2s;
    cursor: pointer;
}
.mg-btn-secondary:hover {
    background: rgba(255,255,255,0.20);
    transform: translateY(-2px);
    color: #fff;
}
.mg-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    animation: slideUpFade 0.9s ease 0.65s both;
}
.mg-hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.10);
}
.mg-hero-badge > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}
.mg-badge-label {
    font-size: 9px;
    font-weight: 700;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}
.mg-badge-value {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    display: block;
}

/* ── TRUST BAR ── */
.mg-trust-section {
    position: relative;
    z-index: 10;
    padding: 0 0 48px;
    margin-top: -32px;
}
.mg-trust-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    padding: 24px 32px;
    border-radius: 24px;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.12) !important;
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
}
.mg-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
}
.mg-trust-emoji { font-size: 32px; flex-shrink: 0; }
.mg-trust-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.mg-trust-sub { font-size: 11px; color: rgba(255,255,255,0.55); }
.mg-trust-divider { width: 1px; height: 52px; background: rgba(255,255,255,0.12); }

/* ── SECTION UTILITIES ── */
.section { padding: 64px 0; }
.mg-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
    flex-wrap: wrap;
}
.mg-section-center {
    text-align: center;
    margin-bottom: 48px;
}
.mg-section-title {
    font-family: var(--font-heading, 'Hind Siliguri', 'Space Grotesk', sans-serif);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.mg-section-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.50);
    line-height: 1.6;
}
.mg-section-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #10b981;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.mg-section-link:hover { opacity: 0.75; text-decoration: underline; }

/* ── CATEGORY GRID ── */
.mg-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.mg-cat-tile {
    text-decoration: none;
    display: block;
    border-radius: 16px;
    overflow: hidden;
}
.mg-cat-tile-inner {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mg-cat-tile:hover .mg-cat-tile-inner {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.40);
}
.mg-cat-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: transform 0.5s ease;
}
.mg-cat-tile:hover .mg-cat-bg-img { transform: scale(1.08); }
.mg-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.30) 50%, transparent 100%);
}
.mg-cat-emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 56px;
    z-index: 1;
}
.mg-cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 2;
}
.mg-cat-count-badge {
    display: inline-block;
    background: rgba(16,185,129,0.90);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.mg-cat-name {
    font-family: var(--font-heading, 'Hind Siliguri', sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    transition: color 0.2s;
}
.mg-cat-tile:hover .mg-cat-name { color: #10b981; }
.mg-cat-desc { font-size: 10px; color: rgba(255,255,255,0.65); }

/* ── FLASH SALE ── */
.mg-flash-section {
    background: linear-gradient(135deg, rgba(6,78,59,0.60), rgba(2,44,34,0.80));
    border-top: 1px solid rgba(16,185,129,0.20);
    border-bottom: 1px solid rgba(16,185,129,0.20);
    padding: 56px 0;
}
.mg-flash-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mg-flash-title-wrap { display: flex; align-items: center; gap: 12px; }
.mg-flash-title {
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 700;
    color: #10b981;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.mg-countdown { display: flex; align-items: center; gap: 8px; }
.mg-countdown-label { font-size: 12px; color: rgba(255,255,255,0.50); }
.mg-countdown-block {
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.35);
    border-radius: 6px;
    padding: 6px 12px;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    min-width: 48px;
    text-align: center;
}
.mg-countdown-sep { color: #10b981; font-weight: 700; font-size: 18px; }

/* ── PRODUCT CARDS ── */
.mg-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.mg-product-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(24px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.08);
}
.mg-product-card.revealed {
    opacity: 1;
    transform: translateY(0);
}
.mg-product-card:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(16,185,129,0.45);
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(16,185,129,0.15), 0 12px 32px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.12);
}
.mg-product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.mg-product-card:hover::after { opacity: 1; }
.mg-card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mg-card-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.20);
}
.mg-card-badge-flash { background: #fbbf24; color: #022c22; }
.mg-card-badge-new { background: #10b981; color: #fff; }
.mg-card-badge-best { background: #6366f1; color: #fff; }
.mg-card-badge-out { background: rgba(148,163,184,0.30); color: #94a3b8; }
.mg-card-actions-top {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mg-card-action {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(2,44,34,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.mg-card-action:hover { background: #10b981; border-color: #10b981; color: #fff; transform: scale(1.08); }
.mg-card-action.active-wish { color: #ef4444; }

.mg-card-img {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}
.mg-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mg-product-card:hover .mg-card-img img { transform: scale(1.07); }
.mg-card-quick-view {
    position: absolute;
    inset-x: 0;
    bottom: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.80), transparent);
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}
.mg-product-card:hover .mg-card-quick-view { opacity: 1; }
.mg-quick-view-btn {
    background: #fff;
    color: #022c22;
    border: none;
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    transform: translateY(8px);
}
.mg-product-card:hover .mg-quick-view-btn { transform: translateY(0); }
.mg-quick-view-btn:hover { background: #10b981; color: #fff; }

.mg-card-body { padding: 16px; flex: 1; }
.mg-card-brand {
    font-size: 10px;
    color: rgba(255,255,255,0.40);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 4px;
    display: block;
}
.mg-card-brand span { color: #10b981; }
.mg-card-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.90);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.mg-product-card:hover .mg-card-name { color: #10b981; }
.mg-card-name a { color: inherit; text-decoration: none; }
.mg-card-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #fbbf24;
    margin-bottom: 12px;
}
.mg-card-review-count { color: rgba(255,255,255,0.40); font-size: 11px; }
.mg-card-price { display: flex; flex-direction: column; gap: 4px; }
.mg-card-price-row { display: flex; align-items: baseline; gap: 8px; }
.mg-price-current {
    font-size: clamp(15px, 2.5vw, 18px);
    font-weight: 800;
    color: #10b981;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    letter-spacing: -0.02em;
}
.mg-price-original {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-decoration: line-through;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
}
.mg-price-save {
    font-size: 10px;
    font-weight: 700;
    color: #fbbf24;
    display: flex;
    align-items: center;
    gap: 4px;
}
.mg-card-footer { padding: 12px 16px 16px; }
.mg-atc-btn {
    width: 100%;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    background: #10b981;
    color: #fff;
}
.mg-atc-btn:hover { background: #059669; box-shadow: 0 4px 16px rgba(16,185,129,0.30); }
.mg-atc-btn.added { background: #059669; }
.mg-atc-btn:disabled { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.30); cursor: not-allowed; }

/* ── EDITORIAL BANNER ── */
.mg-editorial {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
    padding: 48px 48px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}
.mg-editorial-glow {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to left, rgba(16,185,129,0.15), transparent);
    pointer-events: none;
}
.mg-editorial-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(16,185,129,0.30);
    color: #10b981;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}
.mg-editorial-title {
    font-family: var(--font-heading, 'Hind Siliguri', 'Space Grotesk', sans-serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #fff;
}
.mg-editorial-accent {
    background: linear-gradient(90deg, #34d399, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mg-editorial-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 24px;
}
.mg-coupon-code {
    color: #34d399;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    text-decoration: underline;
}
.mg-editorial-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 9999px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(12px);
    transition: all 0.2s;
}
.mg-editorial-btn:hover { background: rgba(255,255,255,0.20); transform: translateY(-2px); color: #fff; }
.mg-editorial-visual {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.mg-editorial-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.50);
    transform: rotate(-6deg);
    border: 1px solid rgba(255,255,255,0.10);
    transition: transform 0.5s ease;
}
.mg-editorial:hover .mg-editorial-img { transform: rotate(0deg) scale(1.03); }
.mg-editorial-img-glow {
    position: absolute;
    inset: 0;
    background: rgba(16,185,129,0.15);
    border-radius: 50%;
    filter: blur(40px);
}
.mg-editorial-emoji { font-size: 100px; position: relative; z-index: 1; }

/* ── WHY US ── */
.mg-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mg-why-card {
    padding: 32px 24px;
    text-align: center;
    border-radius: 20px;
}
.mg-why-icon { font-size: 40px; margin-bottom: 16px; }
.mg-why-title {
    font-family: var(--font-heading, 'Hind Siliguri', sans-serif);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.mg-why-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.mg-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.mg-testimonial-card {
    padding: 24px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mg-stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.mg-review-text {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}
.mg-testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 11px;
    color: rgba(255,255,255,0.40);
}
.mg-reviewer-name { display: block; font-weight: 700; font-size: 13px; color: rgba(255,255,255,0.90); }
.mg-reviewer-meta { display: block; font-size: 10px; color: rgba(255,255,255,0.40); margin-top: 2px; }
.mg-review-date { font-family: var(--font-mono, monospace); }

/* ── GLASS CARD ── */
.glass-card {
    background: rgba(255,255,255,0.07) !important;
    backdrop-filter: blur(24px) saturate(1.4) !important;
    -webkit-backdrop-filter: blur(24px) saturate(1.4) !important;
    border: 1px solid rgba(255,255,255,0.13) !important;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.10) !important;
}
.glass-card:hover {
    background: rgba(255,255,255,0.10) !important;
    border-color: rgba(16,185,129,0.35) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.40), 0 0 0 1px rgba(16,185,129,0.15) !important;
}
.glass-subtle {
    background: rgba(255,255,255,0.05) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.20);
}


/* ── FOOTER ── */
.mg-footer {
    background: #010f0a !important;
    border-top: 1px solid rgba(255,255,255,0.10);
    margin-top: 80px;
    position: relative;
    z-index: 1;
}
.mg-footer::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, transparent, #10b981, #38bdf8, #10b981, transparent);
}
.mg-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 64px 0 48px;
}
.mg-footer-brand .mg-logo-text { font-size: 24px; margin-bottom: 16px; display: block; }
.mg-footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.50);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 280px;
}
.mg-footer-socials { display: flex; gap: 8px; margin-bottom: 16px; }
.mg-footer-social {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.60);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}
.mg-footer-social:hover { background: #10b981; border-color: #10b981; color: #fff; transform: translateY(-2px); }
.mg-footer-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #10b981;
    font-weight: 700;
    text-decoration: none;
}
.mg-footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}
.mg-footer-links { display: flex; flex-direction: column; gap: 8px; }
.mg-footer-links a { font-size: 13px; color: rgba(255,255,255,0.50); text-decoration: none; transition: color 0.15s; }
.mg-footer-links a:hover { color: #10b981; }
.mg-footer-wa {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.mg-footer-wa-label { font-size: 10px; color: rgba(255,255,255,0.30); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.mg-footer-wa-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(37,211,102,0.12);
    border: 1px solid rgba(37,211,102,0.25);
    border-radius: 9999px;
    color: #25D366;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    width: fit-content;
}
.mg-footer-wa-btn:hover { background: #25D366; color: #fff; }

.mg-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}
.mg-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.mg-footer-copy { font-size: 11px; color: rgba(255,255,255,0.30); font-family: var(--font-mono, monospace); }
.mg-payment-logos { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.mg-payment-logo {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.50);
    font-family: var(--font-mono, monospace);
}
.mg-pay-bkash { color: #E2136E; border-color: rgba(226,19,110,0.30); background: rgba(226,19,110,0.08); }
.mg-pay-nagad  { color: #F0832B; border-color: rgba(240,131,43,0.30); background: rgba(240,131,43,0.08); }
.mg-pay-visa   { color: #38bdf8; border-color: rgba(56,189,248,0.30); background: rgba(56,189,248,0.08); }
.mg-pay-cash   { color: rgba(255,255,255,0.40); }

/* ── MOBILE BOTTOM NAV ── */
.mg-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 400;
    background: rgba(2,44,34,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.09);
    align-items: center;
    justify-content: space-around;
}
.mg-bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: rgba(255,255,255,0.45);
    font-size: 10px;
    padding: 6px 0;
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
}
.mg-bottom-nav-item.active,
.mg-bottom-nav-item:hover { color: #10b981; }
.mg-bottom-badge {
    position: absolute;
    top: 4px;
    right: calc(50% - 16px);
    background: #10b981;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

/* ── WHATSAPP FLOAT ── */
.mg-wa-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 350;
    box-shadow: 0 4px 20px rgba(37,211,102,0.40);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: waPulse 2s ease-in-out 2s 3;
}
.mg-wa-float:hover { transform: scale(1.10) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.55); color: #fff; }

/* ── SCROLL REVEAL ── */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.revealed { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0ms; }
.stagger-2 { transition-delay: 80ms; }
.stagger-3 { transition-delay: 160ms; }
.stagger-4 { transition-delay: 240ms; }

/* ── DISPLAY HELPERS ── */
.desktop-only { display: flex; }
.desktop-hide { display: none; }
.mobile-only  { display: none; }

/* ── ANIMATIONS ── */
@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
    0%,100% { opacity: 0.5; }
    50%      { opacity: 1.0; }
}
@keyframes waPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.40); }
    50%      { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(2,44,34,0.20); }
::-webkit-scrollbar-thumb { background: #10b981; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #34d399; }

/* ── ELEMENTOR COMPATIBILITY ── */
.elementor-section, .elementor-container { position: relative; }
.elementor-page #main-wrapper { padding-bottom: 0; }
.e-con, .e-con-inner { position: relative; }

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .mg-trust-card { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .mg-trust-divider:nth-child(4) { display: none; }
    .mg-footer-grid { grid-template-columns: 1fr 1fr; }
    .mg-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .mg-why-grid { grid-template-columns: repeat(2, 1fr); }
    .mg-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .mg-products-grid { grid-template-columns: repeat(2, 1fr); }
    .mg-editorial { grid-template-columns: 1fr; text-align: center; }
    .mg-editorial-visual { justify-content: center; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    /* Visibility */
    .desktop-only { display: none !important; }
    .desktop-hide { display: flex !important; }
    .mobile-only  { display: flex !important; }
    .mg-bottom-nav { display: flex; }

    /* Body */
    body { padding-bottom: 60px; }
    .mg-wa-float { bottom: 76px; right: 14px; width: 48px; height: 48px; }

    /* Announce */
    .mg-announce-bar { font-size: 11px; height: 32px; }

    /* Header */
    .mg-header-inner { height: 56px; gap: 10px; }
    .mg-logo-text { font-size: 18px; }
    .mg-icon-btn { width: 36px; height: 36px; }

    /* Hero */
    .mg-hero {
        min-height: clamp(320px, 80vw, 480px);
    }
    .mg-hero-content {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .mg-hero-eyebrow { font-size: 9px; letter-spacing: 0.12em; padding: 4px 12px; margin-bottom: 16px; }
    .mg-hero-h1 { margin-bottom: 16px; }
    .mg-hero-sub { font-size: 13px; margin-bottom: 24px; }
    .mg-hero-btns { gap: 10px; margin-bottom: 24px; }
    .mg-btn-primary, .mg-btn-secondary { padding: 12px 22px; font-size: 13px; }
    .mg-hero-badges { gap: 8px; }
    .mg-hero-badge { padding: 8px 12px; }
    .mg-badge-label { font-size: 8px; }
    .mg-badge-value { font-size: 10px; }

    /* Trust Bar */
    .mg-trust-section { padding: 0 0 32px; margin-top: -16px; }
    .mg-trust-card {
        grid-template-columns: 1fr 1fr;
        padding: 16px;
        border-radius: 16px;
        gap: 0;
    }
    .mg-trust-item { padding: 12px; }
    .mg-trust-emoji { font-size: 22px; }
    .mg-trust-title { font-size: 12px; }
    .mg-trust-sub { font-size: 10px; }
    .mg-trust-divider { width: 100%; height: 1px; grid-column: 1 / -1; }

    /* Section */
    .section { padding: 40px 0; }
    .mg-section-header { flex-direction: column; align-items: flex-start; gap: 8px; }

    /* Cat Grid */
    .mg-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .mg-cat-tile-inner { height: 160px; }

    /* Products */
    .mg-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .mg-card-body { padding: 12px; }
    .mg-card-footer { padding: 8px 12px 12px; }
    .mg-card-name { font-size: 12px; min-height: 32px; }
    .mg-price-current { font-size: 14px; }

    /* Editorial */
    .mg-editorial {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        text-align: center;
        gap: 24px;
    }
    .mg-editorial-glow { display: none; }
    .mg-editorial-visual { display: none; }
    .mg-editorial-desc { font-size: 13px; }

    /* Why Us */
    .mg-why-grid { grid-template-columns: 1fr; gap: 16px; }
    .mg-why-card { padding: 24px 20px; }

    /* Testimonials */
    .mg-testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

    /* Footer */
    .mg-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 0 24px; }
    .mg-footer-brand { grid-column: 1 / -1; }
    .mg-footer-desc { max-width: 100%; }

    /* Flash */
    .mg-flash-header { gap: 16px; }
    .mg-countdown-block { font-size: 16px; padding: 4px 8px; min-width: 36px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    .container-fluid { padding: 0 14px; }

    .mg-hero-h1 { letter-spacing: -0.01em; }
    .mg-hero-badges { flex-direction: column; align-items: center; }

    .mg-cat-grid { gap: 10px; }
    .mg-cat-tile-inner { height: 140px; }
    .mg-cat-name { font-size: 14px; }

    .mg-products-grid { gap: 10px; }
    .mg-card-name { font-size: 11px; }
    .mg-atc-btn { padding: 8px 12px; font-size: 12px; }

    .mg-footer-grid { grid-template-columns: 1fr; gap: 24px; }

    .mg-payment-logos { gap: 4px; }
    .mg-payment-logo { font-size: 9px; padding: 3px 7px; }

    .mg-section-title { font-size: 18px; }
    .mg-why-grid, .mg-testimonials-grid { grid-template-columns: 1fr; }


    .mg-trust-card { grid-template-columns: 1fr; }
    .mg-trust-divider { display: none; }
}

/* ══════════════════════════════════════════════
   EXTRA PREMIUM VISUAL IMPROVEMENTS
══════════════════════════════════════════════ */

/* Testimonial Cards — green top-border accent */
.mg-testimonial-card {
    position: relative;
    overflow: hidden;
}
.mg-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #38bdf8);
    opacity: 0.6;
}
.mg-testimonial-card:hover::before { opacity: 1; }

/* Why-Us Cards — emerald top accent */
.mg-why-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.mg-why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    opacity: 0.5;
}
.mg-why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16,185,129,0.35) !important;
    box-shadow: 0 20px 48px rgba(16,185,129,0.12) !important;
}

/* Category Tile — green glow on hover */
.mg-cat-tile-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}
.mg-cat-tile:hover .mg-cat-tile-inner::after {
    border-color: rgba(16,185,129,0.55);
    box-shadow: inset 0 0 30px rgba(16,185,129,0.10);
}

/* Hero Section — stronger default background */
.mg-hero {
    background-image: linear-gradient(135deg, #011a14 0%, #022c22 50%, #01120d 100%);
}

/* Section separator line */
.section {
    position: relative;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #011a14; }
::-webkit-scrollbar-thumb { background: #10b981; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #34d399; }

/* WordPress Admin Bar compensation */
.admin-bar .mg-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .mg-header { top: 46px; } }

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #10b981;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print */
@media print {
    .mg-header, .mg-footer, .mg-bottom-nav, .mg-wa-float { display: none !important; }
    body { background: #fff !important; color: #000 !important; }
}
