/* ============================================================
   2-COLUMN GRID: Equal card heights per row
   ============================================================ */
.ff-products-grid.ff-grid-2 .ff-product-card-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ff-products-grid.ff-grid-2 .ff-product-card {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ff-products-grid.ff-grid-2 .ff-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ff-products-grid.ff-grid-2 .ff-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ff-products-grid.ff-grid-2 .ff-card-footer {
  margin-top: auto;
}

/* FF-Wheels category heading */
.ff-category-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ff-category-heading:first-child {
  margin-top: 0;
}
.ff-wheels-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

/* FF-Wheels "Alle anzeigen" link card */
.ff-show-all-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 280px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 1rem;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  transition: all 0.25s ease;
}
.ff-show-all-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.ff-show-all-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.ff-show-all-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.ff-show-all-card:hover .ff-show-all-icon {
  background: rgba(255,255,255,0.12);
}
.ff-show-all-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* SMART LIVE SEARCH OVERLAY RESULTS */
.search-results-container {
  margin-top: 2rem;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.search-results-container.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.search-overlay-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media(min-width: 768px) {
  .search-overlay-results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.search-result-card {
  display: flex;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0.75rem;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.2s ease;
}
.search-result-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.search-result-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background: #111;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.search-result-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.search-result-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}
.search-result-title {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-result-price {
  color: var(--color-brand);
  font-size: 1rem;
  font-weight: 700;
}
.search-result-footer {
  margin-top: 2rem;
  text-align: center;
}
.search-result-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2rem;
  transition: all 0.2s ease;
}
.search-result-more:hover {
  background: var(--color-white);
  color: #000;
}
.ff-live-search-loading {
  text-align: center;
  color: rgba(255,255,255,0.5);
  padding: 3rem 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: pulse 1.5s infinite;
}
.search-result-empty {
  text-align: center;
  padding: 3rem 0;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
}
.search-result-empty a {
  color: var(--color-white);
  text-decoration: underline;
}

/* SMART SEARCH - ADVANCED FILTERS */
.search-advanced-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.search-filter-select {
  appearance: none;
  background: rgba(255,255,255,0.05) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 1rem center;
  background-size: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2rem;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 2.5rem 0.75rem 1.25rem;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  flex: 1 1 auto;
  min-width: 150px;
}
.search-filter-select:hover,
.search-filter-select:focus {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}
.search-filter-select option {
  background: #111;
  color: #fff;
}

/* MINI-CART META BADGE (HSN/TSN / Variations) */
.ff-mc-item-meta-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}
.ff-mc-item-meta dl,
.ff-mc-item-meta ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  background: #111;
  border: 1px solid #222;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #999;
  margin: 0;
}
.ff-mc-item-meta dt,
.ff-mc-item-meta dd {
  display: inline-flex;
  margin: 0;
}
.ff-mc-item-meta dt {
  font-weight: 600;
}
.ff-mc-item-meta p {
  margin: 0;
}
.ff-mc-item-edit {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.ff-mc-item-edit:hover {
  color: var(--color-white);
}

/* VORABPRUEFUNG — Premium Card System */
.ff-vp-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0;
}

/* Gutachten full-width neutral button */
.ff-gutachten-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.65rem;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  cursor: pointer;
}
.ff-gutachten-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}
.ff-gutachten-btn svg:last-child {
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}
.ff-gutachten-btn:hover svg:last-child {
  opacity: 1;
  transform: translate(1px, -1px);
}

.ff-gutachten-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.5rem 0 0;
  padding: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}
.ff-gutachten-hint svg {
  flex-shrink: 0;
  opacity: 0.65;
}
/* Fitment status card (success/error) */
.ff-vp-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  border-left-width: 3px;
}
.ff-vp-card--success {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.15);
  border-left-color: #10B981;
}
.ff-vp-card--error {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.15);
  border-left-color: #EF4444;
}
.ff-vp-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ff-vp-card--success .ff-vp-card-icon {
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
}
.ff-vp-card--error .ff-vp-card-icon {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
}
.ff-vp-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}
.ff-vp-card-body strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-white);
}
.ff-vp-card-body span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-family: monospace;
  letter-spacing: 0.03em;
}

.ff-vp-abe-inline {
  font-weight: 400;
  opacity: 0.9;
}
.ff-vp-card-action {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  padding: 0.4rem 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
  font-family: var(--font-primary);
}
.ff-vp-card-action:hover {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
}
.ff-vp-card-action--err:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  color: #EF4444;
}

/* Legacy classes kept for backwards compat with modal JS */
.ff-vorabpruefung-box {
  background: #050d0a;
  border: 1px solid #1a2f22;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ff-vorabpruefung-box h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}
.ff-vorabpruefung-box p {
  font-size: 0.8rem;
  margin: 0;
  color: rgba(255,255,255,0.6);
}
.ff-vorabpruefung-box .ff-btn {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  white-space: nowrap;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.ff-vorabpruefung-box .ff-btn:hover { opacity: 0.8; }
.ff-vorabpruefung-box.ff-vorab-small {
  background: #050d0a;
  border: 1px solid #1a2f22;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ff-vorab-small h4 {
  color: #8bd3ab;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.25rem;
}
.ff-vorab-small p {
  color: #6b8f79;
  font-size: 0.75rem;
  margin: 0;
}
.ff-vorab-small .ff-btn-jzt-prufen {
  background: transparent;
  border: 1px solid #1a2f22;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  white-space: nowrap;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.ff-vorab-small .ff-btn-jzt-prufen:hover { background: #1a2f22; }
@media (max-width: 600px) {
  .ff-vorabpruefung-box.ff-vorab-small {
    flex-direction: column;
    align-items: flex-start;
  }
  .ff-vorab-small .ff-btn-jzt-prufen {
    width: 100%;
    margin-top: 0.5rem;
  }
}
/* HSN/TSN GLOBAL MODAL */
.ff-hsn-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}
.ff-hsn-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  width: 90%;
  max-width: 500px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.ff-hsn-modal-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}
.ff-hsn-modal.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.ff-hsn-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ff-hsn-modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-white);
}
.ff-hsn-modal-title-wrap svg {
  color: rgba(255,255,255,0.5);
}
.ff-hsn-modal-title-wrap h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}
.ff-hsn-modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ff-hsn-modal-close:hover {
  color: var(--color-white);
}
.ff-hsn-modal-body {
  padding: 1.5rem;
}
.ff-hsn-modal-notice {
  display: flex;
  gap: 1rem;
  background: #0b1a2e;
  border: 1px solid #152e4b;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.ff-hsn-modal-notice p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.ff-hsn-form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.ff-hsn-form-group {
  flex: 1;
}
.ff-hsn-form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.ff-hsn-form-group input {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-white);
  padding: 0.875rem;
  border-radius: 0.5rem;
  font-family: monospace;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: border-color 0.2s;
}
.ff-hsn-form-group input:focus {
  border-color: var(--color-brand);
  outline: none;
}
.ff-hsn-guide {
  background: #121212;
  border: 1px solid #222;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.ff-hsn-guide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.ff-hsn-guide-header span:first-child {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}
.ff-hsn-guide-note {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
}
.ff-hsn-guide-example {
  display: flex;
  gap: 1rem;
}
.ff-hsn-guide-tag {
  background: #2a2a2a;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.ff-hsn-guide-lbl {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
}
.ff-hsn-guide-val {
  color: var(--color-white);
  font-family: monospace;
  font-weight: bold;
}
.ff-hsn-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-white);
  color: #000;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.ff-hsn-submit-btn:hover {
  background: #e0e0e0;
}
.ff-hsn-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ff-hsn-modal-footer-note {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* ================================================================
   Cookie Consent Banner
   ================================================================ */
.ff-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 10000;
  width: calc(100% - 3rem);
  max-width: 26rem;
  animation: ffCookieSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ffCookieSlideUp {
  from { opacity: 0; transform: translateY(1.5rem); }
  to   { opacity: 1; transform: translateY(0); }
}

.ff-cookie-inner {
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* Header row */
.ff-cookie-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.ff-cookie-icon {
  background: rgba(255, 132, 0, 0.1);
  padding: 0.5rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  color: var(--brand-accent, #ff8400);
}

.ff-cookie-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.15rem 0;
}

.ff-cookie-desc {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  line-height: 1.4;
}

.ff-cookie-desc a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  transition: color 0.2s;
}

.ff-cookie-desc a:hover {
  color: #fff;
}

/* Action buttons */
.ff-cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ff-cookie-btn-settings {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}

.ff-cookie-btn-settings:hover {
  color: #fff;
}

.ff-cookie-btn-reject {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s;
}

.ff-cookie-btn-reject:hover {
  background: rgba(255,255,255,0.1);
}

.ff-cookie-btn-accept {
  flex: 1;
  background: #fff;
  color: #000;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.ff-cookie-btn-accept:hover {
  background: #e0e0e0;
}

.ff-cookie-btn-accept:active {
  transform: scale(0.98);
}

/* Settings panel */
.ff-cookie-settings {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ff-cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  padding: 0.625rem 0.75rem;
  border-radius: 0.75rem;
}

.ff-cookie-setting-row span {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Toggle switch */
.ff-cookie-toggle {
  width: 1.75rem;
  height: 0.875rem;
  background: #4b5563;
  border-radius: 999px;
  position: relative;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.ff-cookie-toggle.is-on {
  background: var(--brand-accent, #ff8400);
}

.ff-cookie-toggle-dot {
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 0.625rem;
  height: 0.625rem;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s;
}

.ff-cookie-toggle.is-on .ff-cookie-toggle-dot {
  left: calc(100% - 0.125rem - 0.625rem);
}

.ff-cookie-setting-marketing {
  opacity: 0.5;
}

.ff-cookie-setting-marketing .ff-cookie-toggle.is-on ~ span,
.ff-cookie-setting-marketing:has(.is-on) {
  opacity: 1;
}

/* ── Sidebar Trust Badges ─────────────────────────────────────────── */
.ff-sidebar-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  padding: 1rem 0 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 1rem;
}
.ff-trust-badge {
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem;
  padding: 0.625rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.ff-trust-badge:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.ff-trust-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.ff-trust-logo { height: 0.75rem; opacity: 0.7; }
.ff-trust-ext  { width: 9px; height: 9px; color: #666; opacity: 0; transition: opacity 0.15s; }
.ff-trust-badge:hover .ff-trust-ext { opacity: 1; }
.ff-trust-stars { color: #f5c842; font-size: 0.5rem; letter-spacing: 1px; margin-bottom: 0.25rem; }
.ff-trust-score { color: #fff; font-size: 0.75rem; font-weight: 700; margin-bottom: 0.1rem; }
.ff-trust-count { color: rgba(255,255,255,0.35); font-size: 0.5625rem; }

/* ── Quick View hover button on product card ─────────────────────── */
.ff-card-image-wrap { position: relative; }
.ff-card-quickview-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem; /* same spot as season icon */
  z-index: 12;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.15s;
}
.ff-product-card:hover .ff-card-quickview-btn {
  opacity: 1;
  transform: scale(1);
}
.ff-card-quickview-btn:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
/* Hide the season icon when card is hovered (arrow takes its place) */
.ff-product-card:hover .ff-card-season-icon {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.ff-card-season-icon {
  transition: opacity 0.15s ease;
}

/* ── Quick View Modal ────────────────────────────────────────────── */
.ff-quickview-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.ff-quickview-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.ff-quickview-modal {
  position: relative;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  width: calc(100vw - 2rem);
  max-width: 1140px;
  height: 85vh;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(24px);
  transition: transform 0.3s ease;
}
.ff-quickview-overlay.is-open .ff-quickview-modal { transform: translateY(0); }
.ff-quickview-close {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  z-index: 10;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  transition: background 0.15s, color 0.15s;
}
.ff-quickview-close:hover { background: rgba(255,255,255,0.16); color: #fff; }
.ff-quickview-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  transition: opacity 0.2s;
}
.ff-quickview-loader.hidden { opacity: 0; pointer-events: none; }
.ff-quickview-spinner {
  width: 2rem;
  height: 2rem;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: ff-spin 0.7s linear infinite;
}
@keyframes ff-spin { to { transform: rotate(360deg); } }
.ff-quickview-iframe {
  flex: 1;
  width: 100%;
  border: none;
  background: #111;
}
@media (max-width: 600px) {
  .ff-quickview-modal { height: 90vh; border-radius: 1rem 1rem 0 0; align-self: flex-end; }
}

/* ==========================================================================
   #SHOWROOM – YouTube Shorts Gallery
   ========================================================================== */
.ff-showroom-page {
  background: var(--brand-dark);
  min-height: 100vh;
  padding-top: 8rem;
  padding-bottom: 4rem;
}



/* Hero */
.ff-showroom-hero {
  text-align: center;
  padding: 3rem 0 2rem;
}

.ff-showroom-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  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: 9999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.ff-showroom-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse 2s infinite;
}

.ff-showroom-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.ff-showroom-subtitle {
  font-size: 1rem;
  color: var(--color-gray-500);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.ff-showroom-count {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 9999px;
  padding: 0.15rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gray-400);
  margin-left: 0.25rem;
}

/* Filter Tabs */
.ff-showroom-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.ff-showroom-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1.125rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-sans);
}

.ff-showroom-tab:hover {
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
}

.ff-showroom-tab.is-active {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: var(--color-white);
}

.ff-showroom-tab-icon {
  font-weight: 800;
  color: #ef4444;
}

.ff-showroom-tab-count {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255,255,255,0.08);
  border-radius: 9999px;
  padding: 0.1rem 0.4rem;
  color: rgba(255,255,255,0.4);
}

/* Grid */
.ff-showroom-grid-section {
  padding: 1rem 0 3rem;
}

.ff-showroom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .ff-showroom-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .ff-showroom-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .ff-showroom-title { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .ff-showroom-grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
  .ff-showroom-title { font-size: 2rem; }
}

/* Card */
.ff-showroom-card {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--brand-gray);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}

.ff-showroom-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Thumbnail */
.ff-showroom-card-thumb {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  cursor: pointer;
}

.ff-showroom-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.04) saturate(1.05);
}

.ff-showroom-card:hover .ff-showroom-card-thumb img {
  transform: scale(1.06);
}

/* Play Button Overlay – always visible, subtle */
.ff-showroom-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.3s;
}

.ff-showroom-card-play svg {
  width: 36px;
  height: 36px;
  color: #fff;
  opacity: 0.7;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  padding: 8px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: all 0.3s;
}

.ff-showroom-card:hover .ff-showroom-card-play {
  background: rgba(0,0,0,0.15);
}

.ff-showroom-card:hover .ff-showroom-card-play svg {
  opacity: 1;
  transform: scale(1.15);
  background: rgba(0,0,0,0.5);
}

/* Badge */
.ff-showroom-card-badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 0.375rem;
}

/* Info */
.ff-showroom-card-info {
  padding: 0.625rem 0.75rem;
}

.ff-showroom-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gray-400);
  line-height: 1.4;
}

.ff-showroom-card-model {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.375rem;
  font-size: 10px;
  font-weight: 700;
  color: var(--brand-accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.ff-showroom-card-model:hover {
  color: var(--color-white);
}

/* Empty State */
.ff-showroom-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--color-gray-500);
}

.ff-showroom-empty svg {
  color: rgba(255,255,255,0.15);
  margin-bottom: 1rem;
}

.ff-showroom-empty p {
  font-size: 0.9375rem;
  max-width: 320px;
  margin: 0 auto;
}

/* Insights Section */
.ff-showroom-insights {
  padding: 3rem 0 4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 2rem;
}

.ff-showroom-insights-header {
  text-align: center;
  margin-bottom: 2rem;
}

.ff-showroom-insights-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.01em;
  margin-bottom: 0.375rem;
}

.ff-showroom-insights-desc {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

.ff-showroom-grid--insights {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .ff-showroom-grid--insights { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .ff-showroom-grid--insights { grid-template-columns: repeat(2, 1fr); }
}

/* Load More */
.ff-showroom-loadmore-wrap {
  text-align: center;
  margin-top: 2rem;
}

.ff-showroom-loadmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 2rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-sans);
}

.ff-showroom-loadmore:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

/* Hidden cards (load-more pagination) */
.ff-showroom-card.is-hidden {
  display: none !important;
}

/* Modal */
.ff-showroom-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.ff-showroom-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.ff-showroom-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}

.ff-showroom-modal-content {
  position: relative;
  width: 360px;
  max-width: 90vw;
  aspect-ratio: 9/16;
  max-height: 85vh;
  border-radius: 1rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  transform: scale(0.95);
  transition: transform 0.3s;
}

.ff-showroom-modal.is-open .ff-showroom-modal-content {
  transform: scale(1);
}

.ff-showroom-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.ff-showroom-modal-x {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.ff-showroom-modal-x:hover {
  background: rgba(255,255,255,0.2);
}

