/**
 * Versora Commerce V2 — Phase 2 Shop
 * Route-owned visual layer for Native + True Elementor shop archive.
 */

/* --------------------------------------------------------------------------
   Route reset / composition
   -------------------------------------------------------------------------- */
.vsr-commerce-v2-shop {
  background: var(--vsr-v2-bg-page);
  color: var(--vsr-v2-text-primary);
}
.vsr-commerce-v2-shop :where(main, .site-main, .woocommerce, .woocommerce-page) {
  overflow: visible;
}
.vsr-commerce-v2-shop :where(.elementor-widget-versora-shop-hero,
  .elementor-widget-versora-shop-categories,
  .elementor-widget-versora-shop-catalog,
  .elementor-widget-versora-shop-assurance) > .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
}
.vsr-commerce-v2-shop :where(.vsr-shop-v2-hero, .vsr-shop-v2-filter, .vsr-shop-v2-catalog, .vsr-shop-v2-assurance),
.vsr-commerce-v2-shop :where(.vsr-shop-v2-hero, .vsr-shop-v2-filter, .vsr-shop-v2-catalog, .vsr-shop-v2-assurance) * {
  box-sizing: border-box;
}
.vsr-commerce-v2-shop :where(.vsr-shop-v2-hero, .vsr-shop-v2-filter, .vsr-shop-v2-catalog, .vsr-shop-v2-assurance) :where(h1,h2,h3,p,ul) {
  margin-top: 0;
}
.vsr-commerce-v2-shop :where(.vsr-shop-v2-hero, .vsr-shop-v2-filter, .vsr-shop-v2-catalog, .vsr-shop-v2-assurance) a {
  text-decoration: none;
}
.vsr-commerce-v2-shop :where(.vsr-shop-v2-hero, .vsr-shop-v2-filter, .vsr-shop-v2-catalog, .vsr-shop-v2-assurance) svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.vsr-commerce-v2-shop .vsr-shop-v2-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(68px, 8vw, 118px) 0 clamp(54px, 7vw, 96px);
  background:
    radial-gradient(circle at 14% 14%, rgba(255,177,22,.16), transparent 32%),
    radial-gradient(circle at 86% 82%, rgba(74,102,142,.14), transparent 30%),
    linear-gradient(145deg, #080c12 0%, #0c121b 56%, #111a25 100%);
  color: var(--vsr-v2-text-on-dark);
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero::before,
.vsr-commerce-v2-shop .vsr-shop-v2-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero::before {
  inset: 0;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero::after {
  width: min(50vw, 680px);
  aspect-ratio: 1;
  left: -18vw;
  bottom: -68%;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.012);
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .78fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__content {
  min-width: 0;
  padding-inline-start: clamp(0px, 1.8vw, 24px);
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__eyebrow {
  margin-bottom: 20px;
  color: #ffd57a !important;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__title {
  max-width: 800px;
  margin-bottom: 20px;
  color: #fff !important;
  font-size: clamp(2.7rem, 5.5vw, 5.8rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__copy {
  max-width: 700px;
  margin-bottom: 28px;
  color: #cbd4df !important;
  font-size: clamp(.96rem, 1.2vw, 1.12rem);
  font-weight: 500;
  line-height: 2;
}
.vsr-commerce-v2-shop .vsr-shop-v2-search {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 10px;
  width: min(100%, 760px);
  padding: 8px 9px 8px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.085);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 22px 52px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color var(--vsr-v2-duration-fast) var(--vsr-v2-ease), background var(--vsr-v2-duration-fast) var(--vsr-v2-ease), box-shadow var(--vsr-v2-duration-fast) var(--vsr-v2-ease);
}
.vsr-commerce-v2-shop .vsr-shop-v2-search:focus-within {
  border-color: rgba(255,177,22,.62);
  background: rgba(255,255,255,.11);
  box-shadow: 0 0 0 4px rgba(255,177,22,.1), 0 24px 56px rgba(0,0,0,.22);
}
.vsr-commerce-v2-shop .vsr-shop-v2-search__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #ffd378;
  background: rgba(255,177,22,.1);
}
.vsr-commerce-v2-shop .vsr-shop-v2-search input[type="search"] {
  min-width: 0;
  min-height: 52px;
  padding: 0 6px;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  color: #fff !important;
  font-family: var(--vsr-v2-font);
  font-size: .92rem;
  font-weight: 600;
  box-shadow: none !important;
}
.vsr-commerce-v2-shop .vsr-shop-v2-search input[type="search"]::placeholder {
  color: #9ca9b9;
  opacity: 1;
}
.vsr-commerce-v2-shop .vsr-shop-v2-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 10px 18px;
  border: 0;
  border-radius: 13px;
  background: var(--vsr-v2-accent);
  color: var(--vsr-v2-accent-ink);
  font-family: var(--vsr-v2-font);
  font-size: .84rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform var(--vsr-v2-duration-fast) var(--vsr-v2-ease), background var(--vsr-v2-duration-fast) var(--vsr-v2-ease);
}
.vsr-commerce-v2-shop .vsr-shop-v2-search button span {
  transform: rotate(0deg);
}
.vsr-commerce-v2-shop .vsr-shop-v2-search button svg { width: 17px; height: 17px; }
@media (hover:hover) {
  .vsr-commerce-v2-shop .vsr-shop-v2-search button:hover { transform: translateY(-1px); background: var(--vsr-v2-accent-hover); }
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__actions .vsr-v2-btn {
  min-height: 50px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__actions .vsr-v2-btn svg { width: 17px; height: 17px; }
.vsr-commerce-v2-shop .vsr-shop-v2-hero__secondary {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
  color: #eef3f8 !important;
  box-shadow: none;
}
@media (hover:hover) {
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__secondary:hover {
    border-color: rgba(255,255,255,.25);
    background: rgba(255,255,255,.09);
    color: #fff !important;
  }
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__trust > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b7c2cf;
  font-size: .75rem;
  font-weight: 700;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__trust i {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(255,177,22,.26);
  border-radius: 50%;
  background: rgba(255,177,22,.08);
  color: #ffd57a;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__trust svg { width: 12px; height: 12px; stroke-width: 2.4; }

/* Finder */
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 30px;
  background: linear-gradient(155deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
  box-shadow: 0 34px 80px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder::after {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,177,22,.08);
  filter: blur(12px);
  pointer-events: none;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-top div { display: grid; gap: 5px; }
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-top div span {
  color: #f1ba45;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-top div strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-top > b {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(255,177,22,.22);
  border-radius: 999px;
  background: rgba(255,177,22,.08);
  color: #ffd57a;
  font-size: .68rem;
  font-weight: 900;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-copy {
  margin: 17px 0 16px;
  color: #aeb9c6;
  font-size: .78rem;
  line-height: 1.9;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__routes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__routes a {
  display: grid;
  grid-template-columns: 34px minmax(0,1fr) 28px;
  align-items: center;
  gap: 11px;
  min-height: 60px;
  padding: 10px 11px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  color: #fff;
  transition: border-color var(--vsr-v2-duration-fast) var(--vsr-v2-ease), background var(--vsr-v2-duration-fast) var(--vsr-v2-ease), transform var(--vsr-v2-duration-fast) var(--vsr-v2-ease);
}
@media (hover:hover) {
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__routes a:hover {
    transform: translateX(-3px);
    border-color: rgba(255,177,22,.28);
    background: rgba(255,177,22,.075);
  }
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__route-index {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: rgba(255,255,255,.07);
  color: #f5c96b;
  font-size: .68rem;
  font-weight: 900;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__route-copy { display: grid; gap: 3px; min-width: 0; }
.vsr-commerce-v2-shop .vsr-shop-v2-hero__route-copy strong {
  overflow: hidden;
  color: #f8fafc;
  font-size: .8rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__route-copy small { color: #8f9cab; font-size: .66rem; font-weight: 600; }
.vsr-commerce-v2-shop .vsr-shop-v2-hero__routes a > i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: #c4ceda;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__routes a > i svg { width: 15px; height: 15px; }
.vsr-commerce-v2-shop .vsr-shop-v2-hero__route-empty {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px dashed rgba(255,255,255,.12);
  border-radius: 16px;
  color: #fff;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__route-empty span { color: #a9b4c1; font-size: .75rem; line-height: 1.8; }
.vsr-commerce-v2-shop .vsr-shop-v2-hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 9px;
  margin-top: 14px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__stats article {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 15px;
  background: rgba(5,8,12,.22);
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__stats article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: rgba(255,177,22,.09);
  color: #ffd57a;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__stats svg { width: 17px; height: 17px; }
.vsr-commerce-v2-shop .vsr-shop-v2-hero__stats article div { display: grid; gap: 2px; }
.vsr-commerce-v2-shop .vsr-shop-v2-hero__stats strong { color: #fff; font-size: .78rem; font-weight: 900; }
.vsr-commerce-v2-shop .vsr-shop-v2-hero__stats small { color: #8d99a8; font-size: .62rem; }

/* --------------------------------------------------------------------------
   Filter rail
   -------------------------------------------------------------------------- */
.vsr-commerce-v2-shop .vsr-shop-v2-filter {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--vsr-v2-border-soft);
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 32px rgba(14,22,32,.045);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.vsr-commerce-v2-shop .vsr-shop-v2-filter__shell {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 78px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-filter__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--vsr-v2-text-muted);
  font-size: .72rem;
  font-weight: 850;
  white-space: nowrap;
}
.vsr-commerce-v2-shop .vsr-shop-v2-filter__label i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vsr-v2-accent);
  box-shadow: 0 0 0 5px rgba(255,177,22,.12);
}
.vsr-commerce-v2-shop .vsr-shop-v2-filter__rail {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  overflow-x: auto;
  padding: 8px 2px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.vsr-commerce-v2-shop .vsr-shop-v2-filter__rail::-webkit-scrollbar { display: none; }
.vsr-commerce-v2-shop .vsr-shop-v2-filter__rail a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  flex: 0 0 auto;
  padding: 7px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #4b5563;
  font-size: .74rem;
  font-weight: 800;
  white-space: nowrap;
  transition: background var(--vsr-v2-duration-fast) var(--vsr-v2-ease), border-color var(--vsr-v2-duration-fast) var(--vsr-v2-ease), color var(--vsr-v2-duration-fast) var(--vsr-v2-ease);
}
.vsr-commerce-v2-shop .vsr-shop-v2-filter__rail a small {
  display: grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  padding: 0 5px;
  border-radius: 999px;
  background: #edf1f5;
  color: #687482;
  font-size: .62rem;
  font-weight: 900;
}
@media (hover:hover) {
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__rail a:hover {
    border-color: #e1e6ec;
    background: #f6f8fa;
    color: #11151b;
  }
}
.vsr-commerce-v2-shop .vsr-shop-v2-filter__rail a.is-active {
  border-color: #1d2632;
  background: #101720;
  color: #fff;
  box-shadow: 0 8px 20px rgba(10,17,27,.1);
}
.vsr-commerce-v2-shop .vsr-shop-v2-filter__rail a.is-active small { background: rgba(255,255,255,.11); color: #ffd16f; }
.vsr-commerce-v2-shop .vsr-shop-v2-filter__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid #efd490;
  border-radius: 10px;
  background: #fff8e8;
  color: #74520b;
  font-size: .68rem;
  font-weight: 850;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Catalog intro / toolbar
   -------------------------------------------------------------------------- */
.vsr-commerce-v2-shop .vsr-shop-v2-catalog {
  padding: clamp(58px, 7vw, 96px) 0 clamp(70px, 8vw, 112px);
  background:
    linear-gradient(180deg, rgba(238,242,245,.72), transparent 240px),
    var(--vsr-v2-bg-page);
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog__header {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(300px, 390px);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog__intro { max-width: 730px; }
.vsr-commerce-v2-shop .vsr-shop-v2-catalog__intro .vsr-v2-eyebrow { margin-bottom: 14px; }
.vsr-commerce-v2-shop .vsr-shop-v2-catalog__intro h2 {
  max-width: 760px;
  margin-bottom: 13px;
  color: var(--vsr-v2-text-primary) !important;
  font-size: clamp(1.85rem, 3.7vw, 3.45rem);
  font-weight: 950;
  line-height: 1.22;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog__intro > p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--vsr-v2-text-secondary) !important;
  font-size: .92rem;
  line-height: 1.95;
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog__search-state {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  width: fit-content;
  margin-top: 15px;
  padding: 8px 10px;
  border: 1px solid #e5d4aa;
  border-radius: 12px;
  background: #fff9eb;
  color: #6e541c;
  font-size: .72rem;
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog__search-state strong { color: #4d3708; font-weight: 900; }
.vsr-commerce-v2-shop .vsr-shop-v2-catalog__search-state a { color: #735008; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }

.vsr-commerce-v2-shop .vsr-shop-v2-toolbar {
  display: grid;
  gap: 12px;
  padding: 17px;
  border: 1px solid var(--vsr-v2-border-soft);
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--vsr-v2-shadow-xs);
}
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__top strong { color: #1b222c; font-size: .78rem; font-weight: 900; }
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__top span { color: #7b8693; font-size: .64rem; }
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__controls {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 9px;
  align-items: center;
}
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__sort,
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__sort form { width: 100%; margin: 0; }
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__sort .woocommerce-ordering { float: none !important; width: 100%; margin: 0 !important; }
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__sort select.orderby {
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 7px 12px;
  border: 1px solid #d6dce4;
  border-radius: 12px;
  outline: 0;
  background: #fff;
  color: #202733;
  font-family: var(--vsr-v2-font);
  font-size: .72rem;
  font-weight: 750;
  box-shadow: none;
}
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__sort select.orderby:focus { border-color: var(--vsr-v2-focus); box-shadow: var(--vsr-v2-focus-ring); }
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__editor-note {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px dashed #d3dae3;
  border-radius: 12px;
  color: #718090;
  background: #f8fafc;
  font-size: .68rem;
}
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__views {
  display: flex;
  gap: 5px;
  padding: 4px;
  border: 1px solid #dce2e9;
  border-radius: 12px;
  background: #f4f6f8;
}
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__views button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #778392;
  cursor: pointer;
}
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__views button.is-active {
  background: #fff;
  color: #11151b;
  box-shadow: 0 3px 10px rgba(10,17,27,.08);
}
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__views svg { width: 16px; height: 16px; }
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__count {
  min-height: 18px;
  color: #737f8d;
  font-size: .66rem;
}
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__count .woocommerce-result-count { float: none !important; margin: 0 !important; color: inherit !important; font-size: inherit !important; }

/* Extension slots stay inside their own safe island. */
.vsr-commerce-v2-shop .vsr-shop-v2-catalog > .vsr-v2-shell > .vsr-woo-extension-slot {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid var(--vsr-v2-border-soft);
  border-radius: 14px;
  background: #fff;
}

/* --------------------------------------------------------------------------
   Product grid and card
   -------------------------------------------------------------------------- */
.vsr-commerce-v2-shop ul.products.vsr-shop-v2-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0,1fr)) !important;
  gap: clamp(18px, 2.2vw, 28px) !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.vsr-commerce-v2-shop ul.products.vsr-shop-v2-grid::before,
.vsr-commerce-v2-shop ul.products.vsr-shop-v2-grid::after { content: none !important; display: none !important; }
.vsr-commerce-v2-shop ul.products.vsr-shop-v2-grid > li.product.vsr-shop-v2-product {
  float: none !important;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #e2e7ed;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(10,17,27,.055);
  transition: transform var(--vsr-v2-duration-base) var(--vsr-v2-ease), border-color var(--vsr-v2-duration-base) var(--vsr-v2-ease), box-shadow var(--vsr-v2-duration-base) var(--vsr-v2-ease);
}
@media (hover:hover) {
  .vsr-commerce-v2-shop .vsr-shop-v2-product__card:hover {
    transform: translateY(-6px);
    border-color: #cfd7e0;
    box-shadow: 0 24px 54px rgba(10,17,27,.11);
  }
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__media {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #111821;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__image {
  position: absolute;
  inset: 0;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .65s var(--vsr-v2-ease), filter .4s var(--vsr-v2-ease);
}
@media (hover:hover) {
  .vsr-commerce-v2-shop .vsr-shop-v2-product__card:hover .vsr-shop-v2-product__image img { transform: scale(1.055); }
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,10,15,.05) 22%, rgba(7,10,15,.16) 58%, rgba(7,10,15,.76) 100%);
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__family,
.vsr-commerce-v2-shop .vsr-shop-v2-product__badge {
  position: absolute;
  top: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: .64rem;
  font-weight: 850;
  line-height: 1.2;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__family {
  right: 14px;
  background: rgba(8,12,18,.55);
  color: #f7f9fb;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__badge {
  left: 14px;
  border-color: rgba(255,177,22,.38);
  background: rgba(255,177,22,.9);
  color: #201608;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__open {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(7,11,16,.52);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--vsr-v2-duration-fast) var(--vsr-v2-ease), color var(--vsr-v2-duration-fast) var(--vsr-v2-ease), transform var(--vsr-v2-duration-fast) var(--vsr-v2-ease);
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__open svg { width: 17px; height: 17px; }
@media (hover:hover) {
  .vsr-commerce-v2-shop .vsr-shop-v2-product__card:hover .vsr-shop-v2-product__open { transform: translateX(-2px); background: var(--vsr-v2-accent); color: var(--vsr-v2-accent-ink); }
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px 18px 17px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #576372;
  font-size: .64rem;
  font-weight: 800;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #97a2af;
  box-shadow: 0 0 0 4px rgba(151,162,175,.12);
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__status.is-ready { color: #08764d; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__status.is-ready i { background: #12a36f; box-shadow: 0 0 0 4px rgba(18,163,111,.11); }
.vsr-commerce-v2-shop .vsr-shop-v2-product__status.is-waiting { color: #946200; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__status.is-waiting i { background: #d39a1d; box-shadow: 0 0 0 4px rgba(211,154,29,.11); }
.vsr-commerce-v2-shop .vsr-shop-v2-product__delivery {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  max-width: 58%;
  color: #7c8794;
  font-size: .62rem;
  font-weight: 650;
  text-align: left;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__delivery svg { width: 14px; height: 14px; flex: 0 0 auto; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__title {
  margin: 0 0 8px !important;
  padding: 0 !important;
  color: #151b23 !important;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem) !important;
  font-weight: 950 !important;
  line-height: 1.55 !important;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__title a { color: inherit !important; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__copy {
  min-height: 3.7em;
  margin: 0 0 13px;
  color: #5f6a78 !important;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.85;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__deliverables > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 4px 8px;
  border: 1px solid #e8edf2;
  border-radius: 9px;
  background: #f8fafb;
  color: #64707e;
  font-size: .59rem;
  font-weight: 700;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__deliverables i { color: #0a8f62; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__deliverables svg { width: 12px; height: 12px; stroke-width: 2.4; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__footer {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #edf0f3;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__price { display: grid; gap: 3px; min-width: 0; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__price > small { color: #8a94a0; font-size: .59rem; font-weight: 700; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__price > strong,
.vsr-commerce-v2-shop .vsr-shop-v2-product__price .amount,
.vsr-commerce-v2-shop .vsr-shop-v2-product__price bdi {
  color: #111820 !important;
  font-size: .84rem;
  font-weight: 950;
  line-height: 1.55;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__price del { color: #929ba6 !important; opacity: .75; font-size: .68rem; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__price ins { text-decoration: none; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid #d5dce4;
  border-radius: 12px;
  background: #fff;
  color: #1b232d !important;
  font-size: .66rem;
  font-weight: 900;
  white-space: nowrap;
  transition: background var(--vsr-v2-duration-fast) var(--vsr-v2-ease), border-color var(--vsr-v2-duration-fast) var(--vsr-v2-ease), color var(--vsr-v2-duration-fast) var(--vsr-v2-ease);
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__cta svg { width: 14px; height: 14px; }
@media (hover:hover) {
  .vsr-commerce-v2-shop .vsr-shop-v2-product__cta:hover { border-color: #1a222d; background: #101720; color: #fff !important; }
}

/* List view */
.vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view ul.products.vsr-shop-v2-grid {
  grid-template-columns: 1fr !important;
  max-width: 980px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-product__card {
  display: grid;
  grid-template-columns: minmax(260px, 34%) minmax(0,1fr);
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-product__media { aspect-ratio: auto; min-height: 250px; }
.vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-product__copy { min-height: 0; max-width: 650px; }

/* Pagination */
.vsr-commerce-v2-shop .vsr-shop-v2-pagination {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 5vw, 54px);
}
.vsr-commerce-v2-shop .vsr-shop-v2-pagination .woocommerce-pagination { float: none !important; }
.vsr-commerce-v2-shop .vsr-shop-v2-pagination .page-numbers {
  display: flex !important;
  align-items: center;
  gap: 7px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  list-style: none;
}
.vsr-commerce-v2-shop .vsr-shop-v2-pagination .page-numbers li {
  float: none !important;
  margin: 0 !important;
  border: 0 !important;
}
.vsr-commerce-v2-shop .vsr-shop-v2-pagination .page-numbers a,
.vsr-commerce-v2-shop .vsr-shop-v2-pagination .page-numbers span {
  display: grid !important;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 8px !important;
  border: 1px solid #dfe5eb !important;
  border-radius: 12px;
  background: #fff !important;
  color: #303945 !important;
  font-size: .72rem;
  font-weight: 850;
  line-height: 1 !important;
}
.vsr-commerce-v2-shop .vsr-shop-v2-pagination .page-numbers span.current {
  border-color: #141b24 !important;
  background: #101720 !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(10,17,27,.11);
}

/* Empty */
.vsr-commerce-v2-shop .vsr-shop-v2-empty {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid #dfe5eb;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--vsr-v2-shadow-sm);
}
.vsr-commerce-v2-shop .vsr-shop-v2-empty > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fff6df;
  color: #946000;
}
.vsr-commerce-v2-shop .vsr-shop-v2-empty > span svg { width: 24px; height: 24px; }
.vsr-commerce-v2-shop .vsr-shop-v2-empty > div { display: grid; gap: 5px; }
.vsr-commerce-v2-shop .vsr-shop-v2-empty strong { color: #171d25; font-size: 1rem; font-weight: 950; }
.vsr-commerce-v2-shop .vsr-shop-v2-empty p { margin: 0; color: #66717e; font-size: .78rem; line-height: 1.8; }

/* --------------------------------------------------------------------------
   Assurance / process
   -------------------------------------------------------------------------- */
.vsr-commerce-v2-shop .vsr-shop-v2-assurance {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 8vw, 112px) 0;
  background: #0b1017;
  color: #fff;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance::before {
  content: "";
  position: absolute;
  top: -240px;
  left: 12%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(255,177,22,.075);
  filter: blur(20px);
  pointer-events: none;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(320px,.65fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__intro { max-width: 760px; }
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__intro .vsr-v2-eyebrow { margin-bottom: 14px; color: #ffd57a; }
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__intro h2 {
  margin-bottom: 14px;
  color: #fff !important;
  font-size: clamp(1.9rem, 4vw, 3.7rem);
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__intro p {
  max-width: 680px;
  margin: 0;
  color: #aeb9c6 !important;
  font-size: .88rem;
  line-height: 2;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__summary { display: grid; gap: 9px; }
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__summary article {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 15px;
  background: rgba(255,255,255,.035);
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__summary article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(255,177,22,.1);
  color: #ffd57a;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__summary svg { width: 19px; height: 19px; }
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__summary article div { display: grid; gap: 3px; }
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__summary strong { color: #f8fafc; font-size: .78rem; font-weight: 900; }
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__summary small { color: #8f9baa; font-size: .64rem; line-height: 1.6; }
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 12px;
  margin-top: 28px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid article {
  position: relative;
  min-width: 0;
  padding: 20px 18px 19px;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__number {
  display: inline-flex;
  margin-bottom: 22px;
  color: #f4bc48;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .04em;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid h3 {
  margin-bottom: 8px;
  color: #fff !important;
  font-size: .9rem;
  font-weight: 900;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid p {
  margin: 0;
  color: #99a5b3 !important;
  font-size: .7rem;
  line-height: 1.9;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(255,177,22,.19);
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(255,177,22,.095), rgba(255,255,255,.035));
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta > div { display: grid; gap: 5px; }
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta > div span { color: #b2bdca; font-size: .7rem; }
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta > div strong { color: #fff; font-size: .92rem; font-weight: 900; }
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta .vsr-v2-btn { flex: 0 0 auto; }
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta .vsr-v2-btn svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   WooCommerce notices inside the new route
   -------------------------------------------------------------------------- */
.vsr-commerce-v2-shop .vsr-shop-v2-catalog :where(.woocommerce-message,.woocommerce-info,.woocommerce-error) {
  position: relative;
  margin: 0 0 18px !important;
  padding: 14px 16px !important;
  border: 1px solid #dce3ea !important;
  border-top: 1px solid #dce3ea !important;
  border-radius: 14px !important;
  background: #fff !important;
  color: #29323d !important;
  font-size: .76rem !important;
  line-height: 1.8 !important;
  box-shadow: none !important;
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog .woocommerce-message { border-color: #b7e2ce !important; background: #f1fbf6 !important; color: #09643f !important; }
.vsr-commerce-v2-shop .vsr-shop-v2-catalog .woocommerce-error { border-color: #f2c4c0 !important; background: #fff5f4 !important; color: #8f271e !important; }
.vsr-commerce-v2-shop .vsr-shop-v2-catalog :where(.woocommerce-message,.woocommerce-info,.woocommerce-error)::before { content: none !important; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1120px) {
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__shell { grid-template-columns: minmax(0,1fr) minmax(340px,.72fr); gap: 36px; }
  .vsr-commerce-v2-shop ul.products.vsr-shop-v2-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 900px) {
  .vsr-commerce-v2-shop .vsr-shop-v2-hero { padding-top: 58px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__shell { grid-template-columns: 1fr; }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__content { padding-inline-start: 0; }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__title { max-width: 680px; font-size: clamp(2.5rem, 9vw, 4.8rem); }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__finder { max-width: 720px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__shell { grid-template-columns: minmax(0,1fr) auto; }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__label { display: none; }
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog__header { grid-template-columns: 1fr; align-items: start; }
  .vsr-commerce-v2-shop .vsr-shop-v2-toolbar { max-width: 520px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__head { grid-template-columns: 1fr; align-items: start; }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__summary { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .vsr-commerce-v2-shop { --vsr-v2-shell-gutter: 14px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero { padding: 46px 0 48px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__title { margin-bottom: 16px; font-size: clamp(2.15rem, 11vw, 3.7rem); line-height: 1.14; }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__copy { margin-bottom: 22px; font-size: .88rem; line-height: 1.9; }
  .vsr-commerce-v2-shop .vsr-shop-v2-search { grid-template-columns: auto minmax(0,1fr); padding: 7px 9px; border-radius: 16px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-search input[type="search"] { min-height: 46px; font-size: .82rem; }
  .vsr-commerce-v2-shop .vsr-shop-v2-search button { grid-column: 1 / -1; width: 100%; min-height: 46px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__actions { display: grid; grid-template-columns: 1fr; }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__actions .vsr-v2-btn { width: 100%; }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__trust { display: grid; gap: 9px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__finder { padding: 18px; border-radius: 22px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-top > b { display: none; }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__routes a { min-height: 58px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__stats { grid-template-columns: 1fr; }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__shell { min-height: 68px; gap: 9px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__clear { display: none; }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__rail a { min-height: 36px; padding: 6px 10px; font-size: .69rem; }
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog { padding: 48px 0 72px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog__header { gap: 24px; margin-bottom: 26px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog__intro h2 { font-size: clamp(1.75rem, 8vw, 2.65rem); }
  .vsr-commerce-v2-shop .vsr-shop-v2-toolbar { padding: 13px; border-radius: 17px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-toolbar__top span { display: none; }
  .vsr-commerce-v2-shop .vsr-shop-v2-toolbar__views { display: none; }
  .vsr-commerce-v2-shop .vsr-shop-v2-toolbar__controls { grid-template-columns: 1fr; }
  .vsr-commerce-v2-shop ul.products.vsr-shop-v2-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__card { border-radius: 20px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__media { aspect-ratio: 16/10.2; }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__body { padding: 16px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__footer { grid-template-columns: 1fr; align-items: stretch; }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__cta { width: 100%; }
  .vsr-commerce-v2-shop .vsr-shop-v2-empty { grid-template-columns: 1fr; text-align: right; }
  .vsr-commerce-v2-shop .vsr-shop-v2-empty > span { width: 46px; height: 46px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance { padding: 58px 0 68px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__summary { grid-template-columns: 1fr; }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid { grid-template-columns: 1fr; gap: 9px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid article { display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 12px; padding: 16px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__number { margin: 0; padding-top: 3px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta { align-items: stretch; flex-direction: column; }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta .vsr-v2-btn { width: 100%; }
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-product__card { display: flex; }
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-product__media { min-height: 0; aspect-ratio: 16/10.2; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vsr-commerce-v2-shop .vsr-shop-v2-product__card,
  .vsr-commerce-v2-shop .vsr-shop-v2-product__image img,
  .vsr-commerce-v2-shop .vsr-shop-v2-product__open,
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__routes a,
  .vsr-commerce-v2-shop .vsr-shop-v2-search button { transition: none !important; }
}

/* --------------------------------------------------------------------------
   R60 — Shop V3 Phase A full rebuild overrides
   -------------------------------------------------------------------------- */
.vsr-commerce-v2-shop {
  --vsr-shop-v3-surface: #ffffff;
  --vsr-shop-v3-surface-alt: #f6f8fb;
  --vsr-shop-v3-line: rgba(15, 23, 42, 0.08);
  --vsr-shop-v3-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero {
  padding: clamp(44px, 6vw, 86px) 0 clamp(28px, 4vw, 56px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255,183,25,.18), transparent 34%),
    radial-gradient(circle at 88% 14%, rgba(85,104,180,.16), transparent 26%),
    linear-gradient(155deg, #071019 0%, #091522 52%, #0a1320 100%);
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__shell {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: start;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__content { padding-inline-start: 0; }
.vsr-commerce-v2-shop .vsr-shop-v2-hero__title {
  max-width: 720px;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 14px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__copy {
  max-width: 660px;
  margin-bottom: 22px;
  color: #d8dfeb !important;
  font-size: clamp(.98rem, 1.1vw, 1.08rem);
}
.vsr-commerce-v2-shop .vsr-shop-v2-search {
  width: min(100%, 700px);
  padding: 9px 10px 9px 14px;
  border-radius: 20px;
  border-color: rgba(255,255,255,.11);
  background: rgba(255,255,255,.075);
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__actions { margin-top: 16px; gap: 12px; }
.vsr-commerce-v2-shop .vsr-shop-v2-hero__trust { margin-top: 18px; gap: 10px 14px; }
.vsr-commerce-v2-shop .vsr-shop-v3-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 760px);
  margin-top: 22px;
}
.vsr-commerce-v2-shop .vsr-shop-v3-hero__metrics article {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.vsr-commerce-v2-shop .vsr-shop-v3-hero__metrics strong {
  display: block;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 900;
}
.vsr-commerce-v2-shop .vsr-shop-v3-hero__metrics span {
  display: block;
  margin-top: 5px;
  color: #b3bfd0;
  font-size: .74rem;
  line-height: 1.9;
  font-weight: 700;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,249,253,.96));
  color: var(--vsr-v2-text-primary);
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder::after { display: none; }
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-top span {
  color: #8d6a14;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-top strong,
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-copy,
.vsr-commerce-v2-shop .vsr-shop-v2-hero__route-copy strong,
.vsr-commerce-v2-shop .vsr-shop-v2-hero__route-copy small { color: #101828 !important; }
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-top b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff7de;
  color: #6d4c00;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__routes { gap: 10px; }
.vsr-commerce-v2-shop .vsr-shop-v2-hero__routes > a {
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  min-height: 78px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__route-index {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #f7f9fc;
  color: #6c727f;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__stats {
  gap: 10px;
  margin-top: 14px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__stats article {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
}
.vsr-commerce-v2-shop .vsr-shop-v2-filter {
  position: relative;
  z-index: 3;
  margin-top: -12px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-filter__shell {
  padding: 18px 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--vsr-shop-v3-line);
  box-shadow: var(--vsr-shop-v3-shadow);
}
.vsr-commerce-v2-shop .vsr-shop-v2-filter__label {
  min-width: 108px;
  color: #1f2937;
  font-weight: 900;
}
.vsr-commerce-v2-shop .vsr-shop-v2-filter__rail a {
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.08);
  background: #f8fafc;
  color: #1f2937;
  font-weight: 800;
}
.vsr-commerce-v2-shop .vsr-shop-v2-filter__rail a.is-active,
.vsr-commerce-v2-shop .vsr-shop-v2-filter__rail a[aria-current="page"] {
  background: linear-gradient(135deg, #101826, #0e1f38);
  color: #fff;
  border-color: transparent;
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog {
  padding: clamp(32px, 5vw, 54px) 0;
  background:
    radial-gradient(circle at top left, rgba(255,183,25,.10), transparent 22%),
    linear-gradient(180deg, #f6f8fb 0%, #ffffff 22%, #ffffff 100%);
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog__header {
  align-items: stretch;
  gap: 18px;
  margin-bottom: 28px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog__intro,
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar {
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid var(--vsr-shop-v3-line);
  background: var(--vsr-shop-v3-surface);
  box-shadow: var(--vsr-shop-v3-shadow);
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog__intro h2 {
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 1.15;
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog__intro p {
  max-width: 700px;
  color: #596579;
}
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar {
  min-width: min(100%, 360px);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__controls {
  gap: 12px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__views button {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
}
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar__views button.is-active {
  background: #0e1726;
  color: #fff;
  border-color: transparent;
}
.vsr-commerce-v2-shop .vsr-shop-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product { list-style: none; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--vsr-shop-v3-line);
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
@media (hover:hover) {
  .vsr-commerce-v2-shop .vsr-shop-v2-product__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,183,25,.26);
    box-shadow: 0 24px 56px rgba(15,23,42,.12);
  }
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__media {
  min-height: 252px;
  background: linear-gradient(180deg, #0b1220, #101827);
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__overlay {
  background: linear-gradient(180deg, rgba(3,7,18,.05), rgba(3,7,18,.58));
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__family,
.vsr-commerce-v2-shop .vsr-shop-v2-product__badge {
  top: 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__family {
  right: 16px;
  left: auto;
  background: rgba(255,255,255,.92);
  color: #111827;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__badge {
  left: 16px;
  right: auto;
  background: #111827;
  color: #ffd369;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__open {
  width: 44px;
  height: 44px;
  bottom: 16px;
  left: 16px;
  border-radius: 16px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__body { padding: 22px 22px 20px; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__status-row { margin-bottom: 14px; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__title a {
  font-size: 1.28rem;
  line-height: 1.45;
  color: #0f172a;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__copy {
  color: #5c6679;
  min-height: 58px;
  line-height: 2;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__deliverables {
  margin-top: 14px;
  gap: 8px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__deliverables span {
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.06);
  color: #334155;
  font-size: .73rem;
  font-weight: 800;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__footer {
  align-items: end;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15,23,42,.07);
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__price small { color: #7b8798; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__price strong {
  color: #0f172a;
  font-size: 1.24rem;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__cta {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f6b61a, #ffcb55);
  color: #121826;
  font-weight: 900;
  box-shadow: none;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__cta svg { width: 18px; height: 18px; }
.vsr-commerce-v2-shop .vsr-shop-v2-empty {
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--vsr-shop-v3-line);
  box-shadow: var(--vsr-shop-v3-shadow);
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance {
  padding: 26px 0 72px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,183,25,.12), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__head,
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta {
  gap: 18px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__summary article,
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid article,
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta {
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--vsr-shop-v3-line);
  box-shadow: var(--vsr-shop-v3-shadow);
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid {
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid article { padding: 22px; }
@media (max-width: 1100px) {
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__shell,
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog__header {
    grid-template-columns: 1fr;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 767px) {
  .vsr-commerce-v2-shop .vsr-shop-v2-hero {
    padding: 28px 0 18px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-search { grid-template-columns: 1fr; padding: 14px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-search__icon { display: none; }
  .vsr-commerce-v2-shop .vsr-shop-v2-search button { width: 100%; }
  .vsr-commerce-v2-shop .vsr-shop-v3-hero__metrics,
  .vsr-commerce-v2-shop .vsr-shop-v2-grid,
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid { grid-template-columns: 1fr; }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter { margin-top: 12px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__shell,
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog__intro,
  .vsr-commerce-v2-shop .vsr-shop-v2-toolbar,
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid article,
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta { border-radius: 22px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__media { min-height: 220px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__footer { align-items: stretch; }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__cta { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------------------
   R61 — Shop V3 Phase B: hierarchy, conversion guidance, deeper polish
   -------------------------------------------------------------------------- */
.vsr-commerce-v2-shop .vsr-shop-v2-hero__shell {
  position: relative;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__content::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  inset: -32px auto auto -60px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(255,255,255,.018), 0 0 0 92px rgba(255,183,25,.018);
  pointer-events: none;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-top {
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(15,23,42,.07);
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-copy {
  margin-bottom: 14px;
  color: #5f6b7c !important;
  font-size: .82rem;
  line-height: 1.95;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__routes > a {
  position: relative;
  overflow: hidden;
  padding: 12px 14px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__routes > a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,183,25,.72), transparent);
  opacity: 0;
  transition: opacity .2s ease;
}
@media (hover:hover) {
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__routes > a:hover::after { opacity: 1; }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__routes > a:hover {
    transform: translateY(-2px);
    border-color: rgba(255,183,25,.24);
  }
}
.vsr-commerce-v2-shop .vsr-shop-v2-filter__shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}
.vsr-commerce-v2-shop .vsr-shop-v2-filter__rail {
  min-width: 0;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.vsr-commerce-v2-shop .vsr-shop-v2-filter__rail::-webkit-scrollbar { display: none; }
.vsr-commerce-v2-shop .vsr-shop-v2-filter__rail > a { scroll-snap-align: start; white-space: nowrap; }
.vsr-commerce-v2-shop .vsr-shop-v2-catalog__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
}
.vsr-commerce-v2-shop .vsr-shop-v2-toolbar {
  position: sticky;
  top: 96px;
  align-self: start;
  z-index: 2;
}
.vsr-commerce-v2-shop .vsr-shop-v3-decision-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 1px solid rgba(255,183,25,.22);
  border-radius: 22px;
  background: linear-gradient(135deg, #fffaf0 0%, #ffffff 58%, #f8fafc 100%);
  box-shadow: 0 16px 38px rgba(15,23,42,.06);
}
.vsr-commerce-v2-shop .vsr-shop-v3-decision-bar__lead {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}
.vsr-commerce-v2-shop .vsr-shop-v3-decision-bar__lead > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: #fff1bf;
  color: #7a5700;
}
.vsr-commerce-v2-shop .vsr-shop-v3-decision-bar__lead strong {
  display: block;
  color: #111827;
  font-size: .88rem;
  font-weight: 900;
}
.vsr-commerce-v2-shop .vsr-shop-v3-decision-bar__lead small {
  display: block;
  margin-top: 4px;
  color: #667085;
  font-size: .72rem;
  line-height: 1.8;
  font-weight: 600;
}
.vsr-commerce-v2-shop .vsr-shop-v3-decision-bar > a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  background: #101827;
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__footer { margin-top: auto; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__status {
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f1f8f4;
  color: #177245;
  font-weight: 800;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__delivery {
  color: #697586;
  font-weight: 700;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__title { margin-bottom: 8px; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__cta {
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
@media (hover:hover) {
  .vsr-commerce-v2-shop .vsr-shop-v2-product__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(245, 182, 26, .22);
    filter: saturate(1.04);
  }
}
.vsr-commerce-v2-shop .vsr-shop-v2-pagination {
  margin-top: 34px;
  padding: 16px;
  border: 1px solid var(--vsr-shop-v3-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--vsr-shop-v3-shadow);
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__intro h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  line-height: 1.22;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta {
  margin-top: 22px;
  padding: 22px 24px;
  background: linear-gradient(135deg, #0b1421 0%, #101b2d 100%);
  color: #fff;
  border-color: transparent;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta :where(span,strong) { color: #fff; }
@media (max-width: 1100px) {
  .vsr-commerce-v2-shop .vsr-shop-v2-toolbar { position: static; }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__shell { grid-template-columns: 1fr; }
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog__header { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__content::before { display: none; }
  .vsr-commerce-v2-shop .vsr-shop-v3-decision-bar {
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
    border-radius: 20px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v3-decision-bar > a { justify-content: center; width: 100%; }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__shell { padding: 14px; gap: 10px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__label { min-width: 0; }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__rail { margin-inline: -4px; padding-inline: 4px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__rail a { min-height: 44px; padding: 9px 14px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog__intro,
  .vsr-commerce-v2-shop .vsr-shop-v2-toolbar { padding: 19px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__body { padding: 18px; }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta { padding: 18px; }
}

/* --------------------------------------------------------------------------
   R62 — Shop V3 Phase C: final product grid & card rebuild
   -------------------------------------------------------------------------- */
.vsr-commerce-v2-shop .vsr-shop-v2-grid {
  align-items: stretch;
  gap: clamp(18px, 2vw, 26px);
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__card {
  border-radius: 30px;
  background: linear-gradient(180deg, #fff 0%, #fff 72%, #fbfcfe 100%);
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10.4;
  min-height: 0;
  overflow: hidden;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__image,
.vsr-commerce-v2-shop .vsr-shop-v2-product__image img {
  width: 100%;
  height: 100%;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__image img {
  display: block;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform .38s cubic-bezier(.2,.7,.2,1), filter .3s ease;
}
@media (hover:hover) {
  .vsr-commerce-v2-shop .vsr-shop-v2-product__card:hover .vsr-shop-v2-product__image img {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.02);
  }
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__media-footer {
  position: absolute;
  z-index: 3;
  right: 16px;
  left: 16px;
  bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__media-footer > span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(8, 14, 24, .72);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__media-footer i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #ffbf32;
  color: #111827;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__media-footer svg {
  width: 17px;
  height: 17px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__open { display: none !important; }
.vsr-commerce-v2-shop .vsr-shop-v2-product__body {
  padding: 20px 20px 18px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__delivery {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-align: left;
  font-size: .7rem;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__delivery svg {
  width: 15px;
  height: 15px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__title {
  min-height: 2.9em;
  margin: 4px 0 8px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__title a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__copy {
  min-height: 4em;
  margin-bottom: 14px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.vsr-commerce-v2-shop .vsr-shop-v3-product__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px;
  margin: 2px 0 13px;
}
.vsr-commerce-v2-shop .vsr-shop-v3-product__meta > span {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(15,23,42,.065);
  border-radius: 15px;
  background: #f8fafc;
}
.vsr-commerce-v2-shop .vsr-shop-v3-product__meta small,
.vsr-commerce-v2-shop .vsr-shop-v3-product__meta strong {
  display: block;
}
.vsr-commerce-v2-shop .vsr-shop-v3-product__meta small {
  color: #8a94a5;
  font-size: .62rem;
  font-weight: 700;
}
.vsr-commerce-v2-shop .vsr-shop-v3-product__meta strong {
  margin-top: 4px;
  overflow: hidden;
  color: #202939;
  font-size: .69rem;
  font-weight: 900;
  line-height: 1.65;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__deliverables {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 0;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__deliverables span {
  max-width: 100%;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__footer {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  padding-top: 16px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__price {
  min-width: 0;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__price strong {
  display: block;
  overflow-wrap: anywhere;
  line-height: 1.6;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__cta {
  min-width: 136px;
  justify-content: center;
  white-space: nowrap;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product.is-model-quote .vsr-shop-v2-product__cta {
  background: #111b2a;
  color: #fff;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product.is-model-variable .vsr-shop-v2-product__cta {
  background: linear-gradient(135deg, #f6b61a, #ffd067);
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-grid {
  grid-template-columns: 1fr;
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-product__card {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  min-height: 310px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-product__media {
  height: 100%;
  aspect-ratio: auto;
  min-height: 310px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-product__body {
  padding: 24px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-product__title {
  min-height: 0;
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-product__copy {
  min-height: 0;
  -webkit-line-clamp: 3;
}
.vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v3-product__meta {
  max-width: 580px;
}
@media (max-width: 1100px) {
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-product__card {
    grid-template-columns: minmax(240px, .8fr) minmax(0,1.2fr);
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__footer {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__cta { width: 100%; }
}
@media (max-width: 767px) {
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-product__card {
    display: flex;
    min-height: 0;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-product__media {
    min-height: 0;
    aspect-ratio: 16 / 10.4;
  }
  .vsr-commerce-v2-shop .vsr-shop-v3-product__meta { grid-template-columns: 1fr; }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__title,
  .vsr-commerce-v2-shop .vsr-shop-v2-product__copy { min-height: 0; }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__status-row { align-items: flex-start; flex-direction: column; }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__media-footer { right: 12px; left: 12px; bottom: 12px; }
}

/* --------------------------------------------------------------------------
   R63 — Shop V3 Phase D: trust & conversion
   -------------------------------------------------------------------------- */
.vsr-commerce-v2-shop .vsr-shop-v2-assurance {
  padding-top: clamp(44px, 6vw, 74px);
  padding-bottom: clamp(64px, 8vw, 96px);
  background:
    radial-gradient(circle at 85% 10%, rgba(255,190,48,.12), transparent 24%),
    linear-gradient(180deg, #0b1220 0%, #0a111d 100%);
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__head {
  align-items: start;
  margin-bottom: 22px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__intro h2 {
  max-width: 760px;
  color: #fff !important;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__intro p {
  max-width: 760px;
  color: #aeb9c8 !important;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__summary article {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.08);
  box-shadow: none;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid {
  gap: 14px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid article {
  min-height: 170px;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.035));
  border-color: rgba(255,255,255,.075);
  box-shadow: none;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid h3 { color: #fff !important; }
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid p { color: #98a6b8 !important; }
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__number {
  color: #ffc64b;
  border-color: rgba(255,198,75,.22);
  background: rgba(255,198,75,.07);
}
.vsr-commerce-v2-shop .vsr-shop-v3-proof {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  box-shadow: 0 28px 70px rgba(0,0,0,.18);
}
.vsr-commerce-v2-shop .vsr-shop-v3-proof__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.vsr-commerce-v2-shop .vsr-shop-v3-proof__head > span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,190,48,.10);
  color: #ffd36c;
  font-size: .68rem;
  font-weight: 900;
}
.vsr-commerce-v2-shop .vsr-shop-v3-proof__head > strong {
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 900;
  text-align: left;
}
.vsr-commerce-v2-shop .vsr-shop-v3-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.vsr-commerce-v2-shop .vsr-shop-v3-proof__grid article {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 22px;
  background: rgba(8,15,27,.56);
}
.vsr-commerce-v2-shop .vsr-shop-v3-proof__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255,190,48,.10);
  color: #ffd36c;
}
.vsr-commerce-v2-shop .vsr-shop-v3-proof__icon svg { width: 21px; height: 21px; }
.vsr-commerce-v2-shop .vsr-shop-v3-proof__grid h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: .92rem;
  font-weight: 900;
}
.vsr-commerce-v2-shop .vsr-shop-v3-proof__grid p {
  margin: 0;
  color: #94a2b4;
  font-size: .75rem;
  line-height: 1.9;
}
.vsr-commerce-v2-shop .vsr-shop-v3-conversion-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px dashed rgba(255,198,75,.25);
  border-radius: 18px;
  background: rgba(255,198,75,.055);
}
.vsr-commerce-v2-shop .vsr-shop-v3-conversion-note > span {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(255,198,75,.12);
  color: #ffd36c;
}
.vsr-commerce-v2-shop .vsr-shop-v3-conversion-note svg { width: 17px; height: 17px; }
.vsr-commerce-v2-shop .vsr-shop-v3-conversion-note p {
  margin: 0;
  color: #c6cfda;
  font-size: .76rem;
  line-height: 1.9;
  font-weight: 700;
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta {
  margin-top: 16px;
  padding: 24px;
  border-color: rgba(255,255,255,.08);
  background:
    radial-gradient(circle at left top, rgba(255,190,48,.16), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.045));
  box-shadow: 0 28px 70px rgba(0,0,0,.2);
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta > div strong {
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
}
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta .vsr-v2-btn {
  min-height: 52px;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(246,182,26,.18);
}
@media (max-width: 900px) {
  .vsr-commerce-v2-shop .vsr-shop-v3-proof__grid { grid-template-columns: 1fr; }
  .vsr-commerce-v2-shop .vsr-shop-v3-proof__head { align-items: flex-start; flex-direction: column; }
  .vsr-commerce-v2-shop .vsr-shop-v3-proof__head > strong { text-align: right; }
}
@media (max-width: 767px) {
  .vsr-commerce-v2-shop .vsr-shop-v3-proof { padding: 16px; border-radius: 22px; }
  .vsr-commerce-v2-shop .vsr-shop-v3-proof__grid article { grid-template-columns: 42px minmax(0,1fr); padding: 15px; border-radius: 18px; }
  .vsr-commerce-v2-shop .vsr-shop-v3-proof__icon { width: 42px; height: 42px; border-radius: 14px; }
  .vsr-commerce-v2-shop .vsr-shop-v3-conversion-note { align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   R64 — Shop V3 Phase E: mobile polish & final responsive QA
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__content {
    max-width: 760px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__finder {
    width: 100%;
    max-width: none;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog__header {
    grid-template-columns: 1fr;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-toolbar {
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .vsr-commerce-v2-shop {
    overflow-x: clip;
  }
  .vsr-commerce-v2-shop .vsr-v2-shell {
    width: min(100% - 28px, var(--vsr-v2-shell, 1220px));
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero {
    padding: 24px 0 20px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero::before {
    background-size: 42px 42px;
    opacity: .22;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero::after {
    display: none;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__shell {
    gap: 18px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__eyebrow {
    margin-bottom: 12px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__title {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: clamp(2rem, 10.8vw, 3.15rem);
    line-height: 1.12;
    letter-spacing: -.035em;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__copy {
    margin-bottom: 16px;
    font-size: .92rem;
    line-height: 1.95;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-search {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 8px;
    padding: 7px;
    border-radius: 17px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-search__icon {
    display: none;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-search input[type="search"] {
    min-height: 48px;
    padding-inline: 10px;
    font-size: 16px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-search button {
    width: auto;
    min-width: 88px;
    min-height: 48px;
    padding-inline: 14px;
    border-radius: 13px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__actions .vsr-v2-btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__trust > span {
    min-height: 36px;
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 13px;
    background: rgba(255,255,255,.035);
  }
  .vsr-commerce-v2-shop .vsr-shop-v3-hero__metrics {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 7px;
    margin-top: 14px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v3-hero__metrics article {
    min-width: 0;
    padding: 12px 10px;
    border-radius: 16px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v3-hero__metrics strong {
    font-size: 1rem;
  }
  .vsr-commerce-v2-shop .vsr-shop-v3-hero__metrics span {
    font-size: .62rem;
    line-height: 1.55;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__finder {
    padding: 17px;
    border-radius: 22px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-top {
    align-items: center;
    gap: 10px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-top strong {
    font-size: .98rem;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-top b {
    min-width: auto;
    min-height: 34px;
    padding-inline: 10px;
    font-size: .68rem;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-copy {
    margin: 10px 0 12px;
    font-size: .74rem;
    line-height: 1.85;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__routes {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(225px, 82vw);
    gap: 9px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1px 1px 8px;
    scroll-snap-type: inline mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__routes::-webkit-scrollbar {
    display: none;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__routes > a {
    min-height: 72px;
    scroll-snap-align: start;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__stats {
    grid-template-columns: 1fr 1fr;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter {
    margin-top: 10px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__shell {
    display: block;
    padding: 12px;
    border-radius: 19px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__label {
    margin: 0 0 9px;
    min-width: 0;
    padding-inline: 4px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__rail {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scroll-snap-type: inline proximity;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__rail::-webkit-scrollbar {
    display: none;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__rail a {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 8px 14px;
    scroll-snap-align: start;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__clear {
    display: inline-flex;
    margin-top: 9px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog {
    padding: 22px 0 38px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog__header {
    gap: 11px;
    margin-bottom: 16px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog__intro,
  .vsr-commerce-v2-shop .vsr-shop-v2-toolbar {
    padding: 18px;
    border-radius: 21px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog__intro h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog__intro p {
    font-size: .82rem;
    line-height: 1.9;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-toolbar__top {
    margin-bottom: 10px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-toolbar__controls {
    align-items: stretch;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-toolbar__sort {
    flex: 1 1 auto;
    min-width: 0;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-toolbar__sort :where(select,.orderby) {
    width: 100%;
    min-height: 46px;
    font-size: 16px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-toolbar__views {
    display: none;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-grid,
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-product__card {
    display: flex;
    min-height: 0;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__card {
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(15,23,42,.08);
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__media,
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-product__media {
    min-height: 0;
    aspect-ratio: 16 / 10.2;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__body,
  .vsr-commerce-v2-shop .vsr-shop-v2-catalog.is-list-view .vsr-shop-v2-product__body {
    padding: 17px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__status-row {
    gap: 8px;
    margin-bottom: 10px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__title a {
    font-size: 1.12rem;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__copy {
    display: -webkit-box;
    min-height: 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: .79rem;
  }
  .vsr-commerce-v2-shop .vsr-shop-v3-product__meta {
    gap: 7px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__deliverables {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__deliverables::-webkit-scrollbar {
    display: none;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__deliverables span {
    flex: 0 0 auto;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 14px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__cta {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    justify-content: center;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-pagination :where(a,span) {
    min-width: 42px;
    min-height: 42px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance {
    padding: 38px 0 52px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__head {
    gap: 14px;
    margin-bottom: 14px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__summary {
    grid-template-columns: 1fr;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__grid article {
    min-height: 0;
    padding: 17px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v3-proof {
    margin-top: 14px;
    padding: 14px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v3-proof__grid {
    gap: 9px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v3-proof__grid article {
    padding: 14px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta .vsr-v2-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .vsr-commerce-v2-shop .vsr-v2-shell {
    width: min(100% - 20px, var(--vsr-v2-shell, 1220px));
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-search {
    grid-template-columns: 1fr;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-search button {
    width: 100%;
  }
  .vsr-commerce-v2-shop .vsr-shop-v3-hero__metrics {
    grid-template-columns: 1fr;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__stats {
    grid-template-columns: 1fr;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__status-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (hover: none) and (pointer: coarse) {
  .vsr-commerce-v2-shop :where(
    .vsr-shop-v2-filter__rail a,
    .vsr-shop-v2-product__cta,
    .vsr-shop-v2-search button,
    .vsr-shop-v2-hero__actions .vsr-v2-btn,
    .vsr-shop-v2-assurance__cta .vsr-v2-btn
  ) {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-product__card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vsr-commerce-v2-shop .vsr-shop-v2-product__card,
  .vsr-commerce-v2-shop .vsr-shop-v2-product__cta,
  .vsr-commerce-v2-shop .vsr-shop-v2-filter__rail,
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__routes {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* --------------------------------------------------------------------------
   R65 — Shop hero minimal refresh + dark button contrast fix
   -------------------------------------------------------------------------- */
.vsr-commerce-v2-shop .vsr-shop-v2-hero {
  padding: clamp(32px, 5vw, 64px) 0 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255,183,25,.12), transparent 26%),
    linear-gradient(180deg, #07111c 0%, #081321 58%, #091522 100%);
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero::before,
.vsr-commerce-v2-shop .vsr-shop-v2-hero::after { display: none; }
.vsr-commerce-v2-shop .vsr-shop-v2-hero__shell {
  gap: 26px;
  grid-template-columns: minmax(0,1.1fr) minmax(300px,.72fr);
  align-items: center;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__title {
  max-width: 640px;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 12px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__copy {
  max-width: 590px;
  margin-bottom: 18px;
  color: #d3dceb !important;
}
.vsr-commerce-v2-shop .vsr-shop-v2-search {
  width: min(100%, 640px);
  gap: 8px;
  padding: 8px 8px 8px 12px;
  border-radius: 18px;
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}
.vsr-commerce-v2-shop .vsr-shop-v2-search__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-search input[type="search"] {
  min-height: 48px;
  font-size: .9rem;
}
.vsr-commerce-v2-shop .vsr-shop-v2-search button {
  min-height: 46px;
  padding-inline: 16px;
  border-radius: 12px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__actions {
  gap: 10px;
  margin-top: 14px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__actions .vsr-v2-btn,
.vsr-commerce-v2-shop .vsr-shop-v2-hero__actions .vsr-shop-v2-hero__secondary {
  min-height: 48px;
  padding-inline: 18px;
  border-radius: 14px;
}
.vsr-commerce-v2-shop .vsr-shop-v3-hero__metrics {
  width: min(100%, 640px);
  gap: 10px;
  margin-top: 16px;
}
.vsr-commerce-v2-shop .vsr-shop-v3-hero__metrics article {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
  box-shadow: none;
}
.vsr-commerce-v2-shop .vsr-shop-v3-hero__metrics strong {
  font-size: 1.08rem;
}
.vsr-commerce-v2-shop .vsr-shop-v3-hero__metrics span {
  margin-top: 3px;
  font-size: .7rem;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 44px rgba(6,13,26,.16);
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-top { margin-bottom: 8px; }
.vsr-commerce-v2-shop .vsr-shop-v2-hero__finder-copy {
  font-size: .88rem;
  line-height: 1.9;
  color: #667085 !important;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__routes > a {
  min-height: 66px;
  padding: 10px 12px;
  border-radius: 16px;
  box-shadow: none;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__route-copy strong {
  font-size: .92rem;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__route-copy small {
  font-size: .72rem;
  color: #7a8393 !important;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__route-index {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__stats {
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.vsr-commerce-v2-shop .vsr-shop-v2-hero__stats article {
  padding: 12px;
  border-radius: 16px;
  box-shadow: none;
}

/* Fix unreadable text on dark buttons */
.vsr-commerce-v2-shop .vsr-shop-v2-product__cta,
.vsr-commerce-v2-shop .vsr-shop-v2-product__cta:link,
.vsr-commerce-v2-shop .vsr-shop-v2-product__cta:visited,
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta .vsr-v2-btn,
.vsr-commerce-v2-shop .vsr-v2-btn--dark,
.vsr-commerce-v2-shop .button.alt,
.vsr-commerce-v2-shop .single_add_to_cart_button,
.vsr-commerce-v2-shop a.button.alt {
  color: #ffffff !important;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__cta svg,
.vsr-commerce-v2-shop .vsr-shop-v2-assurance__cta .vsr-v2-btn svg,
.vsr-commerce-v2-shop .vsr-v2-btn--dark svg,
.vsr-commerce-v2-shop .button.alt svg {
  color: #ffffff !important;
  stroke: currentColor !important;
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__cta {
  background: linear-gradient(135deg, #0f172a, #16243a) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 16px 28px rgba(7, 12, 22, 0.18);
}
.vsr-commerce-v2-shop .vsr-shop-v2-product__cta span { color: #ffffff !important; }
@media (hover:hover) {
  .vsr-commerce-v2-shop .vsr-shop-v2-product__cta:hover {
    background: linear-gradient(135deg, #14213a, #1b2d49) !important;
    color: #ffffff !important;
  }
}
@media (max-width: 991px) {
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__shell {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
@media (max-width: 767px) {
  .vsr-commerce-v2-shop .vsr-shop-v2-hero {
    padding: 22px 0 14px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-hero__title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }
  .vsr-commerce-v2-shop .vsr-shop-v2-search {
    padding: 12px;
  }
  .vsr-commerce-v2-shop .vsr-shop-v3-hero__metrics {
    grid-template-columns: 1fr;
  }
}
