/* We Yone — product detail page (new pages only; does not affect existing pages) */
main { min-height: 60vh; }
.pd-crumbs { padding: 22px 0 4px; font-size: 0.85rem; color: var(--muted); }
.pd-crumbs a { color: var(--muted); }
.pd-crumbs a:hover { color: var(--blue); }
.pd-crumbs span { margin: 0 2px; }
.pd { padding: 18px 0 72px; }
.pd-inner { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 48px; align-items: start; }
.pd-media { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.pd-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pd-media img.pd-logo { object-fit: contain; padding: 15%; background: var(--cream); }
.pd-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; z-index: 2; }
.pd-info { padding-top: 6px; }
.pd-cat { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 10px; }
.pd-info h1 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.pd-price { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.8rem; color: var(--blue); margin-bottom: 18px; }
.pd-price.muted { color: var(--muted); }
.pd-desc { color: var(--muted); font-size: 1.02rem; margin-bottom: 22px; }
.pd-specs { display: grid; gap: 0; border-top: 1px solid var(--line); margin-bottom: 26px; }
.pd-specs > div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.pd-specs dt { color: var(--muted); font-size: 0.9rem; }
.pd-specs dd { font-weight: 600; font-size: 0.9rem; text-align: right; }
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.pd-actions .btn { flex: 1 1 auto; text-align: center; }
.pd-cartline { color: var(--green-dark); font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; }
.pd-cartline a { text-decoration: underline; }
.pd-store { font-size: 0.86rem; color: var(--muted); margin-top: 8px; }
.pd-related { border-top: 1px solid var(--line); margin-top: 56px; padding-top: 34px; }
.pd-related h2 { font-size: 1.4rem; margin-bottom: 22px; }
.pd-related-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 18px; }
.pd-related-list a { display: flex; flex-direction: column; gap: 8px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 12px; color: var(--ink); transition: box-shadow .2s, transform .2s; }
.pd-related-list a:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pd-related-list img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; }
.pd-related-list span { font-size: 0.85rem; line-height: 1.3; }
.pd-related-list .p { font-weight: 700; color: var(--blue); }
.pd-nutrition { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 30px; }
.pd-nutrition h2 { font-size: 1.4rem; margin-bottom: 18px; }
.pd-nutri-card { max-width: 420px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; }
.pd-nutri-serving { font-size: 0.9rem; color: var(--muted); padding-bottom: 10px; border-bottom: 2px solid var(--ink); }
.pd-nutri-cal { display: flex; align-items: baseline; justify-content: space-between; padding: 10px 0; border-bottom: 4px solid var(--ink); }
.pd-nutri-cal span { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.3rem; }
.pd-nutri-cal strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.9rem; }
.pd-nutri-list { margin: 0; }
.pd-nutri-row { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.pd-nutri-row:last-child { border-bottom: 0; }
.pd-nutri-row dt { color: var(--ink); font-size: 0.92rem; }
.pd-nutri-row dd { font-weight: 600; font-size: 0.92rem; }
.pd-nutri-note { font-size: 0.82rem; color: var(--muted); margin-top: 12px; max-width: 560px; line-height: 1.5; }
@media (max-width: 820px) {
  .pd-inner { grid-template-columns: 1fr; gap: 26px; }
}
