/* 
   Bold & Noble inspired one-page storefront.
   Pure CSS, no frameworks. Designed to be clean and easy to adjust.
*/

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #f6e9d4;
    /* Header (.bn-header) jaisa hi gradient — page base same tone */
    background: linear-gradient(135deg, #3c2418, #2a1b12);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body.bn-nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.bn-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Top info bar */
.bn-topbar {
    background-color: #111;
    color: #f5f5f5;
    text-align: center;
    padding: 8px 12px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Header and navigation */
.bn-header {
    background: linear-gradient(135deg, #3c2418, #2a1b12); /* dark brownish */
    border-bottom: 1px solid #1b100a;
    position: sticky;
    top: 0;
    z-index: 20;
}

.bn-header-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

/* Logo row: desktop par logo center; mobile par logo + hamburger */
.bn-header-topbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8px 12px;
    box-sizing: border-box;
}

.bn-nav-toggle {
    display: none;
    position: absolute;
    right: max(12px, env(safe-area-inset-right));
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    z-index: 5;
    touch-action: manipulation;
}

.bn-nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #f6e9d4;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.bn-header--nav-open .bn-nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.bn-header--nav-open .bn-nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.bn-header--nav-open .bn-nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Slider under header */
.bn-slider {
    background: #2f1f16;
    border-bottom: 1px solid #1c120d;
}

.bn-slider-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.bn-slide {
    display: none;
    transition: opacity 0.3s ease;
}

.bn-slide-active {
    display: block;
    /* Fixed frame: kitni bhi slides inactive hon, visible image area same ratio + crop (object-fit) */
    aspect-ratio: 21 / 9;
    max-height: min(52vh, 540px);
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.bn-slide-active > a {
    display: block;
    height: 100%;
}

.bn-slide-content {
    text-align: center;
}

.bn-slide-content h2 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 6px;
}

.bn-slide-content p {
    font-size: 14px;
    color: #555;
}

/* Slider images — parent .bn-slide-active fixed aspect; image fill + crop, dimensions change nahi */
.bn-slide-active .bn-slide-image {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    display: block;
}

/* Fallback static slides / older markup */
.bn-slide-image {
    display: block;
}

.bn-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(15, 9, 6, 0.8);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
}

.bn-slider-prev {
    left: 12px;
}

.bn-slider-next {
    right: 12px;
}

.bn-slider-dots {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.bn-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #c7bfb4;
    cursor: pointer;
}

.bn-dot-active {
    background: #111;
}

/* Static home banner under slider */
.bn-home-banner {
    background: #21150f;
}

.bn-home-image {
    width: 100%;
    display: block;
}

/* Category image strip under slider - 6 clickable pieces from one image */
.bn-category-strip {
    background-color: #f1e3ce;
    border-bottom: 1px solid #dccbb1;
}

.bn-category-wrap {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

/* Below Banner (CMS): column count = active tiles (max 6 per row) */
.bn-category-wrap--dynamic {
    grid-template-columns: repeat(var(--bb-cols, 6), minmax(0, 1fr));
}

.bn-category-tile {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 320px;
    text-decoration: none;
    color: #fdf5ea;
    font-family: Georgia, "Times New Roman", serif;
    overflow: hidden;
}

.bn-category-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("jewellery-strip.png");
    background-repeat: no-repeat;
    background-size: 600% 100%;
    transition: transform 0.3s ease;
}

.bn-cat-1::before { background-position: 0% 50%; }
.bn-cat-2::before { background-position: 20% 50%; }
.bn-cat-3::before { background-position: 40% 50%; }
.bn-cat-4::before { background-position: 60% 50%; }
.bn-cat-5::before { background-position: 80% 50%; }
.bn-cat-6::before { background-position: 100% 50%; }

.bn-category-tile span {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    font-size: 14px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.bn-category-tile:hover::before {
    transform: scale(1.03);
}

.bn-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 0;
}

/* Logo image */
.bn-logo-image {
    max-height: 60px;
    width: auto;
    display: block;
}

.bn-logo-link {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    letter-spacing: 0.08em;
    color: #f6e9d4;
}

.bn-logo-link:hover {
    opacity: 0.9;
}

.bn-card-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

/* Row that holds menu and header actions under the centred logo */
.bn-header-row {
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #e9ddc8; /* vintage strip behind menu */
    padding: 10px 0;
}

.bn-nav {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #5b3b29; /* brownish for menu text */
}

/* Sirf top-level menu row flex — nested .bn-submenu par flex mat lagao warna items ek row mein 2 dikhte hain */
.bn-nav > ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Top-level li: mobile par alag rule (column stack) — neeche @media (min-width: 769px) desktop align */
.bn-nav > ul > li {
    position: relative;
}

.bn-nav a {
    position: relative;
    display: inline-block;
    border-radius: 999px;
    color: #5b3b29;
}

@media (min-width: 769px) {
    .bn-nav > ul > li {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Sirf direct leaf link — submenu wale ka <a> .bn-nav__row ke andar */
    .bn-nav > ul > li > a {
        padding: 6px 10px;
    }
}

.bn-nav > ul > li > a::after,
.bn-nav__parent-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #111;
    transition: width 0.2s ease;
}

.bn-nav > ul > li > a:hover::after,
.bn-nav__parent-link:hover::after {
    width: 100%;
}

.bn-nav-sale {
    color: #a62828;
}

/* Subtle hover background pill */
.bn-nav > ul > li > a:hover,
.bn-nav__parent-link:hover {
    background-color: rgba(255, 255, 255, 0.45);
}

/* Parent + chevron row (submenu wale items) */
.bn-nav__row {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.bn-nav__parent-link {
    position: relative;
    padding: 6px 10px;
    display: inline-block;
    border-radius: 999px;
    color: #5b3b29;
}

/* Down-arrow — desktop par dikhe, click hover par submenu */
.bn-nav__sub-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    margin: 0;
    border: none;
    background: transparent;
    color: #5b3b29;
    cursor: default;
    line-height: 0;
    vertical-align: middle;
}

.bn-nav__chevron {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.2s ease, margin-top 0.2s ease;
}

li.bn-submenu-open .bn-nav__chevron {
    transform: rotate(-135deg);
    margin-top: 2px;
}

@media (min-width: 769px) {
    .bn-nav__sub-toggle {
        pointer-events: none;
    }
}

/* Submenu — vertical list (block), ek item per line */
.bn-submenu {
    display: block;
    position: absolute;
    left: 0;
    top: 130%;
    min-width: 160px;
    background: #ffffff;
    border: 1px solid #e4e0d9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    z-index: 30;
}

.bn-submenu li a {
    display: block;
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    color: #5b3b29;
    border-radius: 0;
}

/* Hover: white/cream background + dark text taake submenu clearly dikhe (pehle dark bg par text ghum ho jata tha) */
.bn-submenu li a:hover {
    background: #fdfaf6;
    color: #2a1b12;
}

.bn-has-sub:hover > .bn-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* (header actions removed) */

/* Home: hero + 6 panels — left image, right content */
.bn-home-split {
    background: #21150f;
    border-bottom: 1px solid #140c08;
}

.bn-home-split__inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 36px 20px 44px;
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.15fr);
    gap: 40px 48px;
    align-items: start;
}

.bn-home-split__media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.bn-home-split__img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
}

.bn-home-split__content {
    min-width: 0;
}

.bn-home-split__title {
    font-size: 32px;
    line-height: 1.25;
    margin: 0 0 16px;
    color: #fdf5ea;
}

.bn-home-split__lead {
    font-size: 15px;
    line-height: 1.65;
    color: #e2d0ba;
    margin: 0;
    max-width: 560px;
}

/* Welcome CMS rich HTML (c_panel → welcome.php) — hero dark background */
.bn-home-split__lead--rich {
    max-width: 560px;
}

.bn-home-split__lead--rich p {
    font-size: 15px;
    line-height: 1.65;
    color: #e2d0ba;
    margin: 0 0 1em;
}

.bn-home-split__lead--rich p:last-child {
    margin-bottom: 0;
}

.bn-home-split__lead--rich ul,
.bn-home-split__lead--rich ol {
    margin: 0 0 1em 1.25em;
    color: #e2d0ba;
    font-size: 15px;
    line-height: 1.65;
}

.bn-home-split__lead--rich a {
    color: #f6e9d4;
    text-decoration: underline;
}

.bn-home-split__lead--rich a:hover {
    color: #ffffff;
}

.bn-home-split__lead--rich h2,
.bn-home-split__lead--rich h3 {
    color: #fdf5ea;
    font-size: 1.1em;
    margin: 1em 0 0.5em;
}

/* Hero split (#welcome) — sticky header offset jab Read more / #welcome anchor use ho */
#welcome {
    scroll-margin-top: 96px;
}

/* Hero section (legacy class names — buttons still used in split) */
.bn-hero {
    background: #21150f;
    border-bottom: 1px solid #140c08;
}

.bn-hero-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 32px 20px 42px;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 40px;
    align-items: center;
}

.bn-hero-text h1 {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.bn-hero-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #e2d0ba;
    max-width: 520px;
}

.bn-hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Single primary CTA in home split (no second ghost button). */
.bn-hero-actions--single {
    gap: 0;
}

.bn-btn-primary,
.bn-btn-primary-light,
.bn-btn-ghost,
.bn-btn-outline {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 30px;
    padding: 9px 20px;
    border: 1px solid transparent;
    cursor: pointer;
    background: none;
}

.bn-btn-primary {
    background-color: #f6e9d4;
    color: #2a1b12;
    border-color: #f6e9d4;
}

.bn-btn-primary-light {
    background-color: transparent;
    color: #f6e9d4;
    border-color: #f6e9d4;
}

.bn-btn-ghost {
    border-color: #f6e9d4;
    color: #f6e9d4;
}

.bn-btn-outline {
    border-color: #f6e9d4;
    color: #f6e9d4;
    background-color: transparent;
}

.bn-btn-primary:hover,
.bn-btn-primary-light:hover,
.bn-btn-ghost:hover,
.bn-btn-outline:hover {
    opacity: 0.9;
}

/* Hero grid visuals */
.bn-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
    gap: 12px;
    max-width: 520px;
    margin-left: auto;
}

.bn-hero-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.bn-hero-card-one {
    background: linear-gradient(135deg, #4a2818, #7a4b30);
    color: #f3eee6;
    grid-column: 1 / 3;
}

.bn-hero-card-two {
    background: #6b4129;
}

.bn-hero-card-three {
    background: #835238;
}

.bn-hero-caption {
    position: absolute;
    left: 16px;
    bottom: 14px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #fbead4;
}

.bn-hero-card-two .bn-hero-caption,
.bn-hero-card-three .bn-hero-caption {
    color: #fbead4;
}

/* Category panels */
.bn-panels-grid {
    background: #21150f;
}

.bn-panels-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 32px 20px 20px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.bn-panel {
    border-bottom: 1px solid #3b271b;
    background: #2f1f16;
    border-radius: 10px;
}

.bn-panel-alt {
    background: #382318;
}

.bn-panel-sale {
    background: #140c08;
    color: #f6e9d4;
}

.bn-panel-inner {
    padding: 20px 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    animation: bn-panel-fade 0.8s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

/* Appointment-style banner */
.bn-appointment {
    position: relative;
    background: #140c08;
    color: #f6e9d4;
    min-height: 340px;
    padding: 60px 0;
    overflow: hidden;
}

.bn-appointment::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("book.webp");
    background-size: cover;
    background-position: center;
    opacity: 0.55;
}

.bn-appointment::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, 0.55) 70%);
}

.bn-appointment-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 24px 20px 10px;
}

.bn-appointment-inner h2 {
    font-size: 26px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.bn-appointment-inner p {
    font-size: 14px;
    line-height: 1.6;
    color: #f6e9d4;
    max-width: 520px;
    margin: 0 auto 22px;
}

.bn-appointment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    border-radius: 999px;
    background-color: #d0b082;
    color: #2a1b12;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.bn-appointment-btn:hover {
    background-color: #e0c495;
    transform: translateY(-1px);
}


.bn-panel-text h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.bn-panel-text p {
    font-size: 14px;
    color: #e2d0ba;
    max-width: 460px;
}

.bn-panel-sale .bn-panel-text p {
    color: #f6e9d4;
}

.bn-panel-tag span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #f6e9d4;
}

.bn-link-underline {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border-bottom: 1px solid #f6e9d4;
    padding-bottom: 2px;
}

/* Simple appearance animation for panels */
@keyframes bn-panel-fade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bn-panel-sale .bn-link-underline {
    border-color: #f6e9d4;
}

/* Generic sections */
.bn-section {
    padding: 40px 20px 50px;
    background-color: #21150f;
}

.bn-section-muted {
    background-color: #2f1f16;
}

.bn-section-header {
    max-width: 1350px;
    margin: 0 auto 24px;
}

.bn-section-header h2 {
    font-size: 22px;
    margin-bottom: 4px;
}

.bn-section-header p {
    font-size: 14px;
    color: #e2d0ba;
    max-width: 580px;
}

/* Centered title + intro (e.g. Shop the collection on home) */
.bn-section-header--center {
    text-align: center;
}

.bn-section-header--center p {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Inner CMS pages (page.php) ---------- */
.bn-inner-page {
    background: #21150f;
    padding: 0 0 56px;
    min-height: 48vh;
}

/* Blog list (/blogs): safed neeche wala hissa — filters hata diye */
.bn-blogs-archive {
    background: #ffffff;
}

.bn-blogs-archive .bn-inner-page__wrap {
    padding: 28px 20px 48px;
}

.bn-blogs-archive__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 24px;
}

.bn-blogs-archive__card {
    background: #ffffff;
    border: 1px solid rgba(61, 40, 28, 0.12);
    box-shadow: 0 2px 12px rgba(44, 32, 24, 0.06);
}

.bn-blogs-archive__thumb-link {
    display: block;
    line-height: 0;
}

.bn-blogs-archive__thumb-link .bn-card-img,
.bn-blogs-archive__thumb-link .bn-card-image {
    display: block;
    width: 100%;
}

/* Image ke neeche: halka half-white panel (title / excerpt) */
.bn-blogs-archive__card-body {
    background: #f5f3ef;
    padding: 16px 16px 18px;
    margin-top: 0;
    border-top: 1px solid rgba(61, 40, 28, 0.08);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bn-blogs-archive__datetime {
    display: block;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: #7a6c62;
    margin: 0 0 8px;
}

.bn-blogs-archive__card .bn-card-body h3 {
    color: #2c1810;
    margin-top: 0;
}

.bn-blogs-archive__excerpt {
    font-size: 13px;
    color: #5c4030;
    margin: 0 0 10px;
}

.bn-blogs-archive__card .bn-card-tag {
    color: #6b5346;
}

.bn-blogs-archive .bn-btn-outline {
    border-color: #6b4423;
    color: #6b4423;
}

.bn-blogs-archive .bn-btn-outline:hover {
    background: rgba(107, 68, 35, 0.08);
    opacity: 1;
}

.bn-blogs-archive__empty {
    text-align: center;
    color: #5c4030;
    margin: 24px 0;
}

@media (max-width: 900px) {
    .bn-blogs-archive__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .bn-blogs-archive__grid {
        grid-template-columns: 1fr;
    }
}

/* Single blog: left = image + article + comments, right = more posts */
.bn-blog-detail {
    background: #ffffff;
}

.bn-blog-detail-bleed {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.bn-blog-detail-bleed__inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 28px 20px 48px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px 40px;
    align-items: start;
}

.bn-blog-detail-bleed__inner--sidebar {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
}

.bn-blog-detail__back {
    margin: 0 0 16px;
}

.bn-blog-detail__hero {
    margin: 0 0 24px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(61, 40, 28, 0.12);
    line-height: 0;
    background: #f0ebe4;
}

.bn-blog-detail__hero img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.bn-blog-detail .bn-blog-detail__article {
    color: #3d2817;
    line-height: 1.75;
}

.bn-blog-detail .bn-blog-detail__article a {
    color: #6b4423;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bn-blog-detail .bn-blog-detail__article a:hover {
    color: #2c1810;
}

.bn-blog-detail__comments {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(61, 40, 28, 0.12);
}

.bn-blog-detail__comments-title {
    font-size: 1.15rem;
    color: #2c1810;
    margin: 0 0 16px;
}

.bn-blog-detail__msg {
    color: #5c4030;
    margin: 0 0 16px;
}

.bn-blog-detail__comment {
    margin-bottom: 14px;
    padding: 14px 16px;
    background: #f5f3ef;
    border-radius: 8px;
    border: 1px solid rgba(61, 40, 28, 0.08);
    color: #3d2817;
    font-size: 14px;
}

.bn-blog-detail__comment-meta {
    color: #7a6c62;
    font-size: 12px;
}

.bn-blog-detail__comment-body {
    margin: 8px 0 0;
}

.bn-blog-detail__form-title {
    font-size: 15px;
    margin: 24px 0 12px;
    color: #2c1810;
}

.bn-blog-detail__form {
    display: grid;
    gap: 10px;
    max-width: 480px;
}

.bn-blog-detail__form input,
.bn-blog-detail__form textarea {
    padding: 0.55rem 0.65rem;
    border-radius: 6px;
    border: 1px solid rgba(61, 40, 28, 0.22);
    font-size: 14px;
    font-family: inherit;
}

.bn-blog-detail__sidebar {
    position: sticky;
    top: 88px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(61, 40, 28, 0.14);
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 4px 20px rgba(44, 32, 24, 0.06);
}

.bn-blog-detail__sidebar-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #5c4030;
    margin: 0 0 14px;
}

.bn-blog-detail__sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bn-blog-detail__sidebar-link {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(61, 40, 28, 0.1);
    color: #3d2817;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s ease;
}

.bn-blog-detail__sidebar-list li:last-child .bn-blog-detail__sidebar-link {
    border-bottom: none;
    padding-bottom: 0;
}

.bn-blog-detail__sidebar-link:hover {
    color: #6b4423;
}

.bn-blog-detail__sidebar-link img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.bn-blog-detail__sidebar-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.bn-blog-detail__sidebar-heading {
    font-weight: 600;
    line-height: 1.35;
}

.bn-blog-detail__sidebar-date {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a7a6e;
}

@media (max-width: 900px) {
    .bn-blog-detail-bleed__inner--sidebar {
        grid-template-columns: 1fr;
    }

    .bn-blog-detail__sidebar {
        position: static;
    }
}

/* Full width sub-banner (title strip + optional hero image) — edge to edge */
.bn-inner-page__subbanner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #2f241c 0%, #21150f 55%, #1a120d 100%);
    border-bottom: 1px solid #3b271b;
    box-sizing: border-box;
}

.bn-inner-page__subbanner-media {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    line-height: 0;
    overflow: hidden;
}

.bn-inner-page__subbanner-media img {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 180px;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Home jaisa content width: .bn-hero-inner / .bn-section-header / .bn-grid = 1350px */
.bn-inner-page__subbanner-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 48px 24px 48px;
    box-sizing: border-box;
    /* Breadcrumb + optional lead (bada H1 yahan nahi) */
    text-align: center;
}

/* Lead paragraph ki max-width ke saath bhi center align */
.bn-inner-page__subbanner-inner .bn-inner-page__lead {
    margin-left: auto;
    margin-right: auto;
}

/* Product category detail — subbanner ke niche: prev | Back to collection | next (Heritage-style strip) */
.bn-collection-nav {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.bn-collection-nav__inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 14px 20px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 16px 24px;
    align-items: center;
}

.bn-collection-nav__cell {
    min-width: 0;
}

.bn-collection-nav__cell--prev {
    text-align: left;
}

.bn-collection-nav__cell--center {
    text-align: center;
}

.bn-collection-nav__cell--next {
    text-align: right;
}

.bn-collection-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4a3628;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bn-collection-nav__link:hover {
    color: #2c1810;
}

.bn-collection-nav__link--prev {
    justify-content: flex-start;
}

.bn-collection-nav__link--next {
    justify-content: flex-end;
    flex-direction: row;
}

.bn-collection-nav__arrow {
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 300;
    color: #6b5346;
    flex-shrink: 0;
}

.bn-collection-nav__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bn-collection-nav__back {
    display: inline-block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5c4030;
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid rgba(61, 40, 28, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bn-collection-nav__back:hover {
    color: #2c1810;
    border-color: rgba(61, 40, 28, 0.35);
    background: #fff;
}

.bn-collection-nav__spacer {
    display: block;
    min-height: 1.2em;
}

@media (max-width: 700px) {
    .bn-collection-nav__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 16px 16px;
    }

    .bn-collection-nav__cell--prev,
    .bn-collection-nav__cell--next {
        text-align: center;
    }

    .bn-collection-nav__link--prev,
    .bn-collection-nav__link--next {
        justify-content: center;
        white-space: normal;
    }

    .bn-collection-nav__text {
        white-space: normal;
        text-align: center;
    }

    .bn-collection-nav__cell--center {
        order: -1;
    }
}

.bn-inner-page__wrap {
    max-width: 1350px;
    margin: 0 auto;
    /* padding: 28px 20px 0; */
    box-sizing: border-box;
}

.bn-inner-page__head {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.bn-inner-page__crumb {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b5a99a;
    margin: 0 0 12px;
}

.bn-inner-page__crumb a {
    color: #e2d0ba;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.bn-inner-page__crumb a:hover {
    color: #f6e9d4;
    border-bottom-color: #c7a882;
}

.bn-inner-page__title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 600;
    line-height: 1.2;
    color: #f6e9d4;
    margin: 0 0 12px;
    letter-spacing: 0.02em;
}

.bn-inner-page__lead {
    font-size: 15px;
    line-height: 1.55;
    color: #d4c4b0;
    margin: 0;
    max-width: 52ch;
}

.bn-inner-page__gallery {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

.bn-inner-page__figure {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #3b271b;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.bn-inner-page__figure img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

/* HTML content from admin — readable typography */
.bn-prose {
    color: #e8dfd2;
    font-size: 16px;
    line-height: 1.75;
}

.bn-prose p {
    margin: 0 0 1em;
}

.bn-prose h2,
.bn-prose h3,
.bn-prose h4 {
    font-family: Georgia, "Times New Roman", serif;
    color: #f6e9d4;
    margin: 1.35em 0 0.5em;
    line-height: 1.3;
}

.bn-prose h2 { font-size: 1.45rem; }
.bn-prose h3 { font-size: 1.2rem; }
.bn-prose h4 { font-size: 1.05rem; }

.bn-prose a {
    color: #e8c9a0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bn-prose a:hover {
    color: #f6e9d4;
}

.bn-prose ul,
.bn-prose ol {
    margin: 0 0 1em 1.2em;
    padding: 0;
}

.bn-prose li {
    margin-bottom: 0.35em;
}

.bn-prose blockquote {
    margin: 1.25em 0;
    padding: 12px 18px;
    border-left: 3px solid #8b6b4a;
    background: rgba(255, 255, 255, 0.04);
    color: #e2d0ba;
    font-style: italic;
}

.bn-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1em 0;
}

.bn-grid {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.bn-card {
    background-color: #2f1f16;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e6e0d7;
    display: flex;
    flex-direction: column;
}

/* CMS page par product listing cards — poora card clickable */
a.bn-card-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

a.bn-card-link:hover .bn-card-body h3 {
    color: #e8c9a0;
}

/* CMS page: Display on page se aayi listings */
.bn-inner-page__listings {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* CMS pages (e.g. /new-in): product list — har row mein 3 card (home / blogs grid alag) */
.bn-inner-page__listings .bn-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 24px;
}

/* Home (#products): 4 columns — CMS listing pages 3 hi rehte hain */
.bn-inner-page__listings .bn-home-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 20px;
}

/* CMS listing cards: product image area — fixed height; img/video dono isi box mein (image jaisa) */
.bn-inner-page__listings .bn-card-image {
    height: 500px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    /* generic .bn-card-image stripy bg override — product photo/video ke saath solid */
    background: #2f1f16;
}

.bn-inner-page__listings .bn-card-image img,
.bn-inner-page__listings .bn-card-image .bn-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* CMS page product grid (e.g. /new-in): product name + price center */
.bn-inner-page__listings .bn-card-body {
    text-align: center;
}

/* Listings band: safed panel (poori width) */
.bn-inner-page__listings-bleed {
    width: 100vw;
    max-width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
    /* margin-top: 40px; */
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.bn-inner-page__listings-row--bleed-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 36px 20px 48px;
    box-sizing: border-box;
    background: transparent;
    border: none;
    border-radius: 0;
}

.bn-inner-page__listings-row--with-sidebar {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 28px 32px;
    align-items: start;
}

.bn-inner-page__page-listing-sidebar {
    position: sticky;
    top: 24px;
    padding-right: 8px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
}

.bn-inner-page__listings-main {
    min-width: 0;
}

/* Listing left column: Menus manager — safed panel par dark type */
.bn-listing-sidebar-nav {
    margin: 0;
    --bn-side-text: #3d2817;
    --bn-side-muted: #5c4030;
    --bn-side-line: rgba(61, 40, 28, 0.18);
}

.bn-listing-sidebar-nav__heading {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bn-side-muted);
    margin: 0 0 14px;
    font-weight: 600;
}

.bn-listing-sidebar-nav__root {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bn-listing-sidebar-nav__item {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--bn-side-line);
}

.bn-listing-sidebar-nav__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 12px 4px 12px 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--bn-side-text);
    text-align: left;
}

.bn-listing-sidebar-nav__toggle:hover {
    color: #2a1c14;
}

.bn-listing-sidebar-nav__toggle-text {
    flex: 1;
    min-width: 0;
}

/* Chevron: band = neeche, khula = upar */
.bn-listing-sidebar-nav__chevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bn-side-muted);
}

.bn-listing-sidebar-nav__chevron::before {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.2s ease, margin-top 0.2s ease;
}

.bn-listing-sidebar-nav__toggle.is-open .bn-listing-sidebar-nav__chevron::before {
    transform: rotate(-135deg);
    margin-top: 2px;
}

.bn-listing-sidebar-nav__link {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--bn-side-text);
    text-decoration: none;
    padding: 12px 4px 12px 0;
}

.bn-listing-sidebar-nav__link:hover {
    color: #6b4423;
}

.bn-listing-sidebar-nav__link--sale {
    color: #b03030;
}

.bn-listing-sidebar-nav__link--sale:hover {
    color: #8a2222;
}

.bn-listing-sidebar-nav__sub {
    list-style: none;
    margin: 0;
    padding: 0 0 12px 14px;
    border-left: 2px solid rgba(61, 40, 28, 0.18);
}

.bn-listing-sidebar-nav__sub[hidden] {
    display: none !important;
}

.bn-listing-sidebar-nav__sub li {
    margin: 0 0 6px;
}

.bn-listing-sidebar-nav__sub li:last-child {
    margin-bottom: 0;
}

.bn-listing-sidebar-nav__sublink {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--bn-side-muted);
    text-decoration: none;
    padding: 4px 0;
}

.bn-listing-sidebar-nav__sublink:hover {
    color: #3d2817;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bn-inner-page__listings-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    /* Safed listings band par warm bronze — header/body gradient ke saath harmony */
    color: #8b5a2b;
    margin: 0 0 22px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .bn-inner-page__listings-row--with-sidebar {
        grid-template-columns: 1fr;
    }

    .bn-inner-page__page-listing-sidebar {
        position: static;
        max-height: none;
        padding-right: 0;
        padding-bottom: 16px;
        margin-bottom: 8px;
        border-bottom: 1px solid rgba(61, 40, 28, 0.12);
    }

    .bn-inner-page__listings-bleed {
        background: #ffffff;
    }
}

/* listing-details.php — product category: safed band */
.bn-product-category-bleed {
    width: 100vw;
    max-width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.bn-product-category-bleed__inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 32px 20px 56px;
    box-sizing: border-box;
}

/* Product detail: left = main image + thumbnails, right = specs + description */
.bn-listing-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 32px 44px;
    align-items: start;
}

.bn-listing-product-gallery {
    position: sticky;
    top: 88px;
    align-self: start;
}

.bn-listing-product-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* "New" badge — top-left corner of main product image (not in the price row) */
.bn-listing-product-main__corner-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

.bn-listing-product-main img {
    width: 100%;
    height: auto;
    max-height: min(560px, 70vh);
    object-fit: contain;
    object-position: center;
    display: block;
    vertical-align: middle;
}

.bn-listing-product-main--empty {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
}

.bn-listing-product-main__placeholder {
    font-size: 14px;
    color: #888;
}

.bn-listing-product-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

/* Ek se zyada hero videos — same frame, beech mein gap */
.bn-listing-product-hero-videos {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    margin-bottom: 18px;
}

/* Video: wahi light frame + border jo main product image (.bn-listing-product-main) par hai */
.bn-listing-product-main video.bn-listing-product-video {
    width: 100%;
    height: auto;
    max-height: min(560px, 70vh);
    object-fit: contain;
    object-position: center;
    display: block;
    vertical-align: middle;
}

.bn-listing-product-thumb {
    padding: 0;
    margin: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    line-height: 0;
    transition: border-color 0.15s ease;
}

.bn-listing-product-thumb:hover {
    border-color: rgba(61, 40, 28, 0.35);
}

.bn-listing-product-thumb.is-active {
    border-color: #6b4423;
    box-shadow: 0 0 0 1px rgba(107, 68, 35, 0.25);
}

.bn-listing-product-thumb img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    display: block;
}

.bn-listing-product-info__title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 600;
    color: #2c1810;
    margin: 0 0 18px;
    line-height: 1.25;
}

.bn-listing-product-info__card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 28px 24px 32px;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.05);
}

.bn-listing-product-info__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px 16px;
    margin-bottom: 0;
}

/* ₹… INR — left aligned (regular price first, then discount) */
.bn-listing-product-info__inr-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 14px;
    flex: 0 1 auto;
    min-width: 0;
    justify-content: flex-start;
}

.bn-listing-product-info__inr-line .bn-listing-product-info__price {
    margin: 0;
    white-space: nowrap;
}

/* In stock / left stock — always directly under price (not beside it) */
.bn-listing-product-info__stock-below {
    margin: 8px 0 14px;
}

.bn-listing-product-info__stock--left {
    color: #1d6b35;
}

/* Rs prefix before numeric prices on PDP + cards */
.bn-currency {
    font-weight: 600;
    margin-right: 0.15em;
    font-size: 0.92em;
    vertical-align: baseline;
}

.bn-listing-product-info__price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c1810;
    margin: 0;
}

.bn-listing-product-info__price--current {
    font-size: 1.65rem;
    color: #a62828;
}

.bn-listing-product-info__price--was {
    font-size: 1rem;
    font-weight: 500;
    color: #8a7a72;
    text-decoration: line-through;
}

.bn-listing-product-info__badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4em 0.7em;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.bn-listing-product-info__badge--sale {
    background: #fee2e2;
    color: #991b1b;
}

.bn-listing-product-info__badge--new {
    background: #dcfce7;
    color: #166534;
}

.bn-listing-product-info__badge--offer {
    background: #fef3c7;
    color: #92400e;
}

.bn-listing-product-info__stock {
    font-size: 13px;
    color: #1d6b35;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.bn-listing-product-info__stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
}

/* Out of stock + left stock 0 — red (not green dot row) */
.bn-listing-product-info__stock--out {
    color: #b91c1c;
    font-weight: 700;
}

.bn-listing-product-info__fineprint {
    font-size: 12px;
    line-height: 1.5;
    color: #6b5c52;
    margin: 0 0 18px;
}

.bn-product-category-page .bn-listing-meta--pdp {
    display: block;
    margin-bottom: 18px;
}

.bn-product-category-page .bn-listing-meta--pdp li {
    margin-bottom: 8px;
}

.bn-listing-product-features {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.bn-listing-product-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #3d2817;
}

.bn-listing-product-features__star {
    color: #a67c00;
    font-size: 1rem;
    line-height: 1.45;
    flex-shrink: 0;
}

.bn-listing-product-info__cta {
    margin: 4px 0 24px;
}

/* Enquiry + WhatsApp ek row — staggered entrance */
.bn-listing-product-info__cta--dual {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
}

.bn-listing-product-info__cta--dual .bn-listing-product-btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 140px;
    width: auto;
}

.bn-listing-product-info__cta--single .bn-listing-product-btn {
    width: 100%;
}

@keyframes bnCtaBtnIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bn-listing-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease;
    animation: bnCtaBtnIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.bn-listing-product-info__cta--dual .bn-listing-product-btn:nth-child(1) {
    animation-delay: 0.06s;
}

.bn-listing-product-info__cta--dual .bn-listing-product-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.bn-listing-product-btn--enquiry {
    background: #1a120d;
    color: #fff;
    box-shadow: 0 2px 8px rgba(26, 18, 13, 0.25);
}

.bn-listing-product-btn--enquiry:hover {
    background: #2f241c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26, 18, 13, 0.35);
}

.bn-listing-product-btn--enquiry:active {
    transform: translateY(0);
}

.bn-listing-product-btn--whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}

.bn-listing-product-btn--whatsapp:hover {
    background: #1ebe57;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.bn-listing-product-btn--whatsapp:active {
    transform: translateY(0);
}

.bn-listing-product-btn__wa-ico {
    display: inline-flex;
    flex-shrink: 0;
}

.bn-listing-product-btn__wa-ico svg {
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .bn-listing-product-btn {
        animation: none;
    }

    .bn-listing-product-btn--enquiry:hover,
    .bn-listing-product-btn--whatsapp:hover {
        transform: none;
    }
}

.bn-listing-product-info__description {
    margin-top: 4px;
}

.bn-listing-floors--below-product {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Product detail neeche: 4 random products ek row (chhoti screen par 2 / 1) */
.bn-pdp-random-strip {
    width: 100%;
    padding-top: 36px;
    margin-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bn-listing-detail--with-sidebar .bn-pdp-random-strip {
    grid-column: 1 / -1;
}

.bn-pdp-random-strip__title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    color: #3d2817;
    margin: 0 0 22px;
    text-align: center;
}

/* Horizontal carousel + left/right nav */
.bn-pdp-random-strip__carousel {
    position: relative;
    padding: 0 52px;
    margin: 0 auto;
    max-width: 100%;
}

.bn-pdp-random-strip__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.bn-pdp-random-strip__viewport::-webkit-scrollbar {
    display: none;
}

.bn-pdp-random-strip__track {
    display: flex;
    gap: 18px;
    padding: 4px 0 12px;
}

.bn-pdp-random-strip__card {
    flex: 0 0 calc(25% - 13.5px);
    max-width: calc(25% - 13.5px);
    scroll-snap-align: start;
}

.bn-pdp-random-strip__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(61, 40, 28, 0.22);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 12px rgba(44, 32, 24, 0.12);
    cursor: pointer;
    font-size: 1.65rem;
    line-height: 1;
    color: #3d2817;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition:
        background 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.bn-pdp-random-strip__nav:hover:not(:disabled) {
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(44, 32, 24, 0.18);
}

.bn-pdp-random-strip__nav:disabled {
    opacity: 0.32;
    cursor: not-allowed;
}

.bn-pdp-random-strip__nav--prev {
    left: 4px;
}

.bn-pdp-random-strip__nav--next {
    right: 4px;
}

.bn-pdp-random-strip__card {
    background: #ffffff;
    border: 1px solid rgba(61, 40, 28, 0.12);
    box-shadow: 0 2px 12px rgba(44, 32, 24, 0.06);
}

.bn-pdp-random-strip__card a.bn-card-link:hover .bn-card-body h3 {
    color: #6b4423;
}

.bn-pdp-random-strip__card .bn-card-body {
    color: #3d2817;
    text-align: center;
}

.bn-pdp-random-strip__card .bn-card-body h3 {
    color: #2c1810;
}

.bn-pdp-random-strip__card .bn-card-price {
    color: #5c4030;
}

/* Do classes: .bn-card-image baad mein 170px deta hai — yahan zyada specificity se 400px lock */
.bn-card-image.bn-pdp-random-strip__card-img {
    height: 400px;
    min-height: 400px;
    overflow: hidden;
    background: #f0ebe4;
    position: relative;
}

.bn-card-image.bn-pdp-random-strip__card-img img,
.bn-card-image.bn-pdp-random-strip__card-img .bn-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 900px) {
    .bn-pdp-random-strip__card {
        flex: 0 0 calc(50% - 9px);
        max-width: calc(50% - 9px);
    }
}

@media (max-width: 500px) {
    .bn-pdp-random-strip__carousel {
        padding: 0 44px;
    }

    .bn-pdp-random-strip__card {
        flex: 0 0 85%;
        max-width: 85%;
    }
}

.bn-listing-detail.bn-listing-detail--with-sidebar .bn-product-category-bleed__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px 32px;
    align-items: start;
}

.bn-inner-page__crumb-label {
    color: #b5a99a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.92em;
}

/* Meta + tags: dark brown on light panel */
.bn-product-category-page .bn-listing-meta {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 14px;
    color: #4a3a32;
}

.bn-product-category-page .bn-listing-meta strong {
    color: #3d2817;
    font-weight: 600;
    margin-right: 6px;
}

.bn-product-category-page .bn-listing-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.bn-product-category-page .bn-listing-amenity-tag {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(61, 40, 28, 0.2);
    color: #3d2817;
}

.bn-product-category-page .bn-listing-subhead {
    font-size: 1.35rem;
    font-family: Georgia, "Times New Roman", serif;
    color: #3d2817;
    margin: 28px 0 16px;
}

/* HTML content from admin — readable on light background */
.bn-product-category-body.bn-prose {
    color: #3d2817;
}

.bn-product-category-body.bn-prose h2,
.bn-product-category-body.bn-prose h3,
.bn-product-category-body.bn-prose h4 {
    color: #2c1810;
}

.bn-product-category-body.bn-prose a {
    color: #6b4423;
}

.bn-product-category-body.bn-prose a:hover {
    color: #3d2618;
}

.bn-product-category-body.bn-prose ul,
.bn-product-category-body.bn-prose ol {
    color: #4a3a32;
}

.bn-product-category-page .bn-inner-page__figure {
    border-color: rgba(61, 40, 28, 0.2);
    box-shadow: 0 8px 24px rgba(44, 32, 24, 0.12);
}

.bn-listing-sidebar {
    position: sticky;
    top: 24px;
    background: #2f1f16;
    border: 1px solid #3b271b;
    border-radius: 10px;
    padding: 16px;
}

.bn-product-category-page .bn-listing-sidebar {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(61, 40, 28, 0.16);
    box-shadow: 0 4px 20px rgba(44, 32, 24, 0.08);
}

.bn-listing-sidebar__title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #b5a99a;
    margin: 0 0 14px;
}

.bn-product-category-page .bn-listing-sidebar__title {
    color: #5c4030;
}

.bn-listing-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bn-listing-sidebar__link {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #3b271b;
    color: #e2d0ba;
    text-decoration: none;
    font-size: 14px;
}

.bn-product-category-page .bn-listing-sidebar__link {
    color: #3d2817;
    border-bottom-color: rgba(61, 40, 28, 0.12);
}

.bn-listing-sidebar__list li:last-child .bn-listing-sidebar__link {
    border-bottom: none;
}

.bn-listing-sidebar__link img,
.bn-listing-sidebar__link .bn-listing-sidebar__thumb-video {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.bn-listing-sidebar__link:hover {
    color: #f6e9d4;
}

.bn-product-category-page .bn-listing-sidebar__link:hover {
    color: #2a1c14;
}

@media (max-width: 900px) {
    .bn-listing-detail.bn-listing-detail--with-sidebar .bn-product-category-bleed__inner {
        grid-template-columns: 1fr;
    }
    .bn-listing-sidebar {
        position: static;
    }

    .bn-listing-product-layout {
        grid-template-columns: 1fr;
    }

    .bn-listing-product-gallery {
        position: static;
    }

    .bn-listing-product-main img,
    .bn-listing-product-main video.bn-listing-product-video {
        max-height: 420px;
    }
}

.bn-card-image {
    height: 170px;
    background: repeating-linear-gradient(
        135deg,
        #5b3b29,
        #5b3b29 6px,
        #3c261a 6px,
        #3c261a 12px
    );
}

.bn-card-image-mug {
    background: radial-gradient(circle at 30% 30%, #6b4129, #2a1b12);
}

.bn-card-image-tea {
    background: repeating-linear-gradient(90deg, #5b3b29, #5b3b29 10px, #2a1b12 10px, #2a1b12 20px);
}

.bn-card-image-tee {
    background: linear-gradient(135deg, #4a2818, #7a4b30);
}

.bn-card-image-wallpaper {
    background: radial-gradient(circle, #6b4129 0, #2a1b12 60%);
}

.bn-card-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bn-card-tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #e2d0ba;
}

.bn-card h3 {
    font-size: 15px;
}

.bn-card-price {
    font-size: 14px;
    font-weight: 600;
    margin-top: 2px;
}

/* About / footer columns */
.bn-section-columns {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 24px;
}

.bn-column h3,
.bn-column h4 {
    margin-bottom: 8px;
}

.bn-column p {
    font-size: 14px;
    color: #e2d0ba;
    margin-bottom: 10px;
}

.bn-footer-links {
    list-style: none;
    font-size: 13px;
}

.bn-footer-links li + li {
    margin-top: 4px;
}

.bn-footer-links a:hover {
    text-decoration: underline;
}

.bn-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.bn-newsletter-form input[type="email"] {
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid #c4b9ad;
    font-size: 13px;
}

/* Trust bar — page content ke baad, About/Newsletter columns se pehle */
.bn-trust-strip {
    background: linear-gradient(180deg, #2a1c14 0%, #1e140e 100%);
    border-top: 1px solid rgba(201, 166, 107, 0.18);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 28px 20px 32px;
}

.bn-trust-strip__inner {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 24px;
    align-items: start;
}

.bn-trust-strip__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    min-width: 0;
}

.bn-trust-strip__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 166, 107, 0.1);
    border: 1px solid rgba(201, 166, 107, 0.28);
    color: #d4b896;
}

.bn-trust-strip__body {
    min-width: 0;
}

.bn-trust-strip__title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f2ebe3;
    margin: 0 0 6px;
    line-height: 1.3;
}

.bn-trust-strip__text {
    font-size: 13px;
    line-height: 1.45;
    color: #c4b5a8;
    margin: 0;
}

@media (max-width: 1024px) {
    .bn-trust-strip__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .bn-trust-strip__inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

.bn-footer {
    border-top: 1px solid #140c08;
    background-color: #140c08;
}

.bn-footer-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 16px 20px 20px;
    font-size: 12px;
    color: #e2d0ba;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Instagram strip above footer */
.bn-insta-strip {
    background-color: #21150f;
    border-top: 1px solid #140c08;
    border-bottom: 1px solid #140c08;
    padding: 20px 0 24px;
}

/* One row + horizontal sliding strip (marquee) */
.bn-insta-strip__inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.bn-insta-strip__title {
    margin: 0 0 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 18px;
    color: #e2d0ba;
}

.bn-insta-carousel {
    position: relative;
    width: 100%;
}

.bn-insta-carousel__viewport {
    overflow: hidden;
    width: 100%;
    /* mask optional — edges soft; keep sharp for simplicity */
}

.bn-insta-carousel__track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 12px;
    width: max-content;
    animation: bn-insta-carousel-slide 42s linear infinite;
}

.bn-insta-carousel:hover .bn-insta-carousel__track {
    animation-play-state: paused;
}

/* Kam slides par animation band — ek row center */
.bn-insta-carousel--static .bn-insta-carousel__track {
    animation: none;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: nowrap;
}

.bn-insta-carousel__item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    flex: 0 0 200px;
    width: 200px;
    max-width: calc(25vw - 12px);
    transition: transform 0.25s ease;
}

.bn-insta-carousel__item:hover {
    transform: scale(1.04);
}

.bn-insta-carousel__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}

@media (max-width: 600px) {
    .bn-insta-carousel__item {
        flex: 0 0 150px;
        width: 150px;
        max-width: 42vw;
    }

    .bn-insta-carousel__track {
        animation-duration: 32s;
    }
}

@keyframes bn-insta-carousel-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .bn-insta-carousel__track {
        animation: none;
    }

    .bn-insta-carousel:not(.bn-insta-carousel--static) .bn-insta-carousel__track {
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
    }

    .bn-insta-carousel__item {
        scroll-snap-align: start;
    }
}

.bn-insta-feed-fallback {
    text-align: center;
    padding: 20px 12px;
    color: #e2d0ba;
}

.bn-insta-feed-fallback p {
    margin: 0 0 10px;
}

.bn-insta-feed-fallback__link {
    color: #c9a87c;
    text-decoration: underline;
}

.bn-insta-header {
    max-width: 1350px;
    margin: 0 auto 10px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 13px;
}

.bn-insta-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #e2d0ba;
}

.bn-insta-handle {
    font-size: 13px;
    letter-spacing: 0.06em;
    color: #f6e9d4;
}

.bn-insta-track-link {
    display: block;
}

.bn-insta-track {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    overflow: hidden;
    animation: bn-insta-scroll 28s linear infinite;
}

.bn-insta-image {
    flex: 0 0 calc(20% - 8px); /* exactly 5 images across */
    width: calc(20% - 8px);
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.bn-insta-dup {
    opacity: 0.9;
}

@keyframes bn-insta-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive tweaks */
@media (max-width: 900px) {
    .bn-home-split__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bn-home-split__media {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    .bn-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .bn-hero-grid {
        order: -1;
    }

    .bn-header-row {
        flex-direction: column;
        align-items: center;
    }

    .bn-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* CMS product list: chhoti screen par 2 column */
    .bn-inner-page__listings .bn-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bn-section-columns {
        grid-template-columns: 1.4fr 1fr;
    }

    .bn-category-tile {
        height: 150px;
    }

    .bn-category-tile span {
        font-size: 12px;
    }

    .bn-panels-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .bn-topbar {
        font-size: 11px;
    }

    /* Header: overlay nav — detail max-width:768px block mein */
    .bn-header-inner {
        padding: 4px 0 0;
    }

    /* Gutter 768 block se inherit — yahan sirf vertical tweak */
    .bn-header-topbar {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .bn-logo-image {
        max-height: 48px;
    }

    .bn-home-split__inner {
        padding-top: 22px;
        padding-bottom: 32px;
    }

    .bn-home-split__title {
        font-size: 24px;
    }

    .bn-hero-inner {
        padding-top: 18px;
        padding-bottom: 24px;
        gap: 24px;
    }

    .bn-hero-text h1 {
        font-size: 20px;
    }

    .bn-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .bn-section-columns {
        grid-template-columns: minmax(0, 1fr);
    }

    .bn-slider-inner {
        padding-inline: 0;
    }

    .bn-category-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    /* --bb-cols desktop rule se override: chhoti screen par 3 column (tile size stable) */
    .bn-category-wrap.bn-category-wrap--dynamic {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bn-category-tile {
        height: 140px;
    }

    .bn-category-tile span {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .bn-panels-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Chhoti screen: ek column (same as baaki .bn-grid) */
    .bn-inner-page__listings .bn-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ========== Mobile / tablet: header drawer + footer + content (single connectivity layout) ========== */
@media (max-width: 768px) {
    :root {
        --bn-mobile-gutter: 16px;
        --bn-mobile-gap: 12px;
        --bn-mobile-nav-pad-y: 14px;
    }

    .bn-nav-toggle {
        display: inline-flex;
    }

    /* Dono taraf barabar gutter + safe area */
    .bn-header-topbar {
        justify-content: flex-start;
        align-items: center;
        padding: 10px max(var(--bn-mobile-gutter), env(safe-area-inset-left)) 10px max(var(--bn-mobile-gutter), env(safe-area-inset-right));
        position: relative;
        z-index: 60;
        background: linear-gradient(135deg, #3c2418, #2a1b12);
    }

    /* Logo left — hamburger ke liye right par fixed jagah (gutter + button) */
    .bn-logo {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
        padding-left: 0;
        padding-right: calc(max(var(--bn-mobile-gutter), env(safe-area-inset-right)) + 48px);
    }

    .bn-logo .bn-logo-image,
    .bn-logo .bn-logo-link {
        margin-left: 0;
        margin-right: auto;
    }

    /* Menu strip: full-screen overlay — padding-top = JS --bn-nav-pad-top */
    .bn-header-row {
        position: fixed;
        inset: 0;
        z-index: 50;
        max-width: none;
        margin: 0;
        padding-top: calc(var(--bn-nav-pad-top, 104px) + env(safe-area-inset-top, 0px));
        padding-left: max(var(--bn-mobile-gutter), env(safe-area-inset-left));
        padding-right: max(var(--bn-mobile-gutter), env(safe-area-inset-right));
        padding-bottom: max(28px, env(safe-area-inset-bottom));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: rgba(233, 221, 200, 0.97);
        backdrop-filter: blur(6px);
        align-items: stretch;
        justify-content: flex-start;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.22s ease, visibility 0.28s;
    }

    .bn-header--nav-open .bn-header-row {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .bn-nav {
        width: 100%;
        font-size: 13px;
    }

    .bn-nav > ul {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
        min-width: 0;
    }

    /* Desktop wala li { flex row } yahan bigaad raha tha: row + submenu side-by-side. Column = pehle row, neeche submenu */
    .bn-nav > ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(61, 40, 28, 0.12);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    /* Nav links: horizontal padding 0 — gutter sirf .bn-header-row se (equal dono taraf) */
    .bn-nav > ul > li > a {
        padding: var(--bn-mobile-nav-pad-y) 0;
        border-radius: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .bn-nav > ul > li > a::after,
    .bn-nav__parent-link::after {
        display: none;
    }

    /* Submenu row: full width overlay ke andar, barabar gap — corner bleed nahi */
    .bn-has-sub .bn-nav__row {
        width: 100%;
        margin: 0;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        gap: var(--bn-mobile-gap);
        min-height: 48px;
        box-sizing: border-box;
    }

    .bn-nav__parent-link {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
        padding: var(--bn-mobile-nav-pad-y) 0;
        border-radius: 0;
        width: auto;
    }

    .bn-nav__sub-toggle {
        pointer-events: auto;
        cursor: pointer;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: stretch;
        width: 48px;
        min-width: 48px;
        min-height: 48px;
        padding: 0;
        margin: 0;
        background: rgba(61, 40, 28, 0.1);
        border-radius: 8px;
        border: none;
        color: #5b3b29;
    }

    .bn-nav__sub-toggle:active {
        background: rgba(61, 40, 28, 0.18);
    }

    /*
     * Touch devices par :hover sticky rehta hai — purana rule pointer-events:none
     * submenu links par chhod deta tha jab parent li hover par ho. Mobile par hover band.
     */

    .bn-has-sub .bn-submenu {
        position: static;
        left: auto;
        top: auto;
        min-width: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        box-shadow: none;
        border: none;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.45);
        padding: var(--bn-mobile-gap) 0 var(--bn-mobile-gap) var(--bn-mobile-gap);
        margin: 0 0 4px 0;
        display: none;
    }

    .bn-has-sub.bn-submenu-open > .bn-submenu {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .bn-submenu li a {
        white-space: normal;
        padding: 10px var(--bn-mobile-gap);
        border-radius: 6px;
        pointer-events: auto;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(91, 59, 41, 0.15);
        position: relative;
        z-index: 1;
    }

    /* CMS listing cards: chhoti screen par image height */
    .bn-inner-page__listings .bn-card-image {
        height: min(72vw, 380px);
        min-height: 220px;
    }

    /* Inner page title strip */
    .bn-inner-page__subbanner-inner {
        padding: 28px max(var(--bn-mobile-gutter), env(safe-area-inset-left)) 32px max(var(--bn-mobile-gutter), env(safe-area-inset-right));
    }

    .bn-inner-page__title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        word-wrap: break-word;
    }

    /* Footer columns + trust strip — same gutter as nav */
    .bn-section {
        padding: 28px max(var(--bn-mobile-gutter), env(safe-area-inset-left)) 36px max(var(--bn-mobile-gutter), env(safe-area-inset-right));
    }

    .bn-section-columns {
        gap: var(--bn-mobile-gap);
    }

    .bn-footer-inner {
        padding-left: max(var(--bn-mobile-gutter), env(safe-area-inset-left));
        padding-right: max(var(--bn-mobile-gutter), env(safe-area-inset-right));
        text-align: center;
    }

    .bn-footer-inner code {
        word-break: break-all;
    }

    .bn-newsletter-form .bn-btn-primary {
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .bn-trust-strip {
        padding-left: max(var(--bn-mobile-gutter), env(safe-area-inset-left));
        padding-right: max(var(--bn-mobile-gutter), env(safe-area-inset-right));
    }

    /* Product category bleed */
    .bn-product-category-bleed__inner {
        padding-left: max(var(--bn-mobile-gutter), env(safe-area-inset-left));
        padding-right: max(var(--bn-mobile-gutter), env(safe-area-inset-right));
    }

    .bn-prose img,
    .bn-inner-page__figure img {
        max-width: 100%;
        height: auto;
    }

    .bn-topbar {
        padding-left: max(var(--bn-mobile-gutter), env(safe-area-inset-left));
        padding-right: max(var(--bn-mobile-gutter), env(safe-area-inset-right));
    }

    .bn-inner-page__listings-row--bleed-inner {
        padding-left: max(var(--bn-mobile-gutter), env(safe-area-inset-left));
        padding-right: max(var(--bn-mobile-gutter), env(safe-area-inset-right));
    }

    /* Grids: barabar column / row gap */
    .bn-grid {
        gap: var(--bn-mobile-gap);
    }
}

