/**
 * Vaishnavi Printers — Online shop design system
 * VP DS: Ink / Flame / Gold — Open Sans (body + bold headings)
 */
:root {
  --vp-ink: #0f1923;
  --vp-ink2: #1e2d3d;
  --vp-ink3: #2d4a6b;
  --vp-flame: #ff4d1c;
  --vp-flame2: #ff7a47;
  --vp-gold: #ffb800;
  --vp-gold2: #ffd354;
  --vp-sky: #0099ff;
  --vp-mint: #00c896;
  --vp-paper: #fffdf7;
  --vp-paper2: #f5f0e8;
  --vp-paper3: #ede8de;
  --vp-shadow: 0 4px 24px rgba(15, 25, 35, 0.13);
  --vp-shadow-lg: 0 12px 48px rgba(15, 25, 35, 0.18);
  --vp-r-xl: 28px;

  --shop-primary: var(--vp-ink);
  --shop-accent: var(--vp-flame);
  --shop-bg: var(--vp-paper);
  --shop-card: #ffffff;
  --shop-text: var(--vp-ink);
  --shop-text-muted: var(--vp-ink3);
  --shop-success: var(--vp-mint);
  --shop-border: var(--vp-paper3);
  --shop-radius-card: 12px;
  --shop-radius-btn: 10px;
  --shop-shadow-sm: 0 1px 2px rgba(15, 25, 35, 0.06);
  --shop-shadow-card: var(--vp-shadow);
  --shop-container: 80rem;
  --shop-shadow-lg: var(--vp-shadow-lg);
  --shop-shadow-header: 0 4px 24px rgba(15, 25, 35, 0.25);
  --shop-gradient-page: linear-gradient(165deg, var(--vp-paper) 0%, var(--vp-paper2) 42%, #fff 100%);
  --shop-radius-xl: 20px;
}

.shop-page {
  font-family: 'Open Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--shop-text);
  background: var(--shop-bg);
  line-height: 1.5;
}

.shop-section-title,
.shop-logo,
.shop-page-title,
.shop-hero-content h1,
.vp-promo-banner__title,
.vp-feature-tile__title,
.shop-spotlight-title {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.shop-page-title,
.shop-section-title {
  font-weight: 800;
}

.shop-container {
  width: 100%;
  max-width: var(--shop-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

.shop-card {
  background: var(--shop-card);
  border-radius: var(--shop-radius-card);
  box-shadow: var(--shop-shadow-sm);
  border: 1px solid var(--shop-border);
}

.shop-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.35rem;
  border-radius: 14px;
  font-weight: 600;
  background: var(--vp-flame);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 4px 16px rgba(255, 77, 28, 0.35);
}
.shop-btn-primary:hover {
  transform: translateY(-2px);
  background: var(--vp-flame2);
  box-shadow: 0 8px 24px rgba(255, 77, 28, 0.4);
}

.shop-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.35rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--vp-gold);
  color: var(--vp-ink);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 4px 16px rgba(255, 184, 0, 0.38);
}
.shop-btn-gold:hover {
  transform: translateY(-2px);
  background: var(--vp-gold2);
  box-shadow: 0 8px 24px rgba(255, 184, 0, 0.45);
}

.shop-btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.25rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(255, 255, 255, 0.38);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.shop-btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.shop-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  background: transparent;
  color: var(--vp-flame);
  border: 2px solid var(--vp-flame);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.shop-btn-outline:hover {
  background: var(--vp-flame);
  color: #fff;
}

.shop-header .shop-btn-outline {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.35);
}
.shop-header .shop-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.shop-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.625rem 1.25rem;
  border-radius: 14px;
  font-weight: 600;
  background: var(--vp-paper2);
  color: var(--vp-ink);
  border: 1.5px solid var(--vp-paper3);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.shop-btn-secondary:hover {
  background: var(--vp-paper3);
  border-color: var(--vp-ink3);
}

.shop-price {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--shop-accent);
}

/* --- Layout: header / footer / bottom nav --- */
.shop-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vp-ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shop-shadow-header);
}
.shop-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}
.shop-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  text-decoration: none;
}
.shop-logo--brand {
  gap: 0.45rem;
  align-items: center;
  max-width: min(100%, 100vw - 2rem);
}
.shop-logo-img {
  height: auto;
  width: auto;
  max-height: 2.65rem;
  max-width: 4.1rem;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .shop-logo-img {
    max-height: 3.1rem;
    max-width: 4.75rem;
  }
}
.shop-logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(0.88rem, 2.4vw, 1.12rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
}
.shop-logo-wordmark-gold {
  color: var(--vp-gold);
}
.shop-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.15;
}
.shop-logo-line1 {
  font-size: 1.05rem;
}
.shop-logo-gold {
  color: var(--vp-gold);
}
.shop-logo-tagline {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.15rem;
  letter-spacing: 0.03em;
}
.shop-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 8px;
  background: var(--vp-flame);
  color: #fff;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(255, 77, 28, 0.35);
}
.shop-svg-icon {
  display: block;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.85);
}
.shop-nav-desktop {
  display: none;
  gap: 0.25rem;
  align-items: center;
}
.shop-nav-desktop a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.shop-nav-desktop a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.shop-header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: nowrap;
}
.shop-header .shop-btn-outline.shop-btn-sm {
  min-height: 0;
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
}
.shop-header .shop-wa-btn {
  padding: 0.35rem 0.6rem;
  font-size: 0.78rem;
}
.shop-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  color: #fff;
}
.shop-cart-btn .shop-svg-icon {
  color: #fff;
}
.shop-cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--vp-flame);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  min-width: 1rem;
  text-align: center;
  border-radius: 999px;
  padding: 0 4px;
  border: 2px solid var(--vp-ink);
}
.shop-wa-btn {
  background: #25d366;
  color: #fff !important;
  padding: 0.45rem 0.75rem;
  border-radius: var(--shop-radius-btn);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}
.shop-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  color: #fff;
}
.shop-nav-mobile {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--vp-ink2);
}
.shop-nav-mobile a {
  padding: 0.6rem 0;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.shop-nav-mobile[hidden] {
  display: none !important;
}
/* Align with shop-search.css: desktop nav row at 992px+ */
@media (min-width: 992px) {
  .shop-nav-desktop:not(.shop-nav-desktop--below) {
    display: flex;
  }
  .shop-nav-toggle {
    display: none;
  }
  .shop-nav-mobile {
    display: none !important;
  }
}

.shop-main {
  min-height: 50vh;
  padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 992px) {
  .shop-main {
    padding-bottom: 0;
  }
}

.shop-footer {
  background: var(--shop-primary);
  color: #e2e8f0;
  padding: 2.5rem 0 0;
  margin-top: 2rem;
}
.shop-footer a {
  color: #fff;
}
.shop-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .shop-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.shop-footer-heading {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.shop-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-footer-links li {
  margin-bottom: 0.35rem;
}
.shop-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1.5rem;
  padding: 0.75rem 0;
  font-size: 0.85rem;
  opacity: 0.85;
}

.shop-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  justify-content: space-around;
  background: var(--shop-card);
  border-top: 1px solid var(--shop-border);
  padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 12px rgba(15, 23, 42, 0.06);
}
.shop-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.65rem;
  color: var(--shop-text-muted);
  text-decoration: none;
  min-width: 3rem;
  padding: 0.25rem;
}
.shop-bottom-nav span:first-child {
  font-size: 1.1rem;
}
@media (min-width: 992px) {
  .shop-bottom-nav {
    display: none;
  }
}

/* Sections */
.shop-section {
  padding: 2.5rem 0;
}
.shop-section--muted {
  background: var(--vp-paper2);
}
.shop-section--compact {
  padding-top: 1.5rem;
}

/* Home: Stickers + Business cards side by side (saves vertical space on wide screens) */
.shop-section--spotlight-pair {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.shop-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .shop-spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.shop-spotlight-card {
  margin: 0;
  padding: 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-align: left;
}
.shop-spotlight-card .shop-spotlight-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 2.5vw, 1.3rem);
}
.shop-spotlight-card .shop-spotlight-lead {
  margin: 0 0 1rem;
  max-width: none;
  flex: 1 1 auto;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--shop-text-muted);
}
.shop-spotlight-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.shop-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--shop-primary);
  margin: 0 0 1.25rem;
}
.shop-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.shop-link-all {
  color: var(--shop-accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}
.shop-pad {
  padding: 1rem 1.25rem;
}
.shop-alert {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: var(--shop-radius-card);
}

/* Hero + Swiper */
.shop-hero {
  position: relative;
}
.shop-hero-swiper {
  width: 100%;
  min-height: 280px;
}
.shop-hero-slide {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 1.25rem 0 2.75rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .shop-hero-swiper,
  .shop-hero-slide {
    min-height: 380px;
  }
  .shop-hero-slide {
    padding: 1.5rem 0 3rem;
  }
}
.shop-hero-slide--fallback {
  background: linear-gradient(135deg, var(--vp-ink) 0%, var(--vp-ink2) 55%, #0a0f14 100%);
  position: relative;
}
.shop-hero-slide--fallback::after {
  content: '';
  position: absolute;
  inset: 0;
  left: 38%;
  background: linear-gradient(135deg, var(--vp-flame) 0%, var(--vp-gold) 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.88;
  pointer-events: none;
}
.shop-hero-slide--printing {
  background-color: #1e293b;
}
.shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 25, 35, 0.82), rgba(15, 25, 35, 0.25));
  z-index: 1;
}
.shop-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 1rem 0 0;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}
.shop-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vp-gold);
  margin: 0 0 0.5rem;
}
.shop-hero-content h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.shop-hero-content h1 em {
  color: var(--vp-gold);
  font-style: normal;
}
.shop-hero-content p,
.shop-hero-lead {
  margin: 0 0 0.85rem;
  opacity: 0.95;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.shop-hero-content p.shop-hero-lead:last-of-type {
  margin-bottom: 0;
}
.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 2.35rem;
  width: 100%;
}
/* Admin-set position: center of button group at X% / Y% of slide (see shop-home-banners) */
.shop-hero-actions--placed {
  position: absolute;
  left: var(--vp-hero-cta-x, 50%);
  top: var(--vp-hero-cta-y, 50%);
  transform: translate(-50%, -50%);
  margin-top: 0;
  width: auto;
  max-width: min(92vw, 28rem);
  z-index: 3;
  justify-content: center;
  pointer-events: auto;
  box-sizing: border-box;
}
.shop-hero-deco {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.shop-hero-slide--fallback .shop-hero-deco {
  display: flex;
}
.shop-hero-deco-icon {
  font-size: 2.25rem;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}
@media (max-width: 767px) {
  .shop-hero-deco {
    display: none !important;
  }
}
.shop-hero-dots {
  bottom: 12px !important;
}
.shop-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding: 0.75rem 0 1.25rem;
  font-size: 0.8rem;
  color: var(--vp-ink3);
  justify-content: center;
  font-weight: 500;
}
.shop-hero-trust span::before {
  content: '✓ ';
  color: var(--vp-mint);
  font-weight: 700;
}

/* Category grid */
.shop-cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .shop-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .shop-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.shop-cat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.shop-cat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shop-shadow-card);
}
.shop-cat-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.shop-cat-name {
  font-weight: 700;
  color: var(--shop-primary);
  margin-bottom: 0.25rem;
}
.shop-cat-badge {
  font-size: 0.75rem;
  color: var(--shop-text-muted);
  background: #f1f5f9;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

/* Product scroll / grid */
.shop-product-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.shop-product-scroll .shop-product-card {
  flex: 0 0 min(260px, 85vw);
  scroll-snap-align: start;
}
.shop-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .shop-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .shop-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.shop-product-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1.5px solid var(--vp-paper3);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s ease, border-color 0.22s ease;
}
.shop-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vp-shadow-lg);
  border-color: rgba(255, 77, 28, 0.45);
}
.shop-product-card-link {
  text-decoration: none;
  color: inherit;
  padding: 1rem 1rem 0;
  flex: 1;
}
.shop-product-thumb {
  aspect-ratio: 1;
  background: #f1f5f9;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  position: relative;
}
.shop-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-product-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 10rem;
  background: #f1f5f9;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.shop-badge-featured {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--shop-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
}
.shop-badge-cat {
  font-size: 0.7rem;
  color: var(--shop-text-muted);
  display: block;
  margin-bottom: 0.25rem;
}
.shop-product-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--shop-text);
}
.shop-product-desc {
  font-size: 0.85rem;
  color: var(--shop-text-muted);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}
.shop-product-price {
  font-weight: 700;
  color: var(--shop-accent);
  font-variant-numeric: tabular-nums;
}
.shop-price-was {
  text-decoration: line-through;
  color: var(--shop-text-muted);
  font-weight: 600;
  font-size: 0.9em;
  margin-right: 0.35rem;
}
.shop-badge-promo {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #dc2626;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  max-width: 70%;
  line-height: 1.2;
  z-index: 1;
}
.shop-product-promo-text {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #dc2626;
}
.shop-product-cta {
  margin: 0.75rem 1rem 1rem;
  text-align: center;
  justify-content: center;
}

/* Homepage: product grid under hero */
.shop-section--home-products {
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
}
.shop-section-head--tight {
  margin-bottom: 1rem;
  align-items: flex-start;
}
.shop-home-products-lead {
  margin: 0.5rem 0 0;
  max-width: 42rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--shop-text-muted);
}
.shop-product-grid--home {
  gap: 1rem;
}
@media (min-width: 1100px) {
  .shop-product-grid--home {
    grid-template-columns: repeat(4, 1fr);
  }
}
.shop-product-card--home .shop-product-card-link {
  padding-bottom: 0.35rem;
}
.shop-home-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
  margin-top: auto;
}
.shop-home-product-actions .shop-btn-primary,
.shop-home-product-actions .shop-btn-secondary {
  text-align: center;
  justify-content: center;
  font-size: 0.8rem;
  padding: 0.55rem 0.5rem;
  white-space: nowrap;
}
.shop-home-product-actions .shop-btn-secondary:disabled {
  opacity: 0.65;
}
.shop-home-product-actions--single {
  grid-template-columns: 1fr;
}

/* Why / steps */
.shop-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .shop-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .shop-why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.shop-why-item {
  padding: 1rem 1.25rem;
}
.shop-why-item strong {
  display: block;
  color: var(--shop-primary);
  margin-bottom: 0.35rem;
}
.shop-why-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--shop-text-muted);
}
.shop-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 900px) {
  .shop-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.shop-steps li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--shop-card);
  border-radius: var(--shop-radius-card);
  border: 1px solid var(--shop-border);
}
.shop-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--shop-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Category page */
.shop-breadcrumb {
  font-size: 0.85rem;
  color: var(--shop-text-muted);
  margin-bottom: 1rem;
}
.shop-breadcrumb a {
  color: var(--shop-accent);
  text-decoration: none;
}
.shop-page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--shop-primary);
  margin: 0 0 0.5rem;
}
.shop-cat-desc {
  color: var(--shop-text-muted);
  max-width: 48rem;
}
.shop-cat-meta {
  font-size: 0.9rem;
  color: var(--shop-text-muted);
  margin-top: 0.5rem;
}
.shop-sort-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.25rem 0;
  flex-wrap: wrap;
}
.shop-sort-bar select {
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--shop-border);
}

/* Product detail */
.shop-product-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .shop-product-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.shop-product-mainimg img {
  width: 100%;
  border-radius: var(--shop-radius-card);
  display: block;
}

/* Product gallery — horizontal swipe + arrows */
.shop-product-carousel {
  position: relative;
  width: 100%;
}
.shop-product-carousel__viewport {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: var(--shop-radius-card);
  background: #f8fafc;
}
.shop-product-carousel__viewport::-webkit-scrollbar {
  display: none;
}
.shop-product-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-sizing: border-box;
}
.shop-product-carousel__slide img {
  width: 100%;
  height: auto;
  max-height: min(85vh, 520px);
  object-fit: contain;
  display: block;
  vertical-align: middle;
  border-radius: var(--shop-radius-card);
  background: #fff;
}
.shop-product-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s;
}
.shop-product-carousel__btn:hover {
  background: rgba(15, 23, 42, 0.75);
}
.shop-product-carousel__btn--prev {
  left: 0.5rem;
}
.shop-product-carousel__btn--next {
  right: 0.5rem;
}
.shop-product-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
  flex-wrap: wrap;
}
.shop-product-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.shop-product-carousel__dot.is-active {
  background: var(--shop-accent, #2563eb);
  transform: scale(1.15);
}
.shop-product-mainph {
  aspect-ratio: 1;
  background: #f1f5f9;
  border-radius: var(--shop-radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}
.shop-product-lead {
  color: var(--shop-text-muted);
  margin: 0 0 1rem;
}
.shop-price-lg {
  font-size: 1.35rem;
}
.shop-panel-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--shop-primary);
}
.shop-field {
  margin-bottom: 1rem;
}
.shop-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--shop-text-muted);
  margin-bottom: 0.35rem;
}
.shop-input {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--shop-border);
  border-radius: 8px;
  font-size: 0.95rem;
  box-sizing: border-box;
}
.shop-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.shop-radio-group--block {
  flex-direction: column;
  gap: 0.35rem;
}
.shop-radio {
  font-size: 0.9rem;
  cursor: pointer;
}
.shop-summary {
  margin-top: 1rem;
}
.shop-summary-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--shop-primary);
}
.shop-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.shop-summary-total {
  font-weight: 600;
  border-bottom: none;
  padding-top: 0.5rem;
}
.shop-summary-grand {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--shop-accent);
  border-bottom: none;
}
.shop-product-actions {
  margin-top: 1rem;
}
.shop-btn-block {
  width: 100%;
  justify-content: center;
}
.shop-hint {
  font-size: 0.8rem;
  color: var(--shop-text-muted);
  margin-top: 0.5rem;
}

.shop-tabs-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.shop-tab-btn {
  background: #f1f5f9;
  border: none;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: var(--shop-text-muted);
}
.shop-tab-btn.is-active {
  background: var(--shop-primary);
  color: #fff;
}
.shop-tab-panel {
  font-size: 0.95rem;
  line-height: 1.6;
}
.shop-prose {
  white-space: pre-wrap;
}
.shop-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.shop-spec-table th,
.shop-spec-table td {
  border: 1px solid var(--shop-border);
  padding: 0.5rem 0.75rem;
  text-align: left;
}
.shop-spec-table th {
  background: #f8fafc;
  width: 40%;
}

.shop-textarea {
  resize: vertical;
  min-height: 6rem;
  line-height: 1.45;
}
.shop-card-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.shop-hint-tight {
  margin-top: 0.75rem;
}
.shop-cart-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .shop-cart-layout {
    grid-template-columns: 1fr 300px;
  }
}
.shop-cart-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 600px) {
  .shop-cart-row {
    grid-template-columns: 1fr auto auto auto;
  }
}
.shop-cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--shop-border);
  border-radius: 8px;
  overflow: hidden;
}
.shop-qty-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: #f8fafc;
  color: var(--shop-primary);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
.shop-qty-btn:hover {
  background: #e2e8f0;
}
.shop-qty-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.shop-qty-num {
  min-width: 2rem;
  text-align: center;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding: 0 0.35rem;
}
.shop-cart-title {
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
  font-weight: 600;
}
.shop-cart-title a {
  color: var(--shop-primary);
  text-decoration: none;
}
.shop-cart-title a:hover {
  text-decoration: underline;
}
.shop-cart-meta {
  margin: 0;
  font-size: 0.875rem;
  color: var(--shop-text-muted);
}
.shop-cart-row-price {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--shop-text);
}
.shop-checkout-layout {
  display: grid;
  gap: 1.5rem;
  max-width: 40rem;
}
@media (min-width: 900px) {
  .shop-checkout-layout {
    grid-template-columns: 1fr 280px;
    max-width: none;
  }
}
.shop-payment-box p {
  margin: 0 0 0.75rem;
}
.shop-payment-amount {
  font-size: 1.1rem;
  margin: 1rem 0 !important;
}

/* --- Premium shell (v5): depth, rhythm, polish --- */
.shop-page {
  background: var(--shop-gradient-page);
  background-attachment: fixed;
}

/* Header surface: dark ink (VP DS) — defined in layout section above */

.shop-logo-mark {
  border-radius: 10px;
}

.shop-card {
  border-radius: var(--shop-radius-xl);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.95);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.shop-card--elevated {
  box-shadow: var(--shop-shadow-lg);
}

.shop-card--elevated:hover {
  box-shadow: 0 16px 48px rgba(31, 56, 100, 0.14);
}

.shop-card--inset {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border: 1px dashed rgba(31, 56, 100, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.shop-container--narrow {
  max-width: 32rem;
}

.shop-page-hero {
  margin-bottom: 1.75rem;
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.shop-page-hero-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--shop-accent);
  margin: 0 0 0.5rem;
}

.shop-page-title--xl {
  font-size: clamp(1.65rem, 4vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.shop-page-lead {
  margin: 0;
  color: var(--shop-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.shop-input {
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--shop-border);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.shop-input:focus {
  outline: none;
  border-color: var(--shop-primary);
  box-shadow: 0 0 0 3px rgba(31, 56, 100, 0.15);
}

.shop-input--readonly,
.shop-input[readonly] {
  background: #f1f5f9;
  color: #475569;
  cursor: default;
}

.shop-input--readonly:focus,
.shop-input[readonly]:focus {
  border-color: var(--shop-border);
  box-shadow: none;
}

.shop-btn-primary {
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(230, 81, 0, 0.25);
}

.shop-btn-primary--pulse {
  animation: shop-pulse-soft 2.5s ease-in-out infinite;
}

@keyframes shop-pulse-soft {
  0%, 100% { box-shadow: 0 2px 8px rgba(230, 81, 0, 0.25); }
  50% { box-shadow: 0 4px 20px rgba(230, 81, 0, 0.45); }
}

.shop-btn-primary:disabled,
.shop-btn-primary[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  animation: none;
  box-shadow: none;
}

.shop-footer {
  position: relative;
  border-top: 3px solid var(--shop-accent);
  box-shadow: 0 -8px 32px rgba(31, 56, 100, 0.15);
}

.shop-footer-desc {
  opacity: 0.9;
  font-size: 0.9rem;
  line-height: 1.5;
}

.shop-bottom-nav a {
  transition: color 0.15s ease, transform 0.15s ease;
}

.shop-bottom-nav a:active {
  transform: scale(0.96);
}

.shop-section-title {
  position: relative;
  padding-bottom: 0.35rem;
}

.shop-section-title::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--shop-accent), rgba(230, 81, 0, 0.3));
  margin-top: 0.5rem;
}

.shop-cat-card {
  border-radius: var(--shop-radius-xl);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.shop-product-card {
  border-radius: var(--shop-radius-xl);
}

/* Checkout OTP */
.shop-otp-panel {
  margin: 1rem 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
}

.shop-otp-panel-head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.shop-otp-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.shop-otp-panel-head strong {
  display: block;
  color: var(--shop-primary);
  font-size: 0.95rem;
}

.shop-otp-actions {
  margin-bottom: 0.5rem;
}

.shop-otp-fields {
  margin-top: 0.75rem;
}

.shop-field--inline {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .shop-field--inline {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
  .shop-field--inline label {
    grid-column: 1 / -1;
  }
}

.shop-input--otp {
  letter-spacing: 0.35em;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
}

.shop-otp-msg {
  min-height: 1.25rem;
  margin-top: 0.5rem !important;
}

.shop-verified-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  color: #166534;
  font-weight: 600;
  font-size: 0.9rem;
}

.shop-verified-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  background: #22c55e;
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.shop-hint--tight {
  margin-top: 0.25rem !important;
}

.shop-payment-order {
  font-size: 1rem;
  color: var(--shop-text-muted);
}

.shop-payment-page .shop-payment-box {
  text-align: center;
}

.shop-payment-page .shop-payment-amount {
  font-size: 1.35rem;
  color: var(--shop-primary);
}

.shop-payment-page .shop-payment-amount strong {
  color: var(--shop-accent);
  font-size: 1.5rem;
}

.shop-container--payment {
  max-width: 36rem;
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}

.shop-breadcrumb {
  font-size: 0.8125rem;
  color: var(--shop-text-muted);
  margin: 0 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.shop-breadcrumb a {
  color: var(--shop-primary);
  font-weight: 600;
  text-decoration: none;
}

.shop-breadcrumb a:hover {
  text-decoration: underline;
}

.shop-breadcrumb-sep {
  opacity: 0.45;
  user-select: none;
}

.shop-breadcrumb-current {
  color: var(--shop-text-muted);
  font-weight: 500;
}

.shop-payment-shell {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.shop-payment-hero.shop-page-hero {
  margin-bottom: 0;
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 640px) {
  .shop-payment-hero.shop-page-hero {
    text-align: center;
  }
  .shop-breadcrumb {
    justify-content: center;
  }
}

.shop-payment-summary {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.shop-payment-order-num {
  font-weight: 700;
  color: var(--shop-primary);
  letter-spacing: 0.02em;
}

.shop-payment-customer {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--shop-text-muted);
}

.shop-payment-trust {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--shop-text-muted);
}

.shop-payment-trust li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  line-height: 1.25;
}

.shop-payment-trust-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: #f0fdf4;
  color: #15803d;
  font-size: 0.65rem;
  font-weight: 800;
}

.shop-payment-footnote {
  margin-top: 1rem !important;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

/* ─── VP DS: announcement bar, promos, feature tiles, category pills ─── */
.vp-announce-bar {
  background: var(--vp-paper);
  padding: 0.4rem 0 0.15rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}
.vp-announce-bar__shell {
  max-width: var(--shop-container);
}
.vp-announce-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  line-height: 1.45;
  text-align: center;
  background: linear-gradient(90deg, var(--vp-flame), var(--vp-flame2));
  border-radius: 10px;
  padding: 0.45rem 1rem;
  box-shadow: 0 4px 20px rgba(255, 77, 28, 0.22);
}
.vp-announce-bar strong {
  font-size: 0.8rem;
}
.vp-announce-bar__sep {
  opacity: 0.7;
  font-weight: 400;
}

.shop-header .shop-hint {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.shop-header .shop-search-mobile-trigger {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.shop-section--flush {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.shop-section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vp-flame);
  margin: 0 0 0.25rem;
}

.shop-section-title--ds {
  margin-bottom: 0;
  padding-bottom: 0;
}
.shop-section-title--ds::after {
  display: none;
}

.shop-section-head--ds {
  align-items: flex-end;
  margin-bottom: 1rem;
}
.shop-section-head--ds .shop-section-title--ds {
  margin-bottom: 0;
}
.shop-section-head--ds + .shop-cat-strip-wrap {
  margin-top: 0.25rem;
}

/* Promo banners (home) */
.vp-promo-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.vp-promo-banner {
  border-radius: var(--vp-r-xl);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.vp-promo-banner:hover {
  transform: translateY(-2px);
  box-shadow: var(--vp-shadow-lg);
}
.vp-promo-banner--primary {
  background: linear-gradient(135deg, var(--vp-ink) 0%, var(--vp-ink2) 100%);
  border: 2px solid var(--vp-flame);
  color: #fff;
}
.vp-promo-banner__tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vp-gold);
  margin: 0 0 0.35rem;
}
.vp-promo-banner__title {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  line-height: 1.2;
  color: #fff;
}
.vp-promo-banner__sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 0.75rem;
  line-height: 1.45;
}
.vp-promo-banner__emoji {
  font-size: 2.75rem;
  line-height: 1;
  flex-shrink: 0;
}
.vp-promo-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.vp-promo-banner .shop-btn-primary {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}
.vp-promo-row2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .vp-promo-row2 {
    grid-template-columns: 1fr 1fr;
  }
}
.vp-promo-banner--sunset {
  background: linear-gradient(135deg, var(--vp-gold) 0%, var(--vp-flame) 100%);
  color: #fff;
  min-height: auto;
}
.vp-promo-banner--sunset .vp-promo-banner__tag {
  color: rgba(255, 255, 255, 0.85);
}
.vp-promo-banner--sunset .vp-promo-banner__sub {
  color: rgba(255, 255, 255, 0.8);
}
.vp-promo-banner--aqua {
  background: linear-gradient(135deg, var(--vp-sky) 0%, var(--vp-mint) 100%);
  color: #fff;
}
.vp-promo-banner--aqua .vp-promo-banner__tag {
  color: rgba(255, 255, 255, 0.85);
}
.vp-promo-banner--aqua .vp-promo-banner__sub {
  color: rgba(255, 255, 255, 0.78);
}
.vp-promo-banner--sunset .shop-btn-primary,
.vp-promo-banner--aqua .shop-btn-primary {
  background: var(--vp-ink);
  color: #fff;
  box-shadow: 0 4px 16px rgba(15, 25, 35, 0.35);
}
.vp-promo-banner--sunset .shop-btn-primary:hover,
.vp-promo-banner--aqua .shop-btn-primary:hover {
  background: var(--vp-ink2);
}

/* Quick feature / ad strip */
.vp-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
@media (min-width: 768px) {
  .vp-feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.vp-feature-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1rem 1rem 1.1rem;
  background: var(--shop-card);
  border: 1.5px solid var(--vp-paper3);
  border-radius: var(--shop-radius-xl);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.vp-feature-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vp-flame), var(--vp-gold));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.vp-feature-tile:hover {
  border-color: var(--vp-flame);
  box-shadow: var(--vp-shadow);
  transform: translateY(-3px);
}
.vp-feature-tile:hover::before {
  opacity: 1;
}
.vp-feature-tile__ad {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vp-flame);
}
.vp-feature-tile__icon {
  font-size: 1.5rem;
  line-height: 1;
}
.vp-feature-tile__title {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--vp-ink);
  margin: 0;
  line-height: 1.25;
}
.vp-feature-tile__desc {
  font-size: 0.72rem;
  color: var(--vp-ink3);
  margin: 0;
  line-height: 1.4;
}

/* Category horizontal strip (DS pills) */
.shop-cat-strip-wrap {
  margin-bottom: 0.5rem;
}
.shop-cat-strip {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.shop-cat-strip::-webkit-scrollbar {
  height: 4px;
}
.shop-cat-strip::-webkit-scrollbar-thumb {
  background: var(--vp-paper3);
  border-radius: 4px;
}
.shop-cat-pill {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  background: var(--shop-card);
  border: 1.5px solid var(--vp-paper3);
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.shop-cat-pill:hover {
  background: var(--vp-flame);
  border-color: var(--vp-flame);
  color: #fff;
  transform: translateY(-1px);
}
.shop-cat-pill:hover .shop-cat-pill-name,
.shop-cat-pill:hover .shop-cat-pill-count {
  color: #fff;
}
.shop-cat-pill:hover .shop-cat-pill-icon {
  background: rgba(255, 255, 255, 0.22);
}
.shop-cat-pill--active {
  background: var(--vp-flame);
  border-color: var(--vp-flame);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 77, 28, 0.35);
}
.shop-cat-pill--active .shop-cat-pill-name,
.shop-cat-pill--active .shop-cat-pill-count {
  color: #fff;
}
.shop-cat-pill--active .shop-cat-pill-icon {
  background: rgba(255, 255, 255, 0.22);
}
.shop-cat-pill-icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 8px;
  background: var(--vp-paper2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.18s ease;
}
.shop-cat-pill-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vp-ink);
}
.shop-cat-pill-count {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--vp-ink3);
  background: var(--vp-paper2);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.shop-hero .swiper-pagination-bullet-active {
  background: var(--vp-gold);
}
.shop-hero .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}
