/*
Theme Name: Pure Cradle
Theme URI: https://purecradle.com
Author: Pure Cradle
Description: Custom WooCommerce theme for Pure Cradle — baby & mother care. Converted from the Pure Cradle design mockup.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: purecradle
Tags: e-commerce, woocommerce
*/

/* ---------- Fonts (self-hosted, GDPR friendly) ---------- */
@font-face { font-family: 'DM Serif Display'; font-style: normal; font-weight: 400; font-display: swap; src: url("assets/fonts/dm-serif.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'DM Serif Display'; font-style: normal; font-weight: 400; font-display: swap; src: url("assets/fonts/dm-serif-ext.woff2") format("woff2"); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'DM Serif Display'; font-style: italic; font-weight: 400; font-display: swap; src: url("assets/fonts/dm-serif-italic.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'DM Serif Display'; font-style: italic; font-weight: 400; font-display: swap; src: url("assets/fonts/dm-serif-italic-ext.woff2") format("woff2"); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Nunito'; font-style: normal; font-weight: 400 800; font-display: swap; src: url("assets/fonts/nunito.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Nunito'; font-style: normal; font-weight: 400 800; font-display: swap; src: url("assets/fonts/nunito-ext.woff2") format("woff2"); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Nunito'; font-style: italic; font-weight: 400 800; font-display: swap; src: url("assets/fonts/nunito-italic.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* ---------- Tokens & base ---------- */
:root {
  --pc-bg: #FFFCF5;
  --pc-ink: #2E2A22;
  --pc-ink-soft: #42392c;
  --pc-teal: #35707F;
  --pc-teal-dark: #285663;
  --pc-teal-pale: #CFE4E8;
  --pc-yellow: #FBD24E;
  --pc-yellow-dark: #f5c633;
  --pc-cream: #FDEEBE;
  --pc-border: #ECE6DA;
  --pc-border2: #E6D9B8;
  --pc-muted: #6B6459;
  --pc-muted2: #8a8170;
  --pc-muted3: #a79a82;
  --pc-gold: #F2B705;
  --pc-serif: 'DM Serif Display', Georgia, serif;
  --pc-sans: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--pc-bg); color: var(--pc-ink); font-family: var(--pc-sans); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: var(--pc-teal); text-decoration: none; }
a:hover { color: var(--pc-teal-dark); }
img { max-width: 100%; height: auto; }
::selection { background: var(--pc-yellow); color: var(--pc-ink); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--pc-border); border-radius: 10px; }

body { overflow-x: clip; }
.pc-site { min-height: 100vh; display: flex; flex-direction: column; }
.pc-main { flex: 1; }
.pc-wrap { max-width: 1240px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

h1, h2, h3, .pc-serif { font-family: var(--pc-serif); font-weight: 400; color: var(--pc-ink); }
.pc-h1 { font-size: 42px; margin: 0 0 8px; line-height: 1.08; }
.pc-h2 { font-size: 34px; margin: 0; }
.pc-lead { color: var(--pc-muted); font-size: 17px; margin: 0 0 28px; max-width: 600px; }

button { font-family: var(--pc-sans); }
.pc-btn { display: inline-block; border: none; border-radius: 12px; padding: 15px 26px; font-family: var(--pc-sans); font-weight: 800; font-size: 16px; cursor: pointer; text-align: center; transition: background .15s, color .15s; }
.pc-btn-dark { background: var(--pc-ink); color: var(--pc-bg); }
.pc-btn-dark:hover { background: var(--pc-ink-soft); color: var(--pc-bg); }
.pc-btn-light { background: #fff; color: var(--pc-ink); border: 1px solid var(--pc-border2); }
.pc-btn-light:hover { background: #fffef9; color: var(--pc-ink); }
.pc-btn-yellow { background: var(--pc-yellow); color: var(--pc-ink); }
.pc-btn-yellow:hover { background: var(--pc-yellow-dark); color: var(--pc-ink); }
.pc-link-btn { background: none; border: none; color: var(--pc-teal); font-weight: 800; font-size: 15px; cursor: pointer; padding: 0; }
.pc-link-btn:hover { color: var(--pc-teal-dark); }

/* ---------- Announcement bar ---------- */
.pc-bar { background: var(--pc-ink); color: var(--pc-cream); font-size: 13px; font-weight: 600; letter-spacing: .02em; padding: 9px 24px; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.pc-bar .pc-dot { opacity: .4; }

/* ---------- Header ---------- */
.pc-header { position: sticky; top: 0; z-index: 40; background: rgba(255,252,245,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--pc-border); }
.pc-header-in { max-width: 1240px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 24px; }
.pc-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; color: var(--pc-ink); }
.pc-logo:hover { color: var(--pc-ink); }
.pc-logo-name { font-family: var(--pc-serif); font-size: 23px; color: var(--pc-ink); line-height: 1; }
.pc-logo-sub { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--pc-muted3); font-weight: 700; margin-top: 3px; }
.pc-nav { display: flex; gap: 6px; margin-left: 14px; }
.pc-navlink { display: inline-block; background: none; border: none; font-size: 15px; font-weight: 700; color: var(--pc-ink); padding: 9px 13px; border-radius: 9px; white-space: nowrap; }
.pc-navlink:hover { background: var(--pc-cream); color: var(--pc-ink); }
.pc-actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.pc-icon-btn { background: none; border: none; padding: 9px; border-radius: 10px; cursor: pointer; color: var(--pc-ink); display: inline-flex; align-items: center; }
.pc-icon-btn:hover { background: var(--pc-cream); color: var(--pc-ink); }
.pc-cart-btn { position: relative; background: var(--pc-yellow); border: none; padding: 10px 14px; border-radius: 11px; cursor: pointer; color: var(--pc-ink); display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; }
.pc-cart-btn:hover { background: var(--pc-yellow-dark); }
.pc-burger { display: none; flex-shrink: 0; }
.pc-burger .pc-burger-close { display: none; }
.pc-burger.open .pc-burger-open { display: none; }
.pc-burger.open .pc-burger-close { display: block; }
.pc-mobile-nav { display: none; border-top: 1px solid var(--pc-border); background: #fffdf6; }
.pc-mobile-nav.open { display: block; }
.pc-mobile-navlink { display: block; padding: 14px 24px; font-size: 16px; font-weight: 700; color: var(--pc-ink); border-bottom: 1px solid var(--pc-border); }
.pc-mobile-navlink:last-child { border-bottom: none; }
.pc-mobile-navlink:hover { background: var(--pc-cream); color: var(--pc-ink); }
.pc-search { display: none; border-top: 1px solid var(--pc-border); background: #fffdf6; }
.pc-search.open { display: block; }
.pc-search form { max-width: 1240px; margin: 0 auto; padding: 12px 24px; display: flex; gap: 10px; }
.pc-search input[type="search"] { flex: 1; padding: 12px 16px; border: 1px solid var(--pc-border2); border-radius: 11px; font-family: var(--pc-sans); font-size: 15px; background: #fff; color: var(--pc-ink); }
.pc-search button { border: none; background: var(--pc-ink); color: var(--pc-bg); font-weight: 800; padding: 12px 22px; border-radius: 11px; cursor: pointer; }

/* ---------- Breadcrumb ---------- */
.pc-crumb { font-size: 13px; color: var(--pc-muted2); font-weight: 700; margin-bottom: 10px; }
.pc-crumb a { color: var(--pc-muted2); }
.pc-crumb a:hover { color: var(--pc-teal); }

/* ---------- Hero ---------- */
.pc-hero { padding-top: 40px; padding-bottom: 8px; }
.pc-hero-card { background: var(--pc-cream); border-radius: 28px; padding: 52px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; min-height: 419px; }
.pc-hero-pill { align-self: flex-start; background: #fff; color: var(--pc-teal); font-weight: 800; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; padding: 7px 14px; border-radius: 100px; margin-bottom: 20px; }
.pc-hero-card h1 { font-size: 52px; line-height: 1.04; margin: 0 0 18px; }
.pc-hero-card p { font-size: 18px; line-height: 1.6; color: var(--pc-muted); margin: 0 0 28px; max-width: 430px; }
.pc-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.pc-hero-mark { position: absolute; opacity: .5; width: 236px; height: 232px; right: -60px; bottom: -80px; pointer-events: none; }

/* ---------- Trust strip ---------- */
.pc-trust { padding-top: 20px; padding-bottom: 20px; }
.pc-trust-in { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; border-top: 1px solid var(--pc-border); border-bottom: 1px solid var(--pc-border); padding: 16px 4px; }
.pc-trust-item { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; color: var(--pc-muted); }
.pc-trust-item .pc-star { color: var(--pc-gold); font-size: 18px; }

/* ---------- Section headers ---------- */
.pc-section { padding-top: 24px; padding-bottom: 8px; }
.pc-section-lg { padding-top: 40px; padding-bottom: 8px; }
.pc-section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 20px; gap: 16px; }
.pc-section-sub { color: var(--pc-muted); margin: 0 0 20px; font-size: 16px; }

/* ---------- Category cards ---------- */
.pc-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pc-cat-card { cursor: pointer; border-radius: 20px; padding: 22px; min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; transition: transform .15s; color: var(--pc-ink); }
.pc-cat-card:hover { transform: translateY(-4px); color: var(--pc-ink); }
.pc-cat-mono { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; font-family: var(--pc-serif); font-size: 22px; color: var(--pc-ink); }
.pc-cat-name { font-weight: 800; font-size: 16px; color: var(--pc-ink); }
.pc-cat-count { font-size: 13px; color: #5f5747; margin-top: 2px; }

/* ---------- Stage cards ---------- */
.pc-stage-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.pc-stage-card { cursor: pointer; border: 1px solid var(--pc-border); border-radius: 18px; padding: 20px; background: #fff; text-align: center; color: var(--pc-ink); display: block; }
.pc-stage-card:hover { border-color: var(--pc-yellow); background: #fffdf6; color: var(--pc-ink); }
.pc-stage-icon { width: 68px; height: 68px; border-radius: 50%; background: rgba(255,255,255,.85); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; box-shadow: 0 4px 14px rgba(46,42,34,.06); }
.pc-stage-name { font-weight: 800; font-size: 15px; }
.pc-stage-sub { font-size: 12px; color: var(--pc-muted2); margin-top: 2px; }

/* ---------- Health teaser ---------- */
.pc-teaser { background: var(--pc-teal); border-radius: 28px; padding: 44px; color: #fff; display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: center; }
.pc-kicker { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #CFE4E8; margin-bottom: 12px; }
.pc-teaser h2 { font-size: 36px; margin: 0 0 14px; line-height: 1.1; color: #fff; }
.pc-teaser p { font-size: 16px; line-height: 1.6; color: #D8E8EB; margin: 0 0 22px; }
.pc-tip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pc-tip-card { cursor: pointer; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 16px; padding: 18px; color: #fff; display: block; }
.pc-tip-card:hover { background: rgba(255,255,255,.18); color: #fff; }
.pc-tip-tag { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--pc-yellow); margin-bottom: 7px; }
.pc-tip-title { font-weight: 700; font-size: 15px; line-height: 1.35; }

/* ---------- Product cards ---------- */
.pc-prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pc-prod-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pc-card { border: 1px solid var(--pc-border); border-radius: 20px; overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.pc-card:hover { border-color: var(--pc-border2); }
.pc-card-media { display: flex; aspect-ratio: 1 / 1; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.pc-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pc-card-mono { font-family: var(--pc-serif); font-size: 60px; color: rgba(46,42,34,.35); }
.pc-badge { position: absolute; top: 12px; left: 12px; background: #fff; color: var(--pc-ink); font-size: 11px; font-weight: 800; padding: 5px 10px; border-radius: 100px; }
.pc-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pc-card-name { font-weight: 700; font-size: 15px; line-height: 1.3; color: var(--pc-ink); }
.pc-card-name:hover { color: var(--pc-teal); }
.pc-card-rating { font-size: 13px; color: var(--pc-muted2); }
.pc-card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pc-price { font-family: var(--pc-serif); font-size: 20px; color: var(--pc-ink); }
.pc-price .woocommerce-Price-amount { font-family: var(--pc-serif); }
.pc-price del { color: var(--pc-muted3); font-size: 15px; margin-right: 6px; }
.pc-price ins { text-decoration: none; }
.pc-add { background: var(--pc-cream); color: var(--pc-ink); border: none; padding: 9px 14px; border-radius: 10px; font-weight: 800; font-size: 13px; cursor: pointer; }
.pc-add:hover { background: var(--pc-yellow); }
.pc-add.loading { opacity: .5; pointer-events: none; }
.pc-btn.pc-add { background: var(--pc-ink); color: var(--pc-bg); }
.pc-btn.pc-add:hover { background: var(--pc-ink-soft); }

/* ---------- Tools teaser ---------- */
.pc-tools-teaser { border: 2px dashed var(--pc-border2); border-radius: 24px; padding: 34px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; background: #FFFDF6; }
.pc-tools-teaser h2 { font-size: 30px; margin: 0 0 8px; }
.pc-tools-teaser p { color: var(--pc-muted); margin: 0; font-size: 16px; }
.pc-tools-teaser > div { flex: 1; min-width: 260px; }

/* ---------- Footer ---------- */
.pc-footer { background: var(--pc-ink); color: #D8D2C4; margin-top: auto; }
.pc-footer-in { max-width: 1240px; margin: 0 auto; padding: 52px 24px 28px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; }
.pc-footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.pc-footer-brand .pc-logo-name { color: #fff; font-size: 20px; }
.pc-footer p { font-size: 14px; line-height: 1.6; color: #9d9484; margin: 0 0 16px; max-width: 260px; }
.pc-footer-mail { font-size: 13px; color: #9d9484; }
.pc-footer-mail a { color: var(--pc-yellow); }
.pc-footer-col-title { font-weight: 800; font-size: 14px; color: #fff; margin-bottom: 14px; }
.pc-footer-link { display: block; font-size: 14px; color: #9d9484; padding: 5px 0; }
.pc-footer-link:hover { color: var(--pc-yellow); }
.pc-footer-legal { border-top: 1px solid rgba(69,64,53,.56); max-width: 1240px; margin: 0 auto; padding: 18px 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--pc-muted2); }

/* ---------- Cart drawer ---------- */
.pc-drawer-root { position: fixed; inset: 0; z-index: 60; display: none; justify-content: flex-end; }
.pc-drawer-root.open { display: flex; }
.pc-drawer-overlay { position: absolute; inset: 0; background: rgba(46,42,34,.45); }
.pc-drawer { position: relative; width: 400px; max-width: 90vw; background: var(--pc-bg); height: 100%; display: flex; flex-direction: column; box-shadow: -12px 0 40px rgba(0,0,0,.2); }
.pc-drawer-inner { display: flex; flex-direction: column; height: 100%; }
.pc-drawer-head { padding: 22px 24px; border-bottom: 1px solid var(--pc-border); display: flex; align-items: center; justify-content: space-between; }
.pc-drawer-title { font-family: var(--pc-serif); font-size: 22px; }
.pc-drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--pc-muted2); line-height: 1; }
.pc-drawer-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.pc-drawer-empty { text-align: center; padding: 60px 0; color: #c3b89f; }
.pc-drawer-empty .pc-emoji { font-size: 40px; margin-bottom: 12px; }
.pc-drawer-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #F2ECE0; align-items: center; }
.pc-drawer-thumb { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--pc-serif); font-size: 22px; flex-shrink: 0; overflow: hidden; }
.pc-drawer-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pc-drawer-item-name { font-weight: 700; font-size: 14px; line-height: 1.3; color: var(--pc-ink); }
.pc-drawer-item-price { font-size: 13px; color: var(--pc-muted2); }
.pc-drawer-remove { background: none; border: none; color: #c3b89f; cursor: pointer; font-size: 13px; font-weight: 700; text-decoration: underline; }
.pc-drawer-foot { padding: 22px 24px; border-top: 1px solid var(--pc-border); }
.pc-drawer-subtotal { display: flex; justify-content: space-between; font-size: 16px; margin-bottom: 14px; align-items: center; }
.pc-drawer-subtotal .amt { font-family: var(--pc-serif); font-size: 22px; }
.pc-drawer-note { text-align: center; font-size: 12px; color: var(--pc-muted3); margin-top: 8px; }

/* ---------- Shop landing / archives ---------- */
.pc-page { padding-top: 36px; padding-bottom: 56px; }
.pc-archive-layout { display: grid; grid-template-columns: 230px 1fr; gap: 28px; align-items: start; }
.pc-filters { border: 1px solid var(--pc-border); border-radius: 18px; padding: 20px; background: #fff; position: sticky; top: 96px; }
.pc-filters-title { font-weight: 800; font-size: 15px; margin-bottom: 14px; }
.pc-filter-group { margin-bottom: 18px; }
.pc-filter-name { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--pc-muted2); margin-bottom: 8px; }
.pc-filter-opt { display: flex; align-items: center; gap: 9px; font-size: 14px; color: #4c463a; padding: 4px 0; cursor: pointer; }
.pc-filter-opt:hover { color: var(--pc-teal); }
.pc-filter-box { width: 16px; height: 16px; border: 1.5px solid #d8cdb5; border-radius: 5px; display: inline-block; flex-shrink: 0; }
.pc-filter-opt.active .pc-filter-box { background: var(--pc-yellow); border-color: var(--pc-yellow); }
.pc-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; gap: 12px; }
.pc-result-count { font-size: 14px; color: var(--pc-muted2); font-weight: 700; }
.pc-sort { border: 1px solid var(--pc-border); border-radius: 10px; padding: 8px 14px; font-size: 14px; font-weight: 700; background: #fff; font-family: var(--pc-sans); color: var(--pc-ink); cursor: pointer; }
.pc-pagination { margin-top: 28px; display: flex; gap: 8px; justify-content: center; }
.pc-pagination .page-numbers { display: inline-block; padding: 9px 15px; border: 1px solid var(--pc-border); border-radius: 10px; background: #fff; font-weight: 800; font-size: 14px; color: var(--pc-ink); }
.pc-pagination .page-numbers.current { background: var(--pc-yellow); border-color: var(--pc-yellow); }

/* ---------- Single product ---------- */
.pc-product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.pc-product-media { border-radius: 26px; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pc-product-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pc-product-mono { font-family: var(--pc-serif); font-size: 130px; color: rgba(46,42,34,.3); }
.pc-product-rating { color: var(--pc-gold); font-size: 15px; margin-bottom: 8px; }
.pc-product-rating span { color: var(--pc-muted2); font-weight: 700; }
.pc-product-title { font-size: 38px; margin: 0 0 10px; line-height: 1.1; }
.pc-product-price { font-family: var(--pc-serif); font-size: 32px; color: var(--pc-ink); margin-bottom: 18px; }
.pc-product-price .woocommerce-Price-amount { font-family: var(--pc-serif); }
.pc-product-desc { font-size: 16px; line-height: 1.65; color: #5f5747; margin: 0 0 24px; }
.pc-product-cta { display: flex; gap: 12px; margin-bottom: 22px; }
.pc-product-cta .pc-btn { flex: 1; padding: 16px; border-radius: 13px; }
.pc-wish-btn { background: #fff; border: 1px solid var(--pc-border2); padding: 16px 18px; border-radius: 13px; cursor: pointer; color: var(--pc-ink); }
.pc-wish-btn:hover { background: #fffdf6; }
.pc-features { border: 1px solid var(--pc-border); border-radius: 16px; overflow: hidden; }
.pc-feature { padding: 13px 18px; border-bottom: 1px solid #F2ECE0; display: flex; gap: 10px; font-size: 14px; font-weight: 700; color: #4c463a; }
.pc-feature:last-child { border-bottom: none; }
.pc-feature .tick { color: var(--pc-teal); }
.pc-health-note { margin-top: 16px; background: var(--pc-cream); border-radius: 14px; padding: 14px 16px; font-size: 13px; color: #6b5a1f; line-height: 1.5; }
.pc-related-title { font-size: 28px; margin: 52px 0 18px; }

/* ---------- Advice hub ---------- */
.pc-advice-hero { background: var(--pc-teal); color: #fff; }
.pc-advice-hero-in { max-width: 1240px; margin: 0 auto; padding: 48px 24px; }
.pc-advice-hero h1 { font-size: 44px; margin: 0 0 12px; max-width: 620px; line-height: 1.08; color: #fff; }
.pc-advice-hero p { font-size: 18px; color: #D8E8EB; margin: 0; max-width: 560px; line-height: 1.6; }
.pc-topics { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.pc-topic { border: 1px solid var(--pc-border2); background: #fff; border-radius: 100px; padding: 10px 18px; font-weight: 800; font-size: 14px; cursor: pointer; color: var(--pc-ink); }
.pc-topic:hover, .pc-topic.active { background: var(--pc-cream); color: var(--pc-ink); }
.pc-advice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pc-advice-card { border: 1px solid var(--pc-border); border-radius: 20px; overflow: hidden; background: #fff; }
.pc-advice-card:hover { border-color: var(--pc-border2); }
.pc-advice-emoji { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 40px; }
.pc-advice-body { padding: 20px; }
.pc-advice-tag { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--pc-teal); margin-bottom: 8px; }
.pc-advice-title { font-family: var(--pc-serif); font-size: 20px; margin-bottom: 8px; line-height: 1.2; }
.pc-advice-body p { font-size: 14px; color: var(--pc-muted); margin: 0 0 14px; line-height: 1.55; }
.pc-read-more { color: var(--pc-teal); font-weight: 800; font-size: 14px; cursor: pointer; }
.pc-checklist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pc-checklist { border: 1px solid var(--pc-border); border-radius: 20px; padding: 22px; background: #FFFDF6; }
.pc-checklist-title { font-family: var(--pc-serif); font-size: 20px; margin-bottom: 14px; }
.pc-check-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #4c463a; padding: 6px 0; cursor: pointer; }
.pc-check-box { width: 18px; height: 18px; border: 1.5px solid #d8cdb5; border-radius: 6px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; color: var(--pc-ink); }
.pc-check-item.done .pc-check-box { background: var(--pc-yellow); border-color: var(--pc-yellow); }
.pc-check-item.done { text-decoration: line-through; color: var(--pc-muted3); }
.pc-disclaimer { background: var(--pc-cream); border-radius: 18px; padding: 20px 24px; font-size: 14px; color: #6b5a1f; line-height: 1.6; }

/* ---------- Tools ---------- */
.pc-duedate { border: 1px solid var(--pc-border); border-radius: 24px; overflow: hidden; margin-bottom: 34px; display: grid; grid-template-columns: 1fr 1fr; }
.pc-duedate-form { padding: 34px; background: var(--pc-cream); }
.pc-duedate-form .pc-kicker { color: #b8890a; }
.pc-duedate-form h2 { font-size: 30px; margin: 0 0 10px; }
.pc-duedate-form > p { color: #6b5a2a; font-size: 15px; margin: 0 0 22px; line-height: 1.55; }
.pc-duedate-form label { display: block; font-weight: 800; font-size: 14px; margin-bottom: 8px; }
.pc-duedate-form input[type="date"] { width: 100%; padding: 14px; border: 1px solid var(--pc-border2); border-radius: 12px; font-family: var(--pc-sans); font-size: 16px; background: #fff; color: var(--pc-ink); margin-bottom: 16px; }
.pc-duedate-form .pc-btn { width: 100%; }
.pc-duedate-result { padding: 34px; display: flex; flex-direction: column; justify-content: center; background: #fff; text-align: center; }
.pc-due-label { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--pc-muted2); margin-bottom: 6px; }
.pc-due-date { font-family: var(--pc-serif); font-size: 40px; color: var(--pc-teal); margin-bottom: 22px; }
.pc-due-stats { display: flex; gap: 14px; justify-content: center; }
.pc-due-stat { border-radius: 14px; padding: 16px 22px; }
.pc-due-stat .num { font-family: var(--pc-serif); font-size: 28px; }
.pc-due-stat .lbl { font-size: 12px; font-weight: 700; }
.pc-due-note { font-size: 12px; color: var(--pc-muted3); margin-top: 18px; line-height: 1.5; }
.pc-due-placeholder { color: #c3b89f; font-weight: 700; font-size: 15px; }
.pc-tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pc-tool-card { border: 1px solid var(--pc-border); border-radius: 20px; padding: 24px; background: #fff; }
.pc-tool-card:hover { border-color: var(--pc-yellow); background: #fffdf6; }
.pc-tool-emoji { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; }
.pc-tool-title { font-family: var(--pc-serif); font-size: 21px; margin-bottom: 6px; }
.pc-tool-card p { font-size: 14px; color: var(--pc-muted); margin: 0; line-height: 1.5; }

/* ---------- Generic pages & WooCommerce compat ---------- */
.pc-content { padding-top: 36px; padding-bottom: 56px; }
.pc-content .entry-title { font-size: 40px; margin: 0 0 24px; }
.pc-content input[type="text"], .pc-content input[type="email"], .pc-content input[type="tel"],
.pc-content input[type="password"], .pc-content input[type="number"], .pc-content textarea, .pc-content select {
  padding: 12px 14px; border: 1px solid var(--pc-border2); border-radius: 11px; font-family: var(--pc-sans); font-size: 15px; background: #fff; color: var(--pc-ink);
}
.woocommerce .button, .woocommerce button.button, .woocommerce a.button, .woocommerce input.button,
.wc-block-components-button, .woocommerce #respond input#submit {
  background: var(--pc-ink) !important; color: var(--pc-bg) !important; border-radius: 12px !important; font-family: var(--pc-sans) !important; font-weight: 800 !important; border: none;
}
.woocommerce .button.alt:hover, .woocommerce .button:hover { background: var(--pc-ink-soft) !important; }
.woocommerce-message, .woocommerce-info { border-top-color: var(--pc-teal); background: #fffdf6; }
.woocommerce-error { background: #fff6f4; }
.woocommerce table.shop_table { border: 1px solid var(--pc-border); border-radius: 16px; }
.woocommerce-breadcrumb { display: none; }
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; }

/* ---------- Utility spacers ---------- */
.pc-space { height: 48px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .pc-cat-grid, .pc-prod-grid { grid-template-columns: repeat(3, 1fr); }
  .pc-stage-grid { grid-template-columns: repeat(3, 1fr); }
  .pc-footer-in { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .pc-header-in { gap: 10px; padding: 12px 16px; }
  .pc-nav { display: none; }
  .pc-burger { display: inline-flex; }
  .pc-logo-sub { display: none !important; }
  .pc-actions { gap: 2px; }
  .pc-cart-btn { padding: 9px 12px; }
  .pc-bar { gap: 12px; padding: 8px 16px; font-size: 12px; }
  .pc-bar .pc-dot { display: none; }
  .pc-wrap { padding-left: 16px; padding-right: 16px; }
  .pc-hero-card h1 { font-size: 40px; }
  .pc-hero-card { padding: 36px; min-height: 0; }
  .pc-teaser { grid-template-columns: 1fr; padding: 32px; }
  .pc-archive-layout { grid-template-columns: 1fr; }
  .pc-filters { position: static; }
  .pc-product-layout { grid-template-columns: 1fr; gap: 28px; }
  .pc-duedate { grid-template-columns: 1fr; }
  .pc-advice-grid, .pc-checklist-grid, .pc-tool-grid, .pc-prod-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .pc-header-in { gap: 8px; padding: 10px 12px; }
  .pc-logo { gap: 8px; }
  .pc-logo svg { width: 34px; height: 34px; }
  .pc-logo-name { font-size: 19px; }
  .pc-icon-btn { padding: 7px; }
  .pc-actions { gap: 0; }
  .pc-cart-btn { padding: 8px 11px; gap: 6px; }
  .pc-burger { padding: 7px 7px 7px 0; }
  .pc-cat-grid, .pc-prod-grid, .pc-stage-grid { grid-template-columns: repeat(2, 1fr); }
  .pc-advice-grid, .pc-checklist-grid, .pc-tool-grid, .pc-prod-grid-3, .pc-tip-grid { grid-template-columns: 1fr; }
  .pc-footer-in { grid-template-columns: 1fr 1fr; }
  .pc-h1 { font-size: 34px; }
  .pc-hero-card h1 { font-size: 34px; }
  .pc-product-title { font-size: 30px; }
  .pc-advice-hero h1 { font-size: 34px; }
}
