  /* ==========================================================================
     Product detail page — extends the shared style.css visual system
     ========================================================================== */

  .product-page { padding: 28px 0 8px; }
  .product-page__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 52px;
    align-items: start;
  }

  /* --- Gallery --- */
  .product-gallery__main {
    aspect-ratio: 1 / 1;
    background: var(--peach);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
  .product-gallery__thumbs { display: flex; gap: 12px; margin-top: 14px; }
  .product-gallery__thumb {
    width: 88px; height: 88px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    background: var(--peach);
    padding: 0;
    transition: border-color var(--transition), opacity var(--transition);
    opacity: 0.75;
  }
  .product-gallery__thumb:hover { opacity: 1; }
  .product-gallery__thumb.is-active { border-color: var(--navy); opacity: 1; }
  .product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* --- Buy column --- */
  .product-buy__meta { font-style: italic; opacity: 0.75; margin: 2px 0 14px; font-size: 0.98rem; }
  .product-buy__price {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--navy);
    font-size: 2rem;
    margin: 4px 0 2px;
  }
  .product-buy__price span { font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; color: var(--ink); opacity: 0.6; }
  .product-buy__desc { font-size: 1rem; line-height: 1.7; margin-top: 6px; }

  .field-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: 0.8;
    margin: 22px 0 8px;
  }

  .buy-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 8px 0 6px;
  }
  #atb-anchor { display: block; height: 1px; }

  .stock-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--badge-veg);
    font-weight: 600;
    margin: 14px 0 0;
  }
  .stock-note svg { width: 16px; height: 16px; }

  /* --- You may also like sidebar box --- */
  .also-like-box {
    margin-top: 34px;
    padding: 22px;
    background: var(--cream2);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
  }
  .also-like-box h4 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-size: 1.05rem;
    margin: 0 0 4px;
  }
  .also-like-box .also-like-sub { font-size: 0.85rem; opacity: 0.65; margin: 0 0 14px; }
  .also-like-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--rule);
  }
  .also-like-item:first-of-type { border-top: none; padding-top: 0; }
  .also-like-item img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); flex: 0 0 auto; }
  .also-like-item__info { flex: 1 1 auto; min-width: 0; }
  .also-like-item__name { font-family: var(--font-heading); font-weight: 700; color: var(--navy); font-size: 0.9rem; }
  .also-like-item__price { font-size: 0.83rem; opacity: 0.7; margin-top: 2px; }
  .also-like-item__add {
    flex: 0 0 auto;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    border: none;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition), color var(--transition);
  }
  .also-like-item__add:hover { background: var(--pink); color: var(--navy); }
  .also-like-item__add svg { width: 18px; height: 18px; }

  @media (max-width: 900px) {
    .product-page__grid { grid-template-columns: 1fr; gap: 32px; }
  }

  /* --- Our Story block --- */
  .story-block { padding: 8px 24px 0; }
  .story-block__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .story-block__media { min-height: 320px; background: var(--peach); }
  .story-block__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .story-block__copy {
    background: var(--navy);
    color: var(--cream2);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .story-block__copy h2 { color: var(--white); }
  .story-block__copy p { color: var(--cream2); opacity: 0.85; }
  @media (max-width: 760px) {
    .story-block__inner { grid-template-columns: 1fr; }
    .story-block__media { min-height: 220px; }
  }

  /* --- Recently Viewed strip --- */
  .recently-viewed { padding: 56px 24px 16px; }
  .recently-viewed__head { display: flex; align-items: baseline; justify-content: space-between; max-width: var(--max-width); margin: 0 auto 20px; }
  .rv-strip {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
  }
  .rv-strip::-webkit-scrollbar { height: 8px; }
  .rv-strip::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 999px; }
  .rv-card { flex: 0 0 232px; scroll-snap-align: start; }

  /* --- misc page furniture --- */
  .breadcrumb-row { max-width: var(--max-width); margin: 20px auto 0; padding: 0 24px; }
