/* ==========================================================================
   SHOP PAGE — deep voice, dry permission-to-self-serve
   ========================================================================== */

.shop-intro {
  padding: var(--space-xl) 0 var(--space-md);
  background: var(--ink);
}

.shop-intro .eyebrow-deep {
  font-size: var(--fs-caption);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-tint);
  opacity: 0.75;
  margin-bottom: var(--space-sm);
}

.shop-intro h1 {
  font-size: 30px;
  color: var(--paper);
  margin-bottom: var(--space-md);
}

.shop-intro p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--paper-tint);
}

.shop-section {
  padding: var(--space-lg) 0;
  border-top: 0.5px solid var(--deep-line);
}

.shop-section-alt {
  background: #FAFAF8;
}

.shop-section-head {
  margin-bottom: var(--space-md);
}

.shop-section-head h2 {
  font-size: 22px;
  color: var(--text-deep);
  margin-bottom: 6px;
}

.shop-section-note {
  font-size: 13px;
  color: var(--text-deep-soft);
  margin: 0;
}

/* ---- Product grid (affiliate) ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.product-card {
  border: 0.5px solid var(--deep-line);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
}

.product-thumb {
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.product-thumb-label {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-deep-soft);
}

.product-thumb-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text-deep);
}

.product-card p {
  font-size: 13px;
  color: var(--text-deep-soft);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: var(--space-sm);
}

.product-link,
.guide-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--deep-accent);
}

.product-link:hover,
.guide-link:hover {
  text-decoration: underline;
}

.product-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-sm);
}

.product-card-bottom .product-link {
  padding-bottom: 4px;
}

.product-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.product-qr img {
  width: 56px;
  height: 56px;
  display: block;
  background: #FFFFFF;
  border: 0.5px solid var(--deep-line);
  border-radius: 4px;
  padding: 3px;
}

.product-qr span {
  font-size: 9px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-deep-soft);
  white-space: nowrap;
}

/* On a TV/kiosk display, QR codes need to be scannable from further back */
.shop-tv-mode .product-qr img {
  width: 96px;
  height: 96px;
}

.shop-tv-mode .product-qr span {
  font-size: 12px;
}

/* ---- Complete routine bundle ---- */
.oh-bundle-section {
  margin-top: var(--space-xl);
}

.oh-bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.oh-bundle {
  padding: var(--space-md);
  border: 0.5px solid var(--deep-line);
  border-radius: var(--radius-md);
  background: var(--paper-tint);
}

.oh-bundle h3 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text-deep);
}

.oh-bundle p {
  font-size: 13px;
  color: var(--text-deep-soft);
  margin-bottom: var(--space-sm);
}

.oh-bundle-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.oh-bundle-list li {
  font-size: 13px;
}

.oh-bundle-list a {
  color: var(--deep-accent);
  font-weight: 500;
}

.oh-bundle-list a:hover {
  text-decoration: underline;
}

/* ---- Voucher grid ---- */
.voucher-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.voucher-card {
  border: 0.5px solid var(--deep-line);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  background: var(--deep-bg);
}

.voucher-amount {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-deep);
  margin-bottom: 4px;
}

.voucher-desc {
  font-size: 13px;
  color: var(--text-deep-soft);
  margin-bottom: var(--space-sm);
}

/* ---- Guide grid ---- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.guide-card {
  border: 0.5px solid var(--deep-line);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
}

.guide-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: var(--space-sm);
}

.guide-tag-free {
  background: #EAF3EF;
  color: var(--deep-accent);
}

.guide-tag-paid {
  background: #F5EAE2;
  color: var(--deep-accent-warn);
}

.guide-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text-deep);
}

.guide-card p {
  font-size: 13px;
  color: var(--text-deep-soft);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

@media (max-width: 880px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .voucher-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .oh-bundle-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}
