/* ============================================================
   GOTHAM SSm — self-hosted brand font (assets/Font/)
   'Gotham SSm'          → body + labels (Book/Medium/Bold/Black)
   'Gotham SSm Display'  → all headings (Bold)
   ============================================================ */
@font-face { font-family:'Gotham SSm'; src:url('../Font/GothamSSm-Book.woff2') format('woff2'), url('../Font/GothamSSm-Book.woff') format('woff'); font-weight:300 400; font-style:normal; font-display:swap; }
@font-face { font-family:'Gotham SSm'; src:url('../Font/GothamSSm-Medium.woff2') format('woff2'), url('../Font/GothamSSm-Medium.woff') format('woff'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Gotham SSm'; src:url('../Font/GothamSSm-Bold.woff2') format('woff2'), url('../Font/GothamSSm-Bold.woff') format('woff'); font-weight:600 700; font-style:normal; font-display:swap; }
@font-face { font-family:'Gotham SSm'; src:url('../Font/GothamSSm-Black.woff2') format('woff2'), url('../Font/GothamSSm-Black.woff') format('woff'); font-weight:800 900; font-style:normal; font-display:swap; }
@font-face { font-family:'Gotham SSm'; src:url('../Font/GothamSSm-BookItalic.woff2') format('woff2'), url('../Font/GothamSSm-BookItalic.woff') format('woff'); font-weight:300 500; font-style:italic; font-display:swap; }
@font-face { font-family:'Gotham SSm Display'; src:url('../Font/GothamSSm-Bold.woff2') format('woff2'), url('../Font/GothamSSm-Bold.woff') format('woff'); font-weight:100 700; font-style:normal; font-display:swap; }
@font-face { font-family:'Gotham SSm Display'; src:url('../Font/GothamSSm-Black.woff2') format('woff2'), url('../Font/GothamSSm-Black.woff') format('woff'); font-weight:800 900; font-style:normal; font-display:swap; }

/* ============================================================
   RAMBLER QATAR — BASE STYLES
   Shared across every page: reset, tokens, promo bar, header,
   nav, footer, and a few common primitives (buttons, badges).
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Sharp Navy palette (60-30-10):
       60% white/grey surfaces · 30% navy brand · 10% red for CTAs & accents */
    --navy:         #1D3464;
    --navy-light:   #2E5599;
    --red:          #CA2325;
    --red-dark:     #A81D20;
    --ink:          #151B2B;
    --grey:         #E9EDF1;

    --accent:       #1D3464;   /* navy — primary brand (kept name for compatibility) */
    --accent-light: #2E5599;
    --accent-glow:  rgba(29,52,100,.12);
    --green:        #1D3464;
    --charcoal:     #151B2B;
    --slate:        #334155;
    --slate-mid:    #64748b;
    --surface:      #F4F7FB;
    --border:       #E4E9F1;
    --white:        #ffffff;
    --nav-height:   48px;
    --header-height: 70px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Gotham SSm', sans-serif; font-size: 14px; color: var(--slate); background: var(--white); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, select { font-family: inherit; }

/* ── Keyframes ── */
@keyframes shimmer { 0% { background-position: -400px 0 } 100% { background-position: 400px 0 } }
@keyframes dropIn  { from { opacity: 0; transform: translateY(-6px) } to { opacity: 1; transform: translateY(0) } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(16px) } to { opacity: 1; transform: translateY(0) } }
@keyframes marqL   { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@keyframes marqR   { from { transform: translateX(-50%) } to { transform: translateX(0) } }

/* ════════════════════════════════════════════
   PROMO BAR
════════════════════════════════════════════ */
.promo-bar {
    background: var(--charcoal);
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    padding: 9px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    text-align: center;
}
.promo-bar span { display: flex; align-items: center; gap: 6px; }
.promo-bar svg { width: 14px; height: 14px; color: var(--accent-light); flex-shrink: 0; }
.promo-bar strong { color: #e2e8f0; font-weight: 600; }
.promo-bar-sep { width: 1px; height: 14px; background: #1e293b; }

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.site-header {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site-header::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}
.header-main { max-width: 1400px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; height: var(--header-height); gap: 28px; }
.header-logo { flex: 0 0 auto; display: flex; align-items: center; transition: opacity .2s; }
.header-logo:hover { opacity: .85; }
.header-logo img { height: 48px; width: auto; }

.header-search { flex: 1; max-width: 580px; position: relative; }
.header-search input {
    width: 100%; height: 44px;
    border: 1.5px solid var(--border);
    border-radius: 9999px;
    padding: 0 54px 0 22px;
    font-size: 13.5px;
    outline: none;
    color: var(--charcoal);
    background: var(--surface);
    transition: border-color .25s, box-shadow .25s, background .25s;
}
.header-search input::placeholder { color: #aab4c2; }
.header-search input:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(29,52,100,.10); }
.header-search button {
    position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none; width: 34px; height: 34px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: #fff; box-shadow: 0 2px 10px rgba(29,52,100,.30);
    transition: opacity .2s, transform .2s;
}
.header-search button:hover { opacity: .88; transform: translateY(-50%) scale(1.06); }
.header-search button svg { width: 15px; height: 15px; }

/* Live search suggestions dropdown */
.hs-suggest { position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 300; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 18px 44px rgba(21,27,43,.16); padding: 6px; display: none; max-height: 70vh; overflow-y: auto; }
.hs-suggest.open { display: block; }
.hs-item { display: flex; align-items: center; gap: 12px; padding: 8px 10px; border-radius: 10px; text-decoration: none; }
.hs-item:hover, .hs-item.active { background: var(--surface, #f4f7fb); }
.hs-thumb { width: 44px; height: 44px; border-radius: 9px; background: #fff; border: 1px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hs-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.hs-info { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.hs-name { font-size: 13.5px; font-weight: 600; color: var(--charcoal); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hs-meta { font-size: 12px; color: var(--slate-mid); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hs-all { display: block; text-align: center; padding: 10px; margin-top: 4px; border-top: 1px solid var(--border); font-size: 12.5px; font-weight: 700; color: var(--accent); text-decoration: none; border-radius: 0 0 10px 10px; }
.hs-all:hover { background: var(--surface, #f4f7fb); }
.hs-empty { padding: 18px 14px; text-align: center; font-size: 13px; color: var(--slate-mid); }

.header-actions { flex: 0 0 auto; display: flex; align-items: center; gap: 8px; margin-left: auto; }
.anniv-badge { display: flex; align-items: center; gap: 11px; }
.anniv-badge-medal { width: 42px; height: 42px; border-radius: 50%; display: block; flex-shrink: 0; box-shadow: 0 2px 6px rgba(15,23,42,.22); }
.anniv-badge-info { display: flex; align-items: center; gap: 9px; }
/* Embossed flag "coin": wrapper carries the ring + drop shadow, ::after paints
   an inner bevel (top highlight, bottom shade) over the image for a raised look */
/* Holds the 15-year medallion: centred, given breathing room, no extra ring/gloss
   (the medallion already has its own gold rim, so the old flag-button chrome is dropped). */
.anniv-flag-wrap { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex-shrink: 0; }
.anniv-flag-wrap::after { content: none; }
.anniv-badge-flag { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; filter: drop-shadow(0 2px 5px rgba(15,23,42,.22)); }
.anniv-badge-text { font-family: 'Gotham SSm', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .06em; line-height: 1.35; color: var(--accent); text-transform: uppercase; text-align: right; display: flex; flex-direction: column; align-items: flex-end; }
.anniv-since { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
/* Small Qatar flag — crisp edge ring + soft drop shadow so the white half
   doesn't melt into the white header background. */
.anniv-qflag { width: 17px; height: 17px; border-radius: 50%; flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(15,23,42,.30), 0 1.5px 4px rgba(15,23,42,.30); }
.header-quote-btn { display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 18px; border-radius: 9999px; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; font-size: 12.5px; font-weight: 700; white-space: nowrap; box-shadow: 0 3px 12px rgba(29,52,100,.28); transition: opacity .2s, transform .2s; }
.header-quote-btn:hover { opacity: .92; transform: translateY(-1px); }
.header-quote-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.icon-btn { background: none; border: 1.5px solid transparent; cursor: pointer; color: var(--slate); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; transition: background .18s, color .18s; }
.icon-btn:hover { background: var(--accent-glow); color: var(--accent); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn .cart-badge { position: absolute; top: 4px; right: 4px; width: 15px; height: 15px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* ════════════════════════════════════════════
   NAV + MEGA MENU
════════════════════════════════════════════ */
.site-nav { background: var(--white); border-top: 1px solid #f1f5f9; }
.nav-inner { max-width: 1400px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; height: var(--nav-height); }
.nav-left { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-right { display: flex; align-items: center; gap: 2px; }
.nav-divider { width: 1px; height: 20px; background: var(--border); margin: 0 10px; }

.nav-item {
    display: flex; align-items: center; gap: 6px;
    padding: 0 13px; height: var(--nav-height);
    font-family: 'Gotham SSm', sans-serif; font-weight: 600; font-size: 13px;
    color: var(--slate); cursor: pointer;
    transition: color .18s; white-space: nowrap; position: relative;
}
.nav-item > svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--slate-mid); transition: color .18s; }
.nav-item:hover > svg, .nav-item.active > svg { color: var(--accent); }
.nav-item::after {
    content: ''; position: absolute; bottom: 0; left: 13px; right: 13px;
    height: 2px; background: var(--accent);
    border-radius: 2px 2px 0 0; transform: scaleX(0); transform-origin: left center;
    transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.nav-item:hover::after, .nav-item.active::after { transform: scaleX(1); }
.nav-item:hover { color: var(--navy); }
.nav-item.active { color: var(--accent); }
.nav-item.green { color: var(--green); }
.nav-item.green:hover { color: #16264A; }
.nav-badge { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; font-size: 10px; font-weight: 700; color: #fff; flex-shrink: 0; }
.badge-blue  { background: var(--accent); }
.badge-red   { background: #CA2325; }
.badge-green { background: #1D3464; }

/* Mega menu */
.nav-mega-wrap { position: relative; height: var(--nav-height); display: flex; align-items: center; }
.nav-mega {
    display: none;
    position: absolute; top: 100%; left: 0; width: 840px;
    background: #fff; border: 1px solid var(--border); border-top: 2px solid var(--accent);
    border-radius: 0 0 12px 12px; box-shadow: 0 14px 44px rgba(15,23,42,.15);
    z-index: 999; animation: dropIn .18s ease; flex-direction: column;
}
.nav-mega-wrap:hover .nav-mega { display: flex; }
.nav-mega-top { display: flex; gap: 20px; padding: 11px 24px; border-bottom: 1px solid var(--border); align-items: center; }
.nav-mega-top a { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; text-decoration: none; }
.nav-mega-top .dot { width: 18px; height: 18px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.nav-mega-top .dot svg { width: 10px; height: 10px; }
.nav-mega-body { display: flex; flex: 1; min-height: 250px; }

/* Left: gray category list */
.nav-mega-cats { width: 224px; flex-shrink: 0; border-right: 1px solid var(--border); padding: 8px; background: #fafbfc; border-radius: 0 0 0 11px; }
.nav-mega-cats a.nmega-cat { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-radius: 8px; font-size: 13.5px; color: #222; text-decoration: none; }
.nav-mega-cats a.nmega-cat:hover, .nav-mega-cats a.nmega-cat.active { color: var(--accent); background: rgba(29,52,100,.08); font-weight: 600; }
.nav-mega-cats a.nmega-cat svg { opacity: .45; width: 13px; height: 13px; flex-shrink: 0; }
.nav-mega-cats a.nmega-cat.active svg { opacity: 1; color: var(--accent); }

/* Right: sub-category link panels with icon boxes */
.nav-mega-cols { flex: 1; padding: 18px 24px; min-width: 0; }
.nmega-panel { display: none; }
.nmega-panel.active { display: block; animation: dropIn .18s ease; }
.nmega-panel-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: 'Gotham SSm', sans-serif; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: #444; margin-bottom: 14px; padding-bottom: 9px; border-bottom: 1px solid var(--border); }
.nmega-panel-title a { font-size: 11px; color: var(--accent); text-transform: none; letter-spacing: 0; white-space: nowrap; font-weight: 700; }
.nmega-links { display: grid; grid-template-columns: 1fr 1fr; gap: 3px 18px; }
.nav-mega-link { display: flex; align-items: center; gap: 10px; padding: 6px; font-size: 13px; color: #333; text-decoration: none; border-radius: 8px; transition: color .15s, background .15s; }
.nav-mega-link:hover { color: var(--accent); background: var(--surface); }
.nav-mega-link .ic { width: 34px; height: 34px; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; background: #fff; flex-shrink: 0; color: var(--slate); transition: border-color .15s, color .15s; }
.nav-mega-link:hover .ic { border-color: var(--accent-light); color: var(--accent); }
.nav-mega-link .ic svg { width: 17px; height: 17px; }
.nav-mega-link .nm { flex: 1; }
.nav-mega-link .cnt { font-size: 11px; color: #9AA9BF; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer { background: #141B2E; color: #94a3b8; position: relative; overflow: hidden; margin-top: 60px; }
.site-footer::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(29,52,100,.18) 0%, transparent 70%); top: -120px; left: -120px; pointer-events: none; }
.footer-top { max-width: 1400px; margin: 0 auto; padding: 56px 28px 42px; display: grid; grid-template-columns: 300px 150px 1fr auto; gap: 46px; align-items: start; position: relative; }
.footer-logo-wrap { display: flex; flex-direction: column; gap: 14px; }
.footer-logo img { height: 52px; width: auto; mix-blend-mode: screen; opacity: .95; }
.footer-tagline { font-family: 'Gotham SSm', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-light); }
.footer-about { font-size: 13px; line-height: 1.75; color: #94A3B8; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; margin-top: 6px; }
.social-link { width: 38px; height: 38px; border-radius: 50%; border: 1px solid #2A3550; display: flex; align-items: center; justify-content: center; color: #AEBCD4; transition: background .2s, color .2s, border-color .2s, transform .2s; cursor: pointer; }
.social-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.social-link svg { width: 16px; height: 16px; }

.footer-nav-col { display: flex; flex-direction: column; gap: 2px; }
.footer-nav-col-title { font-family: 'Gotham SSm', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft, #E7CE8E); margin-bottom: 14px; }
.footer-nav-col a { font-size: 14px; color: #C2CDE0; padding: 5px 0; transition: color .15s, padding-left .15s; display: block; }
.footer-nav-col a:hover { color: #fff; padding-left: 5px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; max-width: 380px; }
.footer-contact-item { display: flex; gap: 12px; font-size: 13px; line-height: 1.6; color: #B4C0D4; }
.footer-contact-item .fci-ic { flex-shrink: 0; width: 32px; height: 32px; border-radius: 9px; background: rgba(46,85,153,.16); border: 1px solid rgba(46,85,153,.3); display: flex; align-items: center; justify-content: center; color: var(--gold-soft, #E7CE8E); }
.footer-contact-item .fci-ic svg { width: 15px; height: 15px; }
.footer-contact-item a { color: #C2CDE0; transition: color .15s; }
.footer-contact-item a:hover { color: #fff; }

.footer-cta { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.footer-cta p { font-family: 'Gotham SSm Display', serif; font-size: 20px; color: #fff; line-height: 1.3; }
.footer-quote-link { display: inline-flex; align-items: center; gap: 9px; font-family: 'Gotham SSm', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: .01em; color: var(--gold-soft, #E7CE8E); border-bottom: 2px solid rgba(201,162,75,.4); padding-bottom: 5px; white-space: nowrap; transition: color .2s, gap .2s, border-color .2s; }
.footer-quote-link:hover { color: #fff; gap: 13px; border-color: #E7CE8E; }
.footer-quote-link svg { width: 17px; height: 17px; }

.footer-divider { max-width: 1400px; margin: 0 auto; padding: 0 28px; }
.footer-divider hr { border: none; height: 1px; background: linear-gradient(90deg, transparent, #2A3550 20%, #2A3550 80%, transparent); }
.footer-bottom { padding: 20px 28px; }
.footer-bottom-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 12.5px; color: #7E8CA4; }
.footer-cookie { font-size: 12.5px; margin-left: auto; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.footer-cookie a { color: #94A3B8; text-decoration: underline; transition: color .15s; }
.footer-sep { color: #4A5878; }
.footer-cookie a:hover { color: #fff; }

/* ════════════════════════════════════════════
   SCROLL TOP
════════════════════════════════════════════ */
.scroll-top {
    position: fixed; bottom: 96px; right: 28px;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 6px 20px rgba(29,52,100,.4);
    z-index: 500; opacity: 0; transform: translateY(12px); pointer-events: none;
    transition: opacity .3s, transform .3s; border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { box-shadow: 0 10px 28px rgba(29,52,100,.55); transform: translateY(-2px); }
.scroll-top svg { width: 18px; height: 18px; }

/* ════════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════════ */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 600; display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; }
.wa-bubble { width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.18); transition: transform .25s cubic-bezier(.2,1,.3,1), box-shadow .25s; flex-shrink: 0; position: relative; }
.wa-bubble svg { width: 28px; height: 28px; position: relative; z-index: 1; }
.wa-bubble::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: wa-ping 2.2s cubic-bezier(0,0,.2,1) infinite; }
@keyframes wa-ping { 0% { transform: scale(1); opacity: .55; } 70% { transform: scale(1.65); opacity: 0; } 100% { transform: scale(1.65); opacity: 0; } }
.wa-float:hover .wa-bubble { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.2); }
.wa-label { background: #fff; color: var(--charcoal); font-size: 12px; font-weight: 700; padding: 8px 14px; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,.12); white-space: nowrap; opacity: 0; transform: translateX(8px); transition: opacity .2s, transform .2s; pointer-events: none; }
.wa-float:hover .wa-label { opacity: 1; transform: translateX(0); }
@media (max-width: 640px) { .wa-float { bottom: 20px; right: 18px; } .wa-bubble { width: 50px; height: 50px; } .wa-label { display: none; } }

/* ════════════════════════════════════════════
   SECTION HEADERS (eyebrow + rule + title)
════════════════════════════════════════════ */
.section-eyebrow { font-family: 'Gotham SSm', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--navy-light); margin-bottom: 6px; }
.section-rule { display: block; width: 48px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--navy-light)); margin-bottom: 14px; }
.section-title { font-family: 'Gotham SSm Display', serif; font-size: 30px; color: var(--charcoal); letter-spacing: -.3px; margin-bottom: 28px; }
.section-wrap { max-width: 1400px; margin: 0 auto; padding: 0 28px; }

/* ════════════════════════════════════════════
   GRADIENT HERO (About / Catalog / Catalog Detail)
════════════════════════════════════════════ */
.gradient-hero { position: relative; overflow: hidden; border-radius: 18px; background: linear-gradient(120deg, var(--accent) 0%, #16264A 55%, var(--charcoal) 100%); color: #fff; }
.gradient-hero::before { content: ''; position: absolute; inset: 0; opacity: .1; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 22px 22px; pointer-events: none; }
.gradient-hero-glow { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(46,85,153,.35) 0%, transparent 70%); pointer-events: none; }

/* ════════════════════════════════════════════
   PAGINATION (shared: Category / Catalog / Search)
════════════════════════════════════════════ */
.page-btn { width: 38px; height: 38px; border: 1.5px solid var(--border); border-radius: 10px; background: #fff; color: var(--slate); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 13px; font-weight: 500; transition: border-color .15s, color .15s, background .15s; }
.page-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(29,52,100,.1); }
.page-btn.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.page-btn svg { width: 14px; height: 14px; }
.page-dots { color: #94a3b8; padding: 0 4px; }

/* ════════════════════════════════════════════
   BREADCRUMB (shared across inner pages)
════════════════════════════════════════════ */
.breadcrumb-row { max-width: 1400px; margin: 0 auto; padding: 20px 28px 0; }
.breadcrumb-list { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--slate-mid); flex-wrap: wrap; }
.breadcrumb-list a { color: var(--slate-mid); transition: color .15s; }
.breadcrumb-list a:hover { color: var(--accent); }
.breadcrumb-list .sep { color: #cbd5e1; }
.breadcrumb-list .current { color: var(--charcoal); font-weight: 600; }

/* Placeholder shown when an image errors or its (external) source hangs */
.img-fallback { object-fit: cover; background: #EEF2F8; }

/* ════════════════════════════════════════════
   MOBILE HAMBURGER + DRAWER NAV
════════════════════════════════════════════ */
/* Hamburger toggle — compact pill that morphs to an X when open */
.nav-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; background: var(--surface, #f4f7fb); border: 1px solid var(--border); border-radius: 12px; cursor: pointer; flex: 0 0 auto; transition: background .2s, border-color .2s; }
.nav-toggle:hover { background: rgba(29,52,100,.08); border-color: var(--accent); }
.nav-toggle span { display: block; height: 2px; width: 20px; background: var(--navy); border-radius: 2px; transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .2s ease; }
.nav-toggle.open { background: rgba(29,52,100,.08); border-color: var(--accent); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Modern slide-in drawer (full-height, right side) ── */
.mobile-nav-backdrop { position: fixed; inset: 0; background: rgba(15,23,42,.5); opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: 1090; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.mobile-nav-backdrop.open { opacity: 1; visibility: visible; }

.mobile-nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(88vw, 358px);
    background: #fff;
    display: flex; flex-direction: column;
    box-shadow: -24px 0 60px rgba(15,23,42,.28);
    transform: translateX(105%);
    transition: transform .36s cubic-bezier(.4,0,.2,1);
    visibility: hidden;
    z-index: 1100;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }

.mnav-head { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.mnav-logo img { height: 40px; width: auto; display: block; }
.mnav-close { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 12px; background: #fff; color: var(--charcoal); cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.mnav-close:hover { background: var(--surface); border-color: var(--accent); color: var(--accent); }
.mnav-close svg { width: 20px; height: 20px; }

.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; padding: 12px; overflow-y: auto; flex: 1 1 auto; }
.mnav-cell { display: flex; align-items: center; gap: 14px; width: 100%; padding: 13px 12px; border: none; border-radius: 13px; background: none; font-family: 'Gotham SSm', sans-serif; font-size: 15px; font-weight: 600; color: var(--charcoal); text-align: left; text-decoration: none; cursor: pointer; transition: background .18s, color .18s; }
.mnav-cell .mnav-ic { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 11px; background: var(--surface, #f4f7fb); color: var(--slate); transition: background .18s, color .18s; }
.mnav-cell .mnav-ic svg { width: 19px; height: 19px; }
.mnav-cell .mnav-label { flex: 1 1 auto; }
.mnav-cell .mnav-chev { width: 17px; height: 17px; color: #B6C2D6; flex-shrink: 0; transition: transform .18s, color .18s; }
.mnav-cell:hover, .mnav-cell:active { background: var(--surface, #f4f7fb); }
.mnav-cell:hover .mnav-chev { transform: translateX(3px); color: var(--accent); }
.mnav-cell.active { background: rgba(29,52,100,.07); color: var(--accent); }
.mnav-cell.active .mnav-ic { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: #fff; }
.mnav-cell.active .mnav-chev { color: var(--accent); }

/* Products accordion inside the mobile drawer */
.mnav-toggle { width: 100%; background: none; border: none; cursor: pointer; font-family: inherit; }
.mnav-chev-t { transition: transform .22s ease; }
.mnav-group.open .mnav-chev-t { transform: rotate(90deg); }
.mnav-sub { display: none; flex-direction: column; margin: 2px 0 6px 32px; padding-left: 12px; border-left: 1.5px solid var(--border); }
.mnav-group.open .mnav-sub { display: flex; }
.mnav-subcell { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 12px; border-radius: 9px; font-size: 13.5px; font-weight: 500; color: var(--slate); text-decoration: none; transition: background .15s, color .15s; }
.mnav-subcell:hover, .mnav-subcell:active { background: var(--surface); color: var(--accent); }
.mnav-subcell .c { font-size: 11px; color: #9AA9BF; flex-shrink: 0; }
.mnav-subcell-all { font-weight: 700; color: var(--accent); }

.mnav-foot { flex-shrink: 0; padding: 16px 18px; padding-bottom: calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--border); background: var(--surface, #f8fafc); }
.mnav-quote { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; height: 50px; border: none; border-radius: 13px; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; font-family: 'Gotham SSm', sans-serif; font-size: 14.5px; font-weight: 700; cursor: pointer; box-shadow: 0 8px 22px rgba(202,35,37,.28); transition: opacity .2s, transform .2s; }
.mnav-quote:hover { opacity: .94; transform: translateY(-1px); }
.mnav-quote svg { width: 17px; height: 17px; }
.mobile-nav-contact { display: flex; flex-direction: column; gap: 11px; margin-top: 16px; }
.mobile-nav-contact a { font-size: 13.5px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 10px; text-decoration: none; }
.mobile-nav-contact svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; }
body.mobile-nav-open { overflow: hidden; }

/* ════════════════════════════════════════════
   RESPONSIVE — shared header / nav / footer
════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .header-main { gap: 16px; }
    .anniv-badge { display: none; }       /* trim header extras on tablet down */
    .nav-mega { display: none; }          /* hover mega-panel isn't usable on touch */
}
@media (max-width: 900px) {
    .site-nav { display: none; }          /* swap desktop nav bar for the hamburger drawer */
    .nav-toggle { display: flex; }
    .header-quote-btn { display: none; }  /* Get-a-Quote lives inside the drawer on mobile */
    .header-main { flex-wrap: wrap; height: auto; padding: 12px 18px; gap: 12px; }
    .header-actions { margin-left: auto; gap: 10px; }
    .header-search { order: 3; flex: 1 1 100%; max-width: none; }  /* search drops to its own full-width row */
}
@media (max-width: 1080px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 46px; }
    .footer-logo-wrap { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-logo-wrap { grid-column: auto; }
}
@media (max-width: 768px) {
    .header-logo img { height: 42px; }
    .breadcrumb-row { padding: 16px 18px 0; }
    .section-wrap { padding: 0 18px; }
}
@media (max-width: 560px) {
    .footer-nav { flex-direction: column; gap: 22px; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}
