/* ============ SHOP / PAGE HEADER ============ */
.page-header { background: var(--navy); color: var(--cream); text-align: center; padding: 64px 24px 56px; }
.page-header .eyebrow { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.page-header h1 { font-family: 'Playfair Display', Georgia, serif; color: #fff; font-size: clamp(30px, 5vw, 48px); line-height: 1.1; }
.page-header p { color: var(--cream); max-width: 620px; margin: 12px auto 0; font-size: 16px; line-height: 1.6; }

.shop-wrap { max-width: 1000px; margin: 0 auto; padding: 60px 24px 80px; display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 820px) { .shop-wrap { grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; } }

.product-media { position: relative; aspect-ratio: 1 / 1; align-self: start; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 26px rgba(22,40,60,0.12); background: #fff; }
.product-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }

.product-name { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(26px, 4vw, 36px); color: var(--navy); font-weight: 700; line-height: 1.1; }
.product-price { font-family: 'Playfair Display', Georgia, serif; font-size: 30px; color: var(--orange-deep); font-weight: 800; margin: 6px 0 18px; }
.product-desc { color: var(--text); line-height: 1.7; margin-bottom: 22px; }

.size-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-soft); font-weight: 700; margin-bottom: 8px; }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.size-btn { min-width: 50px; padding: 11px 14px; border: 1.5px solid var(--tan); background: #fff; color: var(--navy); border-radius: 8px; font-family: inherit; font-weight: 600; font-size: 14px; cursor: pointer; transition: all .15s; }
.size-btn:hover { border-color: var(--orange); }
.size-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.buy-btn { display: block; width: 100%; text-align: center; background: var(--orange); color: #FFF7EC; padding: 16px 28px; border: 0; border-radius: var(--radius); font-family: inherit; font-weight: 700; font-size: 15px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.buy-btn:hover { background: var(--orange-deep); color: #FFF7EC; }
.shop-note { font-size: 13px; color: var(--text-soft); margin-top: 14px; line-height: 1.6; }
