/* ════════════════════════════════════════════
   PRODUCTS PAGE — products.css
   Coatings Hub NorCal
   ════════════════════════════════════════════ */

/* ── Utility ── */
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ── Cart Button in Header ── */
.cart-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  cursor: pointer; color: #fff;
  transition: background .2s, border-color .2s;
}
.cart-btn:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); }
.cart-btn svg { width: 18px; height: 18px; }
.cart-count {
  position: absolute; top: -5px; right: -5px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: #e53e3e; color: #fff;
  font-size: .62rem; font-weight: 700;
  border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: transform .2s;
}
.cart-count.bump { transform: scale(1.4); }

/* ── Shop Banner ── */
.shop-banner {
  position: relative;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #050d1e 0%, #0d1b2a 60%, #015ea0 100%);
  overflow: hidden;
}
.shop-banner__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(2,116,190,.25) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(57,173,255,.12) 0%, transparent 50%);
  pointer-events: none;
}
.shop-banner__inner { position: relative; z-index: 1; }
.shop-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 500;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.2rem;
  letter-spacing: .04em;
}
.shop-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.shop-breadcrumb a:hover { color: #39adff; }
.shop-breadcrumb svg { width: 14px; height: 14px; }
.shop-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400; color: #fff;
  letter-spacing: .04em; text-transform: uppercase;
  line-height: 1; margin-bottom: .9rem;
}
.shop-banner__sub {
  font-size: .95rem; color: rgba(255,255,255,.65); max-width: 520px; line-height: 1.7;
}

/* ── Shop Main Layout ── */
.shop-main { padding: 3rem 0 5rem; background: #f8fafc; }

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

/* ── Sidebar ── */
.shop-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  display: flex; flex-direction: column; gap: 1.25rem;
}

.sidebar-head {
  display: none;
  justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem;
  background: #0d1b2a;
  color: #fff;
  font-weight: 700; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 14px 14px 0 0;
}
.sidebar-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.6); padding: .25rem;
  display: flex; align-items: center;
}
.sidebar-close svg { width: 18px; height: 18px; }
.sidebar-close:hover { color: #fff; }

.widget {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
}
.widget__title {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #64748b;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid #f1f5f9;
}

/* Active filters widget */
.active-filters-widget { background: #eff6ff; border-color: #bfdbfe; }
.active-filter-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .75rem; }
.active-filter-tag {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .7rem; background: #dbeafe; border-radius: 99px;
  font-size: .72rem; font-weight: 600; color: #1d4ed8;
}
.clear-all-btn {
  font-size: .72rem; font-weight: 600; color: #e53e3e;
  background: none; border: none; cursor: pointer; padding: 0;
  text-decoration: underline;
}

/* Search widget */
.sidebar-search {
  position: relative;
}
.sidebar-search__input {
  width: 100%; padding: .65rem .65rem .65rem 2.4rem;
  border: 1.5px solid #e2e8f0; border-radius: 9px;
  font-size: .85rem; color: #0d1b2a; font-family: var(--font-sans);
  background: #f8fafc;
  transition: border-color .2s;
  outline: none;
}
.sidebar-search__input:focus { border-color: var(--blue); background: #fff; }
.sidebar-search svg {
  position: absolute; left: .7rem; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; color: #94a3b8; pointer-events: none;
}

/* Category list */
.cat-list { list-style: none; display: flex; flex-direction: column; gap: .2rem; }
.cat-btn {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: .55rem .75rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: .875rem; font-weight: 500;
  color: #475569; border-radius: 8px;
  text-align: left;
  transition: background .15s, color .15s;
}
.cat-btn:hover { background: #f1f5f9; color: var(--blue); }
.cat-btn.active { background: #eff6ff; color: var(--blue); font-weight: 700; }
.cat-count {
  font-size: .7rem; font-weight: 600;
  background: #e2e8f0; color: #64748b;
  padding: .15rem .45rem; border-radius: 99px;
}
.cat-btn.active .cat-count { background: var(--blue); color: #fff; }

/* Price range */
.price-range-wrap { display: flex; flex-direction: column; gap: 1rem; }
.price-range-track {
  position: relative;
  height: 4px; background: #e2e8f0; border-radius: 99px; margin: 18px 0;
}
.price-range-fill {
  position: absolute; height: 100%;
  background: var(--blue); border-radius: 99px;
}
.price-range-input {
  position: absolute; width: 100%; height: 0;
  top: -6px; left: 0; appearance: none;
  background: none; pointer-events: none;
}
.price-range-input::-webkit-slider-thumb {
  appearance: none; pointer-events: all;
  width: 18px; height: 18px;
  border-radius: 50%; background: #fff;
  border: 2.5px solid var(--blue);
  box-shadow: 0 2px 6px rgba(2,116,190,.3);
  cursor: pointer;
}
.price-range-labels {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: #475569;
}
.price-filter-btn {
  padding: .35rem .9rem;
  background: var(--blue); color: #fff;
  border: none; border-radius: 7px;
  font-family: var(--font-sans); font-size: .75rem; font-weight: 700;
  cursor: pointer; letter-spacing: .06em;
  transition: background .2s;
}
.price-filter-btn:hover { background: var(--blue-d); }

/* Checkbox list */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.check-list label {
  display: flex; align-items: center; gap: .65rem;
  font-size: .875rem; color: #475569; cursor: pointer;
}
.check-list input[type=checkbox] {
  width: 16px; height: 16px; accent-color: var(--blue); cursor: pointer;
  border-radius: 4px;
}
.check-count { color: #94a3b8; font-size: .75rem; }

/* Tag cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-cloud__tag {
  padding: .3rem .8rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 99px; background: #f8fafc;
  font-family: var(--font-sans); font-size: .75rem; font-weight: 600;
  color: #64748b; cursor: pointer;
  transition: all .15s;
}
.tag-cloud__tag:hover, .tag-cloud__tag.active {
  border-color: var(--blue); background: #eff6ff; color: var(--blue);
}

/* Sidebar banner */
.sidebar-banner {
  background: linear-gradient(135deg, #0d1b2a 0%, #015ea0 100%);
  border-radius: 14px;
  padding: 1.6rem 1.5rem;
  text-align: center;
}
.sidebar-banner svg { width: 36px; height: 36px; margin-bottom: .75rem; }
.sidebar-banner h5 {
  font-family: var(--font-serif); font-size: 1.1rem;
  font-weight: 400; color: #fff;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: .5rem;
}
.sidebar-banner p { font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: 1rem; }
.sidebar-banner__btn {
  display: inline-block;
  padding: .6rem 1.3rem;
  background: #39adff; color: #fff;
  border-radius: 8px; text-decoration: none;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  transition: background .2s;
}
.sidebar-banner__btn:hover { background: #1e96e8; }

/* ── Toolbar ── */
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
  padding: 1rem 1.25rem;
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.results-count { font-size: .875rem; color: #64748b; }
.results-count strong { color: #0d1b2a; }
.toolbar-right { display: flex; align-items: center; gap: .75rem; }

.sort-select {
  padding: .55rem 2rem .55rem .85rem;
  border: 1.5px solid #e2e8f0; border-radius: 9px;
  font-family: var(--font-sans); font-size: .8rem; font-weight: 500;
  color: #475569; background: #f8fafc;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .6rem center;
  background-size: 14px;
  cursor: pointer; outline: none;
  transition: border-color .2s;
}
.sort-select:focus { border-color: var(--blue); }

.view-toggle { display: flex; gap: .3rem; }
.view-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: #f1f5f9; border: 1.5px solid #e2e8f0;
  border-radius: 8px; cursor: pointer; color: #94a3b8;
  transition: all .15s;
}
.view-btn svg { width: 14px; height: 14px; }
.view-btn:hover { border-color: var(--blue); color: var(--blue); background: #eff6ff; }
.view-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

.filter-toggle-btn {
  display: none;
  align-items: center; gap: .4rem;
  padding: .5rem 1rem;
  background: var(--blue); color: #fff;
  border: none; border-radius: 9px;
  font-family: var(--font-sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; cursor: pointer;
}
.filter-toggle-btn svg { width: 16px; height: 16px; }

/* ── Product Grid ── */
.products-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* List view */
.products-grid.list-view {
  grid-template-columns: 1fr;
}
.products-grid.list-view .product-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-radius: 14px;
}
.products-grid.list-view .product-card__img-wrap {
  border-radius: 14px 0 0 14px;
}
.products-grid.list-view .product-card__img {
  height: 100%;
  min-height: 180px;
  border-radius: 14px 0 0 14px;
}
.products-grid.list-view .product-card__body {
  padding: 1.5rem 1.75rem;
  display: flex; flex-direction: column; justify-content: center;
}
.products-grid.list-view .product-card__name {
  font-size: 1.1rem;
}
.products-grid.list-view .add-to-cart-btn {
  max-width: 200px;
  margin-top: auto;
}

/* ── Product Card ── */
.product-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  animation: cardFadeUp .4s ease both;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(2,116,190,.12), 0 4px 16px rgba(0,0,0,.06);
  border-color: #bfdbfe;
}

@keyframes cardFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Card image */
.product-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.product-card__img {
  width: 100%; aspect-ratio: 1/1;
  overflow: hidden;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .45s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.06); }

/* Badges */
.product-card__badges {
  position: absolute; top: .75rem; left: .75rem;
  display: flex; flex-direction: column; gap: .35rem;
  z-index: 2;
}
.badge {
  display: inline-block;
  padding: .22rem .65rem;
  border-radius: 99px;
  font-size: .65rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  line-height: 1.4;
}
.badge--sale { background: #e53e3e; color: #fff; }
.badge--new  { background: #16a34a; color: #fff; }
.badge--best { background: #0274be; color: #fff; }

/* Card actions (wishlist / quickview) */
.product-card__actions {
  position: absolute; top: .75rem; right: .75rem;
  display: flex; flex-direction: column; gap: .35rem;
  z-index: 2;
  opacity: 0; transform: translateX(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.product-card:hover .product-card__actions {
  opacity: 1; transform: translateX(0);
}
.card-action-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 8px;
  cursor: pointer; color: #475569;
  transition: background .15s, color .15s, transform .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.card-action-btn svg { width: 15px; height: 15px; }
.card-action-btn:hover { background: #fff; color: var(--blue); transform: scale(1.05); }
.wishlist-btn.active { color: #e53e3e; }
.wishlist-btn.active svg { fill: #e53e3e; stroke: #e53e3e; }

/* Star rating */
.stars {
  width: 80px; height: 14px;
  background:
    linear-gradient(90deg, #f59e0b var(--fill), #e2e8f0 var(--fill));
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M10 2l2.24 6.9H19l-5.5 4 2.1 6.5L10 15.3l-5.6 4.1 2.1-6.5L1 8.9h6.76zM30 2l2.24 6.9H39l-5.5 4 2.1 6.5L30 15.3l-5.6 4.1 2.1-6.5L21 8.9h6.76zM50 2l2.24 6.9H59l-5.5 4 2.1 6.5L50 15.3l-5.6 4.1 2.1-6.5L41 8.9h6.76zM70 2l2.24 6.9H77l-5.5 4 2.1 6.5L70 15.3l-5.6 4.1 2.1-6.5L61 8.9h6.76zM90 2l2.24 6.9H99l-5.5 4 2.1 6.5L90 15.3l-5.6 4.1 2.1-6.5L81 8.9h6.76z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M10 2l2.24 6.9H19l-5.5 4 2.1 6.5L10 15.3l-5.6 4.1 2.1-6.5L1 8.9h6.76zM30 2l2.24 6.9H39l-5.5 4 2.1 6.5L30 15.3l-5.6 4.1 2.1-6.5L21 8.9h6.76zM50 2l2.24 6.9H59l-5.5 4 2.1 6.5L50 15.3l-5.6 4.1 2.1-6.5L41 8.9h6.76zM70 2l2.24 6.9H77l-5.5 4 2.1 6.5L70 15.3l-5.6 4.1 2.1-6.5L61 8.9h6.76zM90 2l2.24 6.9H99l-5.5 4 2.1 6.5L90 15.3l-5.6 4.1 2.1-6.5L81 8.9h6.76z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: 100%; mask-size: 100%;
  display: inline-block; flex-shrink: 0;
}

/* Card body */
.product-card__body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.product-card__cat {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue);
}
.product-card__name {
  font-family: var(--font-sans);
  font-size: .9rem; font-weight: 700;
  color: #0d1b2a; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__rating {
  display: flex; align-items: center; gap: .5rem;
}
.rating-count { font-size: .75rem; color: #94a3b8; }

/* Price */
.product-card__price { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.price {
  font-size: 1.1rem; font-weight: 800;
  font-family: var(--font-sans);
  color: #0d1b2a;
}
.price--sale { color: #e53e3e; }
.price--original {
  font-size: .85rem; font-weight: 500;
  color: #94a3b8; text-decoration: line-through;
}

/* Add to Cart button */
.add-to-cart-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: .7rem 1rem;
  background: var(--blue); color: #fff;
  border: none; border-radius: 9px;
  font-family: var(--font-sans); font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; margin-top: .35rem;
  transition: background .2s, transform .15s;
  position: relative; overflow: hidden;
}
.add-to-cart-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.add-to-cart-btn:hover { background: var(--blue-d); transform: translateY(-1px); }
.add-to-cart-btn.added { background: #16a34a; }
.add-to-cart-btn.added:hover { background: #15803d; }

/* ── No Results ── */
.no-results {
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 5rem 2rem; gap: 1rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
}
.no-results svg { width: 48px; height: 48px; }
.no-results h3 { font-size: 1.3rem; color: #0d1b2a; font-family: var(--font-serif); text-transform: uppercase; letter-spacing: .06em; }
.no-results p { font-size: .9rem; color: #64748b; }

/* ── Pagination ── */
.shop-pagination {
  display: flex; justify-content: center; align-items: center; gap: .4rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.page-btn {
  display: flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 .5rem;
  background: #fff; border: 1.5px solid #e2e8f0;
  border-radius: 9px; cursor: pointer;
  font-family: var(--font-sans); font-size: .85rem; font-weight: 600;
  color: #475569;
  transition: all .15s;
}
.page-btn svg { width: 16px; height: 16px; }
.page-btn:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); background: #eff6ff; }
.page-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.page-btn:disabled { opacity: .4; cursor: default; }

/* ── Cart Toast ── */
.cart-toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  display: flex; align-items: center; gap: .9rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #16a34a;
  border-radius: 12px;
  padding: .9rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 9999;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
  max-width: 340px;
}
.cart-toast.show { transform: translateY(0); opacity: 1; }
.cart-toast__icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: #dcfce7; color: #16a34a;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cart-toast__icon svg { width: 18px; height: 18px; }
.cart-toast__body { display: flex; flex-direction: column; gap: .15rem; }
.cart-toast__body strong { font-size: .85rem; color: #0d1b2a; font-weight: 700; }
.cart-toast__body span { font-size: .75rem; color: #64748b; }
.cart-toast__link {
  margin-left: auto; flex-shrink: 0;
  font-size: .75rem; font-weight: 700;
  color: var(--blue); text-decoration: none;
  letter-spacing: .04em; text-transform: uppercase;
}
.cart-toast__link:hover { text-decoration: underline; }

/* ── Sidebar Overlay (mobile) ── */
.sidebar-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 199;
  backdrop-filter: blur(2px);
}
.sidebar-overlay.active { display: block; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 1100px) {
  .shop-layout { grid-template-columns: 240px 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }

  /* Sidebar becomes a slide-in panel */
  .shop-sidebar {
    position: fixed;
    top: 0; left: -320px;
    width: 300px; height: 100%;
    max-height: 100%; overflow-y: auto;
    background: #fff;
    z-index: 200;
    border-radius: 0 16px 16px 0;
    box-shadow: 4px 0 30px rgba(0,0,0,.2);
    transition: left .3s cubic-bezier(.4,0,.2,1);
    padding: 0 1rem 2rem;
    gap: 1rem;
  }
  .shop-sidebar.open { left: 0; }
  .sidebar-head { display: flex; }
  .filter-toggle-btn { display: flex; }
}

@media (max-width: 600px) {
  .shop-banner { padding: 100px 0 40px; }
  .shop-main { padding: 1.5rem 0 4rem; }
  .shop-toolbar { padding: .75rem 1rem; }
  .sort-select { font-size: .75rem; }
  .results-count { font-size: .78rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .product-card__body { padding: .85rem .9rem 1rem; }
  .product-card__name { font-size: .82rem; }
  .price { font-size: .95rem; }
  .add-to-cart-btn { font-size: .68rem; padding: .6rem .75rem; }
  .products-grid.list-view { grid-template-columns: 1fr; }
  .products-grid.list-view .product-card { grid-template-columns: 130px 1fr; }
  .products-grid.list-view .product-card__img { min-height: 130px; }
  .cart-toast { bottom: 1rem; right: 1rem; left: 1rem; max-width: none; }
  .shop-pagination { gap: .3rem; }
  .page-btn { min-width: 36px; height: 36px; font-size: .78rem; }
}

/* ── Product name as link ── */
.product-card__name-link {
  text-decoration: none; color: inherit; display: block;
  transition: color .15s;
}
.product-card__name-link:hover { color: var(--blue); }
