/*
Theme Name: BRUsoft Business Theme
Theme URI: https://brusoft.in
Author: BRUsoft
Author URI: https://brusoft.in
Description: Production-ready master WordPress theme for B2B/B2C business websites. WooCommerce catalog mode, WhatsApp/Email quote system, 7 JSON-LD schema types, AI SEO meta tags, hero slider with customizer images, location landing pages. Reusable for any industry — just change colors and content via Customizer.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brusoft-business
Tags: woocommerce, catalog, industrial, business, schema, seo, whatsapp

Architecture by BRUsoft — Growth Oriented Websites — https://brusoft.in
*/

/* ============================================================
   CSS VARIABLES — CHANGE THESE FOR EACH CLIENT
   ============================================================
   
   HOW TO REBRAND:
   1. --bru-primary:   Dark base color (header, footer, hero bg)
   2. --bru-secondary:  Medium color (links, email button, accents)
   3. --bru-accent:     Highlight color (CTA buttons, hover, badges)
   4. --font-heading:   Heading font family
   5. --font-body:      Body font family
   
   EXAMPLE PALETTES:
   Industrial Navy+Orange:  #0D1B2A, #1B4965, #E85D04
   Cobalt+Amber:            #1B3A5C, #2E5A88, #D4A017
   Teal+Gold:               #0A3D62, #0097B2, #E8A317
   Dark Green+Copper:       #1A3C34, #2E7D5B, #C87533
   Charcoal+Red:            #2D2D2D, #555555, #DC3545
   ============================================================ */
:root {
    /* ── BRAND COLORS (change per client) ── */
    --bru-primary:     #0167CC;
    --bru-secondary:   #FB030D;
    --bru-accent:      #E85D04;
    
    /* ── DERIVED COLORS (auto-work with any palette) ── */
    --bru-navy:        var(--bru-primary);
    --bru-blue:        var(--bru-secondary);
    --bru-orange:      var(--bru-accent);
    --bru-white:       #FFFFFF;
    --bru-black:       #0A0A0A;
    --bru-gray-100:    #F8F9FA;
    --bru-gray-200:    #E9ECEF;
    --bru-gray-300:    #DEE2E6;
    --bru-gray-400:    #ADB5BD;
    --bru-gray-500:    #6C757D;
    --bru-gray-600:    #495057;
    --bru-gray-700:    #343A40;
    --bru-gray-800:    #212529;
    --bru-success:     #198754;
    --bru-whatsapp:    #25D366;
    
    /* ── TYPOGRAPHY (change per client) ── */
    --font-heading:    'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body:       'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* ── SPACING ── */
    --space-xs:  0.25rem;
    --space-sm:  0.5rem;
    --space-md:  1rem;
    --space-lg:  1.5rem;
    --space-xl:  2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* ── BORDERS ── */
    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  12px;
    --radius-xl:  16px;
    --radius-2xl: 20px;
    --radius-full: 50px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { 
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--bru-gray-700);
    background: var(--bru-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--bru-navy);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

a {
    color: var(--bru-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: var(--bru-orange); }

img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   LAYOUT
   ============================================================ */
.bru-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.bru-container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.bru-section {
    padding: var(--space-4xl) 0;
}

.bru-section--gray {
    background: var(--bru-gray-100);
}

.bru-section__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.bru-section__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bru-orange);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
}

.bru-section__title {
    margin-bottom: var(--space-md);
}

.bru-section__desc {
    color: var(--bru-gray-500);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.bru-topbar {
    background: var(--bru-navy);
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bru-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.bru-topbar__left {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.bru-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bru-topbar__item a {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
}

.bru-topbar__item a:hover {
    color: var(--bru-orange);
}

/* ============================================================
   HEADER
   ============================================================ */
.bru-header {
    background: var(--bru-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.bru-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.bru-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    gap: var(--space-lg);
}

.bru-logo img {
    max-height: 50px;
    width: auto;
}

.bru-logo__text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--bru-navy);
}

.bru-nav {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.bru-nav ul,
.bru-nav .menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin: 0;
    padding: 0;
}

.bru-nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bru-nav a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bru-gray-700);
    padding: 8px 14px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.bru-nav a:hover,
.bru-nav a.current-menu-item > a,
.bru-nav .current_page_item > a {
    color: var(--bru-orange);
    background: rgba(232,93,4,0.06);
}

.bru-header__cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.bru-header__phone {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bru-navy);
    white-space: nowrap;
}

/* Mobile Menu Toggle */
.bru-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.bru-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bru-navy);
    transition: all 0.3s ease;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.bru-breadcrumbs {
    background: var(--bru-gray-100);
    padding: 10px 0;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--bru-gray-200);
}

.bru-breadcrumbs a {
    color: var(--bru-gray-500);
}

.bru-breadcrumbs a:hover {
    color: var(--bru-orange);
}

.bru-breadcrumbs span.current {
    color: var(--bru-gray-700);
    font-weight: 600;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.bru-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}

.bru-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.bru-btn--primary {
    background: var(--bru-orange);
    color: var(--bru-white);
    border-color: var(--bru-orange);
}
.bru-btn--primary:hover {
    background: transparent;
    color: var(--bru-orange);
}

.bru-btn--whatsapp {
    background: var(--bru-whatsapp);
    color: var(--bru-white);
    border-color: var(--bru-whatsapp);
}
.bru-btn--whatsapp:hover {
    background: #1EBE55;
    border-color: #1EBE55;
    color: var(--bru-white);
}

.bru-btn--email {
    background: var(--bru-blue);
    color: var(--bru-white);
    border-color: var(--bru-blue);
}
.bru-btn--email:hover {
    background: transparent;
    color: var(--bru-blue);
}

.bru-btn--outline {
    background: transparent;
    color: var(--bru-navy);
    border-color: var(--bru-gray-300);
}
.bru-btn--outline:hover {
    border-color: var(--bru-orange);
    color: var(--bru-orange);
}

.bru-btn--outline-white {
    background: transparent;
    color: var(--bru-white);
    border-color: rgba(255,255,255,0.3);
}
.bru-btn--outline-white:hover {
    background: var(--bru-white);
    color: var(--bru-navy);
    border-color: var(--bru-white);
}

.bru-btn--sm { font-size: 0.8rem; padding: 7px 14px; }
.bru-btn--lg { font-size: 1rem; padding: 14px 32px; }

/* ============================================================
   HERO SECTION — Split Layout with Image Slider
   ============================================================ */
.bru-hero {
    position: relative;
    background: var(--bru-navy);
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bru-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,0.97) 0%, rgba(27,73,101,0.88) 50%, rgba(13,27,42,0.92) 100%);
    z-index: 1;
}

.bru-hero__pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 15% 85%, rgba(232,93,4,0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(27,73,101,0.15) 0%, transparent 50%);
    z-index: 2;
}

.bru-hero__grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
}

/* Split: 58% text / 42% slider */
.bru-hero__split {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl) 0;
}

.bru-hero__content {
    animation: bruFadeInUp 0.8s ease-out;
}

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

.bru-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,93,4,0.15);
    border: 1px solid rgba(232,93,4,0.3);
    color: var(--bru-orange);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.bru-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--bru-white);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    font-weight: 800;
}

.bru-hero__title span {
    color: var(--bru-orange);
}

.bru-hero__desc {
    font-size: 1.05rem;
    color: var(--bru-gray-400);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.bru-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* ── SLIDER ── */
.bru-hero__slider {
    position: relative;
    animation: bruFadeInRight 0.8s ease-out 0.2s both;
}

@keyframes bruFadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.bru-hero__slides {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.bru-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1.05);
}

.bru-hero__slide.active {
    opacity: 1;
    transform: scale(1);
}

.bru-hero__slide img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    background: var(--bru-white);
    border-radius: var(--radius-lg);
    margin: 2.5%;
}

.bru-hero__slide-label {
    display: block;
    padding: 8px 20px;
    background: rgba(13,27,42,0.85);
    color: var(--bru-white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    bottom: 2.5%;
    left: 2.5%;
    width: 95%;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.bru-hero__slide-placeholder {
    width: 95%;
    height: 95%;
    margin: 2.5%;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--bru-blue) 0%, var(--bru-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Dots */
.bru-hero__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-md);
}

.bru-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.bru-hero__dot.active {
    background: var(--bru-orange);
    border-color: var(--bru-orange);
    transform: scale(1.2);
}

/* ============================================================
   BRAND / TRUST BAR
   ============================================================ */
.bru-brands {
    background: var(--bru-gray-100);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--bru-gray-200);
}

.bru-brands__label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--bru-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.bru-brands__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.bru-brands__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--bru-gray-600);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.bru-brands__name:hover {
    opacity: 1;
}

/* ============================================================
   USP GRID
   ============================================================ */
.bru-usp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.bru-usp__item {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--bru-white);
    border: 1px solid var(--bru-gray-200);
    transition: all 0.3s ease;
}

.bru-usp__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--bru-orange);
}

.bru-usp__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--bru-orange), #FF8C42);
    color: var(--bru-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.bru-usp__icon svg { width: 24px; height: 24px; }

.bru-usp__item h4 {
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.bru-usp__item p {
    font-size: 0.88rem;
    color: var(--bru-gray-500);
    line-height: 1.5;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.bru-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.bru-cat-card {
    background: var(--bru-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--bru-gray-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bru-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.bru-cat-card__img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.bru-cat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bru-cat-card:hover .bru-cat-card__img img {
    transform: scale(1.05);
}

.bru-cat-card__count {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--bru-orange);
    color: var(--bru-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.bru-cat-card__body {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bru-cat-card__body h3 {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
}

.bru-cat-card__body h3 a {
    color: var(--bru-navy);
}

.bru-cat-card__body h3 a:hover {
    color: var(--bru-orange);
}

.bru-cat-card__body p {
    font-size: 0.88rem;
    color: var(--bru-gray-500);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: var(--space-md);
}

.bru-cat-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bru-orange);
}

.bru-cat-card__link:hover {
    gap: 10px;
}

/* ============================================================
   PRODUCT CARDS (Loop)
   ============================================================ */
.bru-products__grid,
ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--space-xl) !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Override WooCommerce float layout */
ul.products::before,
ul.products::after { display: none !important; }
ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.bru-product-card,
ul.products li.product {
    background: var(--bru-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--bru-gray-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bru-product-card:hover,
ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.bru-product-card__img img,
ul.products li.product img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: var(--space-md);
    background: var(--bru-gray-100);
}

.bru-product-card__body {
    padding: var(--space-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bru-product-card__body h3 {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bru-product-card__body h3 a {
    color: var(--bru-navy);
}

/* Quote Buttons on Cards */
.bru-loop-quote {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-md);
    padding-top: 0;
    margin-top: auto;
}

.bru-loop-quote .bru-btn {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   SHOP LAYOUT — Sidebar + Products
   ============================================================ */
.bru-shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.bru-shop-sidebar {
    position: sticky;
    top: 80px;
}

.bru-shop-sidebar h3 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--bru-orange);
}

.bru-shop-sidebar ul {
    list-style: none;
    padding: 0;
}

.bru-shop-sidebar ul li {
    margin-bottom: 2px;
}

.bru-shop-sidebar ul li a {
    display: block;
    padding: 8px 12px;
    font-size: 0.88rem;
    color: var(--bru-gray-600);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.bru-shop-sidebar ul li a:hover,
.bru-shop-sidebar ul li.current-cat a {
    background: rgba(232,93,4,0.08);
    color: var(--bru-orange);
    font-weight: 600;
}

.bru-shop-sidebar ul li .count,
.bru-shop-sidebar ul li .children {
    display: none;
}

/* ============================================================
   SINGLE PRODUCT
   ============================================================ */
.bru-single-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.bru-single-product__gallery img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--bru-gray-200);
}

.bru-single-product__info h1 {
    font-size: 1.6rem;
    margin-bottom: var(--space-lg);
}

.bru-single-product__meta {
    margin-bottom: var(--space-xl);
}

.bru-single-product__meta-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid var(--bru-gray-200);
    font-size: 0.92rem;
}

.bru-single-product__meta-label {
    font-weight: 600;
    color: var(--bru-navy);
    min-width: 120px;
    font-family: var(--font-heading);
}

/* Quote Box */
.bru-quote-box {
    background: var(--bru-navy);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    color: var(--bru-white);
}

.bru-quote-box__title {
    color: var(--bru-white);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

.bru-quote-box__desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.bru-quote-box__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* ============================================================
   RELATED PRODUCTS GRID
   ============================================================ */
.bru-related-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: var(--space-lg) !important;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.bru-page-header {
    background: var(--bru-navy);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.bru-page-header h1 {
    color: var(--bru-white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: var(--space-sm);
}

.bru-page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.bru-cta {
    background: linear-gradient(135deg, var(--bru-navy) 0%, var(--bru-blue) 100%);
    padding: var(--space-4xl) 0;
    text-align: center;
    color: var(--bru-white);
}

.bru-cta h2 {
    color: var(--bru-white);
    margin-bottom: var(--space-md);
}

.bru-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: var(--space-2xl);
}

.bru-cta__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.bru-footer {
    background: var(--bru-navy);
    color: rgba(255,255,255,0.7);
    padding-top: var(--space-4xl);
}

.bru-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.bru-footer__logo img {
    max-height: 40px;
    width: auto;
    margin-bottom: var(--space-lg);
    filter: brightness(0) invert(1);
}

.bru-footer__logo p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.bru-footer h4 {
    color: var(--bru-white);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bru-footer ul {
    list-style: none;
    padding: 0;
}

.bru-footer ul li {
    margin-bottom: var(--space-sm);
}

.bru-footer ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.bru-footer ul li a:hover {
    color: var(--bru-orange);
}

.bru-footer__contact li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: var(--space-md);
    font-size: 0.88rem;
}

.bru-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xl) 0;
    font-size: 0.82rem;
}

.bru-footer__bottom a {
    color: rgba(255,255,255,0.5);
}

.bru-footer__bottom a:hover {
    color: var(--bru-orange);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.bru-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--bru-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bru-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.bru-whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: var(--bru-white);
}

/* ============================================================
   SIDEBAR WIDGETS
   ============================================================ */
.bru-sidebar .widget {
    background: var(--bru-white);
    border: 1px solid var(--bru-gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.bru-sidebar .widget-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--bru-orange);
}

/* ============================================================
   BLOG / POST CARDS
   ============================================================ */
.bru-post-card {
    background: var(--bru-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--bru-gray-200);
    transition: all 0.3s ease;
}

.bru-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.bru-post-card__img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bru-post-card__body {
    padding: var(--space-lg);
}

.bru-post-card__body h3 {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
}

.bru-post-card__body h3 a {
    color: var(--bru-navy);
}

.bru-post-card__meta {
    font-size: 0.8rem;
    color: var(--bru-gray-500);
    margin-bottom: var(--space-sm);
}

/* ============================================================
   LOCATION LANDING PAGE
   ============================================================ */
.bru-location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bru-location-tag {
    background: var(--bru-white);
    border: 1px solid var(--bru-gray-300);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--bru-navy);
}

.bru-location-hubs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bru-location-hub {
    background: var(--bru-navy);
    color: var(--bru-white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.bru-location-industries {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-md);
}

.bru-location-industry {
    background: var(--bru-white);
    border: 1px solid var(--bru-gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* ============================================================
   CONTENT STYLES
   ============================================================ */
.bru-content p { margin-bottom: var(--space-md); }
.bru-content h2 { margin: var(--space-2xl) 0 var(--space-lg); }
.bru-content h3 { margin: var(--space-xl) 0 var(--space-md); }
.bru-content ul, .bru-content ol { margin-bottom: var(--space-md); padding-left: var(--space-xl); }
.bru-content li { margin-bottom: var(--space-xs); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.bru-faq-item {
    border: 1px solid var(--bru-gray-200);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
}

.bru-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: var(--bru-white);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bru-navy);
    text-align: left;
}

.bru-faq-question:hover {
    background: var(--bru-gray-100);
}

.bru-faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 0.92rem;
    color: var(--bru-gray-600);
    line-height: 1.7;
    display: none;
}

.bru-faq-item.open .bru-faq-answer {
    display: block;
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    .bru-topbar, .bru-header, .bru-footer, .bru-whatsapp-float,
    .bru-breadcrumbs, .bru-hero__dots, .bru-loop-quote { display: none !important; }
    body { color: #000; font-size: 12pt; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .bru-hero__split { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .bru-hero__slider { max-width: 100%; margin: 0 auto; }
    .bru-hero__slides { aspect-ratio: 16 / 10; }
    .bru-hero__slide img { width: 100%; height: 100%; margin: 0; border-radius: var(--radius-lg); }
    .bru-usp { grid-template-columns: repeat(2, 1fr); }
    .bru-footer__grid { grid-template-columns: 1fr 1fr; }
    
    .bru-shop-layout {
        grid-template-columns: 1fr !important;
    }
    .bru-shop-sidebar {
        position: static;
        order: 2;
    }
    .bru-shop-products {
        order: 1;
    }
    
    .bru-products__grid, ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .bru-related-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .bru-single-product {
        grid-template-columns: 1fr;
    }
    
    .bru-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bru-nav { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bru-white);
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 1px solid var(--bru-gray-200);
    }
    .bru-nav.open { display: flex; }
    .bru-nav ul, .bru-nav .menu { flex-direction: column; width: 100%; }
    .bru-nav a { padding: 12px 16px; width: 100%; }
    .bru-menu-toggle { display: flex; }
    .bru-header__cta { display: none; }
    .bru-topbar__left { gap: var(--space-sm); font-size: 0.75rem; }
    
    .bru-hero { min-height: auto; }
    .bru-hero__split { padding: var(--space-2xl) 0; }
    .bru-hero__title { font-size: 1.8rem; }
    
    .bru-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--space-md) !important;
    }
    
    .bru-footer__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .bru-footer__bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
}

@media (max-width: 480px) {
    .bru-container, .bru-container-wide { padding: 0 var(--space-md); }
    .bru-section { padding: var(--space-2xl) 0; }
    .bru-categories__grid { grid-template-columns: 1fr; }
    .bru-usp { grid-template-columns: 1fr; }
    
    .bru-products__grid, ul.products {
        grid-template-columns: 1fr 1fr !important;
        gap: var(--space-md) !important;
    }
    
    ul.products li.product img,
    .bru-product-card__img img {
        height: 140px;
    }
    
    .bru-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--space-sm) !important;
    }
    
    .bru-related-grid .bru-loop-quote .bru-btn {
        font-size: 0.7rem;
        padding: 6px 8px;
    }
}
