/*
Theme Name: H&H Fleet
Theme URI: https://hh-fleet.com
Author: Brandon Stone
Author URI: https://hhsales.com
Description: Custom theme for H&H Fleet Sales — fleet truck accessories, upfitting, and commercial vehicle solutions. Bold industrial design with black, white, and yellow brand colors.
Version: 1.5.0
Requires at least: 6.4
Requires PHP: 8.1
License: Proprietary
Text Domain: hh-fleet
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Brand Colors */
  --hh-black: #1A1A1A;
  --hh-black-deep: #0D0D0D;
  --hh-black-soft: #2D2D2D;
  --hh-yellow: #FEDD00;
  --hh-yellow-hover: #E5C700;
  --hh-yellow-dark: #C4A900;
  --hh-yellow-glow: rgba(254, 221, 0, 0.15);
  --hh-white: #FFFFFF;
  --hh-gray-100: #F7F7F7;
  --hh-gray-200: #E8E8E8;
  --hh-gray-300: #D1D1D1;
  --hh-gray-500: #888888;
  --hh-gray-700: #555555;
  --hh-gray-900: #333333;

  /* Typography */
  --font-display: 'Oswald', 'Impact', sans-serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 8rem);
  --container-max: 1340px;
  --gap: clamp(1rem, 2vw, 2rem);

  /* Effects */
  --shadow-brutal: 8px 8px 0 var(--hh-yellow);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.15);
  --border-accent: 3px solid var(--hh-yellow);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--hh-gray-900);
  background: var(--hh-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--hh-black);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p { margin-bottom: 1em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hh-yellow);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--hh-yellow);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
}

.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--hh-black); color: var(--hh-white); }
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--hh-white); }
.section--gray { background: var(--hh-gray-100); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--hh-yellow);
  color: var(--hh-black);
}
.btn--primary:hover {
  background: var(--hh-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 221, 0, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--hh-white);
  border: 2px solid var(--hh-white);
}
.btn--outline:hover {
  background: var(--hh-white);
  color: var(--hh-black);
}

.btn--dark {
  background: var(--hh-black);
  color: var(--hh-white);
}
.btn--dark:hover {
  background: var(--hh-black-soft);
  transform: translateY(-2px);
}

.btn svg,
.btn .arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}
.btn:hover svg,
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--hh-black-deep);
  border-bottom: 3px solid var(--hh-yellow);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  padding: 0 clamp(1rem, 2vw, 2rem);
  padding: 0 clamp(1.25rem, 3vw, 3rem);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hh-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-logo .logo-icon {
  width: 48px;
  height: 48px;
  background: var(--hh-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--hh-black);
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.site-logo span { color: var(--hh-yellow); }

.site-logo-img,
.woocommerce-page .site-logo-img {
  height: 48px !important;
  width: auto !important;
  display: block;
}

.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--hh-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.footer-brand .site-logo-img {
  height: 40px;
}

.footer-brand .site-logo-text {
  font-size: 1.2rem;
}

@media (max-width: 480px) {
  .site-logo-text { font-size: 1rem; }
  .site-logo-img { height: 36px; }
}

.nav-main { display: flex; align-items: center; gap: 0; }
.nav-main a {
  display: flex;
  align-items: center;
  padding: 0.5rem clamp(0.5rem, 1vw, 1.25rem);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition-fast);
  position: relative;
}
.nav-main a:hover,
.nav-main a.active {
  color: var(--hh-white);
}
.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: var(--hh-yellow);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-main a:hover::after,
.nav-main a.active::after { transform: scaleX(1); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--hh-white);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-cart {
  position: relative;
}

.nav-cart svg {
  vertical-align: middle;
}

.nav-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--hh-yellow);
  color: var(--hh-black);
  font-size: 0.6rem;
  font-weight: 700;
  font-family: var(--font-display);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.header-phone strong { color: var(--hh-yellow); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--hh-white);
  margin: 6px 0;
  transition: all var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--hh-black-deep);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(254, 221, 0, 0.06) 0%, transparent 70%),
    linear-gradient(135deg, var(--hh-black-deep) 0%, var(--hh-black) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(254,221,0,0.04)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  transform: skewX(-12deg);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  color: var(--hh-white);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero h1 .highlight {
  color: var(--hh-yellow);
  display: inline;
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

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

.hero-stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--hh-yellow);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.35rem;
}

/* Decorative truck silhouette */
.hero-visual {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 55%;
  height: 90%;
  z-index: 1;
  opacity: 0.08;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
}

/* ============================================
   SERVICES STRIP
   ============================================ */
.services-strip {
  background: var(--hh-yellow);
  padding: 0;
  position: relative;
  z-index: 10;
}

.services-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-strip-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(26, 26, 26, 0.1);
  transition: all var(--transition);
  cursor: default;
}
.service-strip-item:last-child { border-right: none; }
.service-strip-item:hover {
  background: var(--hh-yellow-hover);
}

.service-strip-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.service-strip-item h4 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--hh-black);
  margin-bottom: 0.25rem;
}

.service-strip-item p {
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
}

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--hh-gray-200);
  border: none;
  position: relative;
  overflow: hidden;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: var(--border-accent);
  z-index: -1;
}

.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { color: var(--hh-gray-700); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-feature::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--hh-yellow);
  flex-shrink: 0;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ============================================
   FLEET CATEGORIES
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.category-card {
  position: relative;
  background: var(--hh-white);
  border: 1px solid var(--hh-gray-200);
  overflow: hidden;
  transition: all var(--transition);
  group: true;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--hh-yellow);
}

.category-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--hh-gray-200);
  overflow: hidden;
  position: relative;
}

.category-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--hh-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.category-card:hover .category-card-image::after { transform: scaleX(1); }

.category-card-body {
  padding: 1.5rem;
}

.category-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.category-card-body p {
  font-size: 0.9rem;
  color: var(--hh-gray-700);
  margin-bottom: 1rem;
}

.card-link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hh-black);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}
.card-link:hover { color: var(--hh-yellow-dark); gap: 0.75rem; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--hh-black);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--hh-yellow-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.cta-inner h2 { color: var(--hh-white); max-width: 600px; }
.cta-inner h2 .highlight { color: var(--hh-yellow); }

/* ============================================
   LOCATIONS
   ============================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap);
}

.location-card {
  background: var(--hh-white);
  border: 1px solid var(--hh-gray-200);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--hh-yellow);
  transition: height var(--transition);
}

.location-card:hover::before { height: 100%; }
.location-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--hh-gray-300);
}

.location-card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.location-card p {
  font-size: 0.9rem;
  color: var(--hh-gray-700);
  margin-bottom: 0.25rem;
}

.location-card .phone {
  color: var(--hh-black);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ============================================
   BRANDS STRIP
   ============================================ */
.brands-strip {
  border-top: 1px solid var(--hh-gray-200);
  border-bottom: 1px solid var(--hh-gray-200);
  padding: 3rem 0;
  overflow: hidden;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scroll-brands 30s linear infinite;
}

.brand-item {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hh-gray-300);
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes scroll-brands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--hh-black-deep);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; max-width: 320px; }

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--hh-yellow);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--hh-white); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */
.woocommerce ul.products li.product {
  border: 1px solid var(--hh-gray-200);
  transition: all var(--transition);
  padding-bottom: 1rem;
}
.woocommerce ul.products li.product:hover {
  border-color: var(--hh-yellow);
  box-shadow: var(--shadow-card);
}

.woocommerce ul.products li.product .price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--hh-black);
}

.woocommerce ul.products li.product .button,
.woocommerce .button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button {
  background: var(--hh-yellow) !important;
  color: var(--hh-black) !important;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  border: none;
  border-radius: 0;
  transition: all var(--transition);
}
.woocommerce .button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover {
  background: var(--hh-yellow-hover) !important;
}

/* ============================================
   WOOCOMMERCE BLOCK CART & CHECKOUT
   ============================================ */

/* --- Page titles (block cart/checkout render their own h2) --- */
.wc-block-cart h2,
.wc-block-checkout h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- Primary action buttons --- */
.wc-block-cart__submit-button,
.wc-block-checkout__actions .wc-block-components-button,
.wc-block-components-checkout-place-order-button {
  background: var(--hh-yellow) !important;
  color: var(--hh-black) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-size: 1rem !important;
  padding: 14px 32px !important;
  border: none !important;
  border-radius: 0 !important;
  transition: all var(--transition) !important;
  box-shadow: 4px 4px 0 var(--hh-black) !important;
}

.wc-block-cart__submit-button:hover,
.wc-block-checkout__actions .wc-block-components-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  background: var(--hh-yellow-hover) !important;
  box-shadow: 2px 2px 0 var(--hh-black) !important;
  transform: translate(2px, 2px);
}

/* --- Cart totals sidebar --- */
.wc-block-cart__sidebar .wc-block-cart__totals-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
  border-bottom: 3px solid var(--hh-yellow);
  padding-bottom: 10px;
}

/* --- Checkout section headings --- */
.wc-block-checkout .wc-block-components-title,
.wc-block-checkout h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
}

/* --- Form inputs --- */
.wc-block-checkout input[type="text"],
.wc-block-checkout input[type="email"],
.wc-block-checkout input[type="tel"],
.wc-block-checkout input[type="number"],
.wc-block-checkout select,
.wc-block-checkout textarea,
.wc-block-cart input[type="number"] {
  border: 2px solid var(--hh-gray-200) !important;
  border-radius: 0 !important;
  padding: 10px 14px !important;
  font-size: 0.95rem !important;
  transition: border-color var(--transition-fast) !important;
}

.wc-block-checkout input:focus,
.wc-block-checkout select:focus,
.wc-block-checkout textarea:focus {
  border-color: var(--hh-yellow) !important;
  box-shadow: 0 0 0 1px var(--hh-yellow) !important;
  outline: none !important;
}

/* --- Order summary sidebar --- */
.wc-block-checkout__sidebar {
  background: var(--hh-gray-100);
  padding: 24px;
  border-left: 3px solid var(--hh-yellow);
}

.wc-block-checkout__sidebar .wc-block-components-order-summary-item__description {
  font-size: 0.85rem;
}

/* --- Total row emphasis --- */
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-family: var(--font-display) !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
}

/* --- Cart items table --- */
.wc-block-cart-items__header {
  border-bottom: 3px solid var(--hh-yellow);
}

.wc-block-cart-items__header th {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  color: var(--hh-gray-500);
}

.wc-block-cart-items__row {
  border-bottom: 1px solid var(--hh-gray-200);
  padding: 20px 0;
}

/* --- Cart quantity stepper --- */
.wc-block-components-quantity-selector {
  border: 2px solid var(--hh-black) !important;
  border-radius: 0 !important;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
  font-weight: 700 !important;
  color: var(--hh-black) !important;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:hover {
  background: var(--hh-yellow) !important;
}

/* --- Remove link --- */
.wc-block-cart-item__remove-link {
  color: var(--hh-gray-500) !important;
  text-transform: uppercase;
  font-size: 0.75rem !important;
  letter-spacing: 0.06em;
}

.wc-block-cart-item__remove-link:hover {
  color: #dc2626 !important;
}

/* --- Product prices in cart/checkout --- */
.wc-block-components-formatted-money-amount {
  font-family: var(--font-display);
  font-weight: 700;
}

/* --- Coupon panel --- */
.wc-block-components-panel__button {
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
}

/* --- Return to cart link --- */
.wc-block-checkout__actions_row a {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  color: var(--hh-black);
}

.wc-block-checkout__actions_row a:hover {
  color: var(--hh-yellow-hover);
}

/* --- Payment method box --- */
.wc-block-checkout__payment-method {
  border: 2px solid var(--hh-gray-200);
  border-radius: 0;
  padding: 20px;
}

/* --- Terms/legal text --- */
.wc-block-checkout__terms {
  font-size: 0.8rem;
  color: var(--hh-gray-500);
}

/* --- Cart/checkout notices --- */
.wc-block-components-notice-banner {
  border-radius: 0 !important;
  border-left: 4px solid var(--hh-yellow) !important;
}

/* ============================================
   WOOCOMMERCE SINGLE PRODUCT
   ============================================ */
.single-product .summary .product_title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.single-product .summary .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--hh-black);
}

.single-product .summary .single_add_to_cart_button {
  background: var(--hh-yellow) !important;
  color: var(--hh-black) !important;
  font-family: var(--font-display) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  padding: 14px 32px;
  border: none;
  border-radius: 0;
  box-shadow: 4px 4px 0 var(--hh-black);
  transition: all var(--transition);
}

.single-product .summary .single_add_to_cart_button:hover {
  background: var(--hh-yellow-hover) !important;
  box-shadow: 2px 2px 0 var(--hh-black);
  transform: translate(2px, 2px);
}

.single-product .woocommerce-tabs .tabs li.active a {
  color: var(--hh-black);
  border-bottom: 3px solid var(--hh-yellow);
}

.single-product .woocommerce-tabs .tabs li a {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

/* --- Quantity input on product page --- */
.single-product .quantity input[type="number"] {
  border: 2px solid var(--hh-black) !important;
  border-radius: 0 !important;
  font-family: var(--font-display);
  font-size: 1rem;
  width: 60px;
  text-align: center;
  padding: 10px;
}

/* ============================================
   CONTACT FORM MODAL
   ============================================ */
.hh-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.hh-modal-backdrop[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.hh-modal {
  background: var(--hh-white);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hh-modal-backdrop[aria-hidden="false"] .hh-modal {
  transform: translateY(0) scale(1);
}

.hh-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--hh-gray-500);
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  padding: 4px;
}

.hh-modal-close:hover {
  color: var(--hh-black);
}

.hh-modal-header {
  background: var(--hh-black);
  padding: 2rem 2rem 1.5rem;
  border-bottom: 3px solid var(--hh-yellow);
}

.hh-modal-header h2 {
  color: var(--hh-white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.hh-modal-header .hh-modal-close {
  color: var(--hh-gray-500);
}

.hh-modal-header .hh-modal-close:hover {
  color: var(--hh-yellow);
}

.hh-modal-header p {
  color: var(--hh-gray-300);
  font-size: 0.9rem;
  margin: 0;
}

.hh-contact-form {
  padding: 1.5rem 2rem 2rem;
}

.hh-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hh-form-field {
  margin-bottom: 1rem;
}

.hh-form-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hh-gray-700);
  margin-bottom: 6px;
}

.hh-form-field .required {
  color: #dc2626;
}

.hh-form-field input,
.hh-form-field select,
.hh-form-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--hh-gray-200);
  border-radius: 0;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
  box-sizing: border-box;
}

.hh-form-field input:focus,
.hh-form-field select:focus,
.hh-form-field textarea:focus {
  border-color: var(--hh-yellow);
  outline: none;
  box-shadow: 0 0 0 1px var(--hh-yellow);
}

.hh-form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.hh-form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  box-shadow: 4px 4px 0 var(--hh-black);
}

.hh-form-submit:hover {
  box-shadow: 2px 2px 0 var(--hh-black);
  transform: translate(2px, 2px);
}

.hh-form-submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hh-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: var(--hh-black);
  border-radius: 50%;
  animation: hhSpin 0.6s linear infinite;
}

@keyframes hhSpin {
  to { transform: rotate(360deg); }
}

.hh-form-status {
  margin-bottom: 1rem;
  padding: 0;
  font-size: 0.9rem;
  text-align: center;
}

.hh-form-status--success {
  color: #16a34a;
  background: #dcfce7;
  padding: 12px;
  border-left: 4px solid #16a34a;
}

.hh-form-status--error {
  color: #dc2626;
  background: #fee2e2;
  padding: 12px;
  border-left: 4px solid #dc2626;
}

/* Honeypot — offscreen, not display:none (bots detect that) */
.hh-form-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
  z-index: -1;
}

/* Validation errors */
.hh-form-field.hh-field-error input,
.hh-form-field.hh-field-error select,
.hh-form-field.hh-field-error textarea {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 1px #dc2626 !important;
}

.hh-error-msg {
  display: block;
  color: #dc2626;
  font-size: 0.78rem;
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width: 480px) {
  .hh-form-row { grid-template-columns: 1fr; }
  .hh-contact-form { padding: 1.25rem; }
  .hh-modal-header { padding: 1.5rem 1.25rem 1.25rem; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============================================
   SPRAY-ON BEDLINERS PAGE
   ============================================ */

/* --- Hero --- */
.bedliner-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--hh-black-deep);
  overflow: hidden;
}

.bedliner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(26,26,26,0.7) 50%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.bedliner-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--hh-yellow);
}

.bedliner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.bedliner-hero h1 {
  color: var(--hh-white);
  margin-bottom: 1.5rem;
}

.bedliner-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--hh-gray-300);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.bedliner-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Comparison Cards --- */
.bedliner-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  max-width: 900px;
  margin: 0 auto;
}

.bedliner-compare-card {
  padding: 2rem;
  border-radius: 0;
  border: 2px solid var(--hh-gray-200);
}

.bedliner-compare-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--hh-gray-200);
}

.bedliner-compare-header h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
}

.bedliner-compare--good {
  border-color: var(--hh-yellow);
  background: var(--hh-white);
}

.bedliner-compare--good .bedliner-compare-header {
  border-bottom-color: var(--hh-yellow);
}

.bedliner-compare--good .bedliner-compare-header svg {
  color: #16a34a;
}

.bedliner-compare--bad {
  background: var(--hh-gray-100);
}

.bedliner-compare--bad .bedliner-compare-header svg {
  color: #dc2626;
}

.bedliner-compare-card ul {
  list-style: none;
  padding: 0;
}

.bedliner-compare-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--hh-gray-700);
  border-bottom: 1px solid var(--hh-gray-100);
}

.bedliner-compare--good li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.bedliner-compare--bad li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
}

/* --- Features Strip --- */
.bedliner-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.bedliner-feature {
  text-align: center;
}

.bedliner-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(254, 221, 0, 0.1);
  border: 2px solid rgba(254, 221, 0, 0.25);
}

.bedliner-feature h4 {
  color: var(--hh-white);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.bedliner-feature p {
  color: var(--hh-gray-300);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Applications Grid --- */
.bedliner-apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.bedliner-app-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 2px solid var(--hh-gray-200);
  transition: all var(--transition);
}

.bedliner-app-card:hover {
  border-color: var(--hh-yellow);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.bedliner-app-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hh-black);
  color: var(--hh-yellow);
}

.bedliner-app-card h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.bedliner-app-card p {
  font-size: 0.9rem;
  color: var(--hh-gray-700);
  line-height: 1.5;
}

/* --- Process Steps --- */
.bedliner-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.bedliner-process-step {
  position: relative;
  padding: 1.5rem;
  border: 1px solid rgba(254, 221, 0, 0.15);
  background: rgba(255,255,255,0.03);
}

.bedliner-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hh-yellow);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.4;
}

.bedliner-process-step h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hh-white);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.bedliner-process-step p {
  color: var(--hh-gray-300);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Landing Page Bedliner Promo --- */
.bedliner-promo {
  background: var(--hh-black);
}

.bedliner-promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
  color: inherit;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.bedliner-promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bedliner-promo-inner:hover .bedliner-promo-img {
  transform: scale(1.03);
}

.bedliner-promo-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--hh-black);
}

.bedliner-promo-overlay h2 {
  color: var(--hh-white);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.bedliner-promo-overlay p {
  color: var(--hh-gray-300);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.bedliner-promo-overlay .btn {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .bedliner-promo-inner { grid-template-columns: 1fr; }
  .bedliner-promo-overlay { padding: 2rem; }
}

/* --- Showcase Collage --- */
.bedliner-showcase {
  width: 100%;
  background: var(--hh-black);
  border-top: 4px solid var(--hh-yellow);
  border-bottom: 4px solid var(--hh-yellow);
}

.bedliner-showcase img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Gallery --- */
.bedliner-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--gap);
}

.bedliner-gallery-item {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--hh-gray-200);
  background: var(--hh-black);
}

.bedliner-gallery--large {
  grid-row: 1 / 3;
}

.bedliner-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bedliner-gallery-item:hover img {
  transform: scale(1.05);
}

.bedliner-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.bedliner-gallery-caption span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hh-yellow);
}

/* --- Bedliner Responsive --- */
@media (max-width: 1024px) {
  .bedliner-features-grid,
  .bedliner-apps-grid,
  .bedliner-process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .bedliner-compare-grid { grid-template-columns: 1fr; }
  .bedliner-hero { min-height: 60vh; padding-top: 90px; }
  .bedliner-gallery { grid-template-columns: 1fr; }
  .bedliner-gallery--large { grid-row: auto; }
}

@media (max-width: 480px) {
  .bedliner-features-grid,
  .bedliner-apps-grid,
  .bedliner-process-grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav-main { display: none; }
  .nav-toggle { display: block; }
  .header-phone { display: none; }

  .services-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .services-strip-inner { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}

/* ============================================
   NEAREST STORE BANNER
   ============================================ */
#hh-nearest-store {
  background: var(--hh-black);
  color: var(--hh-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-bottom: 3px solid var(--hh-yellow);
}

#hh-nearest-store.hh-ns-visible {
  transform: translateY(0);
}

/* Header shifts down when banner is active (toggled via JS) */
.site-header.hh-ns-active {
  top: 38px !important;
}

.hh-ns-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px clamp(1rem, 3vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.hh-ns-pin {
  color: var(--hh-yellow);
  display: inline-flex;
  align-items: center;
}

.hh-ns-label {
  color: var(--hh-gray-300);
}

.hh-ns-name {
  color: var(--hh-yellow);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.hh-ns-miles {
  color: var(--hh-gray-500);
  font-size: 0.8rem;
}

.hh-ns-sep {
  color: var(--hh-gray-700);
  margin: 0 2px;
}

.hh-ns-phone {
  color: var(--hh-white);
  text-decoration: none;
  font-weight: 700;
}

.hh-ns-phone:hover {
  color: var(--hh-yellow);
}

.hh-ns-hours {
  color: var(--hh-gray-500);
  font-size: 0.8rem;
}

.hh-ns-close {
  background: none;
  border: none;
  color: var(--hh-gray-500);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 0 0 12px;
  line-height: 1;
}

.hh-ns-close:hover {
  color: var(--hh-yellow);
}

@media (max-width: 768px) {
  #hh-nearest-store { font-size: 0.78rem; }
  .hh-ns-hours { display: none; }
  .hh-ns-label { display: none; }
  .site-header.hh-ns-active { top: 35px !important; }
}

@media (max-width: 480px) {
  .hh-ns-miles { display: none; }
}

/* ============================================
   WOOCOMMERCE SHOP / CATALOG PAGE
   ============================================ */
.wc-shop-main {
  padding-top: 80px;
  background: var(--hh-gray-100);
  min-height: 100vh;
}

/* Full-width: remove container max-width constraint */
.wc-shop-main .hhpfb-catalog {
  max-width: 100%;
  padding: 24px clamp(1.25rem, 3vw, 3rem) 40px;
}

/* Reset theme heading styles inside the catalog */
.wc-shop-main .hhpfb-catalog h2,
.wc-shop-main .hhpfb-catalog h3,
.wc-shop-main .hhpfb-catalog h4 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.4;
}

/* Catalog title — use theme display font for brand consistency */
.wc-shop-main .hhpfb-catalog-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  padding-bottom: 14px;
}

/* Sticky sidebar offset for fixed header */
@media (min-width: 992px) {
  .wc-shop-main .hhpfb-sidebar {
    top: 100px;
  }
}

/* Mobile: collapsible sidebar filters */
@media (max-width: 991px) {
  .wc-shop-main .hhpfb-catalog-layout > .hhpfb-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* Keep vehicle search always visible, collapse others */
  .wc-shop-main .hhpfb-sidebar .hhpfb-filter-section:not(.hhpfb-vehicle-search) {
    max-height: 52px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    cursor: pointer;
  }

  .wc-shop-main .hhpfb-sidebar .hhpfb-filter-section:not(.hhpfb-vehicle-search).expanded {
    max-height: 600px;
  }

  .wc-shop-main .hhpfb-sidebar .hhpfb-filter-title {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 12px;
  }

  .wc-shop-main .hhpfb-sidebar .hhpfb-filter-section:not(.hhpfb-vehicle-search) .hhpfb-filter-title::after {
    content: '\25BC';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 10px;
    color: var(--hh-gray-500);
    transition: transform 0.3s;
  }

  .wc-shop-main .hhpfb-sidebar .hhpfb-filter-section:not(.hhpfb-vehicle-search).expanded .hhpfb-filter-title::after {
    transform: rotate(180deg);
  }
}
