/* Shop page — global view toggle, garage-style list, mobile grids */

/* Faster WOW entrance on shop */
body.shop-page .wow.animated {
  animation-duration: 0.45s !important;
}

@media (prefers-reduced-motion: reduce) {
  body.shop-page .wow {
    animation: none !important;
    visibility: visible !important;
  }

  body.shop-page .product-img-slider {
    transition: none !important;
  }
}

/* ── Global list / grid bar ── */
.shop-view-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 0.5rem 0 1rem;
  margin-bottom: 0.25rem;
  position: sticky;
  top: 0;
  z-index: 102;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.navbar-offset-active .shop-view-bar {
  top: var(--sticky-nav-height, 72px);
}

.shop-view-bar__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
}

.shop-view-toggle-global {
  display: inline-flex;
  padding: 3px;
  gap: 2px;
  border-radius: 50px;
  border: 1px solid #d8e2f0;
  background: #eef2f8;
}

.shop-view-btn {
  padding: 0.45rem 1.15rem;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: #5f6b7a;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.shop-view-btn.is-active {
  background: #0046ae;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 70, 174, 0.28);
}

.shop-view-btn:focus-visible {
  outline: 2px solid #0046ae;
  outline-offset: 2px;
}

.shop-listings-heading {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

@media (min-width: 993px) {
  body.shop-page #productGrid1:not(.view-list),
  body.shop-page #productGrid2:not(.view-list) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Grid view — each card keeps its own height when a neighbour expands */
body.shop-page .product-grid.view-grid,
body.shop-page .product-grid:not(.view-list),
body.shop-page .pit-lane-listings.view-grid,
body.shop-page .pit-lane-listings:not(.view-list) {
  align-items: stretch;
}

body.shop-page .product-grid:not(.view-list) .product-card,
body.shop-page .pit-lane-listings:not(.view-list) .pit-lane-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.shop-page .pit-lane-listings:not(.view-list) .pit-lane-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Grid view — uniform info block; title capped at 2 lines */
body.shop-page .product-grid:not(.view-list) .product-info {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  gap: 0.35rem;
}

body.shop-page .pit-lane-listings:not(.view-list) .pit-lane-card__body {
  gap: 0.35rem;
}

body.shop-page .product-grid:not(.view-list) .product-info .product-title,
body.shop-page .product-grid:not(.view-list) .product-title,
body.shop-page .pit-lane-listings:not(.view-list) .pit-lane-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  max-height: calc(1.3em * 2);
  margin: 0;
  flex: 0 0 auto;
  font-size: 0.95rem;
}

body.shop-page .pit-lane-listings:not(.view-list) .pit-lane-card__title {
  font-size: 0.82rem;
}

body.shop-page .product-grid:not(.view-list) .product-info .product-price,
body.shop-page .product-grid:not(.view-list) .product-price {
  margin: 0;
  flex: 0 0 auto;
}

body.shop-page .pit-lane-listings:not(.view-list) .pit-lane-card__price,
body.shop-page .pit-lane-listings:not(.view-list) .pit-lane-card__loc {
  margin: 0;
  flex: 0 0 auto;
}

body.shop-page .product-grid:not(.view-list) .product-info .product-price small,
body.shop-page .product-grid:not(.view-list) .product-price small {
  color: #c62828 !important;
}

body.shop-page .product-grid:not(.view-list) .product-info .product-title a,
body.shop-page .pit-lane-listings:not(.view-list) .pit-lane-card__title a {
  color: inherit;
  text-decoration: none;
}

body.shop-page .product-grid:not(.view-list) .product-info .product-tag,
body.shop-page .product-grid:not(.view-list) .product-tag {
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  flex: 0 0 auto;
  display: inline-block;
  font-size: 0.7rem;
  padding: 2px 10px;
  margin: 0;
  min-height: 0;
}

body.shop-page .product-grid:not(.view-list) .buy-now-btn,
body.shop-page .pit-lane-listings:not(.view-list) .pit-lane-card__contact {
  margin-top: auto;
}

/* Quick view eye — image hover */
.product-quick-view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 22, 60, 0.42);
  opacity: 0;
  transition: opacity 0.22s ease;
  z-index: 3;
  text-decoration: none;
  pointer-events: none;
}

.product-card:hover .product-quick-view {
  opacity: 1;
  pointer-events: auto;
}

.product-quick-view__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #0046ae;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  transform: scale(0.88);
  transition: transform 0.22s ease, background 0.18s ease, color 0.18s ease;
}

.product-card:hover .product-quick-view__btn {
  transform: scale(1);
}

.product-quick-view:hover .product-quick-view__btn {
  background: #0046ae;
  color: #fff;
}

.product-stock-qty,
.pit-lane-stock-qty {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.product-stock-qty i,
.pit-lane-stock-qty i {
  margin-right: 0.25rem;
  font-size: 0.72rem;
}

.product-stock-qty--urgent,
.pit-lane-stock-qty--urgent {
  color: #ff6b6b;
}

.product-stock-qty--low,
.pit-lane-stock-qty--low {
  color: #ffb347;
}

.product-stock-qty--ok,
.pit-lane-stock-qty--ok {
  color: #7dcea0;
}

.product-stock-qty--out,
.pit-lane-stock-qty--out {
  color: rgba(255, 255, 255, 0.55);
}

body.shop-page .product-img-wrap .img-arrow {
  z-index: 4;
}

@media (hover: none) {
  body.shop-page .product-quick-view {
    opacity: 1;
    background: transparent;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 8px;
    pointer-events: auto;
  }

  body.shop-page .product-quick-view__btn {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  }
}

/* ── List tiles: horizontal row — image | content (RC Hub style) ── */
.product-grid.view-list,
.pit-lane-listings.view-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.product-grid.view-list .product-card,
.pit-lane-listings.view-list .pit-lane-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 130px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  border: 2px solid #e8e8e8;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  transition: border-color 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
}

.product-grid.view-list .product-card:hover,
.pit-lane-listings.view-list .pit-lane-card:hover {
  border-color: #0046ae;
  box-shadow: 0 10px 28px rgba(0, 70, 174, 0.14);
  transform: translateY(-2px);
}

/* Image column */
.product-grid.view-list .product-img-wrap,
.pit-lane-listings.view-list .pit-lane-card__img {
  flex: 0 0 34%;
  width: 34%;
  max-width: 320px;
  min-height: 130px;
  position: relative;
  background: #f0f2f5;
  overflow: hidden;
}

.product-grid.view-list .product-img-slider,
.product-grid.view-list .product-img-slider img,
.pit-lane-listings.view-list .pit-lane-card__img img {
  width: 100%;
  height: 100%;
  min-height: 130px;
  object-fit: cover;
}

/* Content column */
.product-grid.view-list .product-info,
.pit-lane-listings.view-list .pit-lane-card__body {
  flex: 1;
  min-width: 0;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.3rem;
  text-align: left;
  background: transparent;
}

/* List tile text — light card, matches grid product styling */
body.shop-page .product-grid.view-list .product-info .product-title,
body.shop-page .product-grid.view-list .product-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1a1a2e !important;
  line-height: 1.3;
  margin: 0;
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  max-height: none;
  min-height: 0;
}

body.shop-page .product-grid.view-list .product-info .product-tag,
body.shop-page .product-grid.view-list .product-tag,
.pit-lane-listings.view-list .pit-lane-card__loc {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 0.22rem 0.6rem;
  border-radius: 50px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-height: 22px;
}

body.shop-page .product-grid.view-list .product-info .product-tag,
body.shop-page .product-grid.view-list .product-tag {
  color: #ffffff !important;
  background: #0046ae !important;
  border: none;
}

body.shop-page .product-grid.view-list .product-info .product-price,
body.shop-page .product-grid.view-list .product-price,
.pit-lane-listings.view-list .pit-lane-card__price {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 800;
  color: #0046ae !important;
  line-height: 1.2;
}

body.shop-page .product-grid.view-list .product-info .product-price small,
body.shop-page .product-grid.view-list .product-price small {
  margin-left: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #c62828 !important;
  text-decoration: line-through;
}

.pit-lane-listings.view-list .pit-lane-card__loc {
  color: #ffffff;
  background: #0046ae;
  border: none;
}

.pit-lane-listings.view-list .pit-lane-card__loc i {
  color: #ffffff;
  margin-right: 0.25rem;
  font-size: 0.65rem;
}

body.shop-page .product-grid.view-list .buy-now-btn,
.pit-lane-listings.view-list .pit-lane-card__contact {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  align-self: flex-start;
  margin: 0.15rem 0 0;
  padding: 0.4rem 0.75rem !important;
  border-radius: 6px;
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: #fff !important;
  border: none;
  font-size: 0.72rem !important;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-decoration: none;
  flex-shrink: 0;
}

.product-grid.view-list .buy-now-btn:hover,
.pit-lane-listings.view-list .pit-lane-card__contact:hover {
  color: #fff !important;
  transform: scale(1.02);
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
}

.product-grid.view-list .buy-now-btn i,
.pit-lane-listings.view-list .pit-lane-card__contact i {
  margin-right: 0.3rem;
  font-size: 0.68rem;
}

.product-grid.view-list .product-card,
.pit-lane-listings.view-list .pit-lane-card {
  min-height: 130px;
}

.pit-lane-listings.view-list .pit-lane-card__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1a1a2e !important;
  line-height: 1.3;
  margin: 0;
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  max-height: none;
  min-height: 0;
}

.product-grid.view-list .product-title { order: 1; }
.product-grid.view-list .product-tag { order: 0; }
.product-grid.view-list .product-price { order: 2; }
.product-grid.view-list .buy-now-btn { order: 3; }

.pit-lane-listings.view-list .pit-lane-card__title { order: 1; }
.pit-lane-listings.view-list .pit-lane-card__price { order: 2; }
.pit-lane-listings.view-list .pit-lane-card__loc { order: 3; }
.pit-lane-listings.view-list .pit-lane-card__contact { order: 4; }

.product-grid.view-list .img-arrow,
.product-grid.view-list .img-dots {
  opacity: 1;
}

/* Desktop list — wider image, full description visible (no tap) */
@media (min-width: 768px) {
  body.shop-page .product-grid.view-list .product-card,
  body.shop-page .pit-lane-listings.view-list .pit-lane-card {
    min-height: 150px;
    align-items: stretch;
    cursor: default;
  }

  /* Equal list tile image column — all shop sections */
  body.shop-page .product-grid.view-list .product-img-wrap,
  body.shop-page .pit-lane-listings.view-list .pit-lane-card__img {
    flex: 0 0 min(280px, 32%) !important;
    width: min(280px, 32%) !important;
    max-width: min(280px, 32%) !important;
    min-height: 150px !important;
    height: 240px !important;
    align-self: stretch;
  }

  body.shop-page .product-grid.view-list .product-img-slider,
  body.shop-page .product-grid.view-list .product-img-slider img,
  body.shop-page .pit-lane-listings.view-list .pit-lane-card__img img {
    width: 100%;
    height: 100% !important;
    min-height: 150px !important;
    object-fit: cover;
  }

  body.shop-page .product-grid.view-list .product-info,
  body.shop-page .pit-lane-listings.view-list .pit-lane-card__body {
    padding: 1.1rem 1.5rem;
    justify-content: flex-start;
    align-self: stretch;
    gap: 0.55rem;
  }

  body.shop-page .product-grid.view-list .product-title,
  body.shop-page .pit-lane-listings.view-list .pit-lane-card__title {
    margin-bottom: 0.15rem;
  }

  body.shop-page .product-grid.view-list .product-price,
  body.shop-page .pit-lane-listings.view-list .pit-lane-card__price {
    margin-bottom: 0.2rem;
  }

  body.shop-page .product-grid.view-list .buy-now-btn,
  body.shop-page .pit-lane-listings.view-list .pit-lane-card__contact {
    margin-top: 0.2rem;
  }

  /* Pit Lane list — match product tag / title / price / button scale */
  body.shop-page .pit-lane-listings.view-list .pit-lane-card__loc {
    order: 0;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: 0.58rem;
    min-height: 22px;
    padding: 0.22rem 0.6rem;
    margin: 0 0 0.3rem;
  }

  body.shop-page .pit-lane-listings.view-list .pit-lane-card__title {
    order: 1;
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  }

  body.shop-page .pit-lane-listings.view-list .pit-lane-card__price {
    order: 2;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
  }

  body.shop-page .pit-lane-listings.view-list .pit-lane-card__contact {
    order: 3;
  }

  body.shop-page .product-grid.view-list .buy-now-btn,
  body.shop-page .pit-lane-listings.view-list .pit-lane-card__contact {
    padding: 0.48rem 0.9rem !important;
    font-size: 0.78rem !important;
  }

  body.shop-page .product-grid.view-list .buy-now-btn i,
  body.shop-page .pit-lane-listings.view-list .pit-lane-card__contact i {
    font-size: 0.72rem;
  }
}

/* ── Mobile-first grids (2 columns in grid mode) ── */
/* Product tags — solid blue in grid + list */
body.shop-page .product-tag {
  background: #0046ae !important;
  color: #ffffff !important;
}

body.shop-page .pit-lane-card__badge--new {
  background: #003580 !important;
}

@media (max-width: 767.98px) {
  body.shop-page .product-grid.view-list,
  body.shop-page .pit-lane-listings.view-list {
    display: flex !important;
    flex-direction: column;
    grid-template-columns: none !important;
    gap: 0.85rem;
    margin-top: 0.5rem;
  }

  body.shop-page .page-header {
    margin-bottom: 2rem !important;
  }

  body.shop-page .page-header .container {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  body.shop-page .page-header .display-4 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  body.shop-page .product-section {
    padding: 2rem 0;
  }

  body.shop-page .section-title-custom {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  body.shop-page .shop-view-bar {
    justify-content: center;
    padding-bottom: 0.75rem;
  }

  body.shop-page .product-grid:not(.view-list) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.65rem;
  }

  body.shop-page .product-grid:not(.view-list) .product-img-wrap {
    height: 130px;
  }

  body.shop-page .product-grid:not(.view-list) .product-info {
    padding: 0.65rem 0.55rem 0.75rem;
    gap: 0.3rem;
  }

  body.shop-page .pit-lane-listings:not(.view-list) .pit-lane-card__body {
    gap: 0.3rem;
  }

  body.shop-page .product-grid:not(.view-list) .product-info .product-title {
    font-size: 0.68rem;
    line-height: 1.3;
    max-height: calc(1.3em * 2);
  }

  body.shop-page .pit-lane-listings:not(.view-list) .pit-lane-card__title {
    font-size: 0.68rem;
    max-height: calc(1.3em * 2);
  }

  body.shop-page .product-grid:not(.view-list) .product-info .product-price {
    font-size: 0.92rem;
    margin: 0;
  }

  body.shop-page .product-grid:not(.view-list) .product-info .product-price small {
    display: block;
    margin-left: 0;
    font-size: 0.68rem;
    color: #c62828 !important;
  }

  body.shop-page .product-grid:not(.view-list) .product-info .product-tag {
    font-size: 0.58rem;
    padding: 2px 6px;
    margin: 0;
  }

  body.shop-page .product-grid:not(.view-list) .buy-now-btn {
    font-size: 0.68rem;
    padding: 0.45rem 0.25rem;
    margin-top: 0.5rem;
  }

  body.shop-page .pit-lane-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  body.shop-page .pit-lane-benefit {
    padding: 1rem 0.65rem;
  }

  body.shop-page .pit-lane-benefit h3 {
    font-size: 0.68rem;
  }

  body.shop-page .pit-lane-benefit__icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  body.shop-page .pit-lane-listings:not(.view-list) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.65rem;
  }

  body.shop-page .pit-lane-listings:not(.view-list) .pit-lane-card__img {
    height: 120px;
  }

  body.shop-page .pit-lane-listings:not(.view-list) .pit-lane-card__price {
    font-size: 0.95rem;
  }

  body.shop-page .pit-lane-listings:not(.view-list) .pit-lane-card__loc {
    font-size: 0.68rem;
    margin: 0;
  }

  body.shop-page .pit-lane-listings:not(.view-list) .pit-lane-card__contact {
    font-size: 0.65rem;
    padding: 0.45rem 0.35rem;
  }

  body.shop-page .pit-lane-listings:not(.view-list) .pit-lane-card__body {
    padding: 0.65rem 0.55rem 0.75rem;
  }

  body.shop-page .pit-lane-lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  /* List mobile — horizontal row: 132px thumb (matches RC Hub / Garage) */
  body.shop-page .product-grid.view-list,
  body.shop-page .pit-lane-listings.view-list {
    gap: 0.85rem;
  }

  body.shop-page .product-grid.view-list .product-card,
  body.shop-page .pit-lane-listings.view-list .pit-lane-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 120px;
    max-height: none;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
  }

  /* Mobile list — equal compact thumb: 132×108px for all sections */
  body.shop-page .product-grid.view-list .product-img-wrap,
  body.shop-page .pit-lane-listings.view-list .pit-lane-card__img {
    flex: 0 0 132px !important;
    width: 132px !important;
    max-width: 132px !important;
    min-width: 132px !important;
    height: 108px !important;
    min-height: 108px !important;
    max-height: 108px !important;
    align-self: stretch;
    grid-column: unset;
    grid-row: unset;
  }

  body.shop-page .product-grid.view-list .product-img-slider,
  body.shop-page .product-grid.view-list .product-img-slider img,
  body.shop-page .pit-lane-listings.view-list .pit-lane-card__img img {
    width: 100%;
    height: 108px !important;
    min-height: 108px !important;
    max-height: 108px !important;
    object-fit: cover;
  }

  body.shop-page .product-grid.view-list .product-info,
  body.shop-page .pit-lane-listings.view-list .pit-lane-card__body {
    flex: 1;
    min-width: 0;
    padding: 0.65rem 0.75rem;
    justify-content: center;
    align-self: stretch;
    grid-column: unset;
    grid-row: unset;
  }

  /* Pit Lane list — match product card content scale */
  body.shop-page .pit-lane-listings.view-list .pit-lane-card__loc {
    order: 0;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: 0.58rem !important;
    min-height: 22px;
    padding: 2px 6px;
    margin: 0 0 4px;
  }

  body.shop-page .pit-lane-listings.view-list .pit-lane-card__title {
    order: 1;
    font-size: 0.82rem !important;
    line-height: 1.3;
    margin: 0 0 0.2rem;
  }

  body.shop-page .pit-lane-listings.view-list .pit-lane-card__price {
    order: 2;
    font-size: 0.95rem !important;
    margin: 0 0 0.25rem;
  }

  body.shop-page .pit-lane-listings.view-list .pit-lane-card__contact {
    order: 3;
    margin-top: 0.25rem;
    padding: 0.28rem 0.5rem !important;
    font-size: 0.58rem !important;
    line-height: 1.2;
    border-radius: 4px;
  }

  body.shop-page .product-grid.view-list .product-tag {
    display: inline-flex;
    font-size: 0.58rem;
    min-height: 22px;
    padding: 2px 6px;
    margin-bottom: 4px;
  }

  body.shop-page .product-grid.view-list .product-title {
    font-size: 0.82rem;
    line-height: 1.3;
    margin-bottom: 0.2rem;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    max-height: none;
    min-height: 0;
  }

  body.shop-page .product-grid.view-list .product-price {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }

  body.shop-page .product-grid.view-list .buy-now-btn {
    margin-top: 0.25rem;
    padding: 0.28rem 0.5rem;
    font-size: 0.58rem;
    line-height: 1.2;
    border-radius: 4px;
  }

  body.shop-page .product-grid.view-list .buy-now-btn i,
  body.shop-page .pit-lane-listings.view-list .pit-lane-card__contact i {
    font-size: 0.52rem;
    margin-right: 0.2rem;
  }

  body.shop-page .pit-lane-listings.view-list .pit-lane-card__title {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    max-height: none;
    min-height: 0;
  }

  body.shop-page .event-plan-modal__dialog {
    max-height: 88vh;
  }

  body.shop-page .event-plan-input-wrap input,
  body.shop-page .event-plan-input-wrap select,
  body.shop-page .event-plan-input-wrap textarea {
    font-size: 16px;
    min-height: 46px;
  }
}

/* Pit Lane Marketplace — dark section (list view) */
body.shop-page .pit-lane-section .pit-lane-listings.view-list .pit-lane-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

body.shop-page .pit-lane-section .pit-lane-listings.view-list .pit-lane-card__title,
body.shop-page .pit-lane-section .pit-lane-listings.view-list .pit-lane-card__title a {
  color: #ffffff !important;
}

body.shop-page .pit-lane-section .pit-lane-listings.view-list .pit-lane-card:hover {
  border-color: rgba(126, 180, 255, 0.35);
  box-shadow: 0 14px 34px rgba(0, 70, 174, 0.22);
}
