/* ============================================================
   Kaath Kotha — Furniture Studio — Public Site CSS
   Identity: "Walnut & Sage" — warm, tactile, editorial furniture retail.
   Walnut brown #4A3226 + oak tan #C89B6D + sage green #7C8B6F on linen
   cream, a hand-joinery "joint-seam" motif, generous whitespace, slow
   Ken-Burns hero. Light theme, never pure white.
   ============================================================ */

:root {
    --kk-primary: #4A3226;      /* walnut brown */
    --kk-primary-700: #3A2620;  /* darker walnut, hover */
    --kk-accent: #C89B6D;       /* oak tan */
    --kk-accent-600: #B8875A;   /* darker oak, hover */
    --kk-sage: #7C8B6F;         /* sage green accent */
    --kk-sage-600: #6B7A5E;
    --kk-ink: #2B2420;
    --kk-dark: #2B2420;
    --kk-bg: #F7F3EA;           /* linen cream, never pure #fff */
    --kk-surface: #FFFDF9;
    --kk-muted: #8A7F71;        /* warm grey-brown */
    --kk-line: #E8DFD0;         /* warm border */
    --kk-primary-soft: #EFE6D8;
    --kk-accent-soft: #F3E9DD;
    --kk-sage-soft: #E8ECE3;
    --kk-warn: #C89B6D;
    --kk-danger: #A8412C;
    --kk-success: #7C8B6F;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow-sm: 0 4px 16px rgba(43, 36, 32, .07);
    --shadow: 0 14px 40px rgba(43, 36, 32, .12);
    --shadow-lift: 0 20px 46px rgba(74, 50, 38, .20);
    --font-display: 'Domine', 'Hind Siliguri', Georgia, serif;
    --font-body: 'Work Sans', 'Hind Siliguri', system-ui, sans-serif;
    --font-bn: 'Hind Siliguri', 'Work Sans', system-ui, sans-serif;
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--kk-ink);
    background: var(--kk-bg);
    line-height: 1.65;
    overflow-x: clip; /* §31 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(--kk-ink); line-height: 1.22; font-weight: 600; letter-spacing: -.005em; }
a { color: var(--kk-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--kk-accent-600); }
img { max-width: 100%; height: auto; }
p { margin: 0 0 1rem; }

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

/* ---------- Buttons ---------- */
.btn-cta {
    background: var(--kk-primary); color: #fff; border: none; border-radius: 10px;
    padding: .62rem 1.5rem; font-weight: 600; font-family: var(--font-display);
    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(74, 50, 38, .26);
}
.btn-cta:hover { background: var(--kk-primary-700); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(74, 50, 38, .36); }
.btn-accent { background: var(--kk-accent); color: var(--kk-ink); box-shadow: 0 8px 20px rgba(200, 155, 109, .3); }
.btn-accent:hover { background: var(--kk-accent-600); color: var(--kk-ink); box-shadow: 0 12px 26px rgba(200, 155, 109, .4); }
.btn-outline-cta {
    background: transparent; color: var(--kk-primary); border: 2px solid var(--kk-primary); border-radius: 10px;
    padding: .56rem 1.4rem; font-weight: 600; font-family: var(--font-display); display: inline-flex; align-items: center; gap: .45rem; transition: all .18s ease;
}
.btn-outline-cta:hover { background: var(--kk-primary); color: #fff; }
.btn-soft { background: var(--kk-primary-soft); color: var(--kk-primary); border: none; border-radius: 10px; padding: .55rem 1.3rem; font-weight: 600; }
.btn-soft:hover { background: #e6d9c4; color: var(--kk-primary-700); }

/* ---------- Notice bar ---------- */
.notice-bar { background: var(--kk-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; }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 1030; background: rgba(247, 243, 234, .94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--kk-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: 700; }
.brand-logo { max-height: 44px; }
.brand-mark { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, var(--kk-accent), var(--kk-primary)); color: #fff; display: inline-grid; place-items: center; font-size: 1.2rem; flex: 0 0 auto; box-shadow: 0 6px 16px rgba(74,50,38,.3); }
.brand-name { font-size: 1.25rem; color: var(--kk-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: calc(100vw - 140px); }
.navbar-nav .nav-link { font-weight: 600; color: var(--kk-ink); padding: .4rem .8rem; border-radius: 8px; transition: color .15s ease, background .15s ease; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--kk-primary); background: var(--kk-primary-soft); }
.header-search .form-control { border-radius: 999px; border: 1px solid var(--kk-line); background: var(--kk-bg); min-width: 180px; }
.header-search .form-control:focus { border-color: var(--kk-primary); box-shadow: 0 0 0 .2rem rgba(74,50,38,.15); }
.lang-toggle { font-weight: 600; color: var(--kk-ink); display: inline-flex; align-items: center; }
.lang-toggle:hover { color: var(--kk-primary); }
.header-icon { position: relative; width: 42px; height: 42px; border-radius: 10px; display: inline-grid; place-items: center; color: var(--kk-ink); font-size: 1.2rem; transition: background .15s ease, color .15s ease; }
.header-icon:hover { background: var(--kk-primary-soft); color: var(--kk-primary); }
.header-icon .count-badge { position: absolute; top: 2px; right: 0; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px; background: var(--kk-accent); color: var(--kk-ink); font-size: .68rem; font-weight: 700; display: grid; place-items: center; line-height: 1; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--kk-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(43,36,32,.86) 0%, rgba(43,36,32,.55) 55%, rgba(200,155,109,.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.3rem); 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,.18); border-radius: 999px; padding: .35rem 1rem; font-weight: 600; margin-bottom: 1rem; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section.alt { background: var(--kk-surface); }
.section.soft { background: var(--kk-primary-soft); }
.section.ink { background: var(--kk-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(--kk-accent-600); font-weight: 700; font-family: var(--font-display); letter-spacing: .05em; text-transform: uppercase; font-size: .78rem; margin-bottom: .6rem; }
.section-title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: .7rem; }
.lede { color: var(--kk-muted); font-size: 1.08rem; }

/* ---------- Signature "joint-seam" divider motif ---------- */
.joint-seam { position: relative; display: inline-block; width: 84px; height: 4px; background: var(--kk-accent); border-radius: 2px; margin-top: .5rem; }
.joint-seam::before {
    content: ""; position: absolute; left: 50%; top: 50%; width: 15px; height: 15px;
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--kk-bg); border: 3px solid var(--kk-accent); box-sizing: border-box;
}
.section.alt .joint-seam::before { background: var(--kk-surface); }
.section.ink .joint-seam::before { background: var(--kk-dark); }

/* ---------- Product / generic cards ---------- */
.product-card, .card-kk { background: var(--kk-surface); border: 1px solid var(--kk-line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .5s cubic-bezier(.22,.8,.3,1), box-shadow .5s ease, border-color .22s ease; }
.product-card.h-100, .card-kk.h-100 { display: flex; flex-direction: column; }
.product-card:hover, .card-kk:hover { border-color: #d8c3a4; }
.product-card .card-img { aspect-ratio: 1/1; overflow: hidden; background: var(--kk-primary-soft); position: relative; }
.product-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.22,.8,.3,1); }
.product-card .card-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .4rem; flex: 1 1 auto; }
.product-card h3, .product-card h4, .card-kk h3, .card-kk h4 { font-size: 1.05rem; margin: 0; }
.product-card .muted, .card-kk .muted { color: var(--kk-muted); font-size: .9rem; }
.product-card .brand-line { color: var(--kk-muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.card-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--kk-primary-soft); color: var(--kk-primary); display: grid; place-items: center; font-size: 1.5rem; 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(--kk-sage); }
.p-badge.sale { background: var(--kk-danger); }
.p-badge.best { background: var(--kk-primary); }
.p-badge.feat { background: var(--kk-accent); color: var(--kk-ink); }

.price-tag { color: var(--kk-primary); font-weight: 700; font-family: var(--font-display); font-size: 1.12rem; }
.old-price { color: var(--kk-muted); text-decoration: line-through; font-weight: 500; margin-left: .4rem; font-size: .85em; }
.badge-soft { background: var(--kk-primary-soft); color: var(--kk-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(--kk-accent-soft); color: var(--kk-accent-600); }
.badge-warn { background: #FEF3C7; color: #92670A; }
.stock-in { color: var(--kk-success); font-weight: 700; }
.stock-out { color: var(--kk-danger); font-weight: 700; }

/* ---------- Category / brand / material tiles ---------- */
.cat-tile { background: var(--kk-surface); border: 1px solid var(--kk-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: #d8c3a4; }
.cat-tile .ic { font-size: 2rem; color: var(--kk-primary); }
.brand-card { background: var(--kk-surface); border: 1px solid var(--kk-line); border-radius: var(--radius-sm); padding: 1rem; display: grid; place-items: center; min-height: 92px; transition: box-shadow .2s ease, transform .2s; }
.brand-card:hover { box-shadow: var(--shadow); }
.brand-card img { max-height: 56px; object-fit: contain; }
.material-card { background: var(--kk-surface); border: 1px solid var(--kk-line); border-radius: var(--radius); overflow: hidden; text-align: center; transition: transform .5s ease, box-shadow .5s ease; }
.material-card .swatch-img { aspect-ratio: 1/1; overflow: hidden; }
.material-card .swatch-img img { width: 100%; height: 100%; object-fit: cover; }
.material-card .swatch-body { padding: .8rem .7rem; }
.material-card .swatch-cat { color: var(--kk-muted); font-size: .74rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }

/* ---------- Room Sets ("Shop the Look") ---------- */
.roomset-card, .room-card { background: var(--kk-surface); border: 1px solid var(--kk-line); border-radius: var(--radius); overflow: hidden; transition: transform .5s cubic-bezier(.22,.8,.3,1), box-shadow .5s ease; }
.roomset-card .card-img, .room-card .card-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.roomset-card .card-img img, .room-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.22,.8,.3,1); }
.roomset-card .card-body, .room-card .card-body { padding: 1rem 1.1rem 1.2rem; }
.roomset-stage { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.roomset-stage img { width: 100%; display: block; }
.hotspot-pin {
    position: absolute; width: 30px; height: 30px; border-radius: 50%;
    background: var(--kk-accent); border: 3px solid #fff; box-shadow: 0 4px 12px rgba(43,36,32,.35);
    display: grid; place-items: center; color: var(--kk-ink); font-size: .9rem;
    transform: translate(-50%, -50%); cursor: pointer; transition: transform .2s ease, background .2s ease;
    animation: hotspot-pulse 2.4s ease-in-out infinite;
}
.hotspot-pin:hover { transform: translate(-50%, -50%) scale(1.15); background: var(--kk-primary); color: #fff; }
@keyframes hotspot-pulse { 0%,100% { box-shadow: 0 4px 12px rgba(43,36,32,.35), 0 0 0 0 rgba(200,155,109,.5); } 50% { box-shadow: 0 4px 12px rgba(43,36,32,.35), 0 0 0 8px rgba(200,155,109,0); } }
@media (prefers-reduced-motion: reduce) { .hotspot-pin { animation: none; } }
.hotspot-popover { background: var(--kk-surface); border: 1px solid var(--kk-line); border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: .7rem; max-width: 220px; }

/* ---------- Showroom / branch cards ---------- */
.branch-card { background: var(--kk-surface); border: 1px solid var(--kk-line); border-radius: var(--radius); overflow: hidden; transition: transform .5s ease, box-shadow .5s ease; }
.branch-card .card-img { aspect-ratio: 16/10; overflow: hidden; }
.branch-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.branch-card .card-body { padding: 1.1rem 1.2rem; }
.open-now { font-weight: 700; }
.open-now.is-open { color: var(--kk-success); }
.open-now.is-closed { color: var(--kk-danger); }

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

/* ---------- Testimonials ---------- */
.testi-card { background: var(--kk-surface); border: 1px solid var(--kk-line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.testi-card .quote { color: var(--kk-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(--kk-accent-600); }

/* ---------- Blog cards ---------- */
.blog-card { background: var(--kk-surface); border: 1px solid var(--kk-line); border-radius: var(--radius); overflow: hidden; transition: transform .5s ease, box-shadow .5s ease; }
.blog-card .card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.blog-card .card-body { padding: 1.1rem 1.2rem; }
.blog-card .meta { color: var(--kk-muted); font-size: .82rem; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: linear-gradient(120deg, var(--kk-primary), var(--kk-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: .10; }
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.6rem); margin: 0; }
.page-hero .crumbs { opacity: .9; margin-top: .5rem; }
.page-hero .crumbs a { color: #fff; opacity: .85; }

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

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

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

/* ---------- Footer ---------- */
.site-footer { background: var(--kk-dark); color: #d9d0c4; padding: 0 0 1.4rem; position: relative; }
.footer-accent { height: 6px; background: linear-gradient(90deg, var(--kk-accent) 0 55%, var(--kk-sage) 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: 700; font-size: 1.4rem; color: #fff; display: inline-flex; align-items: center; }
.footer-logo { max-height: 50px; }
.footer-about { color: #b9ad9c; 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,.08); color: #fff; display: grid; place-items: center; transition: background .2s ease, transform .2s ease; }
.footer-social a:hover { background: var(--kk-accent); color: var(--kk-ink); transform: translateY(-3px); }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: #b9ad9c; }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: flex; gap: .6rem; margin-bottom: .7rem; color: #b9ad9c; min-width: 0; }
.footer-contact li i { color: var(--kk-accent); margin-top: .2rem; }
.footer-contact a { color: #b9ad9c; 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,.12); 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: #b9ad9c; }
.footer-bottom a { color: var(--kk-accent); }
.dev-credit { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: .35rem .9rem; color: #d9d0c4 !important; font-size: .85rem; font-weight: 600; transition: background .2s ease, transform .2s ease; }
.dev-credit:hover { background: rgba(200,155,109,.22); color: #fff !important; transform: translateY(-1px); }
.dev-credit i { color: #e6a99a; 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(--kk-primary); }
.back-to-top { position: fixed; right: 18px; bottom: 86px; z-index: 1039; width: 46px; height: 46px; border-radius: 50%; border: none; background: var(--kk-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 + §31 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: var(--kk-surface); border: 1px solid var(--kk-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 { display: none !important; }
    body { background: #fff; }
}
