/* ==============================================================
   UNICAM â€” style.css
   Single stylesheet for all pages.
   Shared rules + page-specific sections.
   Usage: <link rel="stylesheet" href="style.css"/>
============================================================== */

/* â”€â”€ SHARED (used across multiple pages) â”€â”€ */

:root {
      --red:        #CC0000;
      --red-dark:   #A30000;
      --red-light:  #FFF5F5;
      --navy:       #1C2B3A;
      --navy-mid:   #2E4057;
      --bg:         #FFFFFF;
      --bg-soft:    #F7F7F5;
      --bg-mid:     #EEEDE9;
      --border:     #E2E1DC;
      --text:       #1A1A1A;
      --text-mid: #000000;
      --text-muted: #000000;
      --white:      #FFFFFF;
      --shadow-xs:  0 1px 4px
      rgba(0,0,0,0.06);
      --shadow-sm:  0 2px 12px
      rgba(0,0,0,0.08);
      --shadow-md:  0 8px 30px
      rgba(0,0,0,0.12);
      --shadow-lg:  0 20px 60px
      rgba(0,0,0,0.16);
      --radius:     8px;
      --radius-lg:  14px;
      --tr:         0.25s ease;
    }

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

html { scroll-behavior: smooth; }

body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.65; overflow-x: hidden; }

h1,h2,h3,h4,h5,h6 { font-family: 'Oswald', sans-serif; font-weight: 600; letter-spacing: 0.01em; line-height: 1.15; }

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

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

.btn-red { background: var(--red); color: #fff; font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 0.9rem; letter-spacing: 0.08em; padding: 0.7rem 2rem; border: 2px solid var(--red); border-radius: var(--radius); transition: var(--tr); display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }

.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; transform: translateY(-1px); }

.btn-outline-red { background: transparent; color: var(--red); font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 0.9rem; letter-spacing: 0.08em; padding: 0.7rem 2rem; border: 2px solid var(--red); border-radius: var(--radius); transition: var(--tr); display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }

.btn-outline-red:hover { background: var(--red); color: #fff; transform: translateY(-1px); }

.btn-navy { background: var(--navy); color: #fff; font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 0.9rem; letter-spacing: 0.08em; padding: 0.7rem 2rem; border: 2px solid var(--navy); border-radius: var(--radius); transition: var(--tr); display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }

.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: #fff; }

.btn-sm-ghost { background: transparent; color: var(--text-mid); font-size: 0.8rem; font-weight: 500; padding: 0.45rem 1rem; border: 1.5px solid var(--border); border-radius: 6px; transition: var(--tr); cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }

.btn-sm-ghost:hover { border-color: var(--navy); color: var(--navy); }

.topbar { background: var(--navy); color: rgba(255,255,255,0.8); font-size: 0.75rem; padding: 0.45rem 0; }

.topbar a { color: rgba(255,255,255,0.7); transition: color 0.2s; }

.topbar a:hover { color: #fff; }

.topbar .sep { margin: 0 0.75rem; opacity: 0.3; }

.main-navbar { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1050; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s; }

.main-navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }

.navbar-wrap { display: flex; align-items: center; gap: 1.25rem; padding: 0.8rem 0; }

.logo-mark { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

.logo-wordmark { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.65rem; color: var(--red); letter-spacing: 0.04em; line-height: 1; }

.nav-menu { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; gap: 0; flex: 1; }

.nav-menu > li { position: static; }

.nav-menu > li > a { display: flex; align-items: center; gap: 4px; font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.85rem; color: var(--text-mid); padding: 0.6rem 0.85rem; border-radius: var(--radius); transition: var(--tr); white-space: nowrap; }

.nav-menu > li > a:hover { color: var(--red); background: var(--red-light); }

.nav-menu > li > a .chev { font-size: 0.55rem; transition: transform 0.22s; }

.has-mega:hover > a .chev { transform: rotate(180deg); }

.has-mega { position: static !important; }

.mega-panel { position: absolute; left: 0; right: 0; top: 100%; background: var(--white); border-top: 3px solid var(--red); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); padding: 2rem 0; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s; z-index: 200; pointer-events: none; }

.has-mega:hover .mega-panel, .has-mega.mega-open .mega-panel, .mega-panel:hover { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }

.mega-col-head { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); padding-bottom: 0.6rem; border-bottom: 1px solid var(--border); margin-bottom: 0.85rem; }

.mega-links { list-style: none; padding: 0; margin: 0; }

.mega-links li a { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; color: var(--text-mid); padding: 0.35rem 0.6rem; border-radius: 6px; transition: var(--tr); }

.mega-links li a:hover { background: var(--red-light); color: var(--red); }

.mega-links li a i { color: var(--red); font-size: 0.8rem; width: 14px; }

.mega-feat-card { background: var(--bg-soft); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }

.mega-feat-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

.mega-feat-body { padding: 0.85rem; }

.mega-feat-badge { display: inline-block; background: var(--red); color: #fff; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.15rem 0.55rem; border-radius: 20px; margin-bottom: 0.4rem; }

.mega-feat-name { font-family: 'Oswald', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }

.mega-feat-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

.nb-search { display: flex; align-items: center; background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; min-width: 190px; transition: border-color 0.2s, box-shadow 0.2s; }

.nb-search:focus-within { border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,0,0,0.08); }

.nb-search input { background: transparent; border: none; outline: none; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; color: var(--text); padding: 0.5rem 0.75rem; flex: 1; }

.nb-search input::placeholder { color: var(--text-muted); }

.nb-search button { background: none; border: none; color: var(--text-muted); padding: 0.5rem 0.75rem; cursor: pointer; transition: color 0.2s; }

.nb-search button:hover { color: var(--red); }

.nb-actions { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }

.nb-icon-btn { width: 38px; height: 38px; background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--text-mid); font-size: 0.9rem; cursor: pointer; transition: var(--tr); }

.nb-icon-btn:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }

.nav-toggler { display: none; background: none; border: 1.5px solid var(--border); border-radius: 6px; padding: 0.4rem 0.6rem; cursor: pointer; color: var(--navy); font-size: 1rem; }

.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 1rem; }

.mobile-nav.open { display: block; }

.mobile-nav a { display: block; padding: 0.55rem 0.75rem; font-weight: 500; color: var(--text-mid); border-radius: 6px; transition: var(--tr); }

.mobile-nav a:hover { background: var(--red-light); color: var(--red); }

.breadcrumb-bar { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 0.7rem 0; }
.breadcrumb-bar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
	background-color:none;
}
.breadcrumb-bar-brand {
    
    padding: 0.7rem 0;
}
.breadcrumb { margin: 0; font-size: 0.8rem; }

.breadcrumb-item a { color: var(--text-mid); transition: color 0.2s; }

.breadcrumb-item a:hover { color: var(--red); }

.breadcrumb-item.active { color: var(--text-muted); }

.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

.pd-tab-nav { display: flex; border-bottom: 2px solid var(--border); background: var(--white); overflow-x: auto; scrollbar-width: none; }

.pd-tab-nav::-webkit-scrollbar { display: none; }

.pd-tab-btn { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--text-muted); padding: 1rem 1.5rem; border: none; background: transparent; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: color 0.2s, border-color 0.2s; white-space: nowrap; display: flex; align-items: center; gap: 7px; }

.pd-tab-btn:hover { color: var(--text); }

.pd-tab-btn.active { color: var(--red); border-bottom-color: var(--red); }

.pd-tab-pane { display: none; padding: 2.5rem 0; }

.pd-tab-pane.active { display: block; }

.section-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 0.75rem; }

.section-eyebrow::before { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--red); border-radius: 2px; }

.prod-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--tr); height: 100%; display: flex; flex-direction: column; }

.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(204,0,0,0.25); }

.prod-img-wrap { position: relative; overflow: hidden; }

.prod-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.4s ease; }

.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }

.prod-badge { position: absolute; top: 0.7rem; left: 0.7rem; background: var(--red); color: #fff; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 20px; }

.prod-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }

.prod-brand { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.3rem; }

.prod-name { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.25; }

.prod-specs { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem; }

.spec-tag { font-size: 0.67rem; color: var(--text-muted); background: var(--bg-soft); border: 1px solid var(--border); padding: 0.15rem 0.55rem; border-radius: 20px; }

.prod-actions { display: flex; gap: 0.5rem; margin-top: auto; }

.prod-actions .btn-red { flex: 1; justify-content: center; font-size: 0.8rem; padding: 0.5rem 0.75rem; }

.prod-actions .btn-sm-ghost { font-size: 0.78rem; padding: 0.5rem 0.75rem; }

.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; }

.footer-logo-text { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--white); letter-spacing: 0.04em; }

.footer-logo-text span { color: var(--red); }

.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 240px; margin-top: 0.6rem; }

.footer-head { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.9); margin-bottom: 1.1rem; }

.footer-link { display: block; font-size: 0.83rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; transition: color 0.2s; }

.footer-link:hover { color: var(--red); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding-top: 1.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.3); }

.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-right: 0.4rem; transition: var(--tr); }

.social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }

.modal-content { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

.modal-header { border-bottom: 1px solid var(--border); padding: 1.1rem 1.5rem; background: var(--bg-soft); }

.modal-title { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--navy); }

.modal-body { padding: 1.5rem; }

.modal-footer { border-top: 1px solid var(--border); padding: 1rem 1.5rem; background: var(--bg-soft); }

.enq-modal .modal-dialog { max-width: 920px; }

.enq-left { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }

.enq-prod-img-wrap { width: 100%; max-width: 200px; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); margin-bottom: 1.25rem; }

.enq-prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.enq-prod-name { font-family: 'Oswald', sans-serif; font-size: 1.2rem; color: #fff; margin-bottom: 0.4rem; }

.enq-prod-desc { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

.enq-guarantee { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem; text-align: left; }

.enq-guarantee-item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.6); }

.enq-guarantee-item i { color: #4ade80; font-size: 0.75rem; }

.enq-right { padding: 1.75rem 2rem; overflow-y: auto; max-height: 90vh; }

.enq-form-title { font-family: 'Oswald', sans-serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 0.3rem; }

.enq-form-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.form-label-custom { font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; display: block; }

.form-control-custom { width: 100%; background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--text); padding: 0.6rem 0.9rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }

.form-control-custom:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,0,0,0.08); background: var(--white); }

.form-control-custom::placeholder { color: var(--text-muted); }

.gear-select-label { font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 6px; }

.gear-select-label i { color: var(--red); }

.gear-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 0.6rem; max-height: 200px; overflow-y: auto; padding: 2px; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }

.gear-grid::-webkit-scrollbar { width: 4px; }

.gear-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.gear-item input[type="checkbox"] { display: none; }

.gear-item label { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; padding: 0.65rem 0.5rem 0.5rem; background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: var(--tr); text-align: center; position: relative; }

.gear-item label:hover { border-color: rgba(204,0,0,0.4); background: var(--red-light); }

.gear-item input:checked + label { border-color: var(--red); background: var(--red-light); }

.gear-item input:checked + label::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 5px; right: 6px; font-size: 0.6rem; color: var(--red); }

.gear-item-thumb { width: 56px; height: 44px; border-radius: 6px; object-fit: cover; background: var(--bg-mid); display: block; }

.gear-item-thumb-ph { width: 56px; height: 44px; border-radius: 6px; background: var(--bg-mid); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 1.2rem; }

.gear-item-name { font-size: 0.72rem; font-weight: 500; color: var(--text); line-height: 1.3; }

.gear-item input:checked + label .gear-item-name { color: var(--red); font-weight: 600; }

.date-pair { display: flex; gap: 0.75rem; }

.date-pair > div { flex: 1; }

@media (max-width: 991px) {
      .nav-menu, .nb-search { display: none !important; }
      .nav-toggler { display: flex; align-items: center; }
      .pd-gallery { position: static; }
      .pd-buy-box { position: static; }
      .enq-left { display: none; }
    }

@media (max-width: 767px) {
      .pd-hl-grid { grid-template-columns: 1fr; }
      .date-pair { flex-direction: column; gap: 0.5rem; }
      .pdbb-chips { gap: 0.3rem; }
      .pdbb-chip { font-size: 0.7rem; padding: 0.28rem 0.6rem; }
      .pd-buy-box-inner { padding: 1rem 1.1rem; }
      .pd-icon-strip { gap: 0.75rem; }
    }

@media (max-width: 400px) {
      .pd-icon-strip-item span { display: none; }
    }

.eyebrow {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--red);
      display: inline-flex; align-items: center; gap: 8px;
      margin-bottom: 0.75rem;
    }

.eyebrow::before {
      content: ''; display: inline-block;
      width: 22px; height: 2px;
      background: var(--red); border-radius: 2px;
    }

.nav-menu > li > a:hover,
    .nav-menu > li > a.active { color: var(--red); background: var(--red-light); }

.nav-menu > li.has-mega:hover > a .chev { transform: rotate(180deg); }

.mega-links li { margin-bottom: 0.2rem; }

.mega-feat-card:hover { box-shadow: var(--shadow-sm); border-color: rgba(204,0,0,0.3); }

.prod-quick {
      position: absolute;
      top: 0.7rem; right: 0.7rem;
      background: rgba(255,255,255,0.94);
      border: 1px solid var(--border);
      border-radius: 7px;
      width: 34px; height: 34px;
      display: flex; align-items: center; justify-content: center;
      color: var(--navy); font-size: 0.8rem;
      cursor: pointer; transition: var(--tr);
      z-index: 3;
      opacity: 0; transform: translateX(10px);
    }

.prod-card:hover .prod-quick { opacity: 1; transform: translateX(0); }

.prod-quick:hover { background: var(--red); color: #fff; border-color: var(--red); }

.qv-name { font-family: 'Oswald', sans-serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 0.75rem; }

.qv-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.25rem; }

.reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

.reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

.section-pad    { padding: 5rem 0; }

.section-pad-sm { padding: 3.5rem 0; }

.section-title {
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      color: var(--navy);
      margin-bottom: 0.6rem;
    }

.section-sub {
      color: var(--text-mid);
      font-weight: 300;
      font-size: 0.95rem;
      max-width: 520px;
    }

.page-hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3550 100%);
      position: relative;
      overflow: hidden;
      padding: 4rem 0 3.5rem;
    }

.page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 50%, rgba(204,0,0,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
      pointer-events: none;
    }

.featured-brand-card .fb-img-wrap {
      width: 100%;
      aspect-ratio: 16/9;
      overflow: hidden;
      background: var(--bg-soft);
      position: relative;
    }

.brand-logo-img {
      max-width: 120px;
      max-height: 56px;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
      filter: grayscale(20%);
      transition: transform 0.3s ease, filter 0.3s ease;
    }


.reveal-delay-1 { transition-delay: 0.08s; }

.reveal-delay-2 { transition-delay: 0.16s; }

.reveal-delay-3 { transition-delay: 0.24s; }

.reveal-delay-4 { transition-delay: 0.32s; }

.nav-menu > li > a:hover,
    .nav-menu > li > a.active-link { color: var(--red); background: var(--red-light); }

.hero-label {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(204,0,0,0.18); color: var(--red);
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; padding: 0.35rem 0.85rem;
      border-radius: 20px; margin-bottom: 1.1rem;
      border: 1px solid rgba(204,0,0,0.3);
    }

.hero-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 700; color: #fff;
      line-height: 1.08; margin-bottom: 0.75rem;
    }

.hero-title span { color: var(--red); }

.hero-sub {
      font-size: 0.95rem; color: rgba(255,255,255,0.6);
      font-weight: 300; line-height: 1.75;
      max-width: 500px; margin-bottom: 2rem;
    }

.hero-search {
      display: flex; background: #fff;
      border-radius: var(--radius); overflow: hidden;
      max-width: 540px; box-shadow: var(--shadow-lg);
    }

.hero-search input {
      flex: 1; border: none; outline: none;
      font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
      color: var(--text); padding: 0.85rem 1.1rem; background: transparent;
    }

.hero-search input::placeholder { color: var(--text-muted); }

.hero-search button {
      background: var(--red); color: #fff; border: none;
      padding: 0.85rem 1.5rem;
      font-family: 'Oswald', sans-serif; font-size: 0.9rem; font-weight: 500;
      letter-spacing: 0.06em; cursor: pointer;
      display: flex; align-items: center; gap: 8px;
      transition: background 0.2s; flex-shrink: 0;
    }

.hero-search button:hover { background: var(--red-dark); }

.hero-stats {
      display: flex; gap: 2.5rem; flex-wrap: wrap;
      margin-top: 2rem; padding-top: 1.75rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

.hstat-num { font-family: 'Oswald', sans-serif; font-size: 1.7rem; font-weight: 700; color: var(--red); line-height: 1; }

.hstat-label { font-size: 0.73rem; color: rgba(255,255,255,0.5); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.08em; }

.cat-filter-bar {
      background: #fff;
      border-bottom: 1px solid var(--border);
      position: sticky; top: 72px; z-index: 100;
      box-shadow: var(--shadow-xs);
    }

.cat-filter-inner {
      display: flex; overflow-x: auto; scrollbar-width: none;
      align-items: stretch;
    }

.cat-filter-inner::-webkit-scrollbar { display: none; }

.cat-tab {
      flex-shrink: 0;
      display: flex; align-items: center; gap: 7px;
      padding: 0.9rem 1.3rem;
      font-family: 'DM Sans', sans-serif; font-weight: 500;
      font-size: 0.82rem; color: var(--text-muted);
      border-bottom: 3px solid transparent; margin-bottom: -1px;
      cursor: pointer; transition: var(--tr);
      white-space: nowrap; background: none; border-top: none;
      border-left: none; border-right: none;
    }

.cat-tab:hover { color: var(--text); background: var(--bg-soft); }

.cat-tab.active { color: var(--red); border-bottom-color: var(--red); background: var(--red-light); }

.cat-tab i { font-size: 0.95rem; }

.cat-tab .tab-count {
      background: var(--bg-mid); color: var(--text-muted);
      font-size: 0.65rem; font-weight: 600;
      padding: 0.1rem 0.45rem; border-radius: 20px;
      transition: var(--tr);
    }

.cat-tab.active .tab-count { background: var(--red); color: #fff; }

.content-section { padding: 3rem 0 5rem; background: var(--bg-soft); }

.section-intro { margin-bottom: 2.25rem; }

.section-intro h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: 0.4rem; }

.section-intro p { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; }

.cat-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 100%;
      cursor: pointer;
      transition: var(--tr);
      position: relative;
      display: flex;
      flex-direction: column;
    }

.cat-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: rgba(204,0,0,0.3);
    }

.cat-card-img-wrap {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16/10;
    }

.cat-card-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform 0.45s ease;
    }

.cat-card:hover .cat-card-img-wrap img { transform: scale(1.07); }

.cat-card-img-wrap::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.45) 100%);
      pointer-events: none;
    }

.cat-count-badge {
      position: absolute;
      bottom: 0.75rem; right: 0.75rem;
      background: rgba(255,255,255,0.95);
      border-radius: 20px;
      padding: 0.25rem 0.7rem;
      font-size: 0.72rem; font-weight: 600;
      color: var(--navy);
      z-index: 2;
      display: flex; align-items: center; gap: 5px;
      box-shadow: var(--shadow-xs);
    }

.cat-count-badge i { color: var(--red); font-size: 0.65rem; }

.cat-card-body { padding: 1.2rem 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }

.cat-icon-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.85rem; }

.cat-icon-box {
      width: 44px; height: 44px;
      background: var(--red-light);
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      color: var(--red); font-size: 1.15rem;
      transition: var(--tr);
    }

.cat-card:hover .cat-icon-box { background: var(--red); color: #fff; }

.cat-arrow {
      width: 30px; height: 30px;
      border: 1.5px solid var(--border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted); font-size: 0.7rem;
      transition: var(--tr);
    }

.cat-card:hover .cat-arrow { border-color: var(--red); color: var(--red); background: var(--red-light); }

.cat-card-title {
      font-family: 'Oswald', sans-serif;
      font-size: 1.2rem; font-weight: 600;
      color: var(--navy); margin-bottom: 0.3rem;
    }

.cat-card-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 1rem; }

.cat-tag-row { display: flex; gap: 0.4rem; flex-wrap: wrap; }

.cat-tag {
      font-size: 0.65rem; font-weight: 500;
      padding: 0.15rem 0.55rem;
      background: var(--bg-soft); border: 1px solid var(--border);
      border-radius: 20px; color: var(--text-muted);
      transition: var(--tr);
    }

.cat-card:hover .cat-tag { border-color: rgba(204,0,0,0.25); color: var(--text-mid); }

.featured-strip { background: #fff; padding: 3.5rem 0; border-top: 1px solid var(--border); }

.mini-prod-card {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden; transition: var(--tr);
      display: flex; flex-direction: column; height: 100%;
    }

.mini-prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(204,0,0,0.25); }

.mini-prod-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.4s ease; }

.mini-prod-card:hover .mini-prod-img { transform: scale(1.05); }

.mini-prod-body { padding: 0.9rem 1rem 1.1rem; flex: 1; display: flex; flex-direction: column; }

.mini-prod-brand { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.2rem; }

.mini-prod-name { font-family: 'Oswald', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.2; }

.mini-prod-footer { margin-top: auto; display: flex; gap: 0.4rem; }

.mini-btn-rent { flex: 1; background: var(--red); color: #fff; font-family: 'Oswald', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; padding: 0.45rem 0.6rem; border: 2px solid var(--red); border-radius: 6px; cursor: pointer; transition: var(--tr); display: flex; align-items: center; justify-content: center; gap: 5px; }

.mini-btn-rent:hover { background: var(--red-dark); border-color: var(--red-dark); }

.mini-btn-detail { background: transparent; color: var(--text-mid); font-size: 0.78rem; font-weight: 500; padding: 0.45rem 0.75rem; border: 1.5px solid var(--border); border-radius: 6px; cursor: pointer; transition: var(--tr); display: flex; align-items: center; justify-content: center; text-decoration: none; }

.mini-btn-detail:hover { border-color: var(--navy); color: var(--navy); }

.mini-badge { position: absolute; top: 0.6rem; left: 0.6rem; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.18rem 0.55rem; border-radius: 20px; }

.why-strip {
      background: var(--navy);
      padding: 3rem 0;
    }

.why-item {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1.5rem;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg);
      transition: var(--tr);
      height: 100%;
    }

.why-item:hover { background: rgba(255,255,255,0.09); border-color: rgba(204,0,0,0.35); }

.why-icon-box {
      width: 46px; height: 46px; flex-shrink: 0;
      background: rgba(204,0,0,0.15);
      border: 1px solid rgba(204,0,0,0.3);
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      color: var(--red); font-size: 1.1rem;
    }

.why-text h4 { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.3rem; }

.why-text p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin: 0; }

.rd1 { transition-delay: 0.05s; }

.rd2 { transition-delay: 0.12s; }

.rd3 { transition-delay: 0.19s; }

.rd4 { transition-delay: 0.26s; }

.rd5 { transition-delay: 0.33s; }

.rd6 { transition-delay: 0.40s; }

.rd7 { transition-delay: 0.47s; }

.rd8 { transition-delay: 0.54s; }

.nav-menu > li > a.active-link { color:var(--red); background:var(--red-light); }

.breadcrumb-item+.breadcrumb-item::before { color:var(--text-muted); }

@media(max-width:991px){
      .nav-menu,.nb-search{display:none!important}
      .nav-toggler{display:flex;align-items:center}
    }

@media(max-width:767px){
      .phone-row{flex-direction:column}
      .phone-prefix{width:100%}
      .info-block{margin-top:2rem}
    }

.why-section { background: var(--navy); }

.why-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg);
      padding: 1.75rem 1.5rem;
      height: 100%;
      transition: var(--tr);
    }

.why-card:hover {
      background: rgba(255,255,255,0.09);
      border-color: rgba(204,0,0,0.4);
      transform: translateY(-4px);
    }

.why-icon {
      width: 50px; height: 50px;
      background: rgba(204,0,0,0.15);
      border: 1px solid rgba(204,0,0,0.3);
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      color: var(--red); font-size: 1.2rem;
      margin-bottom: 1rem;
    }

.why-title { font-family:'Oswald',sans-serif; font-size:1.05rem; font-weight:600; color:#fff; margin-bottom:0.45rem; }

.why-desc  { font-size:0.82rem; color:rgba(255,255,255,0.55); line-height:1.7; }


/* ============================================================
   PAGE-SPECIFIC: PRODUCT DETAIL
============================================================ */

.pd-main-section { padding: 3rem 0 4rem; }

.pd-gallery { position: sticky; top: 90px; }

.pd-main-img-wrap {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
    background: var(--bg-soft);
}

.pd-main-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }

.pd-main-img-wrap:hover img { transform: scale(1.09); }

.pd-zoom-hint { position: absolute; bottom: 0.7rem; right: 0.7rem; background: rgba(255,255,255,0.9); border: 1px solid var(--border); border-radius: 6px; padding: 0.3rem 0.65rem; font-size: 0.68rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; transition: opacity 0.2s; }

.pd-main-img-wrap:hover .pd-zoom-hint { opacity: 0; }

.pd-thumbs { display: flex; gap: 0.6rem; margin-top: 0.85rem; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }

.pd-thumbs::-webkit-scrollbar { display: none; }

.pd-thumb { flex-shrink: 0; width: 80px; height: 80px; border-radius: var(--radius); border: 2px solid var(--border); overflow: hidden; cursor: pointer; transition: var(--tr); background: var(--bg-soft); }

.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pd-thumb:hover { border-color: rgba(204,0,0,0.4); }

.pd-thumb.active { border-color: var(--red); box-shadow: 0 0 0 2px rgba(204,0,0,0.15); }

.pd-badge-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }

.pd-badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 20px; }

.pd-badge-red { background: var(--red); color: #fff; }

.pd-badge-navy { background: var(--navy); color: #fff; }

.pd-badge-green { background: #16a34a; color: #fff; }

.pd-brand { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem; }

.pd-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--navy); line-height: 1.08; margin-bottom: 0.6rem; }

.pd-short-desc { font-size: 0.95rem; color: var(--text-mid); font-weight: 300; line-height: 1.75; margin-bottom: 1.5rem; }

.pd-hl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.pd-hl-item {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.55rem 0.8rem;
    font-size: 0.82rem;
    color: var(--text-mid);
    transition: var(--tr);
}
.pd-avail { display: flex; align-items: center; gap: 1.5rem; padding: 0.85rem 1.1rem; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 1.5rem; flex-wrap: wrap; }

.pd-avail-item { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--text-mid); }

.avail-dot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; flex-shrink: 0; }

.pd-opt-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--navy); margin-bottom: 0.75rem; }

.pd-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }

.pd-chip { font-size: 0.8rem; font-weight: 500; padding: 0.4rem 1rem; border: 1.5px solid var(--border); border-radius: 20px; cursor: pointer; transition: var(--tr); background: var(--white); color: var(--text-mid); user-select: none; }

.pd-chip:hover, .pd-chip.active { border-color: var(--red); color: var(--red); background: var(--red-light); }

.pd-hl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1.75rem; }

.pd-hl-item { display: flex; align-items: center; gap: 9px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.55rem 0.8rem; font-size: 0.82rem; color: var(--text-mid); transition: var(--tr); }

.pd-hl-item:hover { border-color: rgba(204,0,0,0.3); background: var(--red-light); }

.pd-hl-item i { color: var(--red); font-size: 0.75rem; flex-shrink: 0; }

.pd-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

.pd-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; padding-top: 1.25rem; border-top: 1px solid var(--border); }

.pd-trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--text-muted); }

.pd-trust-item i { color: var(--red); }

.pd-tabs-section { background: var(--bg-soft); border-top: 1px solid var(--border); }

.pd-desc-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.85; font-weight: 300; }

.pd-desc-text p { margin-bottom: 1rem; }

.pd-desc-text p:last-child { margin-bottom: 0; }

.pd-desc-text strong { color: var(--text); font-weight: 600; }

.spec-table-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }

.spec-table-head { background: var(--navy); color: #fff; padding: 0.9rem 1.1rem; font-family: 'Oswald', sans-serif; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em; display: flex; align-items: center; gap: 8px; }

.spec-table-head i { color: var(--red); }

.pd-spec-table { width: 100%; border-collapse: collapse; }

.pd-spec-table tr { border-bottom: 1px solid var(--border); }

.pd-spec-table tr:last-child { border-bottom: none; }

.pd-spec-table td { padding: 0.85rem 1rem; font-size: 0.88rem; vertical-align: middle; }

.pd-spec-table td:first-child { font-weight: 600; color: var(--navy); background: var(--bg-soft); width: 38%; border-right: 1px solid var(--border); }

.pd-spec-table td:last-child { color: var(--text-mid); }

.pd-spec-table tr:hover td { background: rgba(204,0,0,0.018); }

.pd-feat-list { list-style: none; padding: 0; margin: 0; }

.pd-feat-list li { display: flex; align-items: flex-start; gap: 12px; padding: 0.9rem 1.1rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); margin-bottom: 0.6rem; transition: var(--tr); }

.pd-feat-list li:hover { border-color: rgba(204,0,0,0.3); box-shadow: var(--shadow-xs); }

.pd-feat-list li .fi { color: var(--red); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; width: 18px; }

.pd-feat-list li .ft { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }

.pd-feat-list li .fd { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

.pd-box-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.75rem; }

.pd-box-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 0.75rem; text-align: center; font-size: 0.77rem; color: var(--text-mid); transition: var(--tr); }

.pd-box-item:hover { border-color: var(--red); background: var(--red-light); color: var(--red); }

.pd-box-item i { font-size: 1.4rem; color: var(--text-muted); margin-bottom: 0.5rem; display: block; }

.pd-box-item:hover i { color: var(--red); }

.pd-box-item .box-label { font-weight: 600; display: block; margin-bottom: 2px; }

.pd-box-item small { font-size: 0.7rem; color: var(--text-muted); }

.related-section { background: var(--white); padding: 4rem 0; }

.pd-buy-box {
      position: sticky;
      top: 90px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

.pd-buy-box::before {
      content: '';
      display: block;
      height: 4px;
      background: var(--red);
    }

.pd-buy-box-inner { padding: 1.25rem 1.4rem; }

.pdbb-price-wrap { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }

.pdbb-price-main {
      font-family: 'Oswald', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
      display: flex;
      align-items: baseline;
      gap: 4px;
    }

.pdbb-price-main .currency { font-size: 1.1rem; font-weight: 600; margin-top: 4px; }

.pdbb-price-main .per-day { font-family: 'DM Sans', sans-serif; font-size: 0.82rem; color: var(--text-muted); font-weight: 400; margin-left: 2px; }

.pdbb-price-sub { font-size: 0.76rem; color: var(--text-muted); margin-top: 0.3rem; line-height: 1.6; }

.pdbb-price-sub span { color: var(--text-mid); font-weight: 500; }

.pdbb-delivery {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--text);
      margin-bottom: 0.65rem;
    }

.pdbb-delivery i { color: var(--text-muted); margin-top: 2px; flex-shrink: 0; font-size: 0.8rem; }

.pdbb-delivery strong { color: var(--navy); }

.pdbb-delivery a { color: var(--red); font-weight: 500; }

.pdbb-delivery a:hover { text-decoration: underline; }

.pdbb-stock {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: #16a34a;
      margin-bottom: 1rem;
    }

.pdbb-stock-dot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; flex-shrink: 0; }

.pdbb-meta { margin-bottom: 1rem; border-top: 1px solid var(--border); padding-top: 0.85rem; }

.pdbb-meta-row {
      display: flex;
      font-size: 0.8rem;
      gap: 0.5rem;
      margin-bottom: 0.4rem;
    }

.pdbb-meta-row:last-child { margin-bottom: 0; }

.pdbb-meta-label { color: var(--text-muted); min-width: 70px; flex-shrink: 0; }

.pdbb-meta-val { color: var(--text); font-weight: 500; }

.pdbb-meta-val a { color: var(--red); }

.pdbb-meta-val .secure-badge {
      display: inline-flex; align-items: center; gap: 4px;
      color: var(--text-muted); font-weight: 400;
    }

.pdbb-dur-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--navy); margin-bottom: 0.6rem; }

.pdbb-chips { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.1rem; }

.pdbb-chip {
      font-size: 0.76rem; font-weight: 500; padding: 0.32rem 0.75rem;
      border: 1.5px solid var(--border); border-radius: 20px;
      cursor: pointer; transition: var(--tr); background: var(--white); color: var(--text-mid);
      user-select: none;
    }

.pdbb-chip:hover, .pdbb-chip.active { border-color: var(--red); color: var(--red); background: var(--red-light); }

.pdbb-btn-rent {
      width: 100%; padding: 0.85rem; margin-bottom: 0.55rem;
      background: var(--red); color: #fff; border: 2px solid var(--red);
      border-radius: var(--radius); font-family: 'Oswald', sans-serif;
      font-weight: 600; font-size: 0.95rem; letter-spacing: 0.06em;
      cursor: pointer; transition: var(--tr);
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }

.pdbb-btn-rent:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }

.pdbb-btn-enquire {
      width: 100%; padding: 0.85rem; margin-bottom: 0.55rem;
      background: var(--navy); color: #fff; border: 2px solid var(--navy);
      border-radius: var(--radius); font-family: 'Oswald', sans-serif;
      font-weight: 600; font-size: 0.95rem; letter-spacing: 0.06em;
      cursor: pointer; transition: var(--tr);
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }

.pdbb-btn-enquire:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-1px); }

.pdbb-btn-wish {
      width: 100%; padding: 0.7rem;
      background: transparent; color: var(--text-mid);
      border: 1.5px solid var(--border); border-radius: var(--radius);
      font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.85rem;
      cursor: pointer; transition: var(--tr);
      display: flex; align-items: center; justify-content: center; gap: 7px;
    }

.pdbb-btn-wish:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }

.pdbb-trust {
      display: flex;
      gap: 0.5rem;
      padding: 0.85rem 1.4rem;
      background: var(--bg-soft);
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
    }

.pdbb-trust-item {
      display: flex; flex-direction: column; align-items: center; gap: 3px;
      flex: 1; min-width: 52px; text-align: center;
    }

.pdbb-trust-item i { font-size: 1.1rem; color: var(--text-muted); }

.pdbb-trust-item span { font-size: 0.62rem; color: var(--text-muted); line-height: 1.3; }

.pd-rating-row {
      display: flex; align-items: center; gap: 0.6rem;
      margin-bottom: 1rem;
    }

.pd-stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: 1px; }

.pd-rating-num { font-size: 0.82rem; color: var(--text-muted); }

.pd-rating-count { font-size: 0.82rem; color: var(--red); cursor: pointer; }

.pd-rating-count:hover { text-decoration: underline; }

.pd-price-row {
      display: flex; align-items: baseline; gap: 0.75rem;
      margin-bottom: 0.6rem; flex-wrap: wrap;
    }

.pd-price-current {
      font-family: 'Oswald', sans-serif;
      font-size: 1.65rem; font-weight: 700; color: var(--navy);
      display: flex; align-items: baseline; gap: 3px;
    }

.pd-price-current .cur { font-size: 1rem; }

.pd-price-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }

.pd-price-mrp { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; }

.pd-discount-badge {
      background: #16a34a; color: #fff;
      font-size: 0.7rem; font-weight: 700;
      padding: 0.15rem 0.5rem; border-radius: 4px;
    }

.pd-offers-strip {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}


.pd-offers-head i { color: var(--red); }

.pd-offer-item {
      display: flex; align-items: flex-start; gap: 8px;
      font-size: 0.8rem; color: var(--text-mid); margin-bottom: 0.4rem;
    }

.pd-offer-item:last-child { margin-bottom: 0; }

.pd-offer-item i { color: #16a34a; flex-shrink: 0; margin-top: 2px; }

.pd-icon-strip {
      display: flex; gap: 1.25rem; flex-wrap: wrap;
      padding: 1rem 0; border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border); margin-bottom: 1.25rem;
    }

.pd-icon-strip-item {
      display: flex; flex-direction: column; align-items: center;
      gap: 0.4rem; text-align: center; min-width: 56px;
    }

.pd-icon-strip-item i { font-size: 1.4rem; color: var(--text-muted); }

.pd-icon-strip-item span { font-size: 0.7rem; color: var(--text-muted); line-height: 1.3; }

.pd-accordion-section {
      background: var(--bg-soft);
      border-top: 1px solid var(--border);
      padding: 3rem 0 4rem;
    }

.pd-tab-btn i { font-size: 0.8rem; }


/* ============================================================
   PAGE-SPECIFIC: PRODUCT LISTING
============================================================ */

.breadcrumb-strip {
      background: var(--bg-soft);
      border-bottom: 1px solid var(--border);
      padding: 0.75rem 0;
    }

.breadcrumb-strip nav { font-size: 0.78rem; color: var(--text-muted); }

.breadcrumb-strip a { color: var(--text-muted); transition: color 0.2s; }

.breadcrumb-strip a:hover { color: var(--red); }

.breadcrumb-strip .bc-sep { margin: 0 0.5rem; opacity: 0.4; }

.breadcrumb-strip .bc-current { color: var(--text); font-weight: 500; }

.listing-hero {
      background: var(--navy);
      padding: 2.5rem 0 2rem;
      position: relative;
      overflow: hidden;
    }

.listing-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.015) 40px,
        rgba(255,255,255,0.015) 41px
      );
    }

.listing-hero h1 {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      color: #fff;
      margin-bottom: 0.4rem;
    }

.listing-hero p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.55);
      font-weight: 300;
      margin-bottom: 0;
    }

.hero-stat-pill {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      padding: 0.3rem 0.9rem;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.6);
      margin-top: 0.75rem;
    }

.hero-stat-pill span { color: var(--red); font-weight: 600; }

.listing-layout { padding: 2rem 0 4rem; }

.sidebar {
      position: sticky;
      top: 75px;
      /*max-height: calc(100vh - 90px);*/
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: var(--border) transparent;
    }

.sidebar::-webkit-scrollbar { width: 4px; }

.sidebar::-webkit-scrollbar-track { background: transparent; }

.sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.sidebar-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      margin-bottom: 1rem;
      overflow: hidden;
    }

.sidebar-head {
      display: flex; align-items: center;
      justify-content: space-between;
      padding: 0.85rem 1.1rem;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid var(--border);
      background: var(--bg-soft);
    }

.sidebar-head-title {
      font-family: 'Oswald', sans-serif;
      font-size: 0.85rem; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--navy);
      display: flex; align-items: center; gap: 8px;
    }

.sidebar-head-title i { color: var(--red); font-size: 0.9rem; }

.sidebar-toggle-icon { font-size: 0.65rem; color: var(--text-muted); transition: transform 0.25s; }

.sidebar-card.collapsed .sidebar-toggle-icon { transform: rotate(-90deg); }

.sidebar-body { padding: 1rem 1.1rem; }

.sidebar-card.collapsed .sidebar-body { display: none; }

.filter-item {
      display: flex; align-items: center;
      gap: 9px;
      padding: 0.35rem 0.5rem;
      border-radius: 6px;
      cursor: pointer;
      transition: var(--tr);
      margin-bottom: 0.1rem;
    }

.filter-item:hover { background: var(--bg-soft); }

.filter-item input[type="checkbox"] { display: none; }

.filter-box {
      width: 17px; height: 17px;
      border: 1.5px solid var(--border);
      border-radius: 4px;
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      transition: var(--tr);
      background: var(--white);
    }

.filter-box i { font-size: 0.55rem; color: transparent; transition: color 0.15s; }

.filter-item input:checked ~ .filter-label-wrap .filter-box,
    .filter-item.checked .filter-box {
      background: var(--red); border-color: var(--red);
    }

.filter-item input:checked ~ .filter-label-wrap .filter-box i,
    .filter-item.checked .filter-box i { color: #fff; }

.filter-item.checked .filter-label { color: var(--red); font-weight: 500; }

.filter-label-wrap { display: flex; align-items: center; justify-content: space-between; flex: 1; gap: 6px; }

.filter-label { font-size: 0.85rem; color: var(--text-mid); transition: color 0.2s; }

.filter-count {
      font-size: 0.7rem; color: var(--text-muted);
      background: var(--bg-mid); border-radius: 10px;
      padding: 0.05rem 0.5rem; flex-shrink: 0;
    }

.active-filters {
      display: flex; flex-wrap: wrap; gap: 0.5rem;
      margin-bottom: 1.25rem;
      min-height: 0;
    }

.active-filters:empty { display: none; }

.filter-tag {
      display: inline-flex; align-items: center; gap: 5px;
      background: var(--red-light); color: var(--red);
      border: 1px solid rgba(204,0,0,0.2);
      border-radius: 20px;
      font-size: 0.75rem; font-weight: 500;
      padding: 0.25rem 0.7rem;
      cursor: pointer;
      transition: var(--tr);
    }

.filter-tag:hover { background: var(--red); color: #fff; }

.filter-tag i { font-size: 0.6rem; }

.clear-all-btn {
      font-size: 0.75rem; color: var(--text-muted);
      background: none; border: none; cursor: pointer;
      padding: 0.25rem 0.5rem; border-radius: 4px;
      transition: color 0.2s;
      align-self: center;
    }

.clear-all-btn:hover { color: var(--red); }

.sidebar-mobile-toggle {
      display: none;
      width: 100%;
      background: var(--navy);
      color: #fff;
      border: none;
      padding: 0.75rem 1.25rem;
      font-family: 'Oswald', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 0.06em;
      border-radius: var(--radius);
      cursor: pointer;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
      transition: var(--tr);
    }

.sidebar-mobile-toggle:hover { background: var(--navy-mid); }

.sidebar-mobile-toggle .filter-badge {
      background: var(--red); color: #fff;
      border-radius: 20px; font-size: 0.7rem;
      padding: 0.1rem 0.55rem; font-family: 'DM Sans', sans-serif;
      font-weight: 600;
    }

.listing-toolbar {
      display: flex; align-items: center;
      justify-content: space-between;
      flex-wrap: wrap; gap: 0.75rem;
      padding: 0.85rem 1.1rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      margin-bottom: 1.5rem;
    }

.toolbar-left {
      display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
    }

.result-count {
      font-size: 0.82rem; color: var(--text-muted);
    }

.result-count strong { color: var(--navy); font-weight: 600; }

.sort-select {
      background: var(--bg-soft);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      color: var(--text);
      padding: 0.42rem 2rem 0.42rem 0.8rem;
      outline: none;
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.6rem center;
      transition: border-color 0.2s;
    }

.sort-select:focus { border-color: var(--red); }

.view-toggle { display: flex; gap: 0.35rem; }

.view-btn {
      width: 36px; height: 36px;
      background: var(--bg-soft);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted);
      font-size: 0.85rem;
      cursor: pointer;
      transition: var(--tr);
    }

.view-btn:hover { border-color: var(--navy); color: var(--navy); }

.view-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

#productGrid { transition: opacity 0.2s ease; }

.prod-badge.badge-navy { background: var(--navy); }

.prod-badge.badge-green { background: #1a7a4a; }

.prod-quick-wrap {
      position: absolute; top: 0.7rem; right: 0.7rem;
      display: flex; flex-direction: column; gap: 0.4rem;
      z-index: 2;
    }

.prod-card:hover .prod-quick:nth-child(2) { transition-delay: 0.06s; }

.prod-category {
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--red); margin-bottom: 0.35rem;
    }

.prod-desc {
      font-size: 0.8rem; color: var(--text-muted);
      line-height: 1.55; flex: 1;
      margin-bottom: 1rem;
    }

.spec-pill {
      display: inline-flex; align-items: center; gap: 4px;
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: 20px;
      font-size: 0.68rem; color: var(--text-mid);
      padding: 0.2rem 0.65rem;
    }

.spec-pill i { font-size: 0.6rem; color: var(--red); }

.prod-btn {
      flex: 1;
      font-family: 'Oswald', sans-serif; font-weight: 500;
      font-size: 0.8rem; letter-spacing: 0.06em;
      padding: 0.55rem 0.8rem; border-radius: var(--radius);
      border: 2px solid; cursor: pointer;
      display: inline-flex; align-items: center; justify-content: center;
      gap: 6px; transition: var(--tr); white-space: nowrap;
    }

.prod-btn-rent {
      background: var(--red); color: #fff; border-color: var(--red);
    }

.prod-btn-rent:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }

.prod-btn-details {
      background: transparent; color: var(--navy); border-color: var(--border);
    }

.prod-btn-details:hover { border-color: var(--navy); background: var(--bg-soft); }

.prod-btn-qv {
      background: transparent; color: var(--text-muted); border-color: var(--border);
      flex: 0; padding: 0.55rem 0.7rem;
    }

.prod-btn-qv:hover { border-color: var(--navy); color: var(--navy); }

.list-view .prod-item-wrapper { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }

.list-view .prod-card {
      flex-direction: row;
      height: auto;
    }

.list-view .prod-img-wrap {
      width: 240px; min-width: 240px; flex-shrink: 0;
    }

.list-view .prod-img-wrap img { width: 100%; height: 100%; aspect-ratio: unset; object-fit: cover; }

.list-view .prod-body {
      flex-direction: column;
      padding: 1.4rem 1.6rem;
    }

.list-view .prod-actions {
      flex-wrap: nowrap;
    }

.list-view .prod-name { font-size: 1.25rem; }

.list-view .prod-desc { font-size: 0.85rem; }

.list-view .prod-btn { flex: 0; min-width: 130px; }

.list-view .prod-btn-qv { min-width: auto; }

@media (max-width: 576px) {
      .list-view .prod-card { flex-direction: column; }
      .list-view .prod-img-wrap { width: 100%; min-width: unset; }
      .list-view .prod-img-wrap img { aspect-ratio: 16/9; height: auto; }
    }

.no-results {
      text-align: center; padding: 4rem 2rem;
      display: none;
    }

.no-results i { font-size: 3rem; color: var(--border); margin-bottom: 1rem; display: block; }

.no-results h4 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }

.no-results p { font-size: 0.85rem; color: var(--text-muted); }

.pagination-wrap {
      display: flex; justify-content: center; align-items: center;
      gap: 0.4rem; padding-top: 2.5rem;
      flex-wrap: wrap;
    }

.page-btn {
      width: 38px; height: 38px;
      display: flex; align-items: center; justify-content: center;
      border: 1.5px solid var(--border); border-radius: var(--radius);
      font-size: 0.85rem; font-weight: 500; color: var(--text-mid);
      cursor: pointer; transition: var(--tr); background: var(--white);
    }

.page-btn:hover { border-color: var(--navy); color: var(--navy); }

.page-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

.page-btn.disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }

.modal-header .modal-title { font-family: 'Oswald', sans-serif; font-size: 1.2rem; letter-spacing: 0.04em; }

.modal-header .btn-close { filter: invert(1); opacity: 0.7; }

.enquiry-product-strip {
      display: flex; align-items: center; gap: 1rem;
      background: var(--bg-soft); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 0.85rem 1rem;
      margin-bottom: 1.5rem;
    }

.enquiry-product-strip img {
      width: 60px; height: 60px; object-fit: cover;
      border-radius: 6px; flex-shrink: 0;
    }

.enquiry-product-name { font-family: 'Oswald', sans-serif; font-weight: 600; color: var(--navy); font-size: 0.95rem; }

.enquiry-product-cat { font-size: 0.72rem; color: var(--red); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

.form-label-uc {
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--navy); margin-bottom: 0.4rem; display: block;
    }

.form-control-uc {
      width: 100%;
      background: var(--bg-soft); border: 1.5px solid var(--border);
      border-radius: var(--radius); font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem; color: var(--text);
      padding: 0.6rem 0.9rem; outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

.form-control-uc:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,0,0,0.08); }

.form-control-uc::placeholder { color: var(--text-muted); }

.qv-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }

.qv-category { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem; }

.qv-specs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }

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

.reveal-d1 { animation-delay: 0.05s; }

.reveal-d2 { animation-delay: 0.10s; }

.reveal-d3 { animation-delay: 0.15s; }

.reveal-d4 { animation-delay: 0.20s; }

.reveal-d5 { animation-delay: 0.25s; }

.reveal-d6 { animation-delay: 0.30s; }


/* ============================================================
   PAGE-SPECIFIC: BRANDS
============================================================ */

.page-hero::after {
      content: '';
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 40%;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

.page-hero-inner { position: relative; z-index: 1; }

.breadcrumb-bar a {
    color: rgb(0 0 0);
    transition: color 0.2s;
}

.breadcrumb-bar a:hover { color: var(--red); }

.breadcrumb-bar .bc-sep { opacity: 0.35; font-size: 0.65rem; }

.breadcrumb-bar .bc-current { color: rgba(255,255,255,0.9); font-weight: 500; }

.page-hero-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 0.75rem;
    }

.page-hero-title span { color: var(--red); }

.page-hero-sub {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.55);
      font-weight: 300;
      max-width: 480px;
      line-height: 1.7;
      margin-bottom: 2rem;
    }

.hero-brand-pills {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
    }

.hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 20px;
      padding: 0.35rem 0.9rem;
      font-size: 0.76rem;
      color: rgba(255,255,255,0.75);
      transition: var(--tr);
    }

.hero-pill i { color: var(--red); font-size: 0.68rem; }

.hero-brand-strip {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      align-items: flex-end;
    }

.hero-brand-strip-row {
      display: flex;
      gap: 0.75rem;
    }

.hero-brand-mini {
      width: 72px; height: 42px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.6);
      transition: var(--tr);
    }

.hero-brand-mini:hover {
      background: rgba(255,255,255,0.12);
      border-color: rgba(204,0,0,0.4);
      color: #fff;
    }

.brand-stats-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 0.9rem 0;
      box-shadow: var(--shadow-xs);
    }

.brand-stat-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0 1.5rem;
      border-right: 1px solid var(--border);
    }

.brand-stat-item:last-child { border-right: none; }

.brand-stat-icon {
      width: 34px; height: 34px;
      background: var(--red-light);
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      color: var(--red); font-size: 0.85rem; flex-shrink: 0;
    }

.brand-stat-num {
      font-family: 'Oswald', sans-serif;
      font-size: 1.15rem; font-weight: 700;
      color: var(--navy); line-height: 1;
    }

.brand-stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

.brand-filter-bar {
      background: var(--bg-soft);
      border-bottom: 1px solid var(--border);
      padding: 1rem 0;
      position: sticky;
      top: 65px;   /* below navbar */
      z-index: 100;
    }

.brand-search-wrap {
      display: flex;
      align-items: center;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      max-width: 340px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

.brand-search-wrap:focus-within { border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,0,0,0.08); }

.brand-search-wrap i { padding: 0 0 0 0.9rem; color: var(--text-muted); font-size: 0.85rem; }

.brand-search-wrap input {
      border: none; outline: none; background: transparent;
      font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
      color: var(--text); padding: 0.6rem 0.9rem; flex: 1;
    }

.brand-search-wrap input::placeholder { color: var(--text-muted); }

.brand-filter-tabs { display: flex; gap: 0.4rem; flex-wrap: wrap; }

.bftab {
      font-size: 0.78rem; font-weight: 500;
      padding: 0.38rem 1rem;
      border: 1.5px solid var(--border); border-radius: 20px;
      color: var(--text-mid); background: var(--white);
      cursor: pointer; transition: var(--tr);
      white-space: nowrap;
    }

.bftab:hover,
    .bftab.active { border-color: var(--red); color: var(--red); background: var(--red-light); }

.bftab:hover { border-color: var(--navy); color: var(--navy); background: var(--bg-soft); }

.brand-sort-select {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem; color: var(--text-mid);
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: var(--radius); padding: 0.5rem 0.9rem;
      outline: none; cursor: pointer; transition: border-color 0.2s;
    }

.brand-sort-select:focus { border-color: var(--red); }

.featured-brands-section { background: var(--white); padding: 3.5rem 0 0; }

.featured-brand-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: var(--tr);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      height: 100%;
      text-decoration: none;
    }

.featured-brand-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-color, var(--red));
    }

.featured-brand-card .fb-accent {
      height: 4px;
      background: var(--brand-color, var(--red));
      flex-shrink: 0;
    }

.featured-brand-card .fb-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.5s ease;
    }

.featured-brand-card:hover .fb-img-wrap img { transform: scale(1.04); }

.fb-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(28,43,58,0.55) 0%, transparent 50%);
    }

.fb-logo-badge {
      position: absolute; top: 1rem; left: 1rem;
      background: rgba(255,255,255,0.92);
      border: 1px solid rgba(255,255,255,0.6);
      backdrop-filter: blur(6px);
      border-radius: var(--radius);
      padding: 0.4rem 0.75rem;
      font-family: 'Oswald', sans-serif;
      font-size: 1rem; font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.03em;
    }

.fb-count-badge {
      position: absolute; bottom: 1rem; right: 1rem;
      background: var(--brand-color, var(--red));
      color: #fff; font-size: 0.7rem; font-weight: 600;
      padding: 0.25rem 0.65rem; border-radius: 20px;
      letter-spacing: 0.06em; text-transform: uppercase;
    }

.featured-brand-card .fb-body {
      padding: 1.3rem 1.5rem 1.4rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

.fb-name {
      font-family: 'Oswald', sans-serif;
      font-size: 1.3rem; font-weight: 700;
      color: var(--navy); margin-bottom: 0.35rem;
    }

.fb-tagline { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1rem; flex: 1; }

.fb-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem; }

.fb-tag {
      font-size: 0.67rem; color: var(--text-muted);
      background: var(--bg-soft); border: 1px solid var(--border);
      padding: 0.15rem 0.55rem; border-radius: 20px;
    }

.fb-cta {
      display: inline-flex; align-items: center; gap: 6px;
      font-family: 'Oswald', sans-serif; font-size: 0.82rem; font-weight: 500;
      color: var(--brand-color, var(--red));
      letter-spacing: 0.04em;
      transition: gap 0.2s;
    }

.featured-brand-card:hover .fb-cta { gap: 10px; }

.all-brands-section { background: var(--bg-soft); padding: 3rem 0 5rem; }

.brand-item {
      /* Container for each brand card in the grid.
         display:'' restores Bootstrap col behaviour when JS shows it */
      transition: opacity 0.2s ease;
    }

.brand-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      height: 100%;
      text-decoration: none;
      color: inherit;
      position: relative;
    }

.brand-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--brand-color, var(--border));
      transition: height 0.22s ease;
    }

.brand-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-color, var(--red));
    }

.brand-card:hover::before { height: 4px; }

.brand-logo-area {
      width: 100%;
      aspect-ratio: 16/9;
      background: var(--bg-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      overflow: hidden;
      position: relative;
      transition: background 0.28s ease;
    }

.brand-card:hover .brand-logo-area { background: var(--bg-mid); }

.brand-card:hover .brand-logo-img {
      transform: scale(1.08);
      filter: grayscale(0%);
    }

.brand-logo-fallback {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 1.8rem;
      letter-spacing: 0.04em;
      color: var(--brand-color, var(--navy));
      transition: transform 0.3s ease;
      display: none; /* shown via JS onerror */
    }

.brand-card:hover .brand-logo-fallback { transform: scale(1.06); }

.brand-cat-badge {
      position: absolute;
      top: 0.6rem; right: 0.6rem;
      width: 28px; height: 28px;
      background: rgba(255,255,255,0.85);
      border: 1px solid var(--border);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.72rem; color: var(--text-muted);
      transition: var(--tr);
    }

.brand-card:hover .brand-cat-badge {
      background: var(--brand-color, var(--red));
      color: #fff; border-color: var(--brand-color, var(--red));
    }

.brand-card-body {
      padding: 1rem 1.15rem 1.2rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

.brand-card-name {
      font-family: 'Oswald', sans-serif;
      font-size: 1.05rem; font-weight: 600;
      color: var(--navy); margin-bottom: 0.3rem;
    }

.brand-card-meta {
      font-size: 0.75rem; color: var(--text-muted);
      line-height: 1.4; margin-bottom: 0.75rem; flex: 1;
    }

.brand-card-meta strong { color: var(--text-mid); font-weight: 500; }

.brand-prod-count {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 0.7rem; font-weight: 600;
      color: var(--brand-color, var(--red));
      background: color-mix(in srgb, var(--brand-color, var(--red)) 8%, transparent);
      border: 1px solid color-mix(in srgb, var(--brand-color, var(--red)) 25%, transparent);
      padding: 0.18rem 0.6rem;
      border-radius: 20px;
      margin-bottom: 0.75rem;
      width: fit-content;
    }

.brand-view-link {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 0.78rem; font-weight: 500;
      color: var(--text-muted);
      transition: color 0.22s, gap 0.22s;
      margin-top: auto;
      padding-top: 0.5rem;
      border-top: 1px solid var(--border);
    }

.brand-card:hover .brand-view-link {
      color: var(--brand-color, var(--red));
      gap: 9px;
    }

.alpha-nav {
      display: flex;
      gap: 0.3rem;
      flex-wrap: wrap;
      padding: 1rem 0 0.5rem;
    }

.alpha-btn {
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.78rem; font-weight: 600;
      border-radius: 6px;
      border: 1.5px solid var(--border);
      background: var(--white); color: var(--text-mid);
      cursor: pointer; transition: var(--tr);
    }

.alpha-btn:hover,
    .alpha-btn.has-brand { border-color: var(--red); color: var(--red); background: var(--red-light); }

.alpha-btn.disabled { opacity: 0.35; pointer-events: none; }

.brand-cta-section {
      background: linear-gradient(135deg, var(--navy) 0%, #162338 100%);
      padding: 4rem 0;
      position: relative; overflow: hidden;
    }

.brand-cta-section::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 80% 50%, rgba(204,0,0,0.15) 0%, transparent 55%);
      pointer-events: none;
    }

@media (max-width: 575px) {
      .featured-brand-card .fb-img-wrap {
        aspect-ratio: 4/3;
      }
      .featured-brand-card .fb-body {
        padding: 0.85rem 0.9rem 1rem;
      }
      .featured-brand-card .fb-name {
        font-size: 1.05rem;
      }
      .featured-brand-card .fb-tagline {
        font-size: 0.76rem;
        line-height: 1.45;
        /* Clamp to 3 lines so cards stay equal height */
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .featured-brand-card .fb-tags {
        display: none; /* hide tags on very small screens to save space */
      }
      .fb-logo-badge {
        font-size: 0.78rem;
        padding: 0.3rem 0.55rem;
      }
    }

.featured-brands-section .row {
      align-items: stretch;
    }

.featured-brands-section .featured-brand-card {
      height: 100%;
    }


/* ============================================================
   PAGE-SPECIFIC: CONTACT
============================================================ */

.has-mega:hover .mega-panel,.mega-panel:hover { opacity:1; visibility:visible; transform:translateY(0); pointer-events:auto; }

.contact-hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      padding: 4rem 0 3rem;
      position: relative; overflow: hidden;
    }

.contact-hero::before {
      content: '';
      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: 48px 48px;
      pointer-events: none;
    }

.contact-hero::after {
      content: 'CONTACT';
      position: absolute;
      font-family: 'Oswald', sans-serif;
      font-size: 14rem; font-weight: 700;
      color: rgba(255,255,255,0.025);
      right: -2rem; bottom: -2rem;
      letter-spacing: 0.08em;
      pointer-events: none;
      white-space: nowrap;
    }

.hero-chips { display:flex; gap:0.75rem; flex-wrap:wrap; margin-top:2rem; }

.hero-chip {
      display: flex; align-items: center; gap: 9px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: var(--radius); padding: 0.65rem 1rem;
      font-size: 0.82rem; color: rgba(255,255,255,0.8);
      transition: var(--tr);
    }

.hero-chip:hover { background: rgba(255,255,255,0.14); color: #fff; }

.hero-chip i { color: var(--red); font-size: 0.9rem; }

.contact-cards-section {
      background: var(--white);
      padding: 3rem 0 0;
    }

.ccard {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.75rem 1.5rem;
      text-align: center;
      height: 100%;
      transition: var(--tr);
      cursor: default;
    }

.ccard:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:rgba(204,0,0,0.3); }

.ccard-icon {
      width: 54px; height: 54px;
      background: var(--red-light);
      border: 1px solid rgba(204,0,0,0.15);
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      color: var(--red); font-size: 1.25rem;
      margin: 0 auto 1.1rem;
      transition: var(--tr);
    }

.ccard:hover .ccard-icon { background: var(--red); color: #fff; }

.ccard-title { font-family:'Oswald',sans-serif; font-size:1rem; font-weight:600; color:var(--navy); margin-bottom:0.35rem; }

.ccard-val { font-size:0.88rem; color:var(--text-mid); font-weight:400; line-height:1.6; }

.ccard-val a { color:var(--red); font-weight:500; }

.ccard-val a:hover { color:var(--red-dark); text-decoration:underline; }

.ccard-note { font-size:0.73rem; color:var(--text-muted); margin-top:0.4rem; }

.contact-main { background: var(--white); padding: 3.5rem 0 5rem; }

.form-card {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
    }

.form-card-title {
      font-family: 'Oswald', sans-serif;
      font-size: 1.6rem; font-weight: 700;
      color: var(--navy); margin-bottom: 0.35rem;
    }

.form-card-sub { font-size:0.85rem; color:var(--text-muted); margin-bottom:2rem; line-height:1.6; }

.field-group { margin-bottom: 1.25rem; }

.field-label {
      display: block;
      font-size: 0.78rem; font-weight: 600;
      color: var(--navy); margin-bottom: 0.4rem;
    }

.field-label .req { color: var(--red); }

.field-input {
      width: 100%;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem; color: var(--text);
      padding: 0.7rem 1rem;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

.field-input:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(204,0,0,0.08);
      background: var(--white);
    }

.field-input::placeholder { color: var(--text-muted); }

.field-input.has-error { border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,0.08); }

.field-error { font-size: 0.73rem; color: #e53e3e; margin-top: 0.3rem; display: none; }

.field-error.show { display: block; }

.phone-row { display:flex; gap:0.5rem; }

.phone-prefix {
      width: 76px; flex-shrink:0;
      background: var(--white); border:1.5px solid var(--border);
      border-radius: var(--radius); font-family:'DM Sans',sans-serif;
      font-size:0.88rem; color:var(--text-mid);
      padding:0.7rem 0.6rem; outline:none; cursor:pointer;
      transition:border-color 0.2s;
    }

.phone-prefix:focus { border-color:var(--red); }

.subject-chips { display:flex; gap:0.4rem; flex-wrap:wrap; margin-bottom:0.5rem; }

.subj-chip {
      font-size:0.75rem; font-weight:500; padding:0.35rem 0.85rem;
      border:1.5px solid var(--border); border-radius:20px;
      background:var(--white); color:var(--text-mid);
      cursor:pointer; transition:var(--tr); user-select:none;
    }

.subj-chip:hover,.subj-chip.active { border-color:var(--red); color:var(--red); background:var(--red-light); }

textarea.field-input { resize: vertical; min-height: 130px; }

.btn-submit {
      width: 100%; padding: 0.9rem;
      background: var(--red); color: #fff;
      font-family: 'Oswald', sans-serif; font-weight: 600;
      font-size: 1rem; letter-spacing: 0.08em;
      border: none; border-radius: var(--radius);
      cursor: pointer; transition: var(--tr);
      display: flex; align-items: center; justify-content: center; gap: 10px;
    }

.btn-submit:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-submit:active { transform: translateY(0); }

.form-success {
      display: none;
      text-align: center; padding: 2.5rem 1rem;
    }

.success-icon {
      width: 64px; height: 64px;
      background: #dcfce7; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem; font-size: 1.8rem; color: #16a34a;
    }

.success-title { font-family:'Oswald',sans-serif; font-size:1.5rem; color:var(--navy); margin-bottom:0.5rem; }

.success-sub   { font-size:0.88rem; color:var(--text-muted); line-height:1.7; }

.info-block {
      background: var(--navy);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      height: 100%;
    }

.info-block-title {
      font-family: 'Oswald', sans-serif;
      font-size: 1.45rem; font-weight: 700;
      color: #fff; margin-bottom: 0.4rem;
    }

.info-block-sub { font-size:0.85rem; color:rgba(255,255,255,0.5); line-height:1.65; margin-bottom:2rem; }

.info-item {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1.1rem; border-radius: var(--radius);
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 0.85rem; transition: var(--tr);
    }

.info-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(204,0,0,0.4); }

.info-item-icon {
      width: 40px; height: 40px; flex-shrink:0;
      background: rgba(204,0,0,0.15);
      border: 1px solid rgba(204,0,0,0.3);
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      color: var(--red); font-size: 0.95rem;
    }

.info-item-label { font-size:0.7rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:rgba(255,255,255,0.45); margin-bottom:0.2rem; }

.info-item-val { font-size:0.88rem; color:#fff; font-weight:400; line-height:1.55; }

.info-item-val a { color:rgba(255,255,255,0.8); transition:color 0.2s; }

.info-item-val a:hover { color:var(--red); }

.hours-table { width:100%; border-collapse:collapse; }

.hours-table tr { border-bottom:1px solid rgba(255,255,255,0.07); }

.hours-table tr:last-child { border-bottom:none; }

.hours-table td { padding:0.45rem 0; font-size:0.82rem; color:rgba(255,255,255,0.6); }

.hours-table td:first-child { font-weight:600; color:#fff; padding-right:1rem; }

.hours-open { color:#4ade80 !important; font-size:0.7rem; font-weight:600; }

.social-row { display:flex; gap:0.5rem; margin-top:1.5rem; }

.sidebar-social {
      width:38px; height:38px;
      background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.12);
      border-radius:var(--radius); display:flex; align-items:center; justify-content:center;
      color:rgba(255,255,255,0.5); font-size:0.85rem; transition:var(--tr);
    }

.sidebar-social:hover { background:var(--red); border-color:var(--red); color:#fff; }

.offices-section { background: var(--bg-soft); padding: 4rem 0; }

.office-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden; height: 100%;
      transition: var(--tr);
    }

.office-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:rgba(204,0,0,0.3); }

.office-img {
      width: 100%; height: 160px;
      object-fit: cover; display: block;
      transition: transform 0.4s ease;
    }

.office-card:hover .office-img { transform: scale(1.05); }

.office-body { padding: 1.4rem; }

.office-city {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem; font-weight: 600;
      color: var(--navy); margin-bottom: 0.2rem;
      display: flex; align-items: center; gap: 7px;
    }

.office-city .city-dot {
      width: 8px; height: 8px;
      border-radius: 50%; background: #16a34a;
      flex-shrink: 0;
    }

.office-type { font-size:0.68rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--red); margin-bottom:0.75rem; }

.office-detail {
      display:flex; align-items:center; gap:8px;
      font-size:0.82rem; color:var(--text-muted);
      margin-bottom:0.4rem;
    }

.office-detail i { color:var(--red); font-size:0.75rem; width:14px; }

.faq-section { background: var(--white); padding: 4rem 0; }

.faq-item {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      margin-bottom: 0.6rem;
      overflow: hidden;
      transition: border-color 0.2s;
    }

.faq-item:hover { border-color: rgba(204,0,0,0.3); }

.faq-question {
      width: 100%; background: var(--bg-soft);
      border: none; outline: none; cursor: pointer;
      padding: 1.1rem 1.3rem;
      display: flex; align-items: center; justify-content: space-between;
      gap: 1rem; text-align: left;
      font-family: 'DM Sans', sans-serif; font-weight: 600;
      font-size: 0.9rem; color: var(--navy);
      transition: background 0.2s;
    }

.faq-question:hover { background: var(--bg-mid); }

.faq-question.open { background: var(--red-light); color: var(--red); }

.faq-question .faq-icon { font-size: 0.75rem; flex-shrink:0; transition: transform 0.25s; }

.faq-question.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      background: var(--white);
    }

.faq-answer.open { max-height: 300px; }

.faq-answer-inner {
      padding: 1rem 1.3rem 1.25rem;
      font-size: 0.86rem; color: var(--text-mid);
      font-weight: 300; line-height: 1.75;
    }

.map-section { background: var(--bg-soft); }

.map-placeholder {
      width: 100%; height: 340px;
      background: linear-gradient(135deg, var(--bg-mid) 0%, var(--bg-soft) 100%);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      color: var(--text-muted);
      text-align: center; gap: 0.75rem;
    }

.map-placeholder i { font-size: 3rem; color: var(--red); opacity: 0.6; }

.map-placeholder p { font-size:0.85rem; max-width:280px; line-height:1.6; }

.soc-btn { width:36px; height:36px; background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.12); border-radius:var(--radius); display:inline-flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.5); font-size:0.85rem; margin-right:0.4rem; transition:var(--tr); }

.soc-btn:hover { background:var(--red); border-color:var(--red); color:#fff; }


/* ============================================================
   PAGE-SPECIFIC: ABOUT
============================================================ */

.about-hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      padding: 4rem 0 3.5rem;
      position: relative; overflow: hidden;
    }

.about-hero::before {
      content: '';
      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: 48px 48px;
      pointer-events: none;
    }

.about-hero::after {
      content: 'UNICAM';
      position: absolute;
      font-family: 'Oswald', sans-serif;
      font-size: 14rem; font-weight: 700;
      color: rgba(255,255,255,0.03);
      right: -2rem; bottom: -1.5rem;
      letter-spacing: 0.08em;
      pointer-events: none;
      white-space: nowrap;
    }

.about-hero-label {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(204,0,0,0.18); color: var(--red);
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 0.35rem 0.85rem; border-radius: 20px;
      border: 1px solid rgba(204,0,0,0.3);
      margin-bottom: 1.1rem;
    }

.about-hero-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.2rem,5vw,3.8rem);
      font-weight: 700; color: #fff;
      line-height: 1.05; margin-bottom: 1rem;
    }

.about-hero-title span { color: var(--red); }

.about-hero-sub {
      font-size: 1rem; color: rgba(255,255,255,0.65);
      font-weight: 300; line-height: 1.8;
      max-width: 520px;
    }

.about-hero-img {
      width: 100%; height: 340px;
      object-fit: cover; border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

.stats-strip {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 0;
    }

.stat-item {
      padding: 2rem 1.5rem;
      border-right: 1px solid var(--border);
      text-align: center;
      transition: var(--tr);
    }

.stat-item:last-child { border-right: none; }

.stat-item:hover { background: var(--red-light); }

.stat-num {
      font-family: 'Oswald', sans-serif;
      font-size: 2.6rem; font-weight: 700;
      color: var(--red); line-height: 1;
      margin-bottom: 0.3rem;
    }

.stat-num .stat-unit { font-size: 1.5rem; }

.stat-label {
      font-size: 0.78rem; color: var(--text-muted);
      text-transform: uppercase; letter-spacing: 0.1em;
      font-weight: 500;
    }

.about-intro-section { background: var(--bg-soft); }

.intro-img-stack {
      position: relative;
    }

.intro-img-main {
      width: 100%; height: 380px;
      object-fit: cover; border-radius: var(--radius-lg);
      display: block; box-shadow: var(--shadow-md);
    }

.intro-img-secondary {
      width: 45%; height: 180px;
      object-fit: cover; border-radius: var(--radius);
      position: absolute; bottom: -24px; right: -20px;
      box-shadow: var(--shadow-lg);
      border: 4px solid var(--white);
    }

.founded-badge {
      position: absolute; top: 1.2rem; left: 1.2rem;
      background: var(--red); color: #fff;
      font-family: 'Oswald', sans-serif;
      font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.06em; padding: 0.5rem 0.9rem;
      border-radius: var(--radius);
      display: flex; align-items: center; gap: 6px;
    }

.intro-body-text {
      font-size: 0.95rem; color: var(--text-mid);
      font-weight: 300; line-height: 1.85;
    }

.intro-body-text p { margin-bottom: 1.1rem; }

.intro-body-text strong { color: var(--text); font-weight: 600; }

.mv-section { background: var(--white); }

.mv-card {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2.5rem 2rem;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: var(--tr);
    }

.mv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.mv-card::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 4px; height: 100%;
      background: var(--red);
      border-radius: 0 2px 2px 0;
    }

.mv-icon {
      width: 52px; height: 52px;
      background: var(--red-light);
      border: 1px solid rgba(204,0,0,0.15);
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      color: var(--red); font-size: 1.3rem;
      margin-bottom: 1.25rem;
    }

.mv-title {
      font-family: 'Oswald', sans-serif;
      font-size: 1.35rem; font-weight: 600;
      color: var(--navy); margin-bottom: 0.75rem;
    }

.mv-text {
      font-size: 0.9rem; color: var(--text-mid);
      font-weight: 300; line-height: 1.8;
    }

.value-chip {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.8rem; font-weight: 500; color: var(--text-mid);
      background: var(--white); border: 1px solid var(--border);
      padding: 0.35rem 0.8rem; border-radius: 20px;
      margin: 0.25rem; transition: var(--tr);
    }

.value-chip:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }

.value-chip i { color: var(--red); font-size: 0.7rem; }

.timeline-section { background: var(--bg-soft); }

.timeline {
      position: relative;
      padding-left: 2.5rem;
    }

.timeline::before {
      content: '';
      position: absolute;
      left: 10px; top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--red), var(--navy));
      border-radius: 2px;
    }

.tl-item {
      position: relative;
      margin-bottom: 2.5rem;
    }

.tl-item:last-child { margin-bottom: 0; }

.tl-dot {
      position: absolute;
      left: -2.5rem; top: 0.25rem;
      width: 20px; height: 20px;
      border-radius: 50%;
      background: var(--red);
      border: 3px solid var(--white);
      box-shadow: 0 0 0 2px var(--red);
      display: flex; align-items: center; justify-content: center;
    }

.tl-year {
      font-family: 'Oswald', sans-serif;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.1em; color: var(--red);
      text-transform: uppercase; margin-bottom: 0.3rem;
    }

.tl-title {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem; font-weight: 600;
      color: var(--navy); margin-bottom: 0.4rem;
    }

.tl-desc {
      font-size: 0.85rem; color: var(--text-muted);
      font-weight: 300; line-height: 1.7;
    }

.tl-item::before {
      content: '';
      position: absolute;
      left: -1.55rem; top: 0.55rem;
      width: 1.55rem; height: 2px;
      background: var(--border);
    }

.tl-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.25rem 1.5rem;
      transition: var(--tr);
    }

.tl-card:hover { border-color: rgba(204,0,0,0.3); box-shadow: var(--shadow-xs); }

.why-head-text { font-family:'Oswald',sans-serif; font-size:clamp(1.8rem,3.5vw,2.6rem); color:#fff; }

.why-sub-text  { color:rgba(255,255,255,0.55); font-size:0.92rem; font-weight:300; line-height:1.75; max-width:480px; }

.team-section { background: var(--white); }

.team-card {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      text-align: center;
      transition: var(--tr);
    }

.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(204,0,0,0.25); }

.team-img {
      width: 100%; aspect-ratio: 1;
      object-fit: cover; display: block;
      transition: transform 0.4s ease;
    }

.team-card:hover .team-img { transform: scale(1.04); }

.team-body { padding: 1.25rem 1rem 1.5rem; }

.team-name { font-family:'Oswald',sans-serif; font-size:1.1rem; font-weight:600; color:var(--navy); margin-bottom:0.2rem; }

.team-role { font-size:0.78rem; color:var(--red); font-weight:500; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:0.75rem; }

.team-bio  { font-size:0.8rem; color:var(--text-muted); line-height:1.65; margin-bottom:1rem; }

.team-socials {
      display: flex;
      gap: 0.4rem;
      margin-top: 0.75rem;
      flex-wrap: wrap;
    }

.team-socials a {
      width:32px; height:32px;
      background:var(--white); border:1.5px solid var(--border);
      border-radius:6px; display:inline-flex;
      align-items:center; justify-content:center;
      color:var(--text-muted); font-size:0.8rem;
      transition:var(--tr);
      text-decoration: none;
    }

.team-socials a:hover { border-color:var(--red); color:var(--red); background:var(--red-light); }

.cta-band {
      background: linear-gradient(135deg,var(--red) 0%,var(--red-dark) 100%);
      padding: 4rem 0;
    }

.cta-band-title { font-family:'Oswald',sans-serif; font-size:clamp(1.8rem,4vw,3rem); font-weight:700; color:#fff; margin-bottom:0.75rem; }

.cta-band-sub   { color:rgba(255,255,255,0.75); font-size:0.95rem; font-weight:300; line-height:1.75; margin-bottom:2rem; }

.btn-white {
      background:#fff; color:var(--red);
      font-family:'Oswald',sans-serif; font-weight:600;
      font-size:0.9rem; letter-spacing:0.08em;
      padding:0.7rem 2rem; border:2px solid #fff;
      border-radius:var(--radius); transition:var(--tr);
      display:inline-flex; align-items:center; gap:8px;
    }

.btn-white:hover { background:transparent; color:#fff; transform:translateY(-1px); }


/* ============================================================
   PAGE-SPECIFIC: INDEX (HOME)
============================================================ */

.img-ph {
      background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-mid) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      overflow: hidden;
      position: relative;
    }

.img-ph i { font-size: 3rem; opacity: 0.35; position: relative; z-index: 1; }

.img-real {
      width: 100%;
      object-fit: cover;
      display: block;
    }

.img-real-wrap {
      overflow: hidden;
      position: relative;
      background: var(--bg-soft);
    }

.img-real-wrap .img-real { transition: transform 0.4s ease; }

.has-mega:hover .mega-panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

.mega-panel:hover {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

.mega-feat-img-ph {
      width: 100%;
      aspect-ratio: 4/3;
      font-size: 3rem;
    }

.hero {
      min-height: 88vh;
      background: var(--white);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

.hero::before {
      content: '';
      position: absolute;
      top: -10%;
      left: 49%;
      width: 14%;
      height: 120%;
      background: var(--white);
      transform: skewX(-6deg);
      transform-origin: top left;
      z-index: 3;
      pointer-events: none;
    }

.hero-panel {
      position: absolute;
      top: 0; right: 0; bottom: 0;
      width: 48%;           /* 40% + 20% increase */
      z-index: 1;
    }

.hero-panel-inner {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background: var(--bg-mid);
    }

.hero-img-main {
      width: 100%; height: 100%;
      object-fit: cover;
    }

.hero-cam-badge {
      position: absolute;
      bottom: 2rem; right: 2rem;
      background: rgba(255,255,255,0.95);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 0.75rem 1.1rem;
      box-shadow: var(--shadow-md);
      font-size: 0.78rem;
      z-index: 10;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

.hero-cam-badge strong { font-family: 'Oswald', sans-serif; font-size: 1.2rem; color: var(--red); display: block; }

.hero-cam-badge span   { color: var(--text-muted); font-size: 0.7rem; }

.hero-content { position: relative; z-index: 4; }

.hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--red-light);
      color: var(--red);
      font-size: 0.73rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.4rem 0.9rem;
      border-radius: 20px;
      margin-bottom: 1.4rem;
    }

.hero-h1 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 700;
      line-height: 1.08;
      color: var(--navy);
      margin-bottom: 1.2rem;
    }

.hero-h1 .red { color: var(--red); }

.hero-p {
      font-size: 1rem;
      color: var(--text-mid);
      font-weight: 300;
      line-height: 1.8;
      max-width: 460px;
      margin-bottom: 2rem;
    }

.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-search:focus-within { border-color: var(--red); }

.hero-search-select {
      border: none;
      border-right: 1.5px solid var(--border);
      background: var(--bg-soft);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      color: var(--text-mid);
      padding: 0.75rem 1rem;
      outline: none;
      cursor: pointer;
      min-width: 130px;
    }

.hero-search .hs-btn {
      background: var(--red);
      color: #fff;
      border: none;
      padding: 0.75rem 1.5rem;
      font-family: 'Oswald', sans-serif;
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      cursor: pointer;
      transition: background 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

.hero-search .hs-btn:hover { background: var(--red-dark); }

.browse-cat-section { background: var(--bg-soft); }

.cat-section { background: var(--bg-soft); }

.cat-card-icon {
      width: 46px; height: 46px;
      background: var(--red-light);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      font-size: 1.1rem;
      margin-bottom: 0.9rem;
    }

.cat-card-link {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--red);
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: gap 0.2s;
    }

.cat-card:hover .cat-card-link { gap: 9px; }

.products-section { background: var(--white); }

.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.ftab {
      font-size: 0.8rem;
      font-weight: 500;
      padding: 0.4rem 1rem;
      border: 1.5px solid var(--border);
      border-radius: 20px;
      color: var(--text-mid);
      background: transparent;
      cursor: pointer;
      transition: var(--tr);
    }

.ftab:hover, .ftab.active { border-color: var(--red); color: var(--red); background: var(--red-light); }

.carousel-nav { display: flex; gap: 0.5rem; }

.c-nav-btn {
      width: 40px; height: 40px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      cursor: pointer;
      transition: var(--tr);
      font-size: 0.85rem;
    }

.c-nav-btn:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }

.testi-section { background: var(--bg-soft); }

.testi-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2rem;
      height: 100%;
      transition: var(--tr);
    }

.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.testi-stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 1rem; }

.testi-quote { font-size: 0.88rem; color: var(--text-mid); font-style: italic; font-weight: 300; line-height: 1.75; margin-bottom: 1.5rem; }

.testi-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--red-light);
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--red);
      flex-shrink: 0;
    }

.testi-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }

.testi-role { font-size: 0.75rem; color: var(--text-muted); }

.qv-img-wrap {
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      overflow: hidden;
    }

.qv-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.qv-brand { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem; }

.qv-features { list-style: none; padding: 0; margin: 0; }

.qv-features li {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 0.84rem;
      color: var(--text-mid);
      padding: 0.4rem 0;
      border-bottom: 1px solid var(--border);
    }

.qv-features li:last-child { border-bottom: none; }

.qv-features li i { color: var(--red); font-size: 0.75rem; }

.has-mega.mega-open .mega-panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

.has-mega > a::after {
      content: '';
      position: absolute;
      bottom: -14px;
      left: 0; right: 0;
      height: 14px;
      display: block;
    }

.has-mega > a { position: relative; }

.mob-nav-item { border-bottom: 1px solid var(--border); }

.mob-nav-item:last-child { border-bottom: none; }

.mob-nav-link {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.72rem 0.75rem; font-weight: 500; font-size: 0.9rem;
      color: var(--text-mid); border-radius: 6px; transition: var(--tr); cursor: pointer;
    }

.mob-nav-link:hover,
    .mob-nav-link.active-link { background: var(--red-light); color: var(--red); }

.mob-nav-chev { font-size: 0.6rem; transition: transform 0.25s ease; }

.mob-nav-link.open .mob-nav-chev { transform: rotate(180deg); }

.mob-submenu { display: none; background: var(--bg-soft); border-radius: 8px; margin: 0 0.25rem 0.5rem; padding: 0.4rem 0; }

.mob-submenu.open { display: block; }

.mob-submenu-head { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); padding: 0.5rem 1rem 0.3rem; }

.mob-submenu a { display: flex; align-items: center; gap: 8px; padding: 0.42rem 1rem; font-size: 0.82rem; color: var(--text-mid); transition: var(--tr); }

.mob-submenu a:hover { background: var(--white); color: var(--red); border-radius: 6px; }

.mob-submenu a i { color: var(--red); width: 14px; font-size: 0.75rem; }

.mob-nav-search { padding: 0.75rem 0.5rem 0.5rem; }

.hero-slider {
      position: absolute;
      inset: 0;
    }

.hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.1s ease;
    }

.hero-slide.active { opacity: 1; }

.hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

.hero-panel-inner::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(255,255,255,0.25) 0%, transparent 30%);
      pointer-events: none;
      z-index: 2;
    }

.hero-slider-dots {
      position: absolute;
      bottom: 1.4rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 7px;
      z-index: 10;
    }

.slider-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.45);
      border: 1.5px solid rgba(255,255,255,0.8);
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }

.slider-dot.active {
      background: var(--red);
      border-color: var(--red);
      transform: scale(1.35);
    }

.bcat-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }

.bcat-card {
      position: relative; overflow: hidden; border-radius: 14px;
      background: var(--white); border: 1px solid var(--border);
      padding: 0; cursor: pointer; transition: var(--tr);
      display: block; aspect-ratio: 4/3;
    }

.bcat-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-4px); }

.bcat-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }

.bcat-card:hover .bcat-img { transform: scale(1.07); }

.bcat-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(28,43,58,0.88) 0%, rgba(28,43,58,0.05) 65%);
      display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 1rem;
    }

.bcat-name { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1rem; color: #fff; margin-bottom: 0.1rem; letter-spacing: 0.02em; }

.bcat-count { font-size: 0.72rem; color: rgba(255,255,255,0.65); }

.brands-section { background: var(--white); }

.brand-logo-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--tr);
      height: 100%;
      min-height: 72px;
      text-decoration: none;
    }

.brand-logo-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); background: var(--white); transform: translateY(-3px); }

.brand-logo-card:hover .brand-logo-img {
      transform: scale(1.06);
      opacity: 1;
    }

.brand-logo-card:hover .brand-logo-img {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       FIX 7 â€” PRODUCT CARDS MOBILE
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    @media (max-width: 576px) {
      .prod-item { min-width: 0; }
      .prod-card { min-width: 0; }
      .prod-actions { flex-direction: column; gap: 0.4rem; }
      .prod-actions .btn-red,
      .prod-actions .btn-sm-ghost { width: 100%; justify-content: center; }
    }

.enq-steps { display: flex; align-items: center; margin-bottom: 1.5rem; }

.enq-step { display: flex; align-items: center; gap: 0.5rem; }

.enq-step-num {
      width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--border);
      background: var(--white); display: flex; align-items: center; justify-content: center;
      font-family: 'Oswald', sans-serif; font-size: 0.82rem; font-weight: 600;
      color: var(--text-muted); flex-shrink: 0; transition: var(--tr);
    }

.enq-step.active .enq-step-num { background: var(--red); border-color: var(--red); color: #fff; }

.enq-step.done .enq-step-num { background: #16a34a; border-color: #16a34a; color: #fff; }

.enq-step-label { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; white-space: nowrap; }

.enq-step.active .enq-step-label { color: var(--red); font-weight: 600; }

.enq-step.done .enq-step-label { color: #16a34a; }

.enq-step-line { flex: 1; height: 2px; background: var(--border); margin: 0 0.5rem; border-radius: 2px; transition: background 0.4s; }

.enq-step-line.done { background: #16a34a; }

.enq-step-panel { display: none; }

.enq-step-panel.active { display: block; animation: fadePanel 0.3s ease; }

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

.acc-toggle-btn {
      display: flex; align-items: center; gap: 7px; background: var(--bg-soft);
      border: 1.5px dashed var(--border); border-radius: var(--radius); padding: 0.55rem 1rem;
      font-size: 0.8rem; font-weight: 500; color: var(--text-mid); cursor: pointer; width: 100%; transition: var(--tr);
    }

.acc-toggle-btn:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }

.acc-section { display: none; margin-top: 0.75rem; }

.acc-section.open { display: block; }

.duration-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.dur-pill {
      padding: 0.4rem 1.1rem; border: 1.5px solid var(--border); border-radius: 20px;
      font-size: 0.8rem; font-weight: 500; color: var(--text-mid); cursor: pointer;
      transition: var(--tr); background: var(--bg-soft); user-select: none;
    }

.dur-pill:hover, .dur-pill.selected { border-color: var(--red); color: var(--red); background: var(--red-light); }

.enq-step-nav { display: flex; gap: 0.75rem; margin-top: 1.25rem; }

.btn-back-step {
      background: transparent; border: 1.5px solid var(--border); border-radius: var(--radius);
      font-family: 'Oswald', sans-serif; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em;
      padding: 0.65rem 1.4rem; color: var(--text-mid); cursor: pointer; transition: var(--tr);
      display: inline-flex; align-items: center; gap: 6px;
    }

.btn-back-step:hover { border-color: var(--navy); color: var(--navy); }

.brands-mega-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0.6rem;
    }

.brand-mega-item {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 0.6rem 0.5rem;
      transition: var(--tr);
    }

.brand-mega-item:hover {
      border-color: var(--red);
      background: var(--white);
      box-shadow: var(--shadow-xs);
      transform: translateY(-2px);
    }

.brand-mega-item img {
      width: 100%;
      max-width: 72px;
      height: 28px;
      object-fit: contain;
      display: block;
    }

.mob-brand-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
      padding: 0.5rem 0.75rem 0.25rem;
    }

.mob-brand-item {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 0.55rem 0.4rem;
      transition: var(--tr);
    }

.mob-brand-item:hover {
      border-color: var(--red);
      background: var(--red-light);
    }

.mob-brand-item img {
      width: 100%;
      max-width: 70px;
      height: 24px;
      object-fit: contain;
    }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   QUICK VIEW MODAL FIXES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.qv-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.qv-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.qv-brand {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.4rem;
}

.qv-features {
  list-style: none; padding: 0; margin: 0;
}

.qv-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.85rem; color: var(--text-mid);
  padding: 0.35rem 0; border-bottom: 1px solid var(--border);
}

.qv-features li:last-child { border-bottom: none; }

.qv-features li i {
  color: var(--red); font-size: 0.75rem;
  margin-top: 3px; flex-shrink: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ENQUIRY MODAL â€” RESPONSIVE FIXES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.enq-modal .modal-dialog {
  max-width: 960px;
}

.enq-modal .modal-content {
  max-height: 95vh;
  overflow: hidden;
}

.enq-right {
  overflow-y: auto;
  max-height: 90vh;
}

@media (max-width: 767px) {
  .enq-modal .modal-dialog {
    max-width: 100%;
    margin: 0.5rem;
  }
  .enq-left {
    display: none !important;
  }
  .col-md-8.enq-right-col,
  .enq-right {
    max-height: none;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO SECTION â€” SEARCH SELECT FIX
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-search-select {
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--text);
  padding: 0.85rem 1rem;
  cursor: pointer;
  flex-shrink: 0;
}

.hero-search-select:focus { outline: none; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO TAG (hero-tag used in HTML)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(204,0,0,0.10); color: var(--red);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.35rem 0.85rem;
  border-radius: 20px; margin-bottom: 1.25rem;
  border: 1px solid rgba(204,0,0,0.25);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE NAV IMPROVEMENTS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.mob-nav-item { border-bottom: 1px solid var(--border); }

.mob-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1rem;
  font-weight: 500; font-size: 0.9rem;
  color: var(--text-mid); cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}

.mob-nav-link:hover { color: var(--red); }

.mob-nav-chev { font-size: 0.6rem; transition: transform 0.25s; }

.mob-nav-link.open .mob-nav-chev { transform: rotate(180deg); }

.mob-submenu {
  display: none;
  padding: 0.5rem 0.75rem 0.75rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.mob-submenu.open { display: block; }

.mob-submenu-head {
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-muted); padding: 0.4rem 0.5rem 0.6rem;
}

.mob-nav-search { padding: 0.75rem 1rem; }

.mob-sub-links { list-style: none; padding: 0; margin: 0; }

.mob-sub-links a {
  display: block; padding: 0.45rem 0.6rem;
  font-size: 0.85rem; color: var(--text-mid);
  border-radius: 5px; transition: var(--tr);
}

.mob-sub-links a:hover { background: var(--red-light); color: var(--red); }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT PAGE â€” RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 991px) {
  .about-hero { padding: 3rem 0 2.5rem; }
  .about-hero-title { font-size: clamp(2rem, 5vw, 3rem); }
  .intro-img-stack { margin-bottom: 2rem; }
  .timeline { padding-left: 2rem; }
  .tl-dot { left: -2rem; width: 16px; height: 16px; }
  .tl-item::before { left: -1.1rem; width: 1.1rem; }
  .timeline::before { left: 8px; }
}

@media (max-width: 767px) {
  .about-hero { padding: 2.5rem 0 2rem; }
  .about-hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .about-hero-sub { font-size: 0.9rem; }

  .stats-strip .row { }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1rem;
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-num { font-size: 2rem; }

  .intro-img-secondary {
    width: 38%;
    height: 140px;
    bottom: -16px;
    right: -12px;
  }

  .mv-card { padding: 1.5rem 1.25rem; }

  .timeline { padding-left: 1.75rem; }
  .tl-dot { left: -1.75rem; width: 14px; height: 14px; }
  .tl-item::before { left: -0.9rem; width: 0.9rem; }
  .timeline::before { left: 7px; }
  .tl-card { padding: 0.85rem 1rem; }
  .tl-title { font-size: 1rem; }

  .why-head-text { font-size: clamp(1.5rem, 5vw, 2rem); }
  .why-sub-text { font-size: 0.88rem; }

  .team-img { aspect-ratio: 4/3; }
  .cta-band { padding: 3rem 0; }
  .cta-band-title { font-size: clamp(1.5rem, 5vw, 2.2rem); }
}

@media (max-width: 575px) {
  .about-hero-title { font-size: 1.8rem; }
  .stat-num { font-size: 1.8rem; }
  .stat-unit { font-size: 1.1rem; }
  .stat-label { font-size: 0.7rem; }
  .intro-img-secondary { display: none; }
  .founded-badge { font-size: 0.72rem; padding: 0.35rem 0.65rem; }
  .tl-year { font-size: 0.65rem; }
  .tl-title { font-size: 0.95rem; }
  .tl-desc { font-size: 0.8rem; }
  .team-body { padding: 1rem 0.85rem 1.1rem; }
  .team-name { font-size: 1rem; }
  .value-chip { font-size: 0.75rem; padding: 0.28rem 0.65rem; }
  .mv-card { padding: 1.25rem 1rem; }
  .mv-title { font-size: 1.15rem; }
  .cta-band { padding: 2.5rem 0; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BRANDS PAGE â€” RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 991px) {
  .page-hero { padding: 3rem 0 2.5rem; }
  .page-hero-title { font-size: clamp(2rem, 5vw, 3rem); }
  .brand-filter-bar { top: 60px; padding: 0.75rem 0; }
  .brand-filter-tabs { overflow-x: auto; display: flex; scrollbar-width: none; }
  .brand-filter-tabs::-webkit-scrollbar { display: none; }
  .brand-search-wrap { max-width: 100%; width: 100%; }
  .featured-brand-card .fb-img-wrap { aspect-ratio: 3/2; }
}

@media (max-width: 767px) {
  .page-hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .page-hero-sub { font-size: 0.88rem; }
  .hero-brand-pills { gap: 0.4rem; }
  .hero-pill { font-size: 0.72rem; padding: 0.3rem 0.7rem; }
  .brand-stats-bar { padding: 1rem 0; }
  .brand-stat-item { padding: 0.75rem 1rem; gap: 0.6rem; }
  .brand-stat-num { font-size: 1.4rem; }
  .brand-filter-bar {
    top: 57px;
    padding: 0.6rem 0;
  }
  .brand-filter-bar .d-flex {
    flex-direction: column;
    align-items: stretch !important;
    gap: 0.6rem !important;
  }
  .brand-filter-tabs { gap: 0.35rem; }
  .bftab { font-size: 0.72rem; padding: 0.3rem 0.75rem; }
  .brand-sort-select { width: 100%; }
  .alpha-nav { gap: 0.2rem; }
  .alpha-btn { width: 26px; height: 26px; font-size: 0.72rem; }
  .brand-card-name { font-size: 0.9rem; }
  .brand-card-meta { font-size: 0.72rem; }
  .brand-prod-count { font-size: 0.72rem; }
  .featured-brands-section { padding: 2.5rem 0; }
  .featured-brand-card .fb-name { font-size: 1.1rem; }
  .featured-brand-card .fb-tagline { font-size: 0.78rem; }
  .brand-cta-section { padding: 2.5rem 0; }
}

@media (max-width: 575px) {
  .page-hero-title { font-size: 1.75rem; }
  .brand-stats-bar .row { gap: 0; }
  .brand-stat-item {
    padding: 0.6rem 0.75rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .brand-card { border-radius: var(--radius); }
  .brand-logo-area { padding: 1rem 0.85rem 0.6rem; min-height: 70px; }
  .brand-logo-img { max-width: 64px; max-height: 32px; }
  .brand-logo-fallback { font-size: 0.85rem; }
  .brand-card-body { padding: 0.75rem 0.85rem 0.9rem; }
  .brand-card-name { font-size: 0.85rem; margin-bottom: 0.2rem; }
  .brand-card-meta { font-size: 0.7rem; display: none; }
  .brand-view-link { font-size: 0.72rem; }
  .alpha-btn { width: 22px; height: 22px; font-size: 0.65rem; }
}


/*  Assesories page  */

/* ── Hero Section ── */
    .acc-hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3550 100%);
      position: relative;
      overflow: hidden;
      padding: 4.5rem 0 3.75rem;
    }
    .acc-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 15% 55%, rgba(204,0,0,0.14) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(255,255,255,0.04) 0%, transparent 40%),
        url("https://images.unsplash.com/photo-1606813905752-09e3a96e4ce0?w=1600&q=60&auto=format&fit=crop") center/cover no-repeat;
      opacity: 0.18;
      pointer-events: none;
    }
    .acc-hero::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(28,43,58,0.92) 0%, rgba(28,43,58,0.75) 100%);
      pointer-events: none;
    }
    .acc-hero .container { position: relative; z-index: 1; }

    /* Breadcrumb */
    .page-breadcrumb {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.75rem; color: rgba(255,255,255,0.5);
      margin-bottom: 1.25rem; flex-wrap: wrap;
    }
    .page-breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .page-breadcrumb a:hover { color: var(--red); }
    .page-breadcrumb i { font-size: 0.55rem; }

    /* Hero search */
    .acc-hero-search {
      display: flex; background: #fff;
      border-radius: var(--radius); overflow: hidden;
      max-width: 520px; box-shadow: var(--shadow-lg);
    }
    .acc-hero-search input {
      flex: 1; border: none; outline: none;
      font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
      color: var(--text); padding: 0.85rem 1.1rem; background: transparent;
    }
    .acc-hero-search input::placeholder { color: var(--text-muted); }
    .acc-hero-search button {
      background: var(--red); color: #fff; border: none;
      padding: 0.85rem 1.4rem;
      font-family: 'Oswald', sans-serif; font-size: 0.88rem; font-weight: 500;
      letter-spacing: 0.06em; cursor: pointer;
      display: flex; align-items: center; gap: 7px;
      transition: background 0.2s; flex-shrink: 0;
    }
    .acc-hero-search button:hover { background: var(--red-dark); }

    /* Hero stats strip */
    .acc-hero-stats {
      display: flex; gap: 2.25rem; flex-wrap: wrap;
      margin-top: 2.25rem; padding-top: 1.75rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* ── Filter bar (sticky, same pattern as cat-filter-bar) ── */
    .acc-filter-bar {
      background: #fff;
      border-bottom: 1px solid var(--border);
      position: sticky; top: 72px; z-index: 100;
      box-shadow: var(--shadow-xs);
    }
    .acc-filter-inner {
      display: flex; overflow-x: auto; scrollbar-width: none;
      align-items: stretch;
    }
    .acc-filter-inner::-webkit-scrollbar { display: none; }

    /* ── Products section ── */
    .acc-products-section {
      padding: 3rem 0 5rem;
      background: var(--bg-soft);
    }

    /* ── Accessory Product Card ── */
    .acc-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 100%;
      display: flex; flex-direction: column;
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
      position: relative;
    }
    .acc-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: rgba(204,0,0,0.28);
    }

    /* Image wrapper — 4:3 fixed aspect */
    .acc-card-img-wrap {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: var(--bg-soft);
      flex-shrink: 0;
    }
    .acc-card-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform 0.45s ease;
    }
    .acc-card:hover .acc-card-img-wrap img { transform: scale(1.07); }

    /* Overlay gradient on image */
    .acc-card-img-wrap::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.3) 100%);
      pointer-events: none;
    }

    /* Category badge on image */
    .acc-cat-badge {
      position: absolute;
      top: 0.65rem; left: 0.65rem; z-index: 2;
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.2rem 0.6rem; border-radius: 20px;
      background: var(--navy); color: #fff;
    }
    .acc-cat-badge.badge-red    { background: var(--red); }
    .acc-cat-badge.badge-navy   { background: var(--navy); }
    .acc-cat-badge.badge-green  { background: #16a34a; }
    .acc-cat-badge.badge-orange { background: #d97706; }

    /* Quick view hover button on image */
    .acc-qv-btn {
      position: absolute;
      bottom: 0.7rem; right: 0.7rem; z-index: 3;
      background: rgba(255,255,255,0.92); color: var(--navy);
      font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.32rem 0.8rem;
      border-radius: 20px;
      border: none; cursor: pointer;
      display: flex; align-items: center; gap: 5px;
      opacity: 0; transform: translateY(6px);
      transition: opacity 0.22s ease, transform 0.22s ease, background 0.2s;
      box-shadow: var(--shadow-sm);
    }
    .acc-card:hover .acc-qv-btn {
      opacity: 1; transform: translateY(0);
    }
    .acc-qv-btn:hover { background: var(--red); color: #fff; }

    /* Card body */
    .acc-card-body {
      padding: 1.1rem 1.15rem 1.3rem;
      flex: 1; display: flex; flex-direction: column;
    }
    .acc-card-brand {
      font-size: 0.62rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--red); margin-bottom: 0.2rem;
    }
    .acc-card-name {
      font-family: 'Oswald', sans-serif;
      font-size: 1rem; font-weight: 600;
      color: var(--navy); margin-bottom: 0.3rem;
      line-height: 1.2;
    }
    .acc-card-desc {
      font-size: 0.8rem; color: var(--text-muted);
      line-height: 1.55; flex: 1;
      margin-bottom: 1rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* Card action buttons */
    .acc-card-footer {
      display: flex; gap: 0.4rem;
      margin-top: auto;
    }
    .acc-btn-rent {
      flex: 1;
      background: var(--red); color: #fff;
      font-family: 'Oswald', sans-serif; font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.07em;
      padding: 0.48rem 0.6rem;
      border: 2px solid var(--red); border-radius: 6px;
      cursor: pointer; transition: var(--tr);
      display: flex; align-items: center; justify-content: center; gap: 5px;
    }
    .acc-btn-rent:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }

    .acc-btn-detail {
      background: transparent; color: var(--text-mid);
      font-size: 0.78rem; font-weight: 500;
      padding: 0.48rem 0.75rem;
      border: 1.5px solid var(--border); border-radius: 6px;
      cursor: pointer; transition: var(--tr);
      display: flex; align-items: center; justify-content: center; gap: 5px;
      text-decoration: none;
    }
    .acc-btn-detail:hover { border-color: var(--navy); color: var(--navy); }

    /* ── Results count & sort row ── */
    .acc-results-row {
      display: flex; align-items: center;
      justify-content: space-between;
      flex-wrap: wrap; gap: 0.75rem;
      margin-bottom: 1.75rem;
    }
    .acc-results-count {
      font-size: 0.82rem; color: var(--text-muted);
    }
    .acc-results-count strong { color: var(--navy); font-weight: 700; }

    .acc-sort-select {
      background: #fff; border: 1.5px solid var(--border);
      border-radius: var(--radius); padding: 0.45rem 0.85rem;
      font-family: 'DM Sans', sans-serif; font-size: 0.8rem;
      color: var(--text); cursor: pointer; outline: none;
      transition: border-color 0.2s;
    }
    .acc-sort-select:focus { border-color: var(--red); }

    /* ── Quick View Modal overrides for accessories ── */
    .qv-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.35rem; }
    .qv-features li { display: flex; align-items: flex-start; gap: 7px; font-size: 0.82rem; color: var(--text-mid); }
    .qv-features li::before {
      content: '';
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--red); flex-shrink: 0;
      margin-top: 0.45rem;
    }
    .qv-img-wrap {
      aspect-ratio: 4/3; border-radius: var(--radius);
      overflow: hidden; background: var(--bg-soft);
    }
    .qv-brand { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.3rem; }
    .qv-name { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.15; }
    .qv-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }

    /* ── Empty state (shown when no filter results) ── */
    .acc-empty {
      display: none;
      text-align: center; padding: 5rem 1rem;
      color: var(--text-muted);
    }
    .acc-empty i { font-size: 3rem; color: var(--border); margin-bottom: 1rem; }
    .acc-empty p { font-size: 0.9rem; }

    /* ── Mobile tweaks ── */
    @media (max-width: 575.98px) {
      .acc-hero { padding: 3rem 0 2.5rem; }
      .acc-hero-stats { gap: 1.5rem; }
      .acc-card-name { font-size: 0.9rem; }
      .acc-btn-rent, .acc-btn-detail { font-size: 0.72rem; padding: 0.42rem 0.5rem; }
    }


/*accessories page*/

/* ── Accessories Mega Menu — category-card grid design ── */
    .acc-mega-panel {
      position: absolute; left: 0; right: 0; top: 100%;
      background: var(--white);
      border-top: 3px solid var(--red);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-lg);
      padding: 1.75rem 0 1.5rem;
      opacity: 0; visibility: hidden;
      transform: translateY(-8px);
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
      z-index: 200; pointer-events: none;
    }
    .has-mega:hover .acc-mega-panel,
    .has-mega.mega-open .acc-mega-panel,
    .acc-mega-panel:hover {
      opacity: 1; visibility: visible;
      transform: translateY(0); pointer-events: auto;
    }
    /* 7-column icon-card grid */
    .acc-mega-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 0.6rem;
    }
    .acc-mega-card {
      display: flex; flex-direction: column;
      align-items: center; text-align: center;
      padding: 0.9rem 0.5rem 0.75rem;
      border-radius: var(--radius);
      border: 1.5px solid var(--border);
      background: var(--bg-soft);
      cursor: pointer;
      transition: var(--tr);
      text-decoration: none; color: inherit;
    }
    .acc-mega-card:hover {
      border-color: var(--red);
      background: var(--red-light);
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm);
    }
    .acc-mega-card-icon {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: #fff;
      border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--navy);
      margin-bottom: 0.5rem;
      transition: var(--tr);
    }
    .acc-mega-card:hover .acc-mega-card-icon {
      background: var(--red); color: #fff; border-color: var(--red);
    }
    .acc-mega-card-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem; font-weight: 600;
      color: var(--navy); line-height: 1.25;
      transition: color 0.2s;
    }
    .acc-mega-card:hover .acc-mega-card-label { color: var(--red); }
    .acc-mega-card-count {
      font-size: 0.6rem; color: var(--text-muted);
      margin-top: 0.2rem; font-weight: 400;
    }
    /* Right panel inside accessories mega */
    .acc-mega-right {
      border-left: 1px solid var(--border);
      padding-left: 1.5rem;
    }
    .acc-mega-highlight {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-radius: var(--radius-lg);
      padding: 1.1rem 1.25rem;
      color: #fff;
    }
    .acc-mega-highlight-title {
      font-family: 'Oswald', sans-serif;
      font-size: 0.95rem; font-weight: 600;
      margin-bottom: 0.25rem;
    }
    .acc-mega-highlight-sub {
      font-size: 0.72rem; color: rgba(255,255,255,0.6);
      line-height: 1.5; margin-bottom: 0.8rem;
    }
    .acc-mega-stat-row {
      display: flex; gap: 1.25rem; margin-bottom: 0.85rem;
    }
    .acc-mega-stat-num {
      font-family: 'Oswald', sans-serif;
      font-size: 1.25rem; font-weight: 700;
      color: var(--red); line-height: 1;
    }
    .acc-mega-stat-lbl {
      font-size: 0.62rem; color: rgba(255,255,255,0.5);
      text-transform: uppercase; letter-spacing: 0.08em;
      margin-top: 2px;
    }

    /* ── Hero Section ── */
    .acc-hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3550 100%);
      position: relative; overflow: hidden;
      padding: 4.5rem 0 3.75rem;
    }
    .acc-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 15% 55%, rgba(204,0,0,0.14) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(255,255,255,0.04) 0%, transparent 40%),
        url("https://images.unsplash.com/photo-1606813905752-09e3a96e4ce0?w=1600&q=60&auto=format&fit=crop") center/cover no-repeat;
      opacity: 0.18; pointer-events: none;
    }
    .acc-hero::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(28,43,58,0.92) 0%, rgba(28,43,58,0.75) 100%);
      pointer-events: none;
    }
    .acc-hero .container { position: relative; z-index: 1; }

    /* Breadcrumb */
    .page-breadcrumb {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.75rem; color: rgba(255,255,255,0.5);
      margin-bottom: 1.25rem; flex-wrap: wrap;
    }
    .page-breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .page-breadcrumb a:hover { color: var(--red); }
    .page-breadcrumb i { font-size: 0.55rem; }

    /* Hero search */
    .acc-hero-search {
      display: flex; background: #fff;
      border-radius: var(--radius); overflow: hidden;
      max-width: 520px; box-shadow: var(--shadow-lg);
    }
    .acc-hero-search input {
      flex: 1; border: none; outline: none;
      font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
      color: var(--text); padding: 0.85rem 1.1rem; background: transparent;
    }
    .acc-hero-search input::placeholder { color: var(--text-muted); }
    .acc-hero-search button {
      background: var(--red); color: #fff; border: none;
      padding: 0.85rem 1.4rem;
      font-family: 'Oswald', sans-serif; font-size: 0.88rem; font-weight: 500;
      letter-spacing: 0.06em; cursor: pointer;
      display: flex; align-items: center; gap: 7px;
      transition: background 0.2s; flex-shrink: 0;
    }
    .acc-hero-search button:hover { background: var(--red-dark); }

    /* Hero stats strip */
    .acc-hero-stats {
      display: flex; gap: 2.25rem; flex-wrap: wrap;
      margin-top: 2.25rem; padding-top: 1.75rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* ── Filter bar ── */
    .acc-filter-bar {
      background: #fff;
      border-bottom: 1px solid var(--border);
      position: sticky; top: 72px; z-index: 100;
      box-shadow: var(--shadow-xs);
    }
    .acc-filter-inner {
      display: flex; overflow-x: auto; scrollbar-width: none;
      align-items: stretch;
    }
    .acc-filter-inner::-webkit-scrollbar { display: none; }

    /* ── Products section ── */
    .acc-products-section { padding: 3rem 0 5rem; background: var(--bg-soft); }

    /* ── Accessory Product Card ── */
    .acc-card {
      background: #fff; border: 1px solid var(--border);
      border-radius: var(--radius-lg); overflow: hidden;
      height: 100%; display: flex; flex-direction: column;
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
      position: relative;
    }
    .acc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(204,0,0,0.28); }
    .acc-card-img-wrap {
      position: relative; overflow: hidden;
      aspect-ratio: 4/3; background: var(--bg-soft); flex-shrink: 0;
    }
    .acc-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
    .acc-card:hover .acc-card-img-wrap img { transform: scale(1.07); }
    .acc-card-img-wrap::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.3) 100%);
      pointer-events: none;
    }
    .acc-cat-badge {
      position: absolute; top: 0.65rem; left: 0.65rem; z-index: 2;
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.2rem 0.6rem; border-radius: 20px; background: var(--navy); color: #fff;
    }
    .acc-cat-badge.badge-red    { background: var(--red); }
    .acc-cat-badge.badge-navy   { background: var(--navy); }
    .acc-cat-badge.badge-green  { background: #16a34a; }
    .acc-cat-badge.badge-orange { background: #d97706; }
    .acc-qv-btn {
      position: absolute; bottom: 0.7rem; right: 0.7rem; z-index: 3;
      background: rgba(255,255,255,0.92); color: var(--navy);
      font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
      padding: 0.32rem 0.8rem; border-radius: 20px; border: none; cursor: pointer;
      display: flex; align-items: center; gap: 5px;
      opacity: 0; transform: translateY(6px);
      transition: opacity 0.22s ease, transform 0.22s ease, background 0.2s;
      box-shadow: var(--shadow-sm);
    }
    .acc-card:hover .acc-qv-btn { opacity: 1; transform: translateY(0); }
    .acc-qv-btn:hover { background: var(--red); color: #fff; }
    .acc-card-body { padding: 1.1rem 1.15rem 1.3rem; flex: 1; display: flex; flex-direction: column; }
    .acc-card-brand { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.2rem; }
    .acc-card-name { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; line-height: 1.2; }
    .acc-card-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; flex: 1; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .acc-card-footer { display: flex; gap: 0.4rem; margin-top: auto; }
    .acc-btn-rent {
      flex: 1; background: var(--red); color: #fff;
      font-family: 'Oswald', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.07em;
      padding: 0.48rem 0.6rem; border: 2px solid var(--red); border-radius: 6px;
      cursor: pointer; transition: var(--tr);
      display: flex; align-items: center; justify-content: center; gap: 5px;
    }
    .acc-btn-rent:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
    .acc-btn-detail {
      background: transparent; color: var(--text-mid); font-size: 0.78rem; font-weight: 500;
      padding: 0.48rem 0.75rem; border: 1.5px solid var(--border); border-radius: 6px;
      cursor: pointer; transition: var(--tr);
      display: flex; align-items: center; justify-content: center; gap: 5px; text-decoration: none;
    }
    .acc-btn-detail:hover { border-color: var(--navy); color: var(--navy); }

    /* ── Results count & sort row ── */
    .acc-results-row {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem;
    }
    .acc-results-count { font-size: 0.82rem; color: var(--text-muted); }
    .acc-results-count strong { color: var(--navy); font-weight: 700; }
    .acc-sort-select {
      background: #fff; border: 1.5px solid var(--border);
      border-radius: var(--radius); padding: 0.45rem 0.85rem;
      font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: var(--text);
      cursor: pointer; outline: none; transition: border-color 0.2s;
    }
    .acc-sort-select:focus { border-color: var(--red); }

    /* ── Quick View ── */
    .qv-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.35rem; }
    .qv-features li { display: flex; align-items: flex-start; gap: 7px; font-size: 0.82rem; color: var(--text-mid); }
    .qv-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 0.45rem; }
    .qv-img-wrap { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); }
    .qv-brand { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.3rem; }
    .qv-name { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.15; }
    .qv-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }

    /* ── Empty state ── */
    .acc-empty { display: none; text-align: center; padding: 5rem 1rem; color: var(--text-muted); }
    .acc-empty i { font-size: 3rem; color: var(--border); margin-bottom: 1rem; }
    .acc-empty p { font-size: 0.9rem; }

    /* ── Mobile ── */
    @media (max-width: 575.98px) {
      .acc-hero { padding: 3rem 0 2.5rem; }
      .acc-hero-stats { gap: 1.5rem; }
      .acc-card-name { font-size: 0.9rem; }
      .acc-btn-rent, .acc-btn-detail { font-size: 0.72rem; padding: 0.42rem 0.5rem; }
    }
    @media (max-width: 1199px) {
      .acc-mega-grid { grid-template-columns: repeat(4, 1fr); }
    }
	
/*FAQs*/




/*FAQs*/
/*FAQs*/
/*FAQs*/
/*FAQs*/
/*FAQs*/
/* Spec group description (CKEditor rich text, shown above table rows) */
.spec-group-desc {
  font-size: 0.82rem;
  color: var(--text-muted, #6b7280);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}
.spec-group-desc p { margin: 0 0 0.3rem; }

/* ── Product Feature Tags (replaces price on card) ───────────────────────── */
.prod-feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  min-height: 24px;
}
.feat-tag {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--navy, #1C2B3A);
  background: var(--bg-soft, #f8f9fa);
  border: 1px solid var(--border, #e5e7eb);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.prod-card:hover .feat-tag {
  background: #fee2e2;
  border-color: rgba(204, 0, 0, 0.25);
  color: #CC0000;
}

/* ── Enhanced product card hover ─────────────────────────────────────────── */
.prod-card {
  transition: transform 0.25s cubic-bezier(0.25,0.8,0.25,1),
              box-shadow 0.25s cubic-bezier(0.25,0.8,0.25,1),
              border-color 0.2s;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(28, 43, 58, 0.12), 0 2px 8px rgba(204,0,0,0.08);
  border-color: rgba(204, 0, 0, 0.3);
}
.prod-card:hover .btn-enquire-now,
.prod-card:hover .btn-red {
  background: #aa0000;
}
.prod-card .btn-enquire-now,
.prod-card .btn-red {
  transition: background 0.2s, transform 0.15s;
}
.prod-card:hover .prod-img-wrap img {
  transform: scale(1.06);
  transition: transform 0.4s ease;
}

/* ── Product detail thumbnails — HORIZONTAL row ──────────────────────────── */
.pd-thumb-row {
  display: flex;
  flex-direction: row;         /* HORIZONTAL — was missing explicit direction */
  gap: 0.6rem;
  margin-top: 0.85rem;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(204,0,0,0.3) transparent;
  flex-wrap: nowrap;           /* Keep on single row */
}
.pd-thumb-row::-webkit-scrollbar {
  height: 4px;
}
.pd-thumb-row::-webkit-scrollbar-track {
  background: transparent;
}
.pd-thumb-row::-webkit-scrollbar-thumb {
  background: rgba(204,0,0,0.3);
  border-radius: 2px;
}
.pd-thumb {
  flex-shrink: 0;
  width: 76px;
  height: 60px;
  border-radius: var(--radius, 8px);
  border: 2px solid var(--border, #e5e7eb);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--bg-soft, #f8f9fa);
}
.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.pd-thumb:hover {
  border-color: rgba(204,0,0,0.4);
}
.pd-thumb:hover img {
  transform: scale(1.05);
}
.pd-thumb.active {
  border-color: var(--red, #CC0000);
  box-shadow: 0 0 0 2px rgba(204,0,0,0.15);
}

/* ── Footer trust badges strip ───────────────────────────────────────────── */
.footer-trust-strip {
  background: #1a2535;      /* slightly lighter than footer so it reads as its own band */
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 2rem 0;
}
.footer-trust-strip .why-item {
  border-right: 1px solid rgba(255,255,255,.07);
  padding-right: 1.5rem;
}
.footer-trust-strip .why-item:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .footer-trust-strip .why-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: 1rem; margin-bottom: .5rem; }
  .footer-trust-strip .why-item:last-child { border-bottom: none; }
}

/* ════════════════════════════════════════════════════════════
   PRODUCT PAGE — FAQ ACCORDION
   Shown below Key Highlights in the product detail page.
════════════════════════════════════════════════════════════ */
.product-faq-section {
  border-top: 1px solid var(--border, #e5e7eb);
  padding-top: 1.25rem;
}
.product-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-faq-item {
  border: 1px solid var(--border, #e5e7eb);
  border-radius: var(--radius, 8px);
  overflow: hidden;
  margin-bottom: 0.5rem;
  background: #fff;
  transition: box-shadow 0.2s;
}
.product-faq-item.open {
  box-shadow: 0 2px 10px rgba(28,43,58,0.08);
  border-color: rgba(204,0,0,0.2);
}
.product-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: none;
  border: none;
  padding: 0.85rem 1rem;
  text-align: left;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy, #1C2B3A);
  line-height: 1.4;
  transition: background 0.15s;
}
.product-faq-q:hover {
  background: var(--bg-soft, #f8f9fa);
}
.product-faq-item.open .product-faq-q {
  background: #fff8f8;
  color: var(--red, #CC0000);
}
.pf-icon {
  flex-shrink: 0;
  font-size: 0.7rem;
  color: #9ca3af;
  transition: transform 0.25s ease;
}
.product-faq-item.open .pf-icon {
  transform: rotate(180deg);
  color: var(--red, #CC0000);
}
.product-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.product-faq-a.open {
  max-height: 600px;  /* large enough for any answer */
}
.product-faq-a-inner {
  padding: 0.1rem 1rem 1rem;
  font-size: 0.83rem;
  color: #6b7280;
  line-height: 1.75;
  border-top: 1px solid var(--border, #e5e7eb);
}
.product-faq-a-inner p { margin: 0.4rem 0; }
.product-faq-a-inner ul, .product-faq-a-inner ol { padding-left: 1.25rem; margin: 0.4rem 0; }
.product-faq-a-inner strong { color: var(--navy, #1C2B3A); }
.product-faq-a-inner a { color: var(--red, #CC0000); }
