/* ═══ FONTS ═══ */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/bebas-neue/bebas-neue-v14-latin_cyrillic.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope/manrope-v15-latin_cyrillic.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

/* ═══ CUSTOM PROPERTIES ═══ */
:root, [data-bs-theme="dark"] {
  --bs-body-bg: #0e0e0e;
  --bs-body-color: #e0e0e0;
  --bs-secondary-color: #b8b8b8;
  --bs-border-color: #272727;
  --bs-tertiary-bg: #1a1a1a;
  --bs-secondary-bg: #161616;
  --bs-card-bg: #161616;
  --accent: #d4a017;
  --accent-rgb: 212, 160, 23;
  --accent-hover: #e8b420;
  --accent-dim: rgba(212,160,23,0.10);
  --accent-dim2: rgba(212,160,23,0.05);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--bs-body-bg);
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: var(--accent);
  text-decoration-color: rgba(var(--accent-rgb), 0.45);
  text-underline-offset: 0.16em;
}

a:hover,
a:focus {
  color: var(--accent-hover);
}

/* ═══ UTILITIES ═══ */
.text-xs { font-size: 0.75rem; }
.fs-9  { font-size: 0.9375rem !important; } /* 15px */
.fs-10 { font-size: 0.875rem  !important; } /* 14px */
.fs-11 { font-size: 0.8125rem !important; } /* 13px */
.fs-12 { font-size: 0.75rem   !important; } /* 12px */
.ls-wide { letter-spacing: 0.05em; }
.card-icon-emoji { font-size: 28px; margin-bottom: 14px; }
.hero-img-full { width: 100%; object-fit: cover; }
.assortment-img { width: 100%; height: 200px; object-fit: cover; }

/* ═══ TYPOGRAPHY ═══ */
.display-heading {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  line-height: 1.02;
}
h1.display-heading { font-size: clamp(36px, 5vw, 56px); }
h2.display-heading { font-size: clamp(28px, 4vw, 40px); }
h3.display-heading { font-size: clamp(22px, 3vw, 30px); }

.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}

/* ═══ NAVBAR ═══ */
.site-header {
  background-color: #111 !important;
  border-bottom: 1px solid var(--bs-border-color);
  min-height: 60px;
}
.site-header .logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: #f0f0f0;
}
.site-header .logo-sub { font-size: 11px; color: #c2c2c2; }
.header-nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent) !important;
  text-decoration: none;
  transition: color .15s;
}
.header-nav-link:hover { color: var(--accent-hover) !important; }
.header-mobile-actions {
  flex-shrink: 0;
}
.header-mobile-action {
  width: 38px;
  height: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.header-mobile-action .bi {
  font-size: 1.05rem;
  line-height: 1;
}

/* ═══ OFFCANVAS ═══ */
.site-offcanvas {
  width: min(92vw, 390px);
  background:
    radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.12), transparent 34%),
    linear-gradient(180deg, #141414 0%, #101010 100%);
  border-right: 1px solid rgba(var(--accent-rgb), 0.14);
  color: #f4f4f4;
}
.site-offcanvas-header {
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.10);
}
.site-offcanvas-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
.site-offcanvas-brand-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  padding: 0.45rem;
  flex: 0 0 auto;
}
.site-offcanvas-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
}
.site-offcanvas-subtitle {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.74);
  margin-top: 0.25rem;
}
.site-offcanvas-close {
  opacity: 0.8;
  box-shadow: none !important;
}
.site-offcanvas-body {
  padding: 1rem 1.25rem 1.25rem;
}
.site-offcanvas-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.1rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  color: #f5f5f5;
  text-decoration: none;
  transition: transform 0.15s, border-color 0.15s, background 0.15s, color 0.15s;
}
.site-offcanvas-link::after {
  content: '\f285';
  font-family: 'bootstrap-icons';
  font-size: 0.85rem;
  color: rgba(var(--accent-rgb), 0.75);
  flex: 0 0 auto;
}
.site-offcanvas-link:hover,
.site-offcanvas-link:focus {
  color: #fff;
  border-color: rgba(var(--accent-rgb), 0.22);
  background: rgba(var(--accent-rgb), 0.08);
  transform: translateX(2px);
}
.site-offcanvas-panel {
  padding: 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  background: rgba(255, 255, 255, 0.02);
}
.site-offcanvas-panel-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.75rem;
}
.site-offcanvas-contact {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.82rem 0.9rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.site-offcanvas-contact:hover,
.site-offcanvas-contact:focus {
  border-color: rgba(var(--accent-rgb), 0.22);
  background: rgba(var(--accent-rgb), 0.08);
  transform: translateX(2px);
}
.site-offcanvas-contact-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: rgba(var(--accent-rgb), 0.10);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.18);
}
.site-offcanvas-contact-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.site-offcanvas-contact-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.site-offcanvas-contact-value {
  font-size: 0.95rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-offcanvas-cta {
  width: 100%;
  justify-content: center;
}

/* ═══ ACCENT BUTTON ═══ */
.btn-accent {
  background-color: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  transition: background 0.2s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
.btn-accent:hover { background-color: var(--accent-hover); color: #000; }
.btn-outline-muted {
  background: transparent;
  color: #d0d0d0;
  border: 1px solid #333;
  font-weight: 600;
  font-size: 13px;
  border-radius: 6px;
  padding: 10px 22px;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
.btn-outline-muted:hover { border-color: #666; color: #fff; }

/* ═══ PAGE TABS ═══ */
.page-tabs-bar {
  background: #0a0a0a;
  border-bottom: 1px solid var(--bs-border-color);
}
.page-tabs-scroll {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  white-space: nowrap;
}
.page-tabs-scroll::-webkit-scrollbar { height: 0; }
.page-tab-link {
  display: inline-block;
  padding: 14px 20px;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
}
.page-tab-link:hover { color: var(--accent-hover); }
.page-tab-link.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ═══ SECTION BLOCKS ═══ */
.section-block:nth-child(even) {
  background-color: #141414;
}

/* ═══ HERO ═══ */
.hero-img-box {
  background-color: var(--bs-secondary-bg);
  border-radius: 12px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #b8b8b8;
  font-size: 12px;
  letter-spacing: 0.5px;
  border: 1px solid var(--bs-border-color);
  position: relative;
  overflow: hidden;
}
.hero-img-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 20px,
    rgba(255,255,255,0.012) 20px, rgba(255,255,255,0.012) 21px
  );
  border-radius: 12px;
}
.hero-img-icon {
  width: 56px; height: 56px;
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 12px;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-badge::before {
  content: '';
  display: block; width: 18px; height: 1px;
  background: var(--accent);
}

/* ═══ CARDS ═══ */
.card {
  background-color: var(--bs-card-bg) !important;
  border: 1px solid var(--bs-border-color) !important;
  border-radius: 12px !important;
  transition: border-color 0.2s;
}
.card:hover { border-color: #333 !important; }
.card-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: #8f8f8f;
  line-height: 1;
  margin-bottom: 12px;
}

/* ═══ PRODUCT CARDS ═══ */
.prod-img {
  height: 150px;
  background: #1a1a1a;
  border-radius: 10px 10px 0 0;
  display: flex; align-items: center; justify-content: center;
  color: #b0b0b0;
  font-size: 11px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--bs-border-color);
  position: relative; overflow: hidden;
}
.prod-img::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 14px,
    rgba(255,255,255,0.018) 14px, rgba(255,255,255,0.018) 15px
  );
}
.prod-img i { font-size: 28px; color: #c8c8c8; position: relative; }
.prod-card-inner { padding: 14px 16px 16px; }
.prod-name { font-weight: 700; font-size: 12px; margin-bottom: 5px; color: #f0f0f0; }
.prod-desc { font-size: 11px; color: #c0c0c0; line-height: 1.5; }
.badge-accent { background: var(--accent-dim); color: var(--accent); font-size: 10px; font-weight: 700; border-radius: 4px; padding: 2px 7px; }

/* ═══ TABLE ═══ */
.table-dark {
  --bs-table-bg: var(--bs-card-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-hover-bg: var(--accent-dim2);
  font-size: 12px;
  border-radius: 12px;
  overflow: hidden;
}
.table-dark thead th {
  background: #1a1a1a;
  color: #f0f0f0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 14px;
  border-color: var(--bs-border-color) !important;
  white-space: nowrap;
}
.table-dark tbody td {
  padding: 10px 14px;
  color: #d0d0d0;
  border-color: var(--bs-border-color) !important;
  vertical-align: middle;
}
.table-dark tbody td:first-child { color: #fff; font-weight: 600; }
.table-note {
  background: #131313;
  border-top: 1px solid var(--bs-border-color);
  border-radius: 0 0 12px 12px;
  padding: 9px 14px;
  font-size: 11px;
  color: #b8b8b8;
  font-style: italic;
}

/* ═══ SPEC LIST ═══ */
.spec-row {
  display: flex; gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bs-border-color);
  font-size: 12px;
}
.spec-row:last-child { border-bottom: none; }
.spec-key { font-weight: 600; color: #aaa; min-width: 140px; flex-shrink: 0; }
.spec-val { color: #c0c0c0; line-height: 1.5; }

/* ═══ COLORS ═══ */
.color-swatch { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.color-dot {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}
.color-label { font-size: 10px; color: #555; text-align: center; line-height: 1.3; }

/* ═══ SUPPLY LIST ═══ */
.supply-item {
  padding: 9px 0;
  border-bottom: 1px solid var(--bs-border-color);
  font-size: 12px; color: #d0d0d0;
  display: flex; gap: 10px; align-items: flex-start;
}
.supply-item:last-child { border-bottom: none; }
.supply-item .arrow { color: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* ═══ CLOSING / CTA ═══ */
.closing-card {
  background: var(--bs-card-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 16px;
  padding: 36px 40px;
}
.cta-strip {
  background: var(--accent-dim);
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  margin-top: 24px;
}
.cta-strip-title { font-weight: 700; font-size: 14px; color: #ddd; }
.cta-strip-sub { font-size: 12px; color: #c0c0c0; margin-top: 3px; }

/* ═══ FIRE RATING BADGES ═══ */
.badge-ng { background: rgba(50,120,80,0.12); color: #4fa870; border: 1px solid rgba(50,120,80,0.25); font-size: 10px; font-weight: 700; border-radius: 5px; padding: 2px 8px; }
.badge-g1 { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(var(--accent-rgb),0.25); font-size: 10px; font-weight: 700; border-radius: 5px; padding: 2px 8px; }
.badge-g4 { background: rgba(150,50,50,0.1); color: #a06060; border: 1px solid rgba(150,50,50,0.2); font-size: 10px; font-weight: 700; border-radius: 5px; padding: 2px 8px; }

/* ═══ COMPAT BADGES ═══ */
.compat-tag { font-size: 11px; font-weight: 600; padding: 4px 11px; border-radius: 20px; border: 1px solid; }
.compat-tag.metal { border-color: rgba(50,120,80,0.3); color: #4fa870; background: rgba(50,120,80,0.06); }
.compat-tag.profl { border-color: rgba(var(--accent-rgb),0.3); color: var(--accent); background: var(--accent-dim2); }
.compat-tag.soft { border-color: #333; color: #c0c0c0; background: transparent; }

/* ═══ SUB-LABEL ═══ */
.sub-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #444; border-bottom: 1px solid var(--bs-border-color);
  padding-bottom: 8px; margin-bottom: 14px;
}

/* ═══ SECTION DIVIDER ═══ */
.section-divider { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #333; }

/* ═══ PRODUCT GRID ═══ */
.prod-grid {
  display: grid;
  gap: 1px;
}
.prod-grid-5 { grid-template-columns: repeat(5, 1fr); }
.prod-grid-6 { grid-template-columns: repeat(6, 1fr); }
.prod-grid-wrap {
  border: 1px solid var(--bs-border-color);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bs-border-color);
}
.prod-grid-wrap .card {
  border-radius: 0 !important;
  border: none !important;
}

/* ═══ STEP NUM ═══ */
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
}

/* ═══ FOOTER ═══ */
.site-footer {
  background:
    radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.10), transparent 34%),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.06), transparent 28%),
    linear-gradient(180deg, #121212 0%, #0f0f0f 100%);
  border-top: 1px solid rgba(var(--accent-rgb), 0.22);
  padding: 32px 0 24px;
}
.footer-brand { font-size: 1.35rem; line-height: 1; }
.footer-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.9rem;
}
.footer-nav-link {
  display: block;
  color: var(--accent);
  text-decoration: none;
  padding: 0.18rem 0;
  transition: color 0.15s, transform 0.15s;
}
.footer-nav-link:hover {
  color: var(--accent-hover);
  transform: translateX(2px);
}
.footer-contact {
  color: var(--bs-body-color);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-contact:hover { color: var(--accent-hover); }
.footer-text { color: var(--bs-secondary-color); }
.footer-meta p { margin-bottom: 0; }
.footer-legal {
  color: var(--bs-secondary-color);
  font-size: 0.72rem;
  line-height: 1.7;
}
.footer-legal a,
.footer-meta a { color: var(--accent); }
.footer-legal a:hover,
.footer-meta a:hover { color: var(--accent-hover); }
.footer-bottom-line {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(var(--accent-rgb), 0.10);
}

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }

/* ═══ CATALOG CARDS ═══ */
.catalog-card { transition: border-color 0.2s, transform 0.15s; }
.catalog-card:hover { border-color: #333 !important; transform: translateY(-2px); }
.catalog-card-preview { width: 100%; height: 192px; object-fit: cover; border-radius: 8px; }
.catalog-card-arrow { color: #333; transition: color 0.15s, transform 0.15s; }
.catalog-card:hover .catalog-card-arrow { color: var(--accent); transform: translateX(4px); }

/* ═══ REVIEWS ═══ */
.review-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }
.review-source-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #444;
  background: #1a1a1a;
  border: 1px solid #252525;
  border-radius: 5px;
  padding: 2px 8px;
}
.review-quote { font-size: 13px; line-height: 1.7; color: #d0d0d0; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-card-item { min-height: 220px; }
.reviews-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #161616;
  border: 1px solid #272727;
  color: #888;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.reviews-nav-btn:hover { border-color: var(--accent); color: var(--accent); }
#reviewsSlider .splide__pagination { bottom: -28px; }
#reviewsSlider .splide__pagination__page { background: #272727; opacity: 1; width: 6px; height: 6px; }
#reviewsSlider .splide__pagination__page.is-active { background: var(--accent); transform: scale(1.3); }

/* ═══ LEAD MODAL ═══ */
.lead-modal-content { background: #111; border: 1px solid #1e1e1e; border-radius: 16px; overflow: hidden; }
.lead-modal-stripe { height: 3px; background: linear-gradient(90deg, var(--accent) 0%, transparent 100%); }
.lead-modal-title { font-family: var(--font-display); font-size: 26px; letter-spacing: 0.5px; color: #fff; line-height: 1.1; }
.lead-modal-subtitle { font-size: 12px; color: #c0c0c0; line-height: 1.5; }
.lead-modal-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #555;
.form-consent a { color: var(--accent); text-decoration: underline; }
}
.lead-modal-input {
  display: block;
  width: 100%;
  background: #0e0e0e;
  border: 1px solid #272727;
.cta-consent a { color: var(--accent); text-decoration: underline; }
  border-radius: 8px;
  color: #e0e0e0;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.lead-modal-input:focus { border-color: var(--accent); }
.lead-modal-input::placeholder { color: #333; }
.lead-modal-input.is-invalid { border-color: #c0392b; }
.lead-modal-error { font-size: 11px; color: #c0392b; margin-top: 5px; }
.lead-modal-btn {
  display: block;
  width: 100%;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  border: none;
}
.lead-modal-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(212,160,23,0.10);
  border: 1px solid rgba(212,160,23,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--accent);
}
.form-consent { font-size: 0.75rem; color: #444; line-height: 1.5; }
.form-consent a { color: var(--accent); text-decoration: underline; }

/* ═══ CTA FORM ═══ */
.cta-call-btn { cursor: pointer; }
.cta-call-emoji { font-size: 22px; }
.cta-inline-form { align-items: stretch; }
.cta-phone-field { min-width: 180px; }
.cta-phone-field .lead-modal-input { width: 100%; }
.cta-submit-btn { border-radius: 8px; padding: 10px 20px; border: none; white-space: nowrap; cursor: pointer; }
.cta-consent { font-size: 0.75rem; color: #444; }
.cta-consent a { color: var(--accent); text-decoration: underline; }
.cta-success-panel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(212, 160, 23, 0.24);
  border-radius: 14px;
  background: rgba(212, 160, 23, 0.06);
  color: #e8e8e8;
}
.cta-success-icon {
  width: 40px; height: 40px; flex: 0 0 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.12);
  color: var(--accent);
  border: 1px solid rgba(212, 160, 23, 0.25);
}
.cta-success-title { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.25; }
.cta-success-text { margin-top: 3px; font-size: 12px; line-height: 1.55; color: #9b9b9b; }

/* ═══ BREADCRUMBS ═══ */
.bc-nav {
  background: #0a0a0a;
  border-bottom: 1px solid var(--bs-border-color);
  padding: 9px 0;
}
.bc-ol {
  --bs-breadcrumb-divider: '›';
  --bs-breadcrumb-divider-color: #333;
  --bs-breadcrumb-item-active-color: #c0c0c0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  flex-wrap: nowrap;
  overflow: hidden;
}
.bc-link {
  color: #555;
  text-decoration: none;
  transition: color 0.15s;
}
.bc-link:hover { color: var(--accent); }
.breadcrumb-item.active { color: #c0c0c0; }
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--bs-breadcrumb-divider-color);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1199px) {
  .prod-grid-5, .prod-grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .prod-grid-5, .prod-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .hero-img-box { min-height: 220px; }
  .closing-card { padding: 24px 20px; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
}