/* ==========================================================================
   Bond Fluidaire — Global Styles
   Premium electronics ecommerce (Exzo-inspired, original implementation)
   ========================================================================== */

:root {
  --bf-lime: #C1D72E;
  --bf-lime-dark: #A6CE39;
  --bf-lime-hover: #b0c428;
  --bf-teal: #2EC4B6;
  --bf-dark: #1a1a1a;
  --bf-charcoal: #222222;
  --bf-grey: #6c757d;
  --bf-grey-light: #f5f5f5;
  --bf-border: #e8e8e8;
  --bf-white: #ffffff;
  --bf-font-heading: "Montserrat", sans-serif;
  --bf-font-body: "Open Sans", sans-serif;
  --bf-radius: 4px;
  --bf-radius-pill: 50px;
  --bf-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --bf-transition: 0.3s ease;
}

/* ---- Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--bf-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--bf-grey);
  background: var(--bf-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bf-font-heading);
  color: var(--bf-dark);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

a {
  color: var(--bf-dark);
  text-decoration: none;
  transition: color var(--bf-transition);
}

a:hover {
  color: var(--bf-lime-dark);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--bf-lime);
  color: var(--bf-dark);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ---- Section helpers ---- */
.section {
  padding: 90px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-label {
  display: block;
  font-family: var(--bf-font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bf-lime-dark);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.section-desc {
  max-width: 640px;
  margin-bottom: 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.title-line {
  width: 50px;
  height: 3px;
  background: var(--bf-lime);
  margin: 15px 0 0;
  border: none;
}

.centered .title-line {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Buttons ---- */
.btn {
  font-family: var(--bf-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--bf-radius-pill);
  padding: 12px 32px;
  transition: all var(--bf-transition);
  border: 2px solid transparent;
}

.btn-primary,
.btn-bf {
  background: var(--bf-lime);
  border-color: var(--bf-lime);
  color: var(--bf-dark);
}

.btn-primary:hover,
.btn-bf:hover,
.btn-primary:focus,
.btn-bf:focus {
  background: var(--bf-lime-hover);
  border-color: var(--bf-lime-hover);
  color: var(--bf-dark);
  box-shadow: 0 6px 20px rgba(193, 215, 46, 0.4);
}

.btn-dark-bf {
  background: var(--bf-dark);
  border-color: var(--bf-dark);
  color: var(--bf-white);
}

.btn-dark-bf:hover {
  background: #333;
  border-color: #333;
  color: var(--bf-white);
}

.btn-outline-light {
  background: transparent;
  border-color: var(--bf-white);
  color: var(--bf-white);
}

.btn-outline-light:hover {
  background: var(--bf-white);
  color: var(--bf-dark);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--bf-dark);
  color: var(--bf-dark);
}

.btn-outline-dark:hover {
  background: var(--bf-dark);
  color: var(--bf-white);
}

.btn-white {
  background: var(--bf-white);
  border-color: var(--bf-white);
  color: var(--bf-dark);
}

.btn-white:hover {
  background: var(--bf-dark);
  border-color: var(--bf-dark);
  color: var(--bf-white);
}

/* ---- Top bar ---- */
.top-bar {
  background: var(--bf-white);
  border-bottom: 1px solid var(--bf-border);
  padding: 10px 0;
  font-size: 13px;
}

.top-bar a {
  color: var(--bf-grey);
}

.top-bar a:hover {
  color: var(--bf-lime-dark);
}

.top-bar .top-icon {
  color: var(--bf-lime-dark);
  margin-right: 6px;
}

.top-bar .cart-total {
  color: var(--bf-lime-dark);
  font-weight: 600;
}

.top-bar .divider {
  margin: 0 10px;
  color: var(--bf-border);
}

/* ---- Navbar ---- */
.bf-navbar {
  background: var(--bf-white);
  border-bottom: 1px solid var(--bf-border);
  padding: 12px 0;
  z-index: 1030;
}

.bf-navbar.sticky-top {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  height: 42px;
  width: auto;
}

.bf-navbar .nav-link {
  font-family: var(--bf-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bf-dark) !important;
  padding: 8px 14px !important;
  border-radius: var(--bf-radius-pill);
  transition: all var(--bf-transition);
}

.bf-navbar .nav-link:hover,
.bf-navbar .nav-link.active {
  background: var(--bf-lime);
  color: var(--bf-dark) !important;
}

.bf-navbar .nav-search {
  color: var(--bf-dark);
  font-size: 16px;
  padding: 8px 12px;
}

.bf-navbar .nav-search:hover {
  color: var(--bf-lime-dark);
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--bf-lime);
  color: var(--bf-dark);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50px;
  margin-left: 4px;
}

/* ---- Page hero / breadcrumbs ---- */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: var(--bf-white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

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

.page-hero h1 {
  color: var(--bf-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb-bar {
  padding: 18px 0;
  background: var(--bf-grey-light);
  font-size: 13px;
}

.breadcrumb-bar a {
  color: var(--bf-grey);
}

.breadcrumb-bar .current {
  color: var(--bf-dark);
  font-weight: 600;
}

.page-title-block {
  text-align: center;
  padding: 50px 0 20px;
}

.page-title-block .label {
  color: var(--bf-lime-dark);
  font-family: var(--bf-font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-title-block h1 {
  margin: 8px 0;
}

/* ---- Home hero ---- */
.home-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--bf-white);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.home-hero .container {
  position: relative;
  z-index: 1;
}

.home-hero .brand-signal {
  font-family: var(--bf-font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--bf-white);
  letter-spacing: 4px;
  margin-bottom: 1rem;
}

.home-hero .hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-gradient {
  background: linear-gradient(135deg, var(--bf-lime) 0%, var(--bf-teal) 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-gradient .hero-product-img {
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.hero-gradient h2 {
  color: var(--bf-white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.hero-gradient p {
  color: rgba(255, 255, 255, 0.95);
}

/* ---- Promo banners ---- */
.promo-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: var(--bf-radius);
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
}

.promo-banner .promo-content {
  position: relative;
  z-index: 1;
  padding: 30px;
  color: var(--bf-white);
}

.promo-banner h3 {
  color: var(--bf-white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

/* ---- Feature / why cards ---- */
.feature-card {
  margin-bottom: 30px;
}

.feature-card .feature-img {
  border-radius: var(--bf-radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.feature-card .feature-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.feature-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.feature-card .view-more {
  font-family: var(--bf-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bf-dark);
}

.feature-card .view-more i {
  color: var(--bf-lime-dark);
  margin-left: 6px;
}

.feature-card .view-more:hover {
  color: var(--bf-lime-dark);
}

/* ---- Product cards ---- */
.product-card {
  background: var(--bf-white);
  border: 1px solid var(--bf-border);
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  transition: all var(--bf-transition);
  height: calc(100% - 30px);
}

.product-card:hover {
  box-shadow: var(--bf-shadow);
  transform: translateY(-5px);
}

.product-card .badge-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  font-family: var(--bf-font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 2;
  text-transform: uppercase;
}

.badge-hot {
  background: #e74c3c;
  color: #fff;
}

.badge-new {
  background: var(--bf-lime);
  color: var(--bf-dark);
}

.product-card .product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.product-card .product-img img {
  max-height: 180px;
  object-fit: contain;
  margin: 0 auto;
}

.product-card .category {
  font-size: 12px;
  color: #e67e22;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.product-card h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.product-card h3 a:hover {
  color: var(--bf-lime-dark);
}

.product-card .stars {
  color: #f1c40f;
  font-size: 12px;
  margin-bottom: 8px;
}

.product-card .price {
  font-family: var(--bf-font-heading);
  font-weight: 700;
  color: var(--bf-lime-dark);
  font-size: 1.1rem;
}

.product-card .price .old {
  color: var(--bf-grey);
  text-decoration: line-through;
  font-size: 0.85rem;
  font-weight: 400;
  margin-left: 8px;
}

.product-card .card-actions {
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--bf-transition);
  margin-top: 12px;
}

.product-card:hover .card-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-card .btn-sm {
  padding: 8px 18px;
  font-size: 11px;
}

/* ---- Service cards ---- */
.service-card {
  background: var(--bf-white);
  border: 1px solid var(--bf-border);
  padding: 0;
  margin-bottom: 30px;
  overflow: hidden;
  transition: all var(--bf-transition);
  height: calc(100% - 30px);
}

.service-card:hover {
  box-shadow: var(--bf-shadow);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card .service-body {
  padding: 25px;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.service-card .icon-box {
  width: 60px;
  height: 60px;
  background: var(--bf-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--bf-dark);
  margin-bottom: 20px;
}

/* ---- Process ---- */
.process-step {
  text-align: center;
  padding: 20px;
  position: relative;
}

.process-step .step-num {
  width: 70px;
  height: 70px;
  background: var(--bf-lime);
  color: var(--bf-dark);
  font-family: var(--bf-font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h4 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* ---- Stats ---- */
.stats-section {
  background: linear-gradient(135deg, var(--bf-lime) 0%, var(--bf-teal) 100%);
  padding: 80px 0;
  color: var(--bf-white);
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-item .stat-num {
  font-family: var(--bf-font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--bf-white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-family: var(--bf-font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* ---- Specs highlight ---- */
.specs-section {
  background: linear-gradient(135deg, var(--bf-teal) 0%, var(--bf-lime) 100%);
  padding: 80px 0;
  color: var(--bf-white);
}

.specs-section h2 {
  color: var(--bf-white);
}

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

.specs-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.95);
}

.specs-list li i {
  font-size: 22px;
  color: var(--bf-white);
  margin-top: 3px;
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--bf-grey-light);
  padding: 35px 30px;
  border-radius: var(--bf-radius);
  margin-bottom: 30px;
  height: calc(100% - 30px);
}

.testimonial-card .quote-icon {
  color: var(--bf-lime-dark);
  font-size: 28px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-family: var(--bf-font-heading);
  font-weight: 700;
  color: var(--bf-dark);
  font-size: 14px;
  text-transform: uppercase;
}

.testimonial-card .author span {
  display: block;
  font-weight: 400;
  color: var(--bf-lime-dark);
  font-size: 12px;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--bf-font-body);
}

/* ---- Team ---- */
.team-card {
  text-align: center;
  margin-bottom: 30px;
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--bf-transition);
  margin-bottom: 18px;
  border-radius: var(--bf-radius);
}

.team-card:hover img {
  filter: grayscale(0%);
}

.team-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--bf-lime-dark);
  font-size: 13px;
  margin-bottom: 10px;
}

/* ---- Logo grid / trusted ---- */
.logo-grid {
  border: 1px solid var(--bf-border);
}

.logo-grid .logo-cell {
  border: 1px solid var(--bf-border);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  color: #bbb;
  font-family: var(--bf-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--bf-transition);
}

.logo-grid .logo-cell:hover {
  color: var(--bf-dark);
}

/* ---- FAQ ---- */
.accordion-bf .accordion-item {
  border: 1px solid var(--bf-border);
  margin-bottom: 12px;
  border-radius: var(--bf-radius) !important;
  overflow: hidden;
}

.accordion-bf .accordion-button {
  font-family: var(--bf-font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--bf-dark);
  background: var(--bf-white);
  box-shadow: none !important;
}

.accordion-bf .accordion-button:not(.collapsed) {
  background: var(--bf-lime);
  color: var(--bf-dark);
}

.accordion-bf .accordion-button::after {
  filter: none;
}

.accordion-bf .accordion-body {
  font-size: 14px;
  color: var(--bf-grey);
}

/* ---- Newsletter ---- */
.newsletter-section {
  background: var(--bf-lime);
  padding: 70px 0;
}

.newsletter-section h2 {
  color: var(--bf-dark);
  margin-bottom: 10px;
}

.newsletter-form {
  display: block;
  max-width: 520px;
  margin: 25px auto 0;
}

.newsletter-form .input-group {
  display: flex;
}

.newsletter-split {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.newsletter-split .newsletter-img {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.newsletter-split .newsletter-form-wrap {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- Blog cards ---- */
.blog-card {
  position: relative;
  min-height: 380px;
  border-radius: var(--bf-radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 50%);
}

.blog-card .blog-content {
  position: relative;
  z-index: 1;
  padding: 30px;
  color: var(--bf-white);
}

.blog-card h3 {
  color: var(--bf-white);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* ---- Contact info ---- */
.contact-info-box {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
}

.contact-info-box .icon {
  width: 70px;
  height: 70px;
  background: var(--bf-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--bf-dark);
}

.contact-info-box h4 {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.contact-info-box .social-links a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--bf-grey-light);
  border-radius: 50%;
  margin: 0 4px;
  color: var(--bf-dark);
}

.contact-info-box .social-links a:hover {
  background: var(--bf-lime);
}

/* ---- Forms ---- */
.form-control,
.form-select {
  border: 1px solid var(--bf-border);
  border-radius: var(--bf-radius);
  padding: 12px 18px;
  font-size: 14px;
  color: var(--bf-dark);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--bf-lime);
  box-shadow: 0 0 0 3px rgba(193, 215, 46, 0.25);
}

.form-label {
  font-family: var(--bf-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bf-dark);
}

.invalid-feedback,
.field-error {
  font-size: 12px;
  color: #e74c3c;
  display: none;
}

.form-control.is-invalid + .invalid-feedback,
.form-control.is-invalid ~ .field-error,
.field-error.show {
  display: block;
}

.form-control.is-invalid {
  border-color: #e74c3c;
}

.form-success-alert {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 15px 20px;
  border-radius: var(--bf-radius);
  margin-bottom: 20px;
}

.form-success-alert.show {
  display: block;
}

/* ---- Cart ---- */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table thead {
  background: var(--bf-charcoal);
  color: var(--bf-white);
}

.cart-table thead th {
  font-family: var(--bf-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px;
  border: none;
}

.cart-table tbody td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--bf-border);
  vertical-align: middle;
  color: var(--bf-dark);
}

.cart-table .product-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-table .product-info img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--bf-grey-light);
  border-radius: var(--bf-radius);
}

.cart-table .product-info h4 {
  font-size: 0.9rem;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--bf-border);
  border-radius: var(--bf-radius);
}

.qty-control button {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  color: var(--bf-dark);
  font-size: 14px;
}

.qty-control input {
  width: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--bf-border);
  border-right: 1px solid var(--bf-border);
  height: 36px;
  font-size: 14px;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--bf-grey);
  cursor: pointer;
  font-size: 16px;
}

.cart-remove:hover {
  color: #e74c3c;
}

.cart-totals-box,
.shipping-box {
  background: var(--bf-grey-light);
  padding: 30px;
  border-radius: var(--bf-radius);
  margin-bottom: 30px;
}

.cart-totals-box h3,
.shipping-box h3 {
  font-size: 1rem;
  margin-bottom: 20px;
}

.cart-totals-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--bf-border);
  font-size: 14px;
  color: var(--bf-dark);
}

.cart-totals-row.total {
  border-bottom: none;
  font-family: var(--bf-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  padding-top: 15px;
}

.cart-totals-row .value {
  color: var(--bf-lime-dark);
  font-weight: 600;
}

.free-shipping {
  color: var(--bf-lime-dark) !important;
}

.coupon-form {
  display: flex;
  gap: 0;
  max-width: 360px;
}

.coupon-form input {
  flex: 1;
  border-radius: var(--bf-radius-pill) 0 0 var(--bf-radius-pill);
  border: 1px solid var(--bf-border);
  padding: 12px 18px;
}

.coupon-form .btn {
  border-radius: 0 var(--bf-radius-pill) var(--bf-radius-pill) 0;
}

.checkout-success {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 25px;
  border-radius: var(--bf-radius);
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
}

.checkout-success.show {
  display: block;
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
}

/* ---- Product detail ---- */
.product-gallery img {
  width: 100%;
  border: 1px solid var(--bf-border);
  border-radius: var(--bf-radius);
  background: var(--bf-grey-light);
}

.product-detail-info .price-lg {
  font-family: var(--bf-font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bf-lime-dark);
  margin: 15px 0;
}

.product-detail-info .price-lg .old {
  font-size: 1.1rem;
  color: var(--bf-grey);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 12px;
}

.product-meta {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.product-meta li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--bf-grey);
}

.product-meta li strong {
  color: var(--bf-dark);
  margin-right: 8px;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--bf-grey);
}

.benefits-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--bf-lime-dark);
}

/* ---- Sidebar filters ---- */
.filter-widget {
  margin-bottom: 35px;
}

.filter-widget h4 {
  font-size: 0.9rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bf-border);
}

.filter-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-widget ul li {
  margin-bottom: 10px;
}

.filter-widget ul li a {
  color: var(--bf-grey);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

.filter-widget ul li a:hover,
.filter-widget ul li a.active {
  color: var(--bf-lime-dark);
}

.filter-widget .form-check {
  margin-bottom: 8px;
}

.filter-widget .form-check-label {
  font-size: 14px;
  color: var(--bf-grey);
}

.color-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.color-swatches span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--bf-border);
  cursor: pointer;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--bf-border);
  border-radius: var(--bf-radius);
  font-size: 11px;
  font-family: var(--bf-font-heading);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bf-grey);
}

.tag-cloud a:hover {
  background: var(--bf-lime);
  border-color: var(--bf-lime);
  color: var(--bf-dark);
}

.shop-banner {
  background: var(--bf-charcoal);
  border-radius: var(--bf-radius);
  padding: 40px;
  color: var(--bf-white);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
}

.shop-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.shop-banner > * {
  position: relative;
  z-index: 1;
}

.shop-banner h2 {
  color: var(--bf-white);
  font-size: 1.8rem;
}

.shop-banner .discount {
  color: var(--bf-lime);
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--bf-font-heading);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--bf-border);
}

.shop-toolbar h2 {
  font-size: 1rem;
  margin: 0;
}

.pagination-bf .page-link {
  color: var(--bf-dark);
  border-radius: var(--bf-radius) !important;
  margin: 0 3px;
  border: 1px solid var(--bf-border);
}

.pagination-bf .page-item.active .page-link {
  background: var(--bf-lime);
  border-color: var(--bf-lime);
  color: var(--bf-dark);
}

.mini-product {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: center;
}

.mini-product img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: var(--bf-grey-light);
  border-radius: var(--bf-radius);
}

.mini-product h5 {
  font-size: 13px;
  margin: 0 0 4px;
  text-transform: none;
  letter-spacing: 0;
}

.mini-product .price {
  color: var(--bf-lime-dark);
  font-weight: 600;
  font-size: 13px;
}

/* ---- Legal pages ---- */
.legal-content h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: 0;
}

.legal-content h3 {
  font-size: 1rem;
  margin-top: 1.5rem;
  text-transform: none;
  letter-spacing: 0;
}

.legal-content p,
.legal-content li {
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--bf-charcoal);
  color: #aaa;
  padding-top: 70px;
}

.site-footer h4 {
  color: var(--bf-white);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.site-footer a {
  color: #aaa;
}

.site-footer a:hover {
  color: var(--bf-lime);
}

.site-footer .footer-about p {
  font-size: 14px;
  margin-bottom: 20px;
}

.site-footer .footer-contact li {
  list-style: none;
  margin-bottom: 12px;
  font-size: 14px;
}

.site-footer .footer-contact {
  padding: 0;
}

.site-footer .footer-contact i {
  color: var(--bf-lime);
  margin-right: 10px;
  width: 16px;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
}

.site-footer .footer-links li {
  margin-bottom: 10px;
}

.site-footer .footer-links a {
  font-size: 14px;
}

.footer-newsletter input {
  background: #333;
  border: 1px solid #444;
  color: #fff;
  border-radius: var(--bf-radius-pill) 0 0 var(--bf-radius-pill);
  padding: 12px 18px;
}

.footer-newsletter .input-group .btn {
  border-radius: 0 var(--bf-radius-pill) var(--bf-radius-pill) 0;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 0;
  margin-top: 50px;
  font-size: 13px;
}

.footer-bottom .social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid #444;
  border-radius: 50%;
  margin: 0 4px;
  color: #aaa;
}

.footer-bottom .social a:hover {
  background: var(--bf-lime);
  border-color: var(--bf-lime);
  color: var(--bf-dark);
}

.footer-legal-links a {
  margin: 0 8px;
  font-size: 12px;
}

.footer-legal-links a:first-child {
  margin-left: 0;
}

/* ---- CTA band ---- */
.cta-band {
  background: var(--bf-dark);
  padding: 70px 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--bf-white);
  margin-bottom: 15px;
}

.cta-band p {
  color: #aaa;
  max-width: 560px;
  margin: 0 auto 25px;
}

/* ---- Related ---- */
.related-section {
  background: var(--bf-grey-light);
}

/* ---- Utilities ---- */
.text-lime {
  color: var(--bf-lime-dark) !important;
}

.bg-lime {
  background: var(--bf-lime) !important;
}

.bg-dark-bf {
  background: var(--bf-charcoal) !important;
}

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

.split-image {
  min-height: 450px;
  background-size: cover;
  background-position: center;
}

.feature-block {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.feature-block img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--bf-radius);
  flex-shrink: 0;
}

.feature-block h5 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.map-placeholder {
  height: 400px;
  background: var(--bf-grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--bf-grey);
}

.map-placeholder i {
  font-size: 48px;
  color: var(--bf-lime-dark);
  margin-bottom: 15px;
}
