:root {
    --bsb-green: #1f4f3a;
    --bsb-green-dark: #153827;
    --bsb-gold: #c59b45;
    --bsb-cream: #f7f1e7;
    --bsb-light: #fafafa;
    --bsb-text: #202020;
    --bsb-muted: #666;
    --bsb-border: #e7e2d8;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--bsb-text);
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.bsb-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

/* Header */

.bsb-topbar {
    background: #06401f;
    color: #fff;
    font-size: 13px;
    padding: 9px 0;
}

.bsb-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.bsb-topbar span,
.bsb-topbar a {
    margin-right: 18px;
    opacity: .95;
}

.bsb-header {
    background: #fff;
    border-bottom: 1px solid #edf0ed;
    position: sticky;
    top: 0;
    z-index: 80;
    box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.bsb-header-main {
    display: grid;
    grid-template-columns: 260px 150px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 5px 0;
}

.bsb-logo a {
    font-size: 28px;
    font-weight: 900;
    color: #06401f;
    letter-spacing: -.5px;
}

/* Keep the custom logo from controlling the header height */
.bsb-logo {
    display: flex;
    align-items: center;
}

.bsb-logo .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.bsb-logo img,
.bsb-logo .custom-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 230px;
    max-height: 82px;
    object-fit: contain;
}

.bsb-category-toggle {
    background: #06401f;
    color: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 13px;
    white-space: nowrap;
    font-weight: 800;
}

.bsb-search form {
    display: flex;
    height: 48px;
    border: 1px solid #e2e7e2;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.bsb-search input[type="search"] {
    flex: 1;
    border: 0;
    padding: 0 18px;
    outline: none;
    font-size: 14px;
}

.bsb-search button,
.bsb-search input[type="submit"] {
    border: 0;
    background: #06401f;
    color: #fff;
    padding: 0 26px;
    font-weight: 800;
}

.bsb-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bsb-request-btn {
    background: #f5a91a;
    color: #07150d;
    border-radius: 12px;
    padding: 14px 22px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.bsb-quote-basket {
    background: #f8f6f0;
    color: #07150d;
    border: 1px solid #ece7dc;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 900;
}

#quoteCount {
    background: #06401f;
    color: #fff;
    border-radius: 999px;
    padding: 3px 7px;
    margin-left: 6px;
    font-size: 11px;
}

.bsb-nav {
    background: #fff;
    border-top: 1px solid #edf0ed;
}

.main-menu {
    display: flex;
    justify-content: center;
    gap: 44px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu a {
    display: block;
    padding: 17px 0;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    color: #07150d;
    position: relative;
}

.main-menu a:hover,
.main-menu .current-menu-item > a {
    color: #06401f;
}

.main-menu .current-menu-item > a::after,
.main-menu a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 3px;
    background: #06401f;
    border-radius: 10px;
}

/* Desktop navigation dropdowns */

.main-menu > li {
    position: relative;
}

.main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 120;

    min-width: 240px;
    margin: 0;
    padding: 10px 0;

    list-style: none;
    background: #fff;
    border: 1px solid #edf0ed;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;
}

.main-menu > li:hover > .sub-menu,
.main-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.main-menu .sub-menu li {
    width: 100%;
}

.main-menu .sub-menu a {
    display: block;
    width: 100%;
    padding: 12px 18px;
    color: #111;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.main-menu .sub-menu a:hover {
    color: #06401f;
    background: #f8f6f0;
}

/* Do not show the main-menu underline inside dropdowns */
.main-menu .sub-menu a::after {
    display: none !important;
}

.bsb-category-panel {
    display: none;
    background: #fff;
    border-top: 1px solid #edf0ed;
    border-bottom: 1px solid #edf0ed;
    box-shadow: 0 18px 35px rgba(0,0,0,.08);
    padding: 22px 0;
}

.bsb-category-panel.active {
    display: block;
}

.bsb-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bsb-category-grid a {
    background: #f8f8f6;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #ecece8;
    font-weight: 800;
}

.bsb-mobile-menu-toggle {
    display: none;
}

/* Premium Hero */

.bsb-hero-premium{
    position:relative;
    min-height:520px;
    overflow:hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(4,36,22,.92) 0%,
            rgba(4,36,22,.82) 38%,
            rgba(4,36,22,.45) 60%,
            rgba(4,36,22,.08) 100%
        ),
        url("../images/hero-bg.jpg");

    background-size:cover;
    background-position:center right;
    background-repeat:no-repeat;
}

.bsb-hero-text {
    max-width: 620px;
    color: #fff;
    padding: 90px 0;
    margin-left: 6%;
}

.bsb-hero-text span {
    color: #f5aa26;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .12em;
}

.bsb-hero-text h1 {
    color: #fff;
    font-size: 40px;
    line-height: 1.02;
    margin: 20px 0 25px;
    font-weight: 900;
}

.bsb-hero-text h1 strong {
    color: #f5aa26;
}

.bsb-hero-text p {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
}

.bsb-hero-inner{
    max-width:1200px;
    margin:0 auto;
    min-height:520px;

    display:flex;
    align-items:center;

    position:relative;
    z-index:2;

    padding:0 40px;
}

.bsb-hero-content{
    width:55%;
    max-width:620px;
}

.bsb-eyebrow{
    display:inline-block;
    color:#f5aa26;
    text-transform:uppercase;
    font-size:13px;
    font-weight:800;
    letter-spacing:.12em;
    margin-bottom:20px;
}

.bsb-hero-content h1{
    color:#fff;
    font-size:64px;
    line-height:1.02;
    margin:0 0 25px;
    font-weight:900;
}

.bsb-hero-content h1 strong{
    color:#f5aa26;
}

.bsb-hero-content p{
    color:#fff;
    font-size:20px;
    line-height:1.6;
    margin-bottom:35px;
}

.bsb-hero-actions{
    display:flex;
    gap:18px;
    margin-bottom:35px;
}

.bsb-primary-btn,
.bsb-secondary-outline{
    padding:17px 30px;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.bsb-primary-btn{
    background:#f5aa26;
    color:#111;
}

.bsb-primary-btn:hover{
    background:#d89316;
}

.bsb-secondary-outline{
    border:2px solid rgba(255,255,255,.45);
    color:#fff;
}

.bsb-secondary-outline:hover{
    background:rgba(255,255,255,.08);
}

.bsb-slider-dots{
    display:flex;
    gap:10px;
}

.bsb-slider-dots span{
    width:10px;
    height:10px;
    background:#fff;
    opacity:.5;
    border-radius:50%;
}

.bsb-slider-dots span.active{
    width:32px;
    border-radius:20px;
    opacity:1;
    background:#f5aa26;
}

/* Temporary until we build the slider */
.bsb-hero-product-strip{
    display:none;
}

.bsb-hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 28px;
}

.bsb-btn-gold,
.bsb-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.bsb-btn-gold {
    background: #f5aa26;
    color: #06170e;
}

.bsb-btn-outline {
    border: 1px solid rgba(255,255,255,.65);
    color: #fff;
}

.bsb-btn-gold:hover {
    background: #d89316;
}

.bsb-btn-outline:hover {
    background: rgba(255,255,255,.1);
}


/* =========================================================
   PREMIUM HERO SLIDER
   ========================================================= */

.bsb-hero-slider {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background: #042416;
    isolation: isolate;
}

.bsb-hero-slides {
    position: relative;
    min-height: 540px;
}

.bsb-hero-slide {
    position: absolute;
    inset: 0;
    min-height: 540px;
    background-image: var(--bsb-hero-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.025);
    pointer-events: none;
    transition:
        opacity .8s ease,
        visibility .8s ease,
        transform 7s ease;
}

.bsb-hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

.bsb-hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(3, 37, 21, .97) 0%,
            rgba(3, 37, 21, .91) 34%,
            rgba(3, 37, 21, .66) 57%,
            rgba(3, 37, 21, .16) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, .16),
            transparent 45%
        );
}

.bsb-hero-slide-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 540px;
    padding-top: 72px;
    padding-bottom: 72px;
}

.bsb-hero-slide-content {
    width: min(650px, 58%);
    color: #fff;
}

.bsb-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #f5aa26;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .13em;
    opacity: 0;
    transform: translateY(20px);
}

.bsb-hero-eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    flex: 0 0 34px;
    background: #f5aa26;
}

.bsb-hero-slide-content h1 {
    max-width: 650px;
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 900;
    line-height: .99;
    letter-spacing: -.035em;
    opacity: 0;
    transform: translateY(24px);
}

.bsb-hero-slide-content h1 strong {
    display: block;
    color: #f5aa26;
    font-weight: 900;
}

.bsb-hero-slide-content p {
    max-width: 520px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.9);
    font-size: 18px;
    line-height: 1.65;
    opacity: 0;
    transform: translateY(24px);
}

.bsb-hero-slide-content .bsb-hero-buttons {
    margin: 0;
    opacity: 0;
    transform: translateY(24px);
}

.bsb-hero-slide.is-active .bsb-hero-eyebrow,
.bsb-hero-slide.is-active .bsb-hero-slide-content h1,
.bsb-hero-slide.is-active .bsb-hero-slide-content p,
.bsb-hero-slide.is-active .bsb-hero-buttons {
    animation: bsbHeroContentIn .7s ease forwards;
}

.bsb-hero-slide.is-active .bsb-hero-slide-content h1 {
    animation-delay: .12s;
}

.bsb-hero-slide.is-active .bsb-hero-slide-content p {
    animation-delay: .22s;
}

.bsb-hero-slide.is-active .bsb-hero-buttons {
    animation-delay: .32s;
}

@keyframes bsbHeroContentIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bsb-hero-slider .bsb-btn-gold,
.bsb-hero-slider .bsb-btn-outline {
    gap: 10px;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 7px;
    transition:
        transform .25s ease,
        background-color .25s ease,
        border-color .25s ease;
}

.bsb-hero-slider .bsb-btn-gold:hover,
.bsb-hero-slider .bsb-btn-outline:hover {
    transform: translateY(-2px);
}

.bsb-hero-slider .bsb-btn-outline {
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(6px);
}

.bsb-hero-navigation {
    position: absolute;
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: 34px;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 14px;
}

.bsb-hero-arrow {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #fff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition:
        background-color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.bsb-hero-arrow:hover,
.bsb-hero-arrow:focus-visible {
    background: #f5aa26;
    color: #07150d;
    border-color: #f5aa26;
    transform: scale(1.05);
    outline: none;
}

.bsb-hero-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.bsb-hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    background: rgba(255,255,255,.45);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition:
        width .3s ease,
        background-color .3s ease;
}

.bsb-hero-dot.is-active {
    width: 32px;
    background: #f5aa26;
}

.bsb-hero-progress {
    position: absolute;
    z-index: 9;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255,255,255,.12);
}

.bsb-hero-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: #f5aa26;
}

.bsb-hero-slider.is-playing .bsb-hero-progress span {
    animation: bsbHeroProgress var(--bsb-slider-interval, 6500ms) linear;
}

@keyframes bsbHeroProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .bsb-hero-slider,
    .bsb-hero-slides,
    .bsb-hero-slide,
    .bsb-hero-slide-inner {
        min-height: 570px;
    }

    .bsb-hero-slide {
        background-position: 64% center;
    }

    .bsb-hero-slide-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3,37,21,.96) 0%,
                rgba(3,37,21,.87) 52%,
                rgba(3,37,21,.45) 100%
            );
    }

    .bsb-hero-slide-content {
        width: min(620px, 78%);
    }

    .bsb-hero-slide-content h1 {
        font-size: clamp(42px, 7vw, 58px);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .bsb-hero-slider,
    .bsb-hero-slides,
    .bsb-hero-slide,
    .bsb-hero-slide-inner {
        min-height: 610px;
    }

    .bsb-hero-slide {
        background-position: 68% center;
    }

    .bsb-hero-slide-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3,37,21,.8) 0%,
                rgba(3,37,21,.91) 54%,
                rgba(3,37,21,.98) 100%
            );
    }

    .bsb-hero-slide-inner {
        align-items: flex-end;
        padding-top: 80px;
        padding-bottom: 105px;
    }

    .bsb-hero-slide-content {
        width: 100%;
    }

    .bsb-hero-eyebrow {
        margin-bottom: 14px;
        font-size: 10px;
    }

    .bsb-hero-slide-content h1 {
        font-size: clamp(38px, 11vw, 50px);
        line-height: 1;
    }

    .bsb-hero-slide-content p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.55;
    }

    .bsb-hero-slider .bsb-hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bsb-hero-slider .bsb-btn-gold,
    .bsb-hero-slider .bsb-btn-outline {
        width: 100%;
    }

    .bsb-hero-navigation {
        right: auto;
        bottom: 35px;
        left: 16px;
        width: calc(100% - 32px);
        justify-content: space-between;
    }

    .bsb-hero-dots {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .bsb-hero-slide,
    .bsb-hero-eyebrow,
    .bsb-hero-slide-content h1,
    .bsb-hero-slide-content p,
    .bsb-hero-buttons,
    .bsb-hero-progress span {
        animation: none !important;
        transition: none !important;
    }
}




/* Sections */

.bsb-section {
    padding: 70px 0;
}

.bsb-section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
}

.bsb-section-heading h2,
.bsb-branding-content h2,
.bsb-newsletter-content h2 {
    font-size: clamp(30px, 4vw, 46px);
    margin: 10px 0;
}

/* Premium Categories */

.bsb-categories {
    background: #fff;
}

.bsb-section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 38px;
}

.bsb-section-heading span {
    display: inline-block;
    color: #c58b16;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 10px;
}

.bsb-section-heading h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    margin: 0;
    color: #111;
}

.bsb-category-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.bsb-category-card {
    position: relative;
    min-height: 210px;
    background: #f7f7f5;
    border: 1px solid #ecece8;
    border-radius: 18px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .25s ease;
}

.bsb-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(0,0,0,.08);
}

.bsb-category-card img {
    position: absolute;
    right: -8px;
    bottom: -8px;
    width: 62%;
    height: 72%;
    object-fit: contain;
    transition: .25s ease;
}

.bsb-category-card:hover img {
    transform: scale(1.04);
}

.bsb-category-card h3 {
    position: relative;
    z-index: 2;
    max-width: 150px;
    font-size: 17px;
    line-height: 1.25;
    margin: 0;
    color: #111;
}

.bsb-category-card p {
    position: relative;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 1px solid #d8ddd8;
    border-radius: 50%;
    font-size: 0;
    background: #fff;
}

.bsb-category-card p::after {
    content: "→";
    font-size: 18px;
    color: #06401f;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium Product Cards */

.products,
.bsb-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.bsb-product-card {
    background: #fff;
    border: 1px solid #ecece8;
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    transition: .25s ease;
}

.bsb-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.bsb-product-image {
    display: block;
    position: relative;
    background: #f7f7f5;
    overflow: hidden;
}

.bsb-product-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding: 18px;
    transition: .25s ease;
}

.bsb-product-card:hover .bsb-product-image img {
    transform: scale(1.04);
}

.bsb-product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #f5a91a;
    color: #07150d;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.bsb-product-body {
    padding: 18px;
}

.bsb-product-body h3 {
    font-size: 16px;
    line-height: 1.25;
    margin: 0 0 8px;
    color: #111;
}

.bsb-product-price,
.bsb-price-request {
    display: block;
    color: #06401f;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 14px;
}

.bsb-product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.bsb-view-btn,
.bsb-add-quote {
    width: 100%;
    text-align: center;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.bsb-view-btn {
    background: #f8f6f0;
    color: #06401f;
    border: 1px solid #ece7dc;
}

.bsb-add-quote {
    background: #06401f;
    color: #fff;
    border: 0;
}

/* Clearance */

.bsb-clearance {
    background: var(--bsb-cream);
}

.bsb-clearance-banner {
    background: var(--bsb-green);
    color: #fff;
    border-radius: 28px;
    padding: 32px;
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Branding */

.bsb-branding-services {
    background: var(--bsb-green);
    color: #fff;
}

.bsb-branding-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: center;
}

.bsb-service-card {
    color: var(--bsb-text);
}

/* Logos / Newsletter */

.bsb-logo-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.bsb-logo-strip div {
    background: var(--bsb-light);
    border: 1px solid var(--bsb-border);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    color: var(--bsb-muted);
}

.bsb-newsletter-box {
    background: var(--bsb-cream);
    border-radius: 30px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.bsb-newsletter-form form {
    display: flex;
}

.bsb-newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--bsb-border);
    border-radius: 999px 0 0 999px;
}

.bsb-newsletter-form button {
    border: 0;
    background: var(--bsb-green);
    color: #fff;
    padding: 0 24px;
    border-radius: 0 999px 999px 0;
}

/* Shop */

.bsb-shop-hero {
    background: var(--bsb-cream);
    padding: 55px 0;
}

.bsb-shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    padding: 50px 0;
}

.bsb-filter-card {
    margin-bottom: 18px;
}

.bsb-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bsb-filter-list li {
    border-bottom: 1px solid var(--bsb-border);
}

.bsb-filter-list a {
    display: block;
    padding: 12px 0;
}

.bsb-shop-toolbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
}

/* Single Product */

.bsb-single-product {
    padding: 45px 0;
}

.bsb-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: start;
}

.bsb-product-gallery img {
    border-radius: 24px;
    background: var(--bsb-light);
}

.bsb-gallery-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.bsb-gallery-thumbnails img {
    width: 76px;
    height: 76px;
    object-fit: cover;
}

.bsb-product-summary h1 {
    font-size: clamp(32px, 4vw, 52px);
    margin: 10px 0;
}

.bsb-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--bsb-green);
    margin: 16px 0;
}

.bsb-product-meta {
    background: var(--bsb-cream);
    padding: 18px;
    border-radius: 18px;
    margin: 20px 0;
}

.bsb-quote-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bsb-product-description,
.bsb-related-products {
    padding: 50px 0;
}

/* Quote Drawer */

.bsb-quote-drawer {
    position: fixed;
    top: 0;
    right: -430px;
    width: min(430px, 100%);
    height: 100vh;
    background: #fff;
    z-index: 100;
    box-shadow: -10px 0 30px rgba(0,0,0,.15);
    transition: .3s ease;
    padding: 24px;
    overflow-y: auto;
}

.bsb-quote-drawer.active {
    right: 0;
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-header button {
    border: 0;
    background: var(--bsb-green);
    color: #fff;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 22px;
}

.quote-item {
    border: 1px solid var(--bsb-border);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 12px;
}

.quote-item input {
    width: 80px;
    padding: 8px;
    margin: 10px 8px 0 0;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid var(--bsb-border);
    border-radius: 12px;
    margin-bottom: 10px;
}

.quote-form button {
    width: 100%;
    border: 0;
    background: var(--bsb-green);
    color: #fff;
    padding: 15px;
    border-radius: 999px;
    font-weight: 800;
}

/* Floating WhatsApp */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: #25d366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 800;
    z-index: 60;
}

/* Footer */

.bsb-footer {
    background: #063d25;
    color: #fff;
    padding-top: 55px;
}

.bsb-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr 1.2fr;
    gap: 38px;
    align-items: start;
}

.bsb-footer h3 {
    font-size: 28px;
    margin: 0 0 18px;
    color: #fff;
}

.bsb-footer h4 {
    font-size: 14px;
    margin: 0 0 18px;
    text-transform: uppercase;
    color: #fff;
}

.bsb-footer p,
.bsb-footer a {
    color: rgba(255,255,255,.82);
    font-size: 14px;
    line-height: 1.7;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.bsb-footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bsb-footer-newsletter input {
    height: 42px;
    border: 0;
    border-radius: 6px;
    padding: 0 14px;
}

.bsb-footer-newsletter button {
    height: 42px;
    border: 0;
    border-radius: 6px;
    background: #f5aa26;
    color: #06170e;
    font-weight: 900;
    text-transform: uppercase;
}

.bsb-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 45px;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
}

.bsb-footer-bottom p {
    margin: 0;
}

.bsb-footer-bottom a,
.bsb-footer-bottom span {
    margin-left: 12px;
}

/* Mobile */

@media (max-width: 900px) {
    .bsb-topbar-inner,
    .bsb-header-main,
    .bsb-clearance-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .bsb-search {
        width: 100%;
    }

    .bsb-mobile-menu-toggle {
        display: inline-block;
    }

    .bsb-nav {
        display: none;
    }

    .bsb-nav.active {
        display: block;
    }

    .main-menu {
        flex-direction: column;
        gap: 0;
    }

    .bsb-hero-inner,
    .bsb-branding-layout,
    .bsb-newsletter-box,
    .bsb-shop-layout,
    .bsb-product-layout,
    .bsb-footer-grid {
        grid-template-columns: 1fr;
    }

    .bsb-category-cards,
    .bsb-feature-grid,
    .bsb-product-grid,
    .products,
    .bsb-service-grid,
    .bsb-logo-strip,
    .bsb-category-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .bsb-category-cards,
    .bsb-feature-grid,
    .bsb-product-grid,
    .products,
    .bsb-service-grid,
    .bsb-logo-strip,
    .bsb-category-grid {
        grid-template-columns: 1fr;
    }

    .bsb-hero {
        padding: 55px 0;
    }

    .bsb-hero-actions,
    .bsb-header-actions {
        flex-direction: column;
        width: 100%;
    }

    .bsb-request-btn,
    .bsb-quote-basket,
    .bsb-mobile-menu-toggle {
        width: 100%;
        text-align: center;
    }
}

.bsb-main,
.bsb-page {
    padding: 0px 0;
}

.bsb-page-content {
    max-width: 900px;
    margin: 0 auto;
}

.bsb-page-content h1 {
    font-size: clamp(34px, 5vw, 56px);
    color: var(--bsb-green);
}



/* Tablet header */
@media (min-width: 769px) and (max-width: 1000px) {

    .bsb-header-main {
        grid-template-columns: 190px 150px minmax(260px, 1fr);
        gap: 14px;
        padding: 10px 0;
    }

    .bsb-logo img,
    .bsb-logo .custom-logo {
        max-width: 180px;
        max-height: 68px;
    }

    .bsb-header-actions {
        grid-column: 1 / -1;
        display: flex;
        width: 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .bsb-request-btn,
    .bsb-quote-basket {
        flex: 0 0 auto;
        width: auto;
        text-align: center;
    }

    .bsb-mobile-menu-toggle {
        display: inline-block;
        flex: 0 0 auto;
        width: auto;
        background: #06401f;
        color: #fff;
        border: 0;
        border-radius: 12px;
        padding: 14px 22px;
    }

    .bsb-nav {
        display: none;
    }

    .bsb-nav.active {
        display: block;
    }

    .main-menu {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
}

.bsb-category-section {
    background: #fff;
    padding: 42px 0 38px;
}

.bsb-category-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 28px;
}

.bsb-category-title span {
    width: 44px;
    height: 1px;
    background: #06401f;
}

.bsb-category-title h2 {
    margin: 0;
    font-size: 27px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
    color: #111;
}

.bsb-category-mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bsb-cat-card {
    position: relative;
    min-height: 220px;
    border-radius: 14px;
    background: #f6f6f4;
    overflow: hidden;
    padding: 24px 20px;
    border: 1px solid #ecece8;
    transition: transform .25s ease, box-shadow .25s ease;
}

.bsb-cat-card h3 {
    position: relative;
    z-index: 3;
    max-width: 145px;
    margin: 0;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 900;
    color: #111;
}

.bsb-cat-card img {
    position: absolute;
    right: -2%;
    bottom: -2%;
    width: 74%;
    height: 88%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: right bottom;
    z-index: 1;
    transition: transform .3s ease;
}

.bsb-cat-card em {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d9ddd9;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06401f;
    font-size: 20px;
    z-index: 4;
}

.bsb-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .08);
}

.bsb-cat-card:hover img {
    transform: scale(1.06);
}

@media (max-width: 900px) {
    .bsb-category-mockup-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .bsb-category-mockup-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .bsb-cat-card {
        min-height: 185px;
        padding: 18px 14px;
    }

    .bsb-cat-card h3 {
        font-size: 16px;
        max-width: 110px;
    }

    .bsb-cat-card img {
        width: 82%;
        height: 80%;
    }

    .bsb-cat-card em {
        left: 14px;
        bottom: 14px;
        width: 34px;
        height: 34px;
    }
}

/* ==========================================
   PREMIUM FEATURES STRIP
========================================== */

.bsb-features-strip{
    background:#fff;
    border-top:1px solid rgba(17,59,49,.08);
    border-bottom:1px solid rgba(17,59,49,.08);
    padding:42px 0;
}

.bsb-features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
}

.bsb-feature{
    position:relative;
    text-align:center;
    padding:0 50px;
}

.bsb-feature:not(:last-child)::after{
    content:"";
    position:absolute;
    top:8px;
    right:0;
    width:1px;
    height:70px;
    background:#e6dfd2;
}

.bsb-feature strong{
    display:block;
    color:#113b31;
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
    letter-spacing:-0.02em;
}

.bsb-feature span{
    display:block;
    color:#6b6b6b;
    font-size:15px;
    line-height:1.7;
}

@media (max-width:991px){

    .bsb-features-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .bsb-feature{
        padding:0;
    }

    .bsb-feature::after{
        display:none;
    }

}

/* --------------------------------------------------
   Promotional Cards
---------------------------------------------------*/

.bsb-promo-section{
    padding:40px 0;
}

.bsb-promo-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.bsb-promo-card{

    position:relative;

    overflow:hidden;

    border-radius:14px;

    min-height:235px;

    display:block;

}

.bsb-promo-card img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.bsb-promo-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        rgba(0,0,0,.10),
        rgba(0,0,0,.45)
    );

}

.bsb-promo-content{

    position:relative;

    z-index:2;

    padding:24px;

    color:#fff;

    height:100%;

    display:flex;

    flex-direction:column;

}

.bsb-promo-content h3{

    font-size:34px;

    line-height:1.02;

    margin:0 0 14px;

    font-weight:900;

    text-transform:uppercase;

}

.bsb-promo-content p{

    font-size:15px;

    line-height:1.6;

    margin-bottom:auto;

}

.bsb-promo-content span{

    align-self:flex-start;

    background:#fff;

    color:#111;

    padding:13px 18px;

    border-radius:6px;

    font-size:12px;

    font-weight:900;

    text-transform:uppercase;

}

.bsb-promo-card:hover img{

    transform:scale(1.06);

}

/* ===========================================================
   CLIENT LOGOS
=========================================================== */

.bsb-clients{

    padding:38px 0 52px;

    background:#fff;

}

.bsb-clients-heading{

    text-align:center;

    margin-bottom:22px;

}

.bsb-clients-heading h3{

    margin:0;

    color:#111;

    font-size:28px;

    font-weight:900;

    letter-spacing:.02em;

}

.bsb-client-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:18px;

}

.bsb-client-card{

    height:90px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:10px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.25s;

}

.bsb-client-card:hover{

    transform:translateY(-3px);

    box-shadow:0 14px 28px rgba(0,0,0,.08);

}

.bsb-client-card img{

    max-width:70%;

    max-height:42px;

    width:auto;

    height:auto;

    object-fit:contain;

    filter:grayscale(0);

}

/* Mobile Homepage Fixes */

@media (max-width: 768px) {

    .bsb-container {
        width: calc(100% - 32px);
    }

    .bsb-hero-mockup,
    .bsb-hero-premium {
        min-height: auto;
        background-position: center right;
    }

    .bsb-hero-text {
        width: 100%;
        max-width: none;
        margin-left: 0;
        padding: 70px 24px;
    }

    .bsb-hero-text h1 {
        font-size: 46px;
        line-height: 1.05;
    }

    .bsb-hero-text p {
        font-size: 20px;
    }

    .bsb-hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .bsb-btn-gold,
    .bsb-btn-outline {
        width: 100%;
        padding: 16px 12px;
        text-align: center;
    }

    .bsb-category-title h2,
    .bsb-clients-heading h3 {
        font-size: 34px;
        line-height: 1.05;
    }

    .bsb-category-mockup-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .bsb-cat-card {
        height: 170px;
    }

    .bsb-cat-card h3 {
        font-size: 17px;
    }

    .bsb-cat-card img {
        max-width: 72%;
        max-height: 70%;
    }

    .bsb-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .bsb-feature {
        border-right: none;
        padding: 10px 0;
    }

    .bsb-promo-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bsb-promo-card {
        min-height: 260px;
    }

    .bsb-client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bsb-client-card {
        height: 90px;
    }

    .bsb-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bsb-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Static Inner Pages */

.bsb-inner-hero {
    background: #063d25;
    color: #fff;
    padding: 18px 0;
}

.bsb-inner-hero span,
.bsb-small-label {
    color: #f5aa26;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .12em;
    font-size: 12px;
}

.bsb-inner-hero h1 {
    max-width: 850px;
    font-size: clamp(38px, 6vw, 38px);
    line-height: 1.02;
    margin: 18px 0;
}

.bsb-inner-hero p {
    max-width: 720px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.86);
}

.bsb-about-intro {
    padding: 80px 0;
    background: #fff;
}

.bsb-about-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
}

.bsb-about-grid h2,
.bsb-about-cta h2 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    margin: 14px 0;
}

.bsb-about-grid p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.bsb-about-values {
    background: #f8f6f0;
    padding: 80px 0;
}

.bsb-about-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.bsb-about-value-card {
    background: #fff;
    border: 1px solid #ece7dc;
    border-radius: 18px;
    padding: 30px;
}

.bsb-about-value-card h3 {
    margin-top: 0;
    font-size: 22px;
}

.bsb-about-value-card p {
    color: #666;
    line-height: 1.7;
}

.bsb-about-cta {
    background: #fff;
    text-align: center;
    padding: 80px 0;
}

.bsb-about-cta p {
    color: #666;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .bsb-about-grid,
    .bsb-about-value-grid {
        grid-template-columns: 1fr;
    }

    .bsb-inner-hero {
        padding: 65px 0;
    }
}

/* =========================================================
   PREMIUM ABOUT PAGE
   ========================================================= */

.bsb-about-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 78px;
    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(245, 170, 38, .15),
            transparent 28%
        ),
        linear-gradient(135deg, #063d25, #032719);
}

.bsb-about-hero::after {
    content: "";
    position: absolute;
    top: -130px;
    right: -100px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.bsb-about-hero .bsb-container {
    position: relative;
    z-index: 2;
}

.bsb-about-hero h1 {
    max-width: 850px;
    margin: 18px 0 22px;
    font-size: clamp(44px, 6vw, 72px);
    line-height: .98;
    letter-spacing: -.04em;
}

.bsb-about-hero p {
    max-width: 700px;
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
}


/* Story section */

.bsb-about-story {
    padding: 88px 0;
    background: #fff;
}

.bsb-about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
    gap: 70px;
    align-items: center;
}

.bsb-about-story-image {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    background: #f4f1e9;
    border-radius: 24px;
}

.bsb-about-story-image img {
    display: block;
    width: 100%;
    height: 510px;
    object-fit: cover;
}

.bsb-about-image-label {
    position: absolute;
    right: 22px;
    bottom: 22px;
    min-width: 190px;
    padding: 18px 20px;
    color: #fff;
    background: rgba(6, 61, 37, .92);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

.bsb-about-image-label strong,
.bsb-about-image-label span {
    display: block;
}

.bsb-about-image-label strong {
    margin-bottom: 4px;
    color: #f5aa26;
    font-size: 17px;
}

.bsb-about-image-label span {
    font-size: 13px;
}

.bsb-about-story-content h2 {
    max-width: 590px;
    margin: 14px 0 22px;
    color: #111;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.04;
    letter-spacing: -.035em;
}

.bsb-about-story-content p {
    margin: 0 0 18px;
    color: #626262;
    font-size: 16px;
    line-height: 1.8;
}

.bsb-about-story-content .bsb-about-lead {
    color: #252525;
    font-size: 19px;
    line-height: 1.65;
}

.bsb-about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: #063d25;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.bsb-about-text-link span {
    color: #c58b16;
    font-size: 19px;
    transition: transform .25s ease;
}

.bsb-about-text-link:hover span {
    transform: translateX(4px);
}


/* Proof band */

.bsb-about-proof {
    background: #063d25;
}

.bsb-about-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bsb-about-proof-item {
    position: relative;
    padding: 30px 28px;
    text-align: center;
}

.bsb-about-proof-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: rgba(255,255,255,.15);
}

.bsb-about-proof-item strong {
    display: block;
    margin-bottom: 6px;
    color: #f5aa26;
    font-size: 18px;
}

.bsb-about-proof-item span {
    display: block;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}


/* Values */

.bsb-about-values {
    padding: 90px 0;
    background: #f8f6f0;
}

.bsb-about-values .bsb-section-heading {
    max-width: 820px;
    margin-bottom: 44px;
}

.bsb-about-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.bsb-about-value-card {
    position: relative;
    min-height: 280px;
    padding: 34px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e9e3d7;
    border-radius: 20px;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.bsb-about-value-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 130px;
    height: 130px;
    background: rgba(197, 155, 69, .08);
    border-radius: 50%;
}

.bsb-about-value-card:hover {
    border-color: rgba(197, 155, 69, .45);
    box-shadow: 0 20px 38px rgba(0,0,0,.07);
    transform: translateY(-5px);
}

.bsb-value-number {
    display: block;
    margin-bottom: 34px;
    color: #c58b16;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

.bsb-about-value-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 14px;
    color: #063d25;
    font-size: 23px;
}

.bsb-about-value-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.75;
}


/* CTA */

.bsb-about-cta {
    padding: 78px 0;
    background: #fff;
}

.bsb-about-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 48px 52px;
    color: #fff;
    background:
        radial-gradient(
            circle at right center,
            rgba(245, 170, 38, .19),
            transparent 35%
        ),
        #063d25;
    border-radius: 24px;
}

.bsb-about-cta-panel span {
    display: block;
    margin-bottom: 10px;
    color: #f5aa26;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.bsb-about-cta-panel h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.05;
}

.bsb-about-cta-panel p {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.7;
}

.bsb-about-cta-panel .bsb-btn-gold {
    flex: 0 0 auto;
    white-space: nowrap;
}


/* Responsive */

@media (max-width: 900px) {
    .bsb-about-story-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .bsb-about-story-image,
    .bsb-about-story-image img {
        min-height: 420px;
        height: 420px;
    }

    .bsb-about-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bsb-about-proof-item:nth-child(2)::after {
        display: none;
    }

    .bsb-about-value-grid {
        grid-template-columns: 1fr;
    }

    .bsb-about-cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .bsb-about-hero {
        padding: 55px 0 60px;
    }

    .bsb-about-hero h1 {
        font-size: 42px;
    }

    .bsb-about-story {
        padding: 58px 0;
    }

    .bsb-about-story-image,
    .bsb-about-story-image img {
        min-height: 340px;
        height: 340px;
    }

    .bsb-about-image-label {
        right: 14px;
        bottom: 14px;
        min-width: 165px;
    }

    .bsb-about-proof-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bsb-about-proof-item {
        padding: 24px 14px;
    }

    .bsb-about-proof-item::after {
        display: none;
    }

    .bsb-about-values {
        padding: 62px 0;
    }

    .bsb-about-value-card {
        min-height: auto;
    }

    .bsb-about-cta {
        padding: 55px 0;
    }

    .bsb-about-cta-panel {
        padding: 34px 26px;
        border-radius: 18px;
    }

    .bsb-about-cta-panel .bsb-btn-gold {
        width: 100%;
    }
}

/* Services Page */

.bsb-services-page {
    padding: 80px 0;
    background: #fff;
}

.bsb-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bsb-service-box {
    background: #f8f6f0;
    border: 1px solid #ece7dc;
    border-radius: 18px;
    padding: 32px;
    transition: .25s;
}

.bsb-service-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0,0,0,.08);
}

.bsb-service-box h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #063d25;
}

.bsb-service-box p {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .bsb-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Portfolio */

.bsb-portfolio{

    padding:80px 0;

}

.bsb-portfolio-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:26px;

}

.bsb-portfolio-card{

    background:#fff;

    border:1px solid #ece7dc;

    border-radius:18px;

    overflow:hidden;

    transition:.25s;

}

.bsb-portfolio-card:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.bsb-portfolio-image{

    aspect-ratio:16/10;

    background:#f3f3f3;

}

.bsb-portfolio-content{

    padding:24px;

}

.bsb-portfolio-content h3{

    margin-top:0;

}

@media(max-width:768px){

    .bsb-portfolio-grid{

        grid-template-columns:1fr;

    }

}

/* Contact Page */

.bsb-contact-page{

    padding:80px 0;

    background:#fff;

}

.bsb-contact-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

    align-items:start;

}

.bsb-contact-info{

    background:#063d25;

    color:#fff;

    padding:40px;

    border-radius:18px;

}

.bsb-contact-info h2{

    margin-top:0;

    font-size:36px;

}

.bsb-contact-info p{

    color:rgba(255,255,255,.85);

    line-height:1.8;

    margin-bottom:35px;

}

.bsb-contact-item{

    margin-bottom:28px;

}

.bsb-contact-item strong{

    display:block;

    color:#f5aa26;

    margin-bottom:6px;

}

.bsb-contact-form{

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    padding:40px;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

}

.bsb-contact-form input,
.bsb-contact-form textarea{

    width:100%;

    border:1px solid #ddd;

    border-radius:8px;

    padding:14px 16px;

    margin-bottom:18px;

    font-size:15px;

}

.bsb-contact-form textarea{

    min-height:180px;

    resize:vertical;

}

.bsb-contact-form input[type="submit"]{

    width:auto;

    background:#f5aa26;

    color:#111;

    border:none;

    padding:16px 34px;

    font-weight:700;

    cursor:pointer;

}

@media(max-width:768px){

    .bsb-contact-grid{

        grid-template-columns:1fr;

        gap:30px;

    }

}

/* Contact details */

.bsb-contact-details {
    display: grid;
    gap: 0;
    margin: 30px 0;
}

.bsb-contact-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.bsb-contact-item:first-child {
    padding-top: 0;
}

.bsb-contact-item strong {
    display: block;
    margin-bottom: 7px;
    color: #f5aa26;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.bsb-contact-item a,
.bsb-contact-item address {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    line-height: 1.6;
    transition: color .2s ease;
}

.bsb-contact-item a:hover {
    color: #f5aa26;
}

.bsb-contact-info .bsb-btn-gold {
    margin-top: 6px;
}

/* Product Catalogue */

.bsb-catalogue-hero {
    background: #063d25;
    color: #fff;
    padding: 75px 0;
}

.bsb-catalogue-hero span,
.bsb-catalogue-toolbar span {
    color: #f5aa26;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

.bsb-catalogue-hero h1 {
    max-width: 850px;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.02;
    margin: 18px 0;
}

.bsb-catalogue-hero p {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,.85);
}

.bsb-catalogue-body {
    padding: 60px 0;
    background: #fff;
}

.bsb-catalogue-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 34px;
}

.bsb-catalogue-sidebar {
    background: #f8f6f0;
    border: 1px solid #ece7dc;
    border-radius: 18px;
    padding: 26px;
    align-self: start;
    position: sticky;
    top: 130px;
}

.bsb-catalogue-sidebar h3 {
    margin-top: 0;
    font-size: 22px;
}

.bsb-filter-box h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.bsb-filter-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bsb-filter-box li {
    border-bottom: 1px solid #e3ded4;
}

.bsb-filter-box li:last-child {
    border-bottom: none;
}

.bsb-filter-box a {
    display: block;
    padding: 12px 0;
    color: #333;
    font-weight: 700;
}

.bsb-catalogue-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 28px;
}

.bsb-catalogue-toolbar h2 {
    font-size: 34px;
    margin: 6px 0 0;
}

.bsb-catalogue-count {
    font-size: 14px;
    color: #666;
}

.bsb-catalogue-main ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bsb-catalogue-pagination {
    margin-top: 40px;
}

.bsb-catalogue-pagination .page-numbers {
    display: flex;
    gap: 8px;
    list-style: none;
    justify-content: center;
}

.bsb-catalogue-pagination a,
.bsb-catalogue-pagination span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ece7dc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.bsb-catalogue-pagination .current {
    background: #063d25;
    color: #fff;
}

@media (max-width: 900px) {
    .bsb-catalogue-layout {
        grid-template-columns: 1fr;
    }

    .bsb-catalogue-sidebar {
        position: static;
    }

    .bsb-catalogue-main ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .bsb-catalogue-main ul.products {
        grid-template-columns: 1fr;
    }

    .bsb-catalogue-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Single Product Page */

.bsb-single-product-page {
    background: #fff;
}

.bsb-single-product-wrap {
    padding: 70px 0;
}

.bsb-single-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.bsb-single-main-image {
    background: #f8f6f0;
    border: 1px solid #ece7dc;
    border-radius: 22px;
    padding: 35px;
}

.bsb-single-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bsb-single-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.bsb-single-thumb {
    width: 80px;
    height: 80px;
    border: 1px solid #ece7dc;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    cursor: pointer;
}

.bsb-single-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bsb-single-summary {
    background: #fff;
    border: 1px solid #ece7dc;
    border-radius: 22px;
    padding: 42px;
    box-shadow: 0 16px 36px rgba(0,0,0,.05);
}

.bsb-product-label {
    color: #f5aa26;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

.bsb-single-summary h1 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.04;
    margin: 14px 0;
}

.bsb-single-sku {
    color: #777;
    font-size: 14px;
}

.bsb-single-short-description {
    color: #555;
    font-size: 17px;
    line-height: 1.7;
    margin: 26px 0;
}

.bsb-single-info-box {
    display: grid;
    gap: 14px;
    margin: 30px 0;
}

.bsb-single-info-box div {
    background: #f8f6f0;
    border: 1px solid #ece7dc;
    border-radius: 14px;
    padding: 18px;
}

.bsb-single-info-box strong {
    display: block;
    color: #063d25;
    margin-bottom: 5px;
}

.bsb-single-info-box span {
    color: #666;
    font-size: 14px;
}

.bsb-single-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.bsb-whatsapp-direct {
    background: #25d366;
    color: #fff;
    border-radius: 10px;
    padding: 14px 22px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

.bsb-single-description-section {
    padding: 0 0 70px;
}

.bsb-single-description-card {
    background: #f8f6f0;
    border: 1px solid #ece7dc;
    border-radius: 22px;
    padding: 40px;
}

.bsb-single-description-card h2 {
    margin-top: 0;
    font-size: 34px;
}

@media (max-width: 900px) {
    .bsb-single-product-grid {
        grid-template-columns: 1fr;
    }

    .bsb-single-summary {
        padding: 28px;
    }
}

/* Custom Catalogue Page */

.bsb-cat-hero {
    background: linear-gradient(135deg, #063d25, #021b10);
    color: #fff;
    padding: 18px 0;
}

.bsb-breadcrumbs {
    font-size: 13px;
    margin-bottom: 26px;
    color: rgba(255,255,255,.75);
}

.bsb-breadcrumbs a {
    color: rgba(255,255,255,.8);
}

.bsb-breadcrumbs span {
    margin: 0 8px;
}

.bsb-cat-hero h1 {
    font-size: clamp(38px, 5vw, 38px);
    margin: 0 0 16px;
}

.bsb-cat-hero p {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,.88);
}

.bsb-cat-body {
    padding: 46px 0 70px;
}

.bsb-cat-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.bsb-cat-sidebar {
    border-right: 1px solid #e8e8e8;
    padding-right: 26px;
}

.bsb-filter-group {
    margin-bottom: 34px;
}

.bsb-filter-group h3 {
    text-transform: uppercase;
    font-size: 13px;
    margin: 0 0 18px;
}

.bsb-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bsb-filter-list li a {
    display: block;
    padding: 9px 0;
    font-size: 14px;
    color: #333;
}

.bsb-filter-list li.active a {
    color: #063d25;
    font-weight: 900;
}

.bsb-checkbox-group {
    margin-bottom: 24px;
}

.bsb-checkbox-group h4 {
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bsb-checkbox-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
}

.bsb-filter-btn {
    width: 100%;
    border: 0;
    background: #063d25;
    color: #fff;
    padding: 14px;
    border-radius: 6px;
    font-weight: 900;
    text-transform: uppercase;
}

.bsb-cat-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.bsb-cat-toolbar p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.bsb-cat-toolbar select {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 14px;
}

.bsb-custom-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.bsb-custom-product-card {
    background: #fff;
}

.bsb-custom-product-image {
    display: block;
    background: #f6f6f4;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1.08;
}

.bsb-custom-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: .3s;
}

.bsb-custom-product-card:hover img {
    transform: scale(1.04);
}

.bsb-custom-product-info {
    padding: 16px 0 0;
}

.bsb-custom-product-info h3 {
    margin: 0 0 4px;
    font-size: 16px;
}

.bsb-custom-product-info p {
    margin: 0 0 10px;
    color: #777;
    font-size: 13px;
}

.bsb-custom-product-info strong {
    display: block;
    color: #063d25;
    margin-bottom: 14px;
}

.bsb-card-btn {
    display: inline-flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 11px 20px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.bsb-cat-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 42px;
}

.bsb-cat-pagination .page-numbers {
    width: 38px;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.bsb-cat-pagination .current {
    background: #063d25;
    color: #fff;
}

@media (max-width: 900px) {
    .bsb-cat-layout {
        grid-template-columns: 1fr;
    }

    .bsb-cat-sidebar {
        border-right: 0;
        padding-right: 0;
    }

    .bsb-custom-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .bsb-custom-product-grid {
        grid-template-columns: 1fr;
    }

    .bsb-cat-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

.bsb-option-group {
    margin: 24px 0;
}

.bsb-option-group label,
.bsb-quantity-box label {
    display: block;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px;
}

.bsb-colour-options,
.bsb-size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bsb-colour-options span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: block;
}

.bsb-size-options button,
.bsb-qty-control button {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    min-width: 38px;
    height: 38px;
    font-weight: 800;
}

.bsb-qty-control {
    display: flex;
    gap: 8px;
    align-items: center;
}

.bsb-qty-control input {
    width: 60px;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
}

/* Mobile catalogue sidebar fix */

@media (max-width: 768px) {

    .bsb-header {
        position: relative;
    }

    .bsb-cat-sidebar {
        max-height: 220px;
        overflow-y: auto;
        border: 1px solid #ece7dc;
        border-radius: 14px;
        padding: 18px;
        background: #f8f6f0;
    }

    .bsb-cat-sidebar::-webkit-scrollbar {
        width: 4px;
    }

    .bsb-cat-sidebar::-webkit-scrollbar-thumb {
        background: #063d25;
        border-radius: 20px;
    }

    .bsb-filter-list li a {
        padding: 10px 0;
    }

    .bsb-cat-body {
        padding-top: 24px;
    }
}

@media (max-width: 768px) {

    .bsb-category-panel {
        padding: 0;
        box-shadow: none;
        border-top: 1px solid #eee;
    }

    .bsb-category-panel .bsb-container {
        width: 100%;
    }

    .bsb-category-grid {
        display: block;
    }

    .bsb-category-grid a {
        display: block;
        padding: 14px 24px;
        border-radius: 0;
        border: 0;
        border-bottom: 1px solid #eee;
        background: #fff;
        font-size: 16px;
        font-weight: 500;
    }

    .bsb-category-grid a:hover {
        background: #f8f6f0;
        color: #063d25;
    }
}

@media (max-width: 768px) {

    .bsb-header-actions {
        display: block;
    }

    .bsb-request-btn {
        position: fixed;
        right: 18px;
        bottom: 150px;
        z-index: 95;
        width: auto !important;
        padding: 13px 18px;
        border-radius: 999px;
        font-size: 12px;
        box-shadow: 0 12px 28px rgba(0,0,0,.2);
    }

    .bsb-quote-basket {
        position: fixed;
        right: 18px;
        bottom: 98px;
        z-index: 95;
        width: auto !important;
        padding: 13px 18px;
        border-radius: 999px;
        font-size: 12px;
        box-shadow: 0 12px 28px rgba(0,0,0,.18);
    }
}

@media (max-width: 1000px) {

    .main-menu .sub-menu {
        position: static;
        min-width: 0;
        width: 100%;
        padding: 0 0 8px 18px;

        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;

        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }

    .main-menu .sub-menu a {
        padding: 10px 14px;
        font-size: 12px;
    }
}

.bsb-promo-grid--three{
    grid-template-columns:repeat(3,1fr);
}

/* =========================================================
   WORDPRESS CUSTOMIZER PREVIEW
   ========================================================= */

/*
 * WordPress places this class on the preview body while the
 * Customizer is open.
 */
body.customize-partial-edit-shortcuts-shown .bsb-header {
    position: relative !important;
    top: auto !important;
}

body.customize-partial-edit-shortcuts-shown .bsb-topbar {
    position: relative !important;
    top: auto !important;
}

body.customize-partial-edit-shortcuts-shown .bsb-logo img,
body.customize-partial-edit-shortcuts-shown .bsb-logo .custom-logo {
    max-width: 210px;
    max-height: 76px;
}

/* =========================================================
   PORTFOLIO ALBUMS
   ========================================================= */

.bsb-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.bsb-portfolio-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #ece7dc;
    border-radius: 18px;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.bsb-portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(0,0,0,.09);
}

.bsb-portfolio-image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f3ee;
}

.bsb-portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.bsb-portfolio-card:hover .bsb-portfolio-image img {
    transform: scale(1.04);
}

.bsb-portfolio-content {
    padding: 24px;
}

.bsb-portfolio-content h3 {
    margin: 0 0 10px;
    color: #063d25;
    font-size: 22px;
}

.bsb-portfolio-content p {
    margin: 0 0 18px;
    color: #666;
    line-height: 1.7;
}

.bsb-portfolio-album-body {
    padding: 65px 0 80px;
}

.bsb-portfolio-album-intro {
    max-width: 820px;
    margin-bottom: 38px;
    color: #555;
    font-size: 17px;
    line-height: 1.8;
}

.bsb-portfolio-album-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.bsb-portfolio-gallery-item {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f5f3ee;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
}

.bsb-portfolio-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.bsb-portfolio-gallery-item:hover img {
    transform: scale(1.04);
}

.bsb-portfolio-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(3, 20, 12, .94);
}

.bsb-portfolio-lightbox.is-open {
    display: flex;
}

.bsb-portfolio-lightbox img {
    display: block;
    max-width: min(1200px, 94vw);
    max-height: 88vh;
    object-fit: contain;
    border-radius: 10px;
}

.bsb-portfolio-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 46px;
    height: 46px;
    padding: 0;
    color: #fff;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .bsb-portfolio-grid,
    .bsb-portfolio-album-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .bsb-portfolio-grid,
    .bsb-portfolio-album-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   CLIENT LOGOS
========================================= */

.bsb-clients {
    padding: 80px 0;
    background: #ffffff;
}

.bsb-clients-heading {
    text-align: center;
    margin-bottom: 34px;
}

.bsb-clients-heading h3 {
    margin: 0;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #111111;
}

.bsb-client-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.bsb-client-card {
    min-height: 145px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.bsb-client-card img {
    display: block;
    width: 100%;
    height: 150px;
    max-width: 100%;
    object-fit: contain;
    object-position: center;

    filter: contrast(1.08) saturate(1.08);
}

.bsb-client-card:hover {
    transform: translateY(-4px);
    border-color: #d8ac29;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.bsb-client-card img {
    transform: scale(1.18);
}

@media (max-width: 1100px) {
    .bsb-client-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bsb-client-card {
        min-height: 135px;
    }

    .bsb-client-card img {
        height: 90px;
    }
}

@media (max-width: 700px) {
    .bsb-clients {
        padding: 55px 0;
    }

    .bsb-clients-heading {
        margin-bottom: 26px;
    }

    .bsb-client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .bsb-client-card {
        min-height: 115px;
        padding: 12px;
        border-radius: 10px;
    }

    .bsb-client-card img {
        height: 78px;
        max-width: 95%;
    }
}

.bsb-client-card img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
}



/* =========================================================
   MOBILE HEADER WIDTH AND OVERFLOW FIX
   ========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.bsb-header,
.bsb-topbar,
.bsb-nav {
    width: 100%;
    max-width: 100%;
}

.bsb-header-main > *,
.bsb-topbar-inner > * {
    min-width: 0;
}

.bsb-logo {
    min-width: 0;
}

.bsb-logo img,
.bsb-logo .custom-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 230px;
    max-height: 82px;
}

.bsb-search,
.bsb-search form {
    width: 100%;
    min-width: 0;
}

.bsb-search input[type="search"] {
    min-width: 0;
    width: 100%;
}

@media (max-width: 768px) {

    .bsb-container {
        width: calc(100% - 28px);
        max-width: 100%;
    }

    .bsb-topbar {
        padding: 10px 0;
    }

    .bsb-topbar-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .bsb-topbar-inner > div {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        width: 100%;
    }

    .bsb-topbar span,
    .bsb-topbar a {
        margin-right: 0;
    }

    .bsb-header-main {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        gap: 12px;
        padding: 14px 0;
    }

    .bsb-logo {
        justify-content: center;
        width: 100%;
    }

    .bsb-logo img,
    .bsb-logo .custom-logo {
        width: auto;
        max-width: min(230px, 82vw);
        max-height: 76px;
    }

    .bsb-category-toggle {
        display: flex;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .bsb-search {
        width: 100%;
        max-width: 100%;
    }

    .bsb-search form {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        width: 100%;
        max-width: 100%;
    }

    .bsb-search input[type="search"] {
        width: 100%;
        min-width: 0;
        padding: 0 14px;
    }

    .bsb-search button,
    .bsb-search input[type="submit"] {
        flex: 0 0 auto;
        padding: 0 18px;
    }

    .bsb-header-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        gap: 10px;
    }

    .bsb-mobile-menu-toggle {
        display: block;
        width: 100%;
        max-width: 100%;
        border: 0;
        text-align: center;
    }

    .bsb-nav {
        width: 100%;
        max-width: 100%;
    }

    .main-menu,
    .main-menu .sub-menu {
        width: 100%;
        max-width: 100%;
    }
}


/* =========================================================
   CLIENT LOGO DIRECTORY
   ========================================================= */

.bsb-clients {
    padding: 56px 0 64px;
    background: #fff;
}

.bsb-clients-heading {
    margin-bottom: 30px;
    text-align: center;
}

.bsb-clients-heading span {
    display: block;
    margin-bottom: 8px;
    color: #c58b16;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.bsb-clients-heading h3 {
    margin: 0;
    color: #111;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 900;
    text-transform: uppercase;
}

/* =========================================================
   CLIENT LOGOS
   ========================================================= */

.bsb-client-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.bsb-client-card {
    min-width: 0;
    height: 118px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.bsb-client-card > a,
.bsb-client-card > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 14px;
}

.bsb-client-card img {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 150px !important;
    object-fit: contain;
    object-position: center;
    transform: none !important;
}

.bsb-client-card:hover {
    transform: translateY(-3px);
    border-color: rgba(197, 155, 69, .42);
    box-shadow: 0 15px 32px rgba(0, 0, 0, .07);
}

.bsb-clients-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}



@media (max-width: 1000px) {
    .bsb-client-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .bsb-client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bsb-client-card {
        height: 105px;
    }

    .bsb-client-card img {
        max-width: 100% !important;
        max-height: 74px !important;
    }
}

/* =========================================================
   ALL CLIENTS PAGE
   ========================================================= */

.bsb-all-clients {
    padding: 70px 0 85px;
    background: #fff;
}

.bsb-all-clients-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.bsb-all-client-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.bsb-all-client-card > a,
.bsb-all-client-card > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 155px;
    padding: 22px 18px;
    text-align: center;
}

.bsb-all-client-card img {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 90% !important;
    max-height: 85px !important;
    object-fit: contain;
    margin-bottom: 14px;
}

.bsb-all-client-card span {
    color: #444;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.bsb-all-client-card:hover {
    border-color: rgba(197, 155, 69, .42);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .07);
    transform: translateY(-4px);
}

@media (max-width: 1000px) {
    .bsb-all-clients-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .bsb-all-clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .bsb-all-client-card > a,
    .bsb-all-client-card > div {
        min-height: 130px;
        padding: 16px 12px;
    }

    .bsb-all-client-card img {
        max-height: 68px !important;
    }
}

/* =========================================================
   HERO TEXT FIX FOR SMALL LAPTOPS
   ========================================================= */

.bsb-hero-slide-inner {
    position: relative;
    z-index: 4;
}

.bsb-hero-slide-content {
    position: relative;
    z-index: 5;
    display: block;
    opacity: 1;
    visibility: visible;
}

/*
 * Small laptops and narrower desktop screens.
 */
@media (min-width: 769px) and (max-width: 1200px) {

    .bsb-hero-slider,
    .bsb-hero-slides,
    .bsb-hero-slide,
    .bsb-hero-slide-inner {
        min-height: 500px;
    }

    .bsb-hero-slide {
        background-position: 68% center;
    }

    .bsb-hero-slide-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 37, 21, .98) 0%,
                rgba(3, 37, 21, .94) 36%,
                rgba(3, 37, 21, .73) 62%,
                rgba(3, 37, 21, .20) 100%
            );
    }

    .bsb-hero-slide-inner {
        display: flex;
        align-items: center;
        width: min(1180px, calc(100% - 48px));
        min-height: 500px;
        margin: 0 auto;
        padding: 54px 0 76px;
    }

    .bsb-hero-slide-content {
        display: block;
        width: 58%;
        max-width: 580px;
        margin: 0;
        color: #fff;
    }

    .bsb-hero-eyebrow,
    .bsb-hero-slide-content h1,
    .bsb-hero-slide-content p,
    .bsb-hero-slide-content .bsb-hero-buttons {
        visibility: visible;
    }

    .bsb-hero-slide-content h1 {
        margin-bottom: 18px;
        font-size: clamp(38px, 5vw, 54px);
        line-height: 1;
    }

    .bsb-hero-slide-content p {
        max-width: 470px;
        margin-bottom: 24px;
        font-size: 16px;
        line-height: 1.55;
    }

    .bsb-hero-slider .bsb-btn-gold,
    .bsb-hero-slider .bsb-btn-outline {
        min-height: 48px;
        padding: 0 20px;
        font-size: 11px;
    }
}

/* Keep active slide content visible even if animation fails */
.bsb-hero-slide.is-active .bsb-hero-eyebrow,
.bsb-hero-slide.is-active .bsb-hero-slide-content h1,
.bsb-hero-slide.is-active .bsb-hero-slide-content p,
.bsb-hero-slide.is-active .bsb-hero-slide-content .bsb-hero-buttons {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   SERVICES PAGE
========================================= */

.bsb-services-page {
    padding: 90px 0;
    background: #f7f8f5;
}

.bsb-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.bsb-service-box {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(23, 61, 42, 0.1);
    border-radius: 18px;
    box-shadow: 0 14px 38px rgba(20, 45, 32, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.bsb-service-box:hover {
    transform: translateY(-7px);
    border-color: rgba(196, 154, 52, 0.45);
    box-shadow: 0 22px 48px rgba(20, 45, 32, 0.13);
}

.bsb-service-image {
    position: relative;
    width: 100%;
    height: 235px;
    overflow: hidden;
    background: #e9ece7;
}

.bsb-service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(14, 49, 33, 0) 45%,
        rgba(14, 49, 33, 0.25) 100%
    );
    pointer-events: none;
}

.bsb-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.bsb-service-box:hover .bsb-service-image img {
    transform: scale(1.06);
}

.bsb-service-content {
    position: relative;
    padding: 28px 28px 30px;
}

.bsb-service-content::before {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: #c49a34;
}

.bsb-service-content h3 {
    margin: 0 0 12px;
    color: #173d2a;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}

.bsb-service-content p {
    margin: 0;
    color: #66716a;
    font-size: 15px;
    line-height: 1.75;
}

/* Tablet */

@media (max-width: 1024px) {
    .bsb-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */

@media (max-width: 680px) {
    .bsb-services-page {
        padding: 60px 0;
    }

    .bsb-services-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .bsb-service-image {
        height: 220px;
    }

    .bsb-service-content {
        padding: 24px;
    }

    .bsb-service-content h3 {
        font-size: 20px;
    }
}