/* ==========================================================================
   ACCESSIBILITY MODAL
   ========================================================================== */
.a11y-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.a11y-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.a11y-modal {
  position: relative;
  width: 100%;
  max-width: 28rem;
  background: var(--brand-dark);
  border: 1px solid var(--color-white-10);
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.a11y-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  color: var(--color-gray-400);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all var(--transition-fast);
}

.a11y-modal-close:hover {
  background: var(--color-white-5);
  color: var(--color-white);
}

.a11y-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.a11y-modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.a11y-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.a11y-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.a11y-font-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.a11y-btn {
  padding: 0.75rem;
  background: var(--color-white-5);
  border: 1px solid var(--color-white-10);
  border-radius: 0.5rem;
  color: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.a11y-btn:hover {
  background: var(--color-white-10);
}

.a11y-font-value {
  flex: 1;
  text-align: center;
  font-family: monospace;
  font-size: 0.875rem;
  color: var(--color-white);
  font-weight: 500;
}

.a11y-contrast-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-white-10);
  background: var(--color-white-5);
  color: var(--color-white);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.a11y-contrast-btn:hover {
  background: var(--color-white-10);
}

.a11y-contrast-btn.is-active {
  background: var(--color-white);
  color: var(--brand-dark);
  border-color: var(--color-white);
  font-weight: 700;
}

.a11y-check {
  margin-left: auto;
}

.a11y-reset-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-white-10);
  background: var(--color-white-5);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.a11y-reset-btn:hover {
  background: var(--color-white-10);
}

.a11y-legal {
  padding-top: 1rem;
  border-top: 1px solid var(--color-white-10);
}

.a11y-legal a {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.a11y-legal a:hover {
  color: var(--color-white);
}

/* ==========================================================================
   VEHICLE SELECTOR WIDGET
   ========================================================================== */
.ff-vehicle-selector {
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1rem;
  border: 1px solid var(--color-white-10);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 20;
  width: 100%;
}

.ff-vs-inner {
  padding: 1.5rem 2rem;
}

/* Tabs */
.ff-vs-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.25rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-white-10);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.ff-vs-tab {
  position: relative;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.ff-vs-tab:hover {
  color: var(--color-white);
  background: var(--color-white-5);
}

.ff-vs-tab.active {
  background: var(--color-white);
  color: #000;
}

.ff-vs-beta-badge {
  font-size: 0.5625rem;
  font-weight: 500;
  text-transform: none;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  border: 1px solid;
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  border-color: rgba(59, 130, 246, 0.3);
}

.ff-vs-tab.active .ff-vs-beta-badge {
  background: #dbeafe;
  color: #1d4ed8;
  border-color: #93c5fd;
}

@media (max-width: 600px) {
  .ff-vs-tab {
    position: relative;
  }
  .ff-vs-beta-badge {
    position: absolute;
    top: -6px;
    right: -4px;
    font-size: 0.5rem;
    padding: 0.0625rem 0.25rem;
  }
}

/* Panels */
.ff-vs-panel {
  display: none;
}

.ff-vs-panel.active {
  display: block;
}

/* Rows */
.ff-vs-row {
  display: grid;
  gap: 1rem;
}

.ff-vs-row--3 {
  grid-template-columns: repeat(3, 1fr);
}

.ff-vs-row--5 {
  grid-template-columns: repeat(5, 1fr);
}

/* Inputs */
.ff-vs-field-wrap {
  position: relative;
}

/* Base for both */
.ff-vs-input,
.ff-vs-select {
  width: 100%;
  height: 3.25rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--color-white-10);
  color: var(--color-white);
  border-radius: 0.75rem;
  padding: 0 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  outline: none;
  transition: all 0.3s;
  box-sizing: border-box;
}
/* Inputs use line-height for centering */
.ff-vs-input {
  line-height: 3.25rem;
}
/* Selects: browsers ignore line-height; use symmetric padding + min-height */
.ff-vs-select {
  height: auto;
  min-height: 3.25rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  line-height: 1.4;
}

.ff-vs-input:hover,
.ff-vs-select:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
}

.ff-vs-input:focus,
.ff-vs-select:focus {
  border-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.ff-vs-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.ff-vs-mono {
  font-family: 'SF Mono', 'Menlo', 'Monaco', 'Courier New', monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Select styling */
.ff-vs-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-size: 1.25rem 1.25rem;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-color: rgba(0, 0, 0, 0.4);
}

.ff-vs-select:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.3);
}

.ff-vs-select option {
  background: var(--brand-dark);
  color: var(--color-white);
}

/* ── Custom Combobox Component ─────────────────────────────── */
.ff-combo {
  position: relative;
  width: 100%;
}

/* The visible input mimics .ff-vs-select styling exactly */
.ff-combo-input {
  width: 100%;
  height: 3.25rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--color-white-10);
  color: var(--color-white);
  border-radius: 0.75rem;
  padding: 0 2.5rem 0 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  box-sizing: border-box;
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.ff-combo-input::placeholder { color: rgba(255,255,255,0.35); }
.ff-combo-input:hover         { background: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.15); }
.ff-combo--disabled .ff-combo-input { opacity: 0.4; cursor: not-allowed; }
.ff-combo--open .ff-combo-input     { border-color: var(--color-white); box-shadow: 0 0 0 3px rgba(255,255,255,0.05); }

/* Chevron icon */
.ff-combo-chevron {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  transition: transform 0.2s;
}
.ff-combo--open .ff-combo-chevron {
  transform: translateY(-50%) rotate(180deg);
  color: rgba(255,255,255,0.7);
}
.ff-combo--disabled .ff-combo-chevron { opacity: 0.3; }

/* Dropdown panel */
.ff-combo-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  z-index: 999;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  animation: ff-combo-drop 0.15s ease;
}
@keyframes ff-combo-drop {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Search input inside panel */
.ff-combo-search {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.04);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--color-white);
  font-size: 0.8rem;
  font-family: var(--font-sans);
  outline: none;
  box-sizing: border-box;
}
.ff-combo-search::placeholder { color: rgba(255,255,255,0.3); }

/* Options list */
.ff-combo-list {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.ff-combo-list::-webkit-scrollbar { width: 4px; }
.ff-combo-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }

.ff-combo-option {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ff-combo-option:hover          { background: rgba(255,255,255,0.06); color: var(--color-white); }
.ff-combo-option--active        { background: rgba(255,255,255,0.08); color: var(--color-white); font-weight: 600; }
.ff-combo-option--active:hover  { background: rgba(255,255,255,0.1); }

/* Two-line option layout: main label + sub (years) */
.ff-combo-option { display: flex; flex-direction: column; gap: 1px; }
.ff-combo-opt-main { font-size: 0.85rem; color: rgba(255,255,255,0.9); }
.ff-combo-opt-sub  { font-size: 0.72rem; color: rgba(255,255,255,0.45); }

/* Field badge (2.1 / 2.2) */
.ff-vs-field-badge {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.5rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  background: var(--color-white-5);
  border: 1px solid var(--color-white-10);
  color: rgba(255, 255, 255, 0.2);
  cursor: help;
  transition: all 0.3s;
}

.ff-vs-field-wrap:hover .ff-vs-field-badge {
  color: var(--brand-accent);
  border-color: rgba(34, 197, 94, 0.3);
}

/* Search button */
.ff-vs-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-white);
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.ff-vs-search-btn:hover {
  background: #e5e5e5;
  transform: scale(1.02);
}

.ff-vs-search-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.ff-vs-search-btn--sm {
  font-size: 0.8125rem;
  padding: 0.75rem;
}

/* HSN/TSN validation error */
.ff-hsn-error {
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 0.5rem;
  text-align: center;
}

/* Trust row */
.ff-vs-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-white-5);
}

.ff-vs-trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.625rem;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.ff-vs-trust-item svg {
  color: var(--color-gray-400);
}

/* Responsive */
@media (max-width: 1024px) {
  .ff-vs-row--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ff-vs-inner {
    padding: 1rem;
  }
  .ff-vs-row--3,
  .ff-vs-row--5 {
    grid-template-columns: 1fr;
  }
  .ff-vs-trust {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

.ff-shop-header .ff-vehicle-selector {
  margin-bottom: 2rem;
}

/* Hero area: Vehicle selector placement */
.hero-section .ff-vehicle-selector {
  margin-top: 2rem;
}

/* Vertical layout (homepage hero) */
.ff-vs--vertical .ff-vs-inner {
  padding: 1rem 1.5rem;
}

.ff-vs--vertical .ff-vs-row--3,
.ff-vs--vertical .ff-vs-row--5 {
  grid-template-columns: 1fr;
}

.ff-vs--vertical .ff-vs-input,
.ff-vs--vertical .ff-vs-select {
  padding: 0.875rem 1rem;
}

.ff-vs--vertical .ff-vs-search-btn {
  padding: 0.875rem 1rem;
}

.ff-vs--vertical .ff-vs-trust {
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ==========================================================================
   SHOP PAGE LAYOUT
   ========================================================================== */
.ff-shop-page {
  background: var(--brand-dark);
  min-height: 100vh;
  padding-top: 10rem;
  padding-bottom: 5rem;
  position: relative;
}

/* Hero Background */
.ff-shop-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  z-index: 0;
  overflow: hidden;
}

.ff-shop-hero-bg-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ff-shop-hero-bg-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ff-shop-hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.ff-shop-hero-overlay-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(5,5,5,0.7) 60%, var(--brand-dark) 100%);
  pointer-events: none;
}

.ff-shop-page > .container {
  position: relative;
  z-index: 10;
}

/* Shop Header */
.ff-shop-head {
  margin-bottom: 3rem;
}

.ff-shop-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .ff-shop-title {
    font-size: 3.5rem;
  }
}

.ff-shop-count {
  color: var(--color-gray-400);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* SEO Description */
.ff-shop-seo {
  max-width: 64rem;
  position: relative;
}

.ff-shop-seo-content {
  color: var(--color-gray-500);
  font-size: 0.875rem;
  line-height: 1.7;
  max-height: 5rem;
  overflow: hidden;
  position: relative;
  transition: max-height 0.7s ease;
}

.ff-shop-seo-content.expanded {
  max-height: 120rem;
}

.ff-shop-seo-title {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.ff-shop-seo-intro {
  margin-bottom: 0;
}

.ff-shop-seo-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 1.5rem 0;
}

.ff-shop-seo-feat h3 {
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.ff-shop-seo-feat p {
  color: var(--color-gray-500);
  font-size: 0.75rem;
  line-height: 1.6;
}

.ff-shop-seo-footer {
  margin-top: 1rem;
}

.ff-shop-seo-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3rem;
  background: linear-gradient(to top, var(--brand-dark), transparent);
  z-index: 10;
  pointer-events: none;
}

.ff-shop-seo-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  margin-top: 1rem;
  transition: color 0.3s;
  padding: 0;
}

.ff-shop-seo-toggle:hover {
  color: var(--brand-accent);
}

.ff-shop-seo-toggle svg {
  transition: transform 0.3s;
}

/* Vehicle Selector Wrapper */
.ff-shop-vs-wrap {
  margin-bottom: 3rem;
}

/* Main Layout */
.ff-shop-layout {
  display: flex;
  gap: 2rem;
}

/* Desktop Sidebar */
.ff-shop-sidebar {
  width: 14rem;
  flex-shrink: 0;
}

.ff-sidebar-heading {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ff-sidebar-close-row {
  display: none;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}

.ff-sidebar-close {
  background: none;
  border: none;
  color: var(--color-white-60);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s;
}

.ff-sidebar-close:hover {
  color: var(--color-white);
}

.ff-sidebar-heading svg {
  color: var(--color-white-60);
}

.ff-sidebar-sticky {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* Scrollbar for sidebar */
.ff-sidebar-sticky::-webkit-scrollbar {
  width: 4px;
}
.ff-sidebar-sticky::-webkit-scrollbar-track {
  background: transparent;
}
.ff-sidebar-sticky::-webkit-scrollbar-thumb {
  background: var(--color-white-10);
  border-radius: 2px;
}

/* Filter Groups */
.ff-filter-group {
  /* spacing handled by parent gap */
}

.ff-filter-label {
  display: block;
  color: var(--color-white-60);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

/* Color Swatches */
.ff-filter-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ff-color-swatch {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--color-white-10);
  cursor: pointer;
  transition: all 0.3s;
  display: block;
}

.ff-color-swatch:hover,
.ff-color-swatch.active {
  border-color: var(--color-white);
  transform: scale(1.1);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

.ff-color-swatch.disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

/* Size Buttons */
.ff-filter-sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.ff-size-btn {
  display: block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  text-align: center;
  border: 1px solid var(--color-white-10);
  color: var(--color-gray-400);
  background: transparent;
  text-decoration: none;
  transition: all 0.3s;
}

.ff-size-btn:hover,
.ff-size-btn.active {
  background: var(--color-white);
  border-color: var(--color-white);
  color: #000;
  font-weight: 700;
}

/* Filter Row 2-col */
.ff-filter-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Filter Select */
.ff-filter-select {
  width: 100%;
  background: var(--color-white-5);
  border: 1px solid var(--color-white-10);
  color: var(--color-white);
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all 0.3s;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-size: 1.25rem 1.25rem;
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
}

.ff-filter-select option {
  background: var(--brand-dark);
}

.ff-filter-select:focus {
  border-color: rgba(255,255,255,0.3);
}

/* Brand Buttons */
.ff-filter-brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem;
  max-height: 11.5rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.ff-filter-brands::-webkit-scrollbar {
  width: 3px;
}
.ff-filter-brands::-webkit-scrollbar-thumb {
  background: var(--color-white-10);
  border-radius: 2px;
}

.ff-brand-btn {
  display: block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.625rem;
  text-decoration: none;
  color: var(--color-gray-400);
  border: 1px solid var(--color-white-5);
  transition: all 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ff-brand-btn:hover,
.ff-brand-btn.active {
  background: var(--color-white);
  border-color: var(--color-white);
  color: #000;
  font-weight: 700;
}

/* Off-canvas overlay */
.ff-filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
}

.ff-filter-overlay.open {
  display: block;
}

/* Mobile Filter Toggle */
.ff-mobile-filter-toggle {
  display: none;
  margin-bottom: 2rem;
}

.ff-mobile-filter-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-white-5);
  border: 1px solid var(--color-white-10);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  color: var(--color-white);
  font-weight: 700;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
}

.ff-mobile-filter-btn:hover {
  background: var(--color-white-10);
}
/* ---- Shop Toolbar (new: tag + view + sort) ---- */
.ff-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

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

.ff-toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

/* HSN/TSN Filter Tag Pill */
.ff-fitment-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.ff-fitment-tag strong {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ff-fitment-tag-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.15s;
}

.ff-fitment-tag-close:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.ff-active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  white-space: nowrap;
}

.ff-aft-color-dot {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.ff-aft-label {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

.ff-active-filter-tag strong {
  font-weight: 600;
  color: #fff;
}

.ff-aft-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1;
  text-decoration: none;
  transition: all 0.15s;
  margin-left: 0.1rem;
}

.ff-aft-remove:hover {
  background: rgba(255, 80, 80, 0.25);
  color: #ff6b6b;
}

/* Reset all: compact × icon button in light red */
.ff-filter-reset-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.25);
  color: rgba(255, 100, 100, 0.75);
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  transition: all 0.2s;
  margin-left: 0.15rem;
  flex-shrink: 0;
}

.ff-filter-reset-btn:hover {
  background: rgba(255, 80, 80, 0.28);
  border-color: rgba(255, 80, 80, 0.5);
  color: #ff6b6b;
}

/* Vehicle Recognition Box (green) */
.ff-vehicle-recognition {
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.06);
  overflow: hidden;
}

.ff-vr-main {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.ff-vr-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: rgba(16, 185, 129, 0.12);
  color: rgba(52, 211, 153, 0.9);
  margin-top: 0.125rem;
}

.ff-vr-content {
  flex: 1;
  min-width: 0;
}

.ff-vr-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(110, 231, 183, 1);
  margin-bottom: 0.25rem;
}

.ff-vr-desc {
  font-size: 0.8125rem;
  color: rgba(167, 243, 208, 0.75);
  line-height: 1.5;
  margin-bottom: 0.375rem;
}

.ff-vr-specs,
.ff-vr-specs2 {
  font-size: 0.75rem;
  color: rgba(167, 243, 208, 0.55);
  letter-spacing: 0.01em;
}

.ff-vr-specs2 {
  margin-top: 0.125rem;
}

/* Vehicle Not Found / No Fitments — grey muted variant */
.ff-vr--unknown,
.ff-vr--no-fitments {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.ff-vr--unknown .ff-vr-title,
.ff-vr--no-fitments .ff-vr-title {
  color: rgba(255, 255, 255, 0.7);
}
.ff-vr--unknown .ff-vr-desc,
.ff-vr--no-fitments .ff-vr-desc {
  color: rgba(255, 255, 255, 0.45);
}
.ff-vr-icon--muted {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
}

/* Action buttons row */
.ff-vr-actions {
  display: flex;
  gap: 0.75rem;
  padding: 0 1.5rem 1.25rem 1.5rem;
}
.ff-vr-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.2s ease;
}
.ff-vr-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Category Filter Tabs (inside recognition box) */
.ff-category-tabs {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0.5rem;
}

.ff-cat-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}

.ff-cat-tab:hover {
  color: rgba(255, 255, 255, 0.7);
}

.ff-cat-tab.active {
  color: #fff;
  border-bottom-color: rgba(16, 185, 129, 0.7);
}

/* View Toggle */
.ff-view-toggles {
  display: flex;
  align-items: center;
  background: var(--color-white-5);
  border: 1px solid var(--color-white-10);
  border-radius: 0.75rem;
  padding: 0.25rem;
}

.ff-view-btn {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.ff-view-btn:hover {
  color: var(--color-white);
}

.ff-view-btn.active {
  background: var(--color-white);
  color: #000;
}

/* Sort Select */
.ff-sort-wrap {
  position: relative;
}

.ff-sort-select {
  background: var(--color-white-5);
  border: 1px solid var(--color-white-10);
  color: var(--color-white);
  padding: 0.625rem 2.5rem 0.625rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all 0.3s;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-size: 1.25rem 1.25rem;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.ff-sort-select option {
  background: var(--brand-dark);
}

.ff-sort-select:hover {
  background-color: var(--color-white-10);
}

/* Product Grid Modes */
.ff-products-grid {
  display: grid;
  gap: 1.5rem;
  overflow: hidden;
}

.ff-products-grid.ff-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ff-products-grid.ff-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ff-products-grid.ff-list {
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* List view: horizontal card layout */
.ff-products-grid.ff-list .ff-product-card {
  border-radius: 1rem;
  overflow: hidden;
}
.ff-products-grid.ff-list .ff-card-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: auto;
}
.ff-products-grid.ff-list .ff-card-image-wrap {
  width: 220px;
  min-width: 220px;
  height: 220px;
  flex-shrink: 0;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 0.5rem;
}
.ff-products-grid.ff-list .ff-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ff-products-grid.ff-list .ff-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 2rem;
}
.ff-products-grid.ff-list .ff-card-footer {
  margin-top: auto;
}
.ff-products-grid.ff-list .ff-card-title {
  white-space: normal;
  -webkit-line-clamp: unset;
}

@media (max-width: 768px) {
  .ff-products-grid.ff-list .ff-card-link {
    flex-direction: column;
  }
  .ff-products-grid.ff-list .ff-card-image-wrap {
    width: 100%;
    min-width: 100%;
    height: 220px;
    border-radius: 1rem 1rem 0 0;
  }
}

/* No products */
.ff-no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--color-gray-500);
}

/* Pagination */
.ff-shop-pagination {
  margin-top: 3rem;
}

.ff-shop-pagination .woocommerce-pagination {
  display: flex;
  justify-content: center;
}

.ff-shop-pagination .page-numbers {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ff-shop-pagination .page-numbers li a,
.ff-shop-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-400);
  border: 1px solid var(--color-white-10);
  text-decoration: none;
  transition: all 0.3s;
}

.ff-shop-pagination .page-numbers li a:hover {
  background: var(--color-white-10);
  color: var(--color-white);
}

.ff-shop-pagination .page-numbers li span.current {
  background: var(--color-white);
  border-color: var(--color-white);
  color: #000;
}

.ff-shop-pagination .page-numbers li .prev,
.ff-shop-pagination .page-numbers li .next {
  width: auto;
  padding: 0 1rem;
}

/* Shop Main */
.ff-shop-main {
  flex: 1;
  min-width: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1279px) {
  .ff-shop-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 20rem;
    height: 100vh;
    z-index: 999;
    background: var(--brand-gray);
    border-right: 1px solid var(--color-white-10);
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transition: left 0.3s ease;
  }
  .ff-shop-sidebar.open {
    left: 0;
  }
  .ff-shop-sidebar .ff-sidebar-sticky {
    position: static;
    max-height: none;
  }
  .ff-mobile-filter-toggle {
    display: block;
  }
  .ff-sidebar-close-row {
    display: flex;
  }
  .ff-products-grid.ff-grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .ff-shop-seo-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .ff-products-grid.ff-grid-4,
  .ff-products-grid.ff-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ff-shop-page {
    padding-top: 7rem;
  }
  .ff-shop-title {
    font-size: 2rem;
  }
  .ff-shop-hero-bg {
    height: 350px;
  }
  .ff-products-grid.ff-grid-4,
  .ff-products-grid.ff-grid-2 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .ff-products-grid.ff-grid-4,
  .ff-products-grid.ff-grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================================================================
   MINICART SIDEBAR
   ========================================================================== */
.ff-mc-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  animation: ffFadeIn 0.3s ease;
}
.ff-mc-backdrop.open { display: block; }

.ff-mc-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 28rem;
  height: 100vh;
  background: var(--brand-gray);
  border-left: 1px solid var(--color-white-10);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,0.4);
  transition: right 0.3s ease;
}
.ff-mc-sidebar.open { right: 0; }

@keyframes ffFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Header */
.ff-mc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-white-5);
}
.ff-mc-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ff-mc-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}
.ff-mc-count {
  background: var(--color-white-5);
  color: var(--color-gray-400);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--color-white-5);
}
.ff-mc-close {
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--color-gray-500);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s;
}
.ff-mc-close:hover {
  background: var(--color-white-5);
  color: var(--color-white);
}

/* Items List */
.ff-mc-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ff-mc-items::-webkit-scrollbar { width: 4px; }
.ff-mc-items::-webkit-scrollbar-thumb { background: var(--color-white-10); border-radius: 2px; }

/* Top Deal Banner */
.ff-mc-deal {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 1rem;
  padding: 1rem;
}
.ff-mc-deal-icon {
  background: #065f46;
  color: #fff;
  padding: 0.5rem;
  border-radius: 0.75rem;
  display: flex;
  flex-shrink: 0;
}
.ff-mc-deal-title {
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}
.ff-mc-deal-text {
  color: var(--color-gray-400);
  font-size: 0.6875rem;
  line-height: 1.4;
  margin: 0.25rem 0 0;
}
.ff-mc-deal-text strong {
  color: var(--brand-accent);
}

/* Cart Item */
.ff-mc-item {
  display: flex;
  gap: 1rem;
  transition: opacity 0.3s;
}
.ff-mc-item-img {
  width: 5rem;
  height: 5rem;
  background: rgba(0,0,0,0.4);
  border-radius: 0.75rem;
  border: 1px solid var(--color-white-5);
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.ff-mc-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.ff-mc-item:hover .ff-mc-item-img img {
  transform: scale(1.1);
}
.ff-mc-item-info {
  flex: 1;
  min-width: 0;
}
.ff-mc-item-name {
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}
.ff-mc-item-name:hover {
  color: var(--color-gray-300);
}
.ff-mc-item-price {
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.ff-mc-item-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
}
.ff-mc-qty {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--color-white-5);
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
}
.ff-mc-qty-btn {
  background: none;
  border: none;
  color: var(--color-gray-500);
  cursor: pointer;
  padding: 0.125rem;
  display: flex;
  transition: color 0.3s;
}
.ff-mc-qty-btn:hover { color: var(--color-white); }
.ff-mc-qty-val {
  width: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-white);
  font-weight: 500;
}
.ff-mc-remove {
  background: none;
  border: none;
  color: var(--color-gray-600);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s;
}
.ff-mc-remove:hover { color: #ef4444; }

/* Empty State */
.ff-mc-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  gap: 1rem;
}
.ff-mc-empty-icon {
  width: 5rem;
  height: 5rem;
  background: var(--color-white-5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-600);
}
.ff-mc-empty-title {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0;
}
.ff-mc-empty-text {
  color: var(--color-gray-500);
  font-size: 0.875rem;
  margin: 0;
}
.ff-mc-shop-btn {
  display: inline-block;
  background: var(--brand-accent);
  color: #000;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s;
}
.ff-mc-shop-btn:hover {
  transform: scale(1.05);
}

/* Footer */
.ff-mc-footer {
  padding: 1.5rem;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid var(--color-white-5);
}
#ff-mc-stripe-msg { display: flex; justify-content: center; }
#ff-mc-stripe-msg iframe { margin: 0 auto !important; }
#ff-mc-paypal-msg { display: flex; justify-content: center; }
#ff-mc-paypal-msg iframe { margin: 0 auto !important; }
#ff-paypal-pm-messaging { text-align: left; }
#ff-paypal-pm-messaging iframe { display: block !important; margin: 0 !important; }
.ff-mc-totals {
  margin-bottom: 1rem;
}
.ff-mc-total-line {
  display: flex;
  justify-content: space-between;
  color: var(--color-gray-400);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.ff-mc-free {
  color: var(--brand-accent);
}
.ff-mc-grand {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.125rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-white-5);
}
.ff-mc-tax-note {
  text-align: center;
  font-size: 0.625rem;
  color: var(--color-gray-500);
  margin: 0.5rem 0 0;
}

/* Buttons */
.ff-mc-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ff-mc-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: #dadada;
  color: #000 !important; /* force black — WC can override link colors */
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s;
}
.ff-mc-checkout-btn:hover {
  background: #fff;
  color: #000 !important;
}
.ff-mc-checkout-btn svg { transition: transform 0.3s; stroke: #000 !important; }
.ff-mc-checkout-btn:hover svg { transform: translateX(4px); }

/* Shipping cost label (non-free) */
.ff-mc-shipping-cost {
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
}

/* HSN/TSN vehicle tag in cart item */
.ff-mc-vehicle-tag {
  display: inline-block;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.375rem;
  padding: 0.15rem 0.375rem;
  line-height: 1.4;
}

/* Honeypot — invisible to real users */
.kontakt-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}
/* Contact form inline error */
.kontakt-error {
  color: #f56565;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.ff-mc-checkout-btn:hover {
  background: #fff;
}
.ff-mc-checkout-btn svg {
  transition: transform 0.3s;
}
.ff-mc-checkout-btn:hover svg {
  transform: translateX(4px);
}
.ff-mc-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  color: var(--color-gray-400);
  border: 1px solid var(--color-white-10);
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: all 0.3s;
}
.ff-mc-cart-btn:hover {
  background: var(--color-white-5);
  color: var(--color-white);
  border-color: var(--color-white-20);
}

