/* ============================================================
   Swarna Chhaya — Gold-Plated Fashion Jewellery — Public Site CSS
   Identity: "Rani Gold & Zardozi" — bright jewel-toned rani magenta
   + antique-bright gold on warm champagne ivory, faceted diamond-cut
   dividers, shimmer-on-hover product cards. Light theme, never pure
   white/black. Bilingual (Playfair Display / Manrope / Hind Siliguri).
   ============================================================ */

:root {
    --gp-primary: #C6116B;      /* rani magenta */
    --gp-primary-700: #9E0D56;
    --gp-accent: #C99A2E;       /* antique-bright gold */
    --gp-accent-600: #A87F22;
    --gp-ink: #3A0E2E;          /* deep plum-wine — text, never pure black */
    --gp-dark: #3A0E2E;
    --gp-bg: #FFF6E9;           /* warm champagne ivory, never pure #fff */
    --gp-surface: #FFFDF8;
    --gp-muted: #8B6B7C;        /* muted plum-mauve */
    --gp-line: #F0DFC8;         /* warm sand line */
    --gp-primary-soft: #FBE4EF;
    --gp-accent-soft: #FBF1DC;
    --gp-warn: #C99A2E;
    --gp-danger: #C0392B;
    --gp-success: #0F6B4C;      /* emerald pop — reserved for in-stock/success */
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 4px 16px rgba(58, 14, 46, .08);
    --shadow: 0 14px 40px rgba(58, 14, 46, .12);
    --shadow-lift: 0 22px 54px rgba(198, 17, 107, .22);
    --font-display: 'Playfair Display', 'Hind Siliguri', Georgia, serif;
    --font-body: 'Manrope', 'Hind Siliguri', system-ui, sans-serif;
    --font-bn: 'Hind Siliguri', 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--gp-ink);
    background: var(--gp-bg);
    line-height: 1.65;
    overflow-x: clip; /* safety net — clip, not hidden (keeps sticky header) */
}

[lang="bn"] body, html[lang="bn"] { font-family: var(--font-bn); }

h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--gp-ink); line-height: 1.2; font-weight: 700; letter-spacing: -.005em; }
a { color: var(--gp-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gp-primary-700); }
img { max-width: 100%; height: auto; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: 1240px; }
.text-primary-gp { color: var(--gp-primary) !important; }
.bg-soft { background: var(--gp-primary-soft); }

/* ---------- Buttons ---------- */
.btn-cta {
    background: var(--gp-primary); color: #fff; border: none; border-radius: 12px;
    padding: .62rem 1.5rem; font-weight: 700; font-family: var(--font-body);
    display: inline-flex; align-items: center; gap: .45rem;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    box-shadow: 0 8px 20px rgba(198, 17, 107, .28);
}
.btn-cta:hover { background: var(--gp-primary-700); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(198, 17, 107, .4); }
.btn-accent { background: var(--gp-accent); color: #3B2C00; box-shadow: 0 8px 20px rgba(201, 154, 46, .32); }
.btn-accent:hover { background: var(--gp-accent-600); color: #3B2C00; box-shadow: 0 12px 26px rgba(201, 154, 46, .42); }
.btn-outline-cta {
    background: transparent; color: var(--gp-primary); border: 2px solid var(--gp-primary); border-radius: 12px;
    padding: .56rem 1.4rem; font-weight: 700; display: inline-flex; align-items: center; gap: .45rem; transition: all .18s ease;
}
.btn-outline-cta:hover { background: var(--gp-primary); color: #fff; }
.btn-soft { background: var(--gp-primary-soft); color: var(--gp-primary); border: none; border-radius: 12px; padding: .55rem 1.3rem; font-weight: 700; }
.btn-soft:hover { background: #f6cfe3; color: var(--gp-primary-700); }

/* ---------- Notice bar ---------- */
.notice-bar { background: var(--gp-dark); color: #fff; font-size: .9rem; padding: .5rem 0; text-align: center; }
.notice-bar a, .notice-bar span { color: inherit; }
.notice-bar a:hover { text-decoration: underline; }

/* ---------- Gold/silver rate ticker ---------- */
.rate-ticker { background: linear-gradient(90deg, var(--gp-dark), #4A1339); color: #F3D98B; font-size: .82rem; padding: .4rem 0; text-align: center; }
.rate-ticker strong { color: #fff; font-weight: 700; }
.rate-ticker .rt-sep { opacity: .5; margin: 0 .6rem; }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 1030; background: rgba(255, 253, 248, .94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--gp-line); transition: box-shadow .25s ease, padding .25s ease; }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header .navbar { padding-top: .65rem; padding-bottom: .65rem; }
.navbar-brand { display: inline-flex; align-items: center; gap: .55rem; min-width: 0; font-family: var(--font-display); font-weight: 800; }
.brand-logo { max-height: 44px; }
.brand-mark { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--gp-primary), var(--gp-accent)); color: #fff; display: inline-grid; place-items: center; font-size: 1.2rem; flex: 0 0 auto; box-shadow: 0 6px 16px rgba(198, 17, 107, .32); }
.brand-name { font-size: 1.3rem; color: var(--gp-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: calc(100vw - 140px); }
.navbar-nav .nav-link { font-weight: 600; color: var(--gp-ink); padding: .4rem .8rem; border-radius: 10px; transition: color .15s ease, background .15s ease; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--gp-primary); background: var(--gp-primary-soft); }
.header-search .form-control { border-radius: 999px; border: 1px solid var(--gp-line); background: var(--gp-bg); min-width: 180px; }
.header-search .form-control:focus { border-color: var(--gp-primary); box-shadow: 0 0 0 .2rem rgba(198, 17, 107, .15); }
.lang-toggle { font-weight: 600; color: var(--gp-ink); display: inline-flex; align-items: center; }
.lang-toggle:hover { color: var(--gp-primary); }
.header-icon { position: relative; width: 42px; height: 42px; border-radius: 10px; display: inline-grid; place-items: center; color: var(--gp-ink); font-size: 1.2rem; transition: background .15s ease, color .15s ease; }
.header-icon:hover { background: var(--gp-primary-soft); color: var(--gp-primary); }
.header-icon .count-badge { position: absolute; top: 2px; right: 0; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px; background: var(--gp-accent); color: #3B2C00; font-size: .68rem; font-weight: 800; display: grid; place-items: center; line-height: 1; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--gp-dark); color: #fff; }
.hero-slide { position: relative; min-height: 72vh; display: flex; align-items: center; background-size: cover; background-position: center; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(58,14,46,.88) 0%, rgba(58,14,46,.58) 55%, rgba(201,154,46,.22) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 660px; padding: 2rem 0; }
.hero-content h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 1rem; }
.hero-content p { font-size: 1.15rem; opacity: .94; margin-bottom: 1.6rem; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: .35rem 1rem; font-weight: 600; margin-bottom: 1rem; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section.alt { background: var(--gp-surface); }
.section.soft { background: var(--gp-primary-soft); }
.section.ink { background: var(--gp-dark); color: #fff; }
.section.ink h1, .section.ink h2, .section.ink h3 { color: #fff; }
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head.start { margin-left: 0; text-align: left; }
.eyebrow { display: inline-flex; align-items: center; gap: .45rem; color: var(--gp-accent-600); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .8rem; margin-bottom: .6rem; }
.section-title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: .7rem; }
.lede { color: var(--gp-muted); font-size: 1.08rem; }

/* signature "faceted diamond-cut" divider motif */
.gp-underline, .gp-facet { display: inline-block; width: 84px; height: 10px; margin-top: .4rem; background: linear-gradient(90deg, var(--gp-primary) 0 50%, var(--gp-accent) 50% 100%); clip-path: polygon(0% 50%, 8% 0%, 16% 50%, 24% 0%, 32% 50%, 40% 0%, 48% 50%, 56% 0%, 64% 50%, 72% 0%, 80% 50%, 88% 0%, 96% 50%, 100% 20%, 100% 80%, 96% 50%, 88% 100%, 80% 50%, 72% 100%, 64% 50%, 56% 100%, 48% 50%, 40% 100%, 32% 50%, 24% 100%, 16% 50%, 8% 100%, 0% 50%); }

/* ---------- Product / generic cards ---------- */
.card-gp { background: var(--gp-surface); border: 1px solid var(--gp-line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.card-gp.h-100 { display: flex; flex-direction: column; }
.card-gp:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: #eec4dc; }
.card-gp .card-img { aspect-ratio: 1/1; overflow: hidden; background: #fff; position: relative; }
.card-gp .card-img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .5s ease; }
.card-gp:hover .card-img img { transform: scale(1.06); }
/* diagonal gold-shimmer sweep on hover — GPU-only (background-position), gated below */
.card-gp .card-img::before {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%);
    background-size: 250% 250%; background-position: -60% -60%;
    transition: background-position .75s ease;
}
.card-gp:hover .card-img::before { background-position: 60% 60%; }
.card-gp .card-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .4rem; flex: 1 1 auto; }
.card-gp h3, .card-gp h4 { font-size: 1.06rem; margin: 0; }
.card-gp .muted { color: var(--gp-muted); font-size: .9rem; }
.card-gp .brand-line { color: var(--gp-muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.card-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--gp-primary-soft); color: var(--gp-primary); display: grid; place-items: center; font-size: 1.55rem; margin-bottom: .4rem; }

/* product badges (corner) */
.prod-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: .3rem; z-index: 2; }
.p-badge { border-radius: 999px; padding: .2rem .6rem; font-size: .7rem; font-weight: 700; color: #fff; box-shadow: var(--shadow-sm); }
.p-badge.new { background: var(--gp-success); }
.p-badge.sale { background: var(--gp-danger); }
.p-badge.best { background: var(--gp-primary); }
.p-badge.feat { background: var(--gp-accent); color: #3B2C00; }
.p-badge.trend { background: var(--gp-dark); }

/* sparkle pulse on featured/trending badges */
.sparkle-badge { position: relative; }
.sparkle-badge::after {
    content: "\2726"; position: absolute; top: -6px; right: -6px; font-size: .6rem; color: var(--gp-accent);
    animation: sparkle-pulse 1.8s ease-in-out infinite;
}
@keyframes sparkle-pulse { 0%, 100% { opacity: .3; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.15); } }

.price-tag { color: var(--gp-primary); font-weight: 800; font-family: var(--font-display); font-size: 1.12rem; }
.old-price { color: var(--gp-muted); text-decoration: line-through; font-weight: 500; margin-left: .4rem; font-size: .85em; }
.badge-soft { background: var(--gp-primary-soft); color: var(--gp-primary); border-radius: 999px; padding: .25rem .7rem; font-size: .76rem; font-weight: 700; display: inline-flex; align-items: center; gap: .3rem; }
.badge-accent { background: var(--gp-accent-soft); color: var(--gp-accent-600); }
.badge-warn { background: #FBF1DC; color: #6B4E12; }
.stock-in { color: var(--gp-success); font-weight: 700; }
.stock-out { color: var(--gp-danger); font-weight: 700; }

/* ---------- Category / plating / collection tiles ---------- */
.cat-tile { background: #fff; border: 1px solid var(--gp-line); border-radius: var(--radius); padding: 1.4rem 1rem; text-align: center; transition: transform .2s ease, box-shadow .2s ease, border-color .2s; display: block; }
.cat-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #eec4dc; }
.cat-tile .ic { font-size: 2rem; color: var(--gp-primary); }

.plating-tile { --swatch: var(--gp-accent); background: #fff; border: 1px solid var(--gp-line); border-top: 4px solid var(--swatch); border-radius: var(--radius-sm); padding: 1rem; display: grid; place-items: center; min-height: 92px; transition: box-shadow .2s ease, transform .2s; }
.plating-tile:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.plating-tile img { max-height: 56px; object-fit: contain; }
.plating-chip { display: inline-block; width: 14px; height: 14px; border-radius: 50%; background: var(--swatch); margin-right: .4rem; vertical-align: middle; border: 1px solid rgba(0,0,0,.08); }

.collection-card { display: block; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--gp-line); box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; color: inherit; }
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); color: inherit; }
.collection-card-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.collection-card-badge { position: absolute; top: 12px; right: 12px; background: var(--gp-primary); color: #fff; border-radius: 999px; padding: .3rem .8rem; font-size: .74rem; font-weight: 700; box-shadow: var(--shadow-sm); }
.collection-card-body { padding: 1.1rem 1.2rem 1.3rem; }
.collection-countdown { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.24); border-radius: 999px; padding: .4rem 1rem; color: #fff; font-size: .9rem; }
.collection-countdown strong { color: var(--gp-accent); }

/* ---------- Size chips (product detail) ---------- */
.size-chip { border-radius: 999px !important; }
.size-chip.active { background: var(--gp-primary) !important; color: #fff !important; border-color: var(--gp-primary) !important; }

/* ---------- Order status timeline ---------- */
.order-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.order-timeline-item { display: flex; gap: .9rem; padding-bottom: 1.3rem; position: relative; }
.order-timeline-item:last-child { padding-bottom: 0; }
.order-timeline-item::before { content: ""; position: absolute; left: 6px; top: 18px; bottom: -4px; width: 2px; background: var(--gp-line); }
.order-timeline-item:last-child::before { display: none; }
.order-timeline-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gp-line); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--gp-line); flex: 0 0 auto; margin-top: 4px; }
.order-timeline-item.is-current .order-timeline-dot { background: var(--gp-primary); box-shadow: 0 0 0 2px var(--gp-primary); }
.order-timeline-body { flex: 1 1 auto; min-width: 0; }

/* ---------- Stats ---------- */
.stat-tile { text-align: center; padding: 1.5rem 1rem; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gp-primary); }
.stat-label { color: var(--gp-muted); font-weight: 600; }
.stat-ic { font-size: 1.8rem; color: var(--gp-accent-600); margin-bottom: .3rem; }
.section.ink .stat-label { color: #e7c8da; }
.section.ink .stat-num { color: #fff; }

/* ---------- Testimonials ---------- */
.testi-card { background: #fff; border: 1px solid var(--gp-line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.testi-card .quote { color: var(--gp-ink); font-size: 1.02rem; }
.testi-card .who { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; }
.testi-card .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.stars { color: var(--gp-accent); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: linear-gradient(120deg, var(--gp-primary), var(--gp-primary-700)); color: #fff; padding: 64px 0 56px; position: relative; overflow: hidden; }
.page-hero::after { content: "\F3E1"; font-family: "bootstrap-icons"; position: absolute; right: -10px; bottom: -30px; font-size: 11rem; opacity: .12; }
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.6rem); margin: 0; }
.page-hero .crumbs { opacity: .92; margin-top: .5rem; }
.page-hero .crumbs a { color: #fff; opacity: .85; }

/* ---------- Forms ---------- */
.gp-form .form-label { font-weight: 600; color: var(--gp-ink); }
.gp-form .form-control, .gp-form .form-select { border-radius: var(--radius-sm); border: 1px solid var(--gp-line); padding: .6rem .85rem; }
.gp-form .form-control:focus, .gp-form .form-select:focus { border-color: var(--gp-primary); box-shadow: 0 0 0 .2rem rgba(198, 17, 107, .15); }
.form-card { background: #fff; border: 1px solid var(--gp-line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.8rem; }

/* ---------- Tables ---------- */
.spec-table, .fee-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-table th, .fee-table th { background: var(--gp-primary); color: #fff; text-align: left; padding: .8rem 1rem; }
.spec-table td, .fee-table td { padding: .75rem 1rem; border-top: 1px solid var(--gp-line); }
.spec-table tr:nth-child(even) td, .fee-table tr:nth-child(even) td { background: var(--gp-bg); }

/* ---------- Pagination ---------- */
.pagination { gap: .35rem; }
.pagination .page-link { border-radius: 10px !important; border: 1px solid var(--gp-line); color: var(--gp-ink); margin: 0 2px; }
.pagination .active .page-link { background: var(--gp-primary); border-color: var(--gp-primary); color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--gp-dark); color: #E7C8DA; padding: 0 0 1.4rem; position: relative; }
.footer-accent { height: 6px; background: linear-gradient(90deg, var(--gp-primary) 0 55%, var(--gp-accent) 55% 100%); }
.site-footer .container { padding-top: 56px; }
.site-footer h5 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.footer-brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: #fff; display: inline-flex; align-items: center; }
.footer-logo { max-height: 50px; }
.footer-about { color: #C9A2BB; font-size: .95rem; }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.09); color: #fff; display: grid; place-items: center; transition: background .2s ease, transform .2s ease; }
.footer-social a:hover { background: var(--gp-primary); transform: translateY(-3px); }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: #C9A2BB; }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: flex; gap: .6rem; margin-bottom: .7rem; color: #C9A2BB; min-width: 0; }
.footer-contact li i { color: var(--gp-accent); margin-top: .2rem; }
.footer-contact a { color: #C9A2BB; overflow-wrap: anywhere; }
.footer-contact a:hover { color: #fff; }
.newsletter-form { display: flex; gap: .5rem; margin-top: .6rem; }
.newsletter-form .form-control { border-radius: 999px; border: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 2.5rem; padding-top: 1.3rem; display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; align-items: center; justify-content: space-between; font-size: .9rem; color: #C9A2BB; }
.footer-bottom a { color: var(--gp-accent); }
.dev-credit { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: .35rem .9rem; color: #E7C8DA !important; font-size: .85rem; font-weight: 600; transition: background .2s ease, transform .2s ease; }
.dev-credit:hover { background: rgba(198,17,107,.28); color: #fff !important; transform: translateY(-1px); }
.dev-credit i { color: var(--gp-accent); animation: dev-heart 1.3s ease-in-out infinite; }
@keyframes dev-heart { 0%,100% { transform: scale(1); } 25% { transform: scale(1.25); } 40% { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .dev-credit i { animation: none; } }

/* ---------- Floating actions + back to top ---------- */
.float-actions { position: fixed; right: 18px; bottom: 18px; z-index: 1040; display: flex; flex-direction: column; gap: .65rem; }
.float-actions a { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.4rem; box-shadow: var(--shadow); transition: transform .18s ease; }
.float-actions a:hover { transform: scale(1.08); color: #fff; }
.fa-whatsapp { background: #25D366; }
.fa-call { background: var(--gp-primary); }
.back-to-top { position: fixed; right: 18px; bottom: 86px; z-index: 1039; width: 46px; height: 46px; border-radius: 50%; border: none; background: var(--gp-dark); color: #fff; opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   §12.1 Mobile safety-net + overflow trio
   ============================================================ */
img, svg, video, iframe { max-width: 100%; }
img { height: auto; }
table { max-width: 100%; }
.container, .container-fluid { overflow-wrap: break-word; }
h1, h2, h3, h4, p, a, span, li { overflow-wrap: break-word; }

@media (max-width: 1199.98px) {
    .row.g-5, .row.gx-5 { --bs-gutter-x: 1.5rem; }
}

/* keep the desktop nav on a single line */
@media (min-width: 1200px) {
    .site-header .navbar-nav { flex-wrap: nowrap; }
}

@media (max-width: 991.98px) {
    .site-header .navbar-collapse { background: #fff; border: 1px solid var(--gp-line); border-radius: var(--radius); padding: 1rem; margin-top: .6rem; box-shadow: var(--shadow); }
    .navbar-nav .nav-link { padding: .55rem .6rem; }
    .header-search { margin: .5rem 0; }
    .header-search .form-control { width: 100%; }
    .section { padding: 60px 0; }
    .hero-slide { min-height: 60vh; }
}

@media (max-width: 767px) {
    .section, .page-hero { padding: 44px 0; }
    .section-head { margin-bottom: 2rem; }
    .float-actions a { width: 48px; height: 48px; }
    .footer-bottom { justify-content: flex-start; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .brand-name { font-size: 1.1rem; }
}

@media print {
    .site-header, .site-footer, .float-actions, .back-to-top, .notice-bar, .rate-ticker { display: none !important; }
    body { background: #fff; }
}
