/* ============ Tokens ============ */
:root {
  --bg: #F7F2E4;
  --surface: #FFFFFF;
  --sage: #E9EEE0;
  --ink: #17241B;
  --green: #2C4A36;
  --gold: #A9822E;
  --forest-deep: #16281C;
  --stone: #C9BFA5;

  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 28px;
  --space-xl: 56px;
  --space-2xl: 88px;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-button: 999px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============ Self-hosted fonts ============ */
@font-face { font-family:'Cormorant Garamond'; src: url('../fonts/cormorant-garamond-600-normal.woff2') format('woff2'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Cormorant Garamond'; src: url('../fonts/cormorant-garamond-700-normal.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Cormorant Garamond'; src: url('../fonts/cormorant-garamond-500-italic.woff2') format('woff2'); font-weight:500; font-style:italic; font-display:swap; }
@font-face { font-family:'Manrope'; src: url('../fonts/manrope-400-normal.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Manrope'; src: url('../fonts/manrope-500-normal.woff2') format('woff2'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Manrope'; src: url('../fonts/manrope-600-normal.woff2') format('woff2'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Manrope'; src: url('../fonts/manrope-700-normal.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:swap; }

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); background: var(--bg); color: var(--ink); -webkit-font-smoothing: antialiased; line-height: 1.6; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0; font-weight: 600; }
.font-display { font-family: var(--font-display); }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--bg); padding: 12px 20px; z-index: 100; text-decoration: none; }
.skip-link:focus { left: 16px; top: 16px; }

.container { max-width: 1280px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: var(--radius-button);
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, background-color .2s ease, color .2s ease;
}
.btn--primary { background: var(--green); color: var(--bg); }
.btn--primary:hover { transform: translateY(-1px); opacity: 0.92; }
.btn--ghost-ink { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost-ink:hover { background: var(--ink); color: var(--bg); }
.btn--ghost-cream { background: transparent; color: var(--bg); border-color: var(--bg); }
.btn--ghost-cream:hover { background: var(--bg); color: var(--forest-deep); }
.btn--sm { padding: 10px 22px; font-size: 13px; }

/* ============ Badges ============ */
.badge { display: inline-flex; align-items: center; padding: 6px 14px; border-radius: var(--radius-button); font-size: 12px; font-weight: 600; }
.badge--gold { background: var(--gold); color: var(--ink); }
.badge--sage { background: var(--sage); color: var(--green); }

/* ============ Trust utility bar ============ */
.trust-bar { background: var(--forest-deep); padding-block: 10px; }
.trust-bar__row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.trust-bar__row li { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--bg); opacity: 0.85; letter-spacing: 0.01em; }
.trust-bar__row svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--gold); }

/* ============ Header ============ */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--bg); border-bottom: 1px solid var(--stone); padding-block: 16px; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-header__logo { font-family: var(--font-display); font-size: 23px; font-weight: 600; color: var(--ink); letter-spacing: 0.01em; }
.site-header__tm { font-size: 11px; vertical-align: super; opacity: 0.7; }
.site-header__nav { display: flex; align-items: center; }
.site-header__links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.site-header__links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--ink); }
.site-header__links a:hover { color: var(--green); }
.site-header__actions { display: flex; align-items: center; gap: 18px; }
.site-header__icon-link { position: relative; color: var(--ink); display: inline-flex; }
.site-header__cart-count { position: absolute; top: -8px; right: -9px; background: var(--green); color: var(--bg); font-size: 10px; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.site-header__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.site-header__toggle span { width: 22px; height: 2px; background: var(--ink); display: block; }

@media (max-width: 860px) {
  .site-header__toggle { display: flex; }
  .site-header__links { position: fixed; inset: 0; top: 64px; background: var(--bg); flex-direction: column; align-items: flex-start; gap: 24px; padding: 32px 24px; transform: translateX(100%); transition: transform .3s ease; z-index: 40; }
  .site-header__links.is-open { transform: translateX(0); }
  .site-header__links a { font-size: 18px; }
  .trust-bar__row { gap: 18px; }
  .trust-bar__row li:nth-child(n+3) { display: none; }
}

/* ============ Hero ============ */

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding-block: 48px var(--space-xl);
  background-image:
    linear-gradient(90deg, rgba(23,36,27,0.72) 0%, rgba(23,36,27,0.35) 55%, rgba(23,36,27,0.08) 100%),
    url('https://pentadenn.com/wp-content/uploads/2026/08/hero_img.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__grid { display: grid; grid-template-columns: 1fr; }

.hero__content { max-width: 560px; }
.eyebrow { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; font-weight: 600; }
.hero__title { font-size: clamp(36px, 4.6vw, 58px); line-height: 1.1; margin: 0 0 20px; font-weight: 600; color: var(--bg); max-width: 640px; }
.hero__title em { font-style: italic; font-weight: 500; color: var(--gold); }
.hero__subtext { font-size: 17px; line-height: 1.6; color: var(--bg); opacity: 0.92; max-width: 46ch; margin: 0 0 28px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__trust-row { display: flex; gap: 24px; flex-wrap: wrap; list-style: none; margin: 0; padding-top: 24px; border-top: 1px solid rgba(247,242,228,0.3); }

.hero__trust-row li { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--bg); }
.hero__trust-row svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.hero__svg { width: 100%; height: 100%; }
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; aspect-ratio: 4/3; }
}

/* ============ Trust banner (dark, full-bleed) ============ */
.trust-banner { background: var(--forest-deep); padding-block: var(--space-xl); }
.trust-banner__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.trust-banner__item { display: flex; align-items: flex-start; gap: 14px; }
.trust-banner__item svg { width: 28px; height: 28px; color: var(--gold); flex-shrink: 0; }
.trust-banner__item h3 { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--bg); margin: 0 0 4px; }
.trust-banner__item p { font-size: 13px; color: var(--bg); opacity: 0.75; margin: 0; }
@media (max-width: 760px) { .trust-banner__grid { grid-template-columns: 1fr; gap: 24px; } }

/* ============ Section heading ============ */
.section-head { margin-bottom: 36px; }
.section-head h2 { font-size: clamp(28px, 3vw, 38px); color: var(--ink); }
.section-head p { font-size: 15px; color: var(--ink); opacity: 0.7; margin: 10px 0 0; max-width: 46ch; }

/* ============ Category grid ============ */
.category-grid { padding-block: var(--space-xl); }
.category-grid__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-grid__item { text-decoration: none; }
.category-grid__image { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 14px; aspect-ratio: 4/5; }
.category-grid__name { font-family: var(--font-display); font-size: 19px; color: var(--ink); margin: 0 0 4px; font-weight: 600; }
.category-grid__link { font-size: 13px; color: var(--green); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.category-grid__item--soon .category-grid__link { color: var(--stone); }
@media (max-width: 900px) { .category-grid__row { grid-template-columns: repeat(2, 1fr); } }

/* ============ Bento trust ============ */
.bento-trust { padding-block: var(--space-xl); }
.bento-trust__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
.bento-trust__main { border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; }
.bento-trust__stack { display: flex; flex-direction: column; gap: 24px; }
.bento-trust__card { border-radius: var(--radius-lg); padding: 32px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.bento-trust__card--sage { background: var(--sage); color: var(--ink); }
.bento-trust__card--dark { background: var(--forest-deep); color: var(--bg); }
.bento-trust__card svg { width: 30px; height: 30px; margin-bottom: 14px; }
.bento-trust__card--sage svg { color: var(--green); }
.bento-trust__card--dark svg { color: var(--gold); }
.bento-trust__card h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 8px; }
.bento-trust__card p { font-size: 14px; line-height: 1.6; margin: 0; opacity: 0.85; }
@media (max-width: 860px) { .bento-trust__grid { grid-template-columns: 1fr; } .bento-trust__main { min-height: 280px; } }

/* ============ Feature split (product spotlight) ============ */
.feature-split { padding-block: var(--space-xl); background: var(--bg); }
.feature-split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-split__visual { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.feature-split__badge { margin-bottom: 16px; }
.feature-split__desc { font-size: 16px; line-height: 1.7; color: var(--ink); opacity: 0.85; margin: 16px 0 20px; max-width: 46ch; }
.feature-split__price { font-family: var(--font-display); font-size: 26px; color: var(--gold); margin: 0 0 26px; font-weight: 600; }
@media (max-width: 860px) { .feature-split__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ============ Story band ============ */
.story-band { background: var(--forest-deep); padding-block: var(--space-xl); }
.story-band__inner { max-width: 700px; margin-inline: auto; text-align: center; }
.story-band h2 { font-size: clamp(28px, 3vw, 38px); margin: 0 0 20px; color: var(--bg); }
.story-band p { font-size: 16px; line-height: 1.75; opacity: 0.85; margin: 0 0 28px; color: var(--bg); }

/* ============ Generic page template ============ */
.page-generic__hero { background: var(--forest-deep); padding-block: 72px 44px; }
.page-generic__title { font-size: clamp(32px, 3.6vw, 48px); color: var(--bg); }
.page-generic__body { padding-block: 48px; max-width: 760px; margin-inline: auto; }
.prose p { margin: 0 0 20px; line-height: 1.75; font-size: 16px; }
.prose h2 { font-family: var(--font-display); font-size: 24px; margin: 36px 0 14px; color: var(--ink); }

/* ============ Footer ============ */
.site-footer { background: var(--forest-deep); color: var(--bg); padding-block: 64px 32px; }
.site-footer__brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(247,242,228,0.15); }
.site-footer__wordmark { font-family: var(--font-display); font-size: 23px; margin: 0; color: var(--bg); }
.site-footer__tagline { font-style: italic; opacity: 0.85; margin: 0 0 8px; font-family: var(--font-display); font-size: 16px; }
.site-footer__origin { font-size: 13px; opacity: 0.6; margin: 0; }
.site-footer__heading { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 16px; opacity: 0.7; }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; }
.site-footer__col li { margin-bottom: 10px; }
.site-footer__col a { color: var(--bg); opacity: 0.85; text-decoration: none; font-size: 14px; }
.site-footer__col a:hover { opacity: 1; text-decoration: underline; }
.site-footer__bottom { padding-top: 22px; font-size: 12px; opacity: 0.6; }
@media (max-width: 800px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* ============ WooCommerce baseline ============ */
#primary.content-area { max-width: 1280px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); padding-block: var(--space-xl); }

ul.products { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 36px 24px; }
ul.products li.product a { text-decoration: none; color: inherit; display: block; }
ul.products li.product img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center; margin-bottom: 14px; border-radius: var(--radius-md); }
ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin: 0 0 6px; color: var(--ink); }
ul.products li.product .price { font-size: 15px; color: var(--gold); font-weight: 600; }
ul.products li.product .price del { opacity: 0.5; margin-right: 6px; font-weight: 400; }

.woocommerce-breadcrumb { font-size: 13px; color: var(--stone); margin-bottom: 24px; }
.woocommerce-breadcrumb a { color: inherit; }

.single-product div.product { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.single-product div.product img { border-radius: var(--radius-md); }
.single-product div.product .product_title { font-family: var(--font-display); font-size: clamp(30px, 3.2vw, 42px); margin: 0 0 16px; }
.single-product div.product .price { font-family: var(--font-display); font-size: 26px; color: var(--gold); margin-bottom: 20px; display: block; font-weight: 600; }
.single-product div.product .woocommerce-product-details__short-description { margin-bottom: 24px; line-height: 1.7; opacity: 0.9; }
.single-product form.cart { display: flex; gap: 16px; align-items: center; margin-bottom: 32px; flex-wrap: wrap; }
.single-product form.cart .quantity input { width: 64px; padding: 12px; border: 1px solid var(--stone); background: var(--surface); font-family: var(--font-body); border-radius: var(--radius-sm); }
.single-product .woocommerce-tabs { margin-top: var(--space-xl); border-top: 1px solid var(--stone); padding-top: var(--space-lg); }
.single-product .woocommerce-tabs ul.tabs { list-style: none; display: flex; gap: 24px; padding: 0; margin: 0 0 24px; }
.single-product .woocommerce-tabs ul.tabs li a { text-decoration: none; font-weight: 600; color: var(--ink); font-size: 14px; }

button.single_add_to_cart_button, .woocommerce #respond input#submit, .woocommerce a.button,
.woocommerce button.button, .woocommerce input.button, #place_order {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: var(--radius-button);
  background: var(--green); color: var(--bg); font-family: var(--font-body);
  font-weight: 600; font-size: 15px;
  border: 1px solid transparent; text-decoration: none; cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
button.single_add_to_cart_button:hover, .woocommerce a.button:hover, #place_order:hover { transform: translateY(-1px); opacity: 0.92; }

table.shop_table { width: 100%; border-collapse: collapse; margin-bottom: 32px; font-family: var(--font-body); font-size: 14px; }
table.shop_table th, table.shop_table td { padding: 16px 12px; border-bottom: 1px solid var(--stone); text-align: left; }
table.shop_table img { border-radius: var(--radius-sm); }

.woocommerce-cart-form, .woocommerce-checkout { padding-block: 8px 48px; }
.cart_totals, #order_review { background: var(--surface); border: 1px solid var(--stone); padding: 28px; border-radius: var(--radius-md); }

form .form-row { margin-bottom: 16px; }
form .form-row input.input-text, form .form-row select, form .form-row textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--stone); background: var(--surface);
  font-family: var(--font-body); font-size: 15px; color: var(--ink); border-radius: var(--radius-sm);
}
form label { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 6px; display: inline-block; color: var(--ink); }

.woocommerce-error, .woocommerce-message, .woocommerce-info {
  list-style: none; padding: 16px 20px; border-radius: var(--radius-sm); border-left: 3px solid var(--green);
  background: var(--surface); margin: 0 0 24px; font-size: 14px;
}

.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0 0 32px; }
.woocommerce-MyAccount-navigation li { border-bottom: 1px solid var(--stone); }
.woocommerce-MyAccount-navigation li a { display: block; padding: 12px 0; text-decoration: none; color: var(--ink); }
.woocommerce-MyAccount-navigation li.is-active a { color: var(--green); font-weight: 600; }

@media (max-width: 860px) { .single-product div.product { grid-template-columns: 1fr; gap: 24px; } }

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
/* ============ Story page sections ============ */
.story-section { padding-block: var(--space-xl); }
.story-section--sage { background: var(--sage); }
.story-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.story-section__visual { border-radius: var(--radius-lg); overflow: hidden; }
.story-section__content h2 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 16px; }
.story-section__content p { font-size: 16px; line-height: 1.75; opacity: 0.85; margin: 0 0 16px; }
@media (max-width: 860px) { .story-section__grid { grid-template-columns: 1fr; gap: 28px; } .story-section__visual { order: -1; } }

/* ============ Values grid ============ */
.values-grid { padding-block: var(--space-xl); }
.values-grid__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.values-grid__card { background: var(--surface); border-radius: var(--radius-md); padding: 28px; border: 1px solid var(--stone); }
.values-grid__card svg { width: 26px; height: 26px; color: var(--green); margin-bottom: 14px; flex-shrink: 0; }
.values-grid__card h3 { font-family: var(--font-display); font-size: 19px; margin: 0 0 8px; }
.values-grid__card p { font-size: 13px; line-height: 1.6; opacity: 0.75; margin: 0; }
@media (max-width: 900px) { .values-grid__row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid__row { grid-template-columns: 1fr; } }

/* ============ Process steps ============ */
.process-steps { padding-block: var(--space-xl); background: var(--forest-deep); }
.process-steps__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-steps__num { font-family: var(--font-display); font-size: 42px; color: var(--gold); opacity: 0.5; margin: 0 0 8px; line-height: 1; }
.process-steps__step h3 { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--bg); margin: 0 0 8px; }
.process-steps__step p { font-size: 13px; color: var(--bg); opacity: 0.7; margin: 0; line-height: 1.6; }
@media (max-width: 860px) { .process-steps__row { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .process-steps__row { grid-template-columns: 1fr; } }

/* ============ CTA band ============ */
.cta-band { padding-block: var(--space-xl); background: var(--bg); text-align: center; }
.cta-band h2 { font-size: clamp(28px, 3vw, 38px); margin: 0 0 12px; }
.cta-band p { font-size: 15px; opacity: 0.75; margin: 0 0 28px; }

/* ============ Contact ============ */
.contact-section { padding-block: var(--space-xl); }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.contact-info__card { background: var(--sage); border-radius: var(--radius-lg); padding: 36px; }
.contact-info__card h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 12px; }
.contact-info__card > p { font-size: 14px; line-height: 1.7; opacity: 0.8; margin: 0 0 24px; }
.contact-info__item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.contact-info__item svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.contact-info__item span { font-size: 14px; line-height: 1.5; }
.contact-form { background: var(--surface); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--stone); }
.contact-form .form-row { margin-bottom: 18px; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--stone); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; background: var(--bg); color: var(--ink);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form__honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.contact-form__status { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; display: none; }
.contact-form__status--success { background: var(--sage); color: var(--green); display: block; }
.contact-form__status--error { background: #F5DFDA; color: #8A2E1F; display: block; }
.contact-form button[type="submit"] { width: 100%; margin-top: 4px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============ Shop page ============ */
.shop-intro { padding-block: var(--space-lg) 0; }
.shop-intro p { font-size: 15px; opacity: 0.75; max-width: 60ch; margin: 0; }
.shop-more-soon { padding-block: var(--space-xl); background: var(--sage); }
.woocommerce-result-count, .woocommerce-ordering { font-size: 13px; opacity: 0.7; }
.woocommerce-ordering select { padding: 8px 12px; border-radius: var(--radius-sm); border: 1px solid var(--stone); background: var(--surface); }
.shop-loop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.woocommerce-pagination { margin-top: 40px; }
.woocommerce-pagination ul { list-style: none; display: flex; gap: 8px; padding: 0; }
.woocommerce-pagination a, .woocommerce-pagination span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; text-decoration: none; color: var(--ink); font-size: 14px; }
.woocommerce-pagination .current { background: var(--green); color: var(--bg); }
/* ============ Single product page (custom template) ============ */
.product-breadcrumb { font-size: 13px; color: var(--stone); margin: 20px 0; }
.product-breadcrumb a { color: inherit; text-decoration: none; }
.product-breadcrumb a:hover { color: var(--green); }

.product-hero { display: grid; grid-template-columns: 0.9fr 1fr; gap: 56px; padding-bottom: var(--space-xl); align-items: start; }
@media (max-width: 900px) { .product-hero { grid-template-columns: 1fr; gap: 28px; } }

/* Custom dependency-free product gallery (no WooCommerce JS required) */
.pgallery { display: grid; grid-template-columns: 84px 1fr; gap: 16px; }
.pgallery__thumbs { display: flex; flex-direction: column; gap: 12px; }
.pgallery__thumb { padding: 0; border: 1px solid var(--stone); border-radius: var(--radius-sm); background: var(--surface); cursor: pointer; opacity: 0.65; transition: opacity .2s ease, border-color .2s ease; overflow: hidden; display: block; }
.pgallery__thumb img { display: block; width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; }
.pgallery__thumb:hover { opacity: 0.9; }
.pgallery__thumb.is-active { opacity: 1; border-color: var(--green); border-width: 2px; }
.pgallery__main { border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); aspect-ratio: 4/5; }
.pgallery__main img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
@media (max-width: 600px) {
  .pgallery { grid-template-columns: 1fr; }
  .pgallery__thumbs { flex-direction: row; overflow-x: auto; order: 2; }
  .pgallery__thumb { flex: 0 0 56px; width: 56px; }
}

.product-hero__summary h1 { font-size: clamp(30px, 3.2vw, 42px); margin: 0 0 14px; }
.product-hero__price { font-family: var(--font-display); font-size: 30px; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.product-hero__price .woocommerce-Price-amount { font-family: var(--font-display); }
.product-hero__unit-price { font-size: 13px; color: var(--ink); opacity: 0.6; margin: 0 0 20px; }
.product-hero__desc { font-size: 16px; line-height: 1.7; opacity: 0.85; margin: 0 0 20px; }

.product-hero__benefits { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.product-hero__benefits li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.product-hero__benefits li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 1px; }

.product-hero__trustrow { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.product-hero__trustrow span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; padding: 6px 12px; border-radius: var(--radius-button); background: var(--sage); color: var(--green); }

/* Restyle WooCommerce's native variations form + add to cart to match the design system */
.product-hero__summary form.variations_form { margin-bottom: 20px; }
.product-hero__summary table.variations { border: none; margin-bottom: 16px; }
.product-hero__summary table.variations tr { display: block; }
.product-hero__summary table.variations th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; padding: 0 0 8px; display: block; font-weight: 700; }
.product-hero__summary table.variations td { display: block; padding: 0; }
.product-hero__summary select { width: auto; min-width: 140px; padding: 10px 14px; border: 1px solid var(--stone); border-radius: var(--radius-sm); background: var(--surface); font-family: var(--font-body); }
.product-hero__summary .woocommerce-variation-price { margin: 10px 0; font-family: var(--font-display); font-size: 22px; color: var(--gold); }
.product-hero__summary .quantity { display: inline-block; margin-right: 12px; }
.product-hero__summary .quantity input { width: 64px; padding: 12px; border: 1px solid var(--stone); border-radius: var(--radius-sm); background: var(--surface); text-align: center; }
.product-hero__summary .single_add_to_cart_button { margin-top: 6px; }

.product-hero__shipping-row { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--stone); }
.product-hero__shipping-row div { display: flex; align-items: center; gap: 10px; font-size: 13px; opacity: 0.8; }
.product-hero__shipping-row svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* Feature icon row */
.product-features { background: var(--sage); padding-block: var(--space-lg); }
.product-features__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-features__row > div { text-align: center; }
.product-features__row svg { width: 30px; height: 30px; color: var(--green); margin-bottom: 12px; }
.product-features__row h3 { font-family: var(--font-body); font-size: 14px; font-weight: 700; letter-spacing: 0.02em; margin: 0 0 6px; text-transform: uppercase; }
.product-features__row p { font-size: 13px; opacity: 0.75; margin: 0; line-height: 1.6; }
@media (max-width: 860px) { .product-features__row { grid-template-columns: 1fr 1fr; gap: 28px; } }

/* Three-column detail grid */
.product-detail { padding-block: var(--space-xl); }
.product-detail__grid { display: grid; grid-template-columns: 0.85fr 1.3fr 0.85fr; gap: 40px; }
.product-detail__col h2 { font-family: var(--font-display); font-size: 20px; margin: 0 0 20px; }
.product-detail__ingredient { display: flex; gap: 12px; margin-bottom: 20px; }
.product-detail__ingredient span.dot { width: 34px; height: 34px; border-radius: 50%; background: var(--sage); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.product-detail__ingredient span.dot svg { width: 16px; height: 16px; color: var(--green); }
.product-detail__ingredient strong { display: block; font-size: 13px; margin-bottom: 2px; }
.product-detail__ingredient p { font-size: 12px; opacity: 0.7; margin: 0; line-height: 1.5; }
.product-detail__desc p { font-size: 14px; line-height: 1.7; opacity: 0.85; margin: 0 0 24px; }
.product-detail__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-detail__steps div { text-align: center; }
.product-detail__steps svg { width: 24px; height: 24px; color: var(--gold); margin-bottom: 8px; }
.product-detail__steps p { font-size: 11px; opacity: 0.8; margin: 6px 0 0; line-height: 1.5; }
.product-detail__steps .step-num { font-family: var(--font-display); font-size: 12px; color: var(--stone); }
.product-detail__spec { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.product-detail__spec svg { width: 16px; height: 16px; color: var(--green); margin-top: 2px; flex-shrink: 0; }
.product-detail__spec div span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.55; margin-bottom: 2px; }
.product-detail__spec div strong { font-size: 13px; font-weight: 600; }
@media (max-width: 900px) { .product-detail__grid { grid-template-columns: 1fr; } .product-detail__steps { grid-template-columns: 1fr 1fr; } }

/* Brand quote band */
.product-quote { background: var(--bg); padding-block: var(--space-lg); text-align: center; border-top: 1px solid var(--stone); }
.product-quote blockquote { font-family: var(--font-display); font-style: italic; font-size: 22px; max-width: 640px; margin: 0 auto 12px; color: var(--ink); }
.product-quote cite { font-size: 13px; opacity: 0.6; font-style: normal; }
/* ============ Shop page (custom archive template) ============ */
.shop-hero { position: relative; min-height: 420px; display: flex; align-items: flex-end; background: var(--forest-deep); overflow: hidden; }
.shop-hero__art { position: absolute; inset: 0; }
.shop-hero__art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,28,20,0.85) 0%, rgba(15,28,20,0.35) 60%, rgba(15,28,20,0.15) 100%); }
.shop-hero__inner { position: relative; z-index: 2; padding: 56px clamp(20px,5vw,48px); max-width: 1280px; margin-inline: auto; width: 100%; }
.shop-hero__title { font-size: clamp(40px, 5vw, 64px); font-style: italic; font-weight: 500; color: var(--bg); margin: 0 0 12px; }
.shop-hero__desc { font-size: 15px; color: var(--bg); opacity: 0.85; max-width: 46ch; margin: 0 0 20px; line-height: 1.6; }
.shop-hero__link { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); text-decoration: none; font-weight: 600; }
.shop-hero__link:hover { text-decoration: underline; }

.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; padding-block: var(--space-xl); }
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }

.shop-filters h3 { font-family: var(--font-display); font-size: 18px; margin: 0 0 20px; }
.shop-filters__group { margin-bottom: 28px; }
.shop-filters__group h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.55; margin: 0 0 12px; font-weight: 700; }
.shop-filters__cat { display: flex; flex-direction: column; gap: 10px; list-style: none; margin: 0; padding: 0; }
.shop-filters__cat li a { font-size: 14px; text-decoration: none; color: var(--ink); display: flex; justify-content: space-between; }
.shop-filters__cat li a:hover { color: var(--green); }
.shop-filters__cat li.is-active a { color: var(--green); font-weight: 700; }
.shop-filters__cat li.is-disabled span { color: var(--stone); font-size: 14px; display: flex; justify-content: space-between; }
.shop-filters__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.shop-filters__pills a, .shop-filters__pills span { font-size: 12px; padding: 7px 14px; border-radius: var(--radius-button); border: 1px solid var(--stone); text-decoration: none; color: var(--ink); }
.shop-filters__pills a:hover, .shop-filters__pills a.is-active { border-color: var(--green); background: var(--sage); color: var(--green); }
.shop-filters__pills span { opacity: 0.4; cursor: default; }

.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.shop-toolbar .product-breadcrumb { margin: 0; }

.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
@media (max-width: 760px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
.shop-card { display: block; text-decoration: none; color: inherit; }
.shop-card__image { position: relative; background: var(--sage); border-radius: var(--radius-md); aspect-ratio: 4/5; overflow: hidden; margin-bottom: 14px; }
.shop-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shop-card__badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--ink); font-size: 10px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; padding: 5px 10px; border-radius: var(--radius-button); }
.shop-card--soon .shop-card__image { opacity: 0.55; }
.shop-card__name { font-family: var(--font-display); font-size: 18px; margin: 0 0 4px; }
.shop-card__meta { font-size: 13px; opacity: 0.6; margin: 0 0 6px; }
.shop-card__price { font-size: 14px; font-weight: 600; color: var(--gold); }
.shop-card--soon .shop-card__price { color: var(--stone); font-weight: 500; text-transform: uppercase; font-size: 11px; letter-spacing: 0.05em; }

/* Newsletter band */
.newsletter-band { background: var(--forest-deep); border-radius: var(--radius-lg); padding: 48px; margin-top: var(--space-xl); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center; }
.newsletter-band__title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 34px); color: var(--bg); margin: 0 0 6px; }
.newsletter-band__title em { color: var(--gold); font-style: italic; }
.newsletter-band__desc { font-size: 14px; color: var(--bg); opacity: 0.8; margin: 0 0 22px; max-width: 40ch; }
.newsletter-band__form { display: flex; gap: 10px; max-width: 380px; flex-wrap: wrap; }
.newsletter-band__form input { flex: 1; min-width: 180px; padding: 12px 16px; border-radius: var(--radius-button); border: none; font-family: var(--font-body); font-size: 14px; }
.newsletter-band__form button { padding: 12px 24px; border-radius: var(--radius-button); border: none; background: var(--gold); color: var(--ink); font-weight: 600; font-size: 13px; cursor: pointer; }
.newsletter-band__status { margin-top: 10px; font-size: 13px; color: var(--gold); }
.newsletter-band__visual { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/5; }
.newsletter-band__visual img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) { .newsletter-band { grid-template-columns: 1fr; padding: 32px; } .newsletter-band__visual { display: none; } }
/* ============ Hero v2 (image-forward, overlay copy) ============ */
.hero-v2 { padding-block: 40px var(--space-xl); }
.hero-v2__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .hero-v2__grid { grid-template-columns: 1fr; } }
.hero-v2__eyebrow { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 18px; }
.hero-v2__title { font-size: clamp(34px, 4.2vw, 54px); line-height: 1.12; margin: 0; color: var(--ink); }
.hero-v2__title em { font-style: italic; color: var(--green); font-weight: 500; }
.hero-v2__visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--forest-deep); }
.hero-v2__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-v2__overlay-text { position: absolute; top: 24px; left: 24px; right: 24px; font-size: 13px; line-height: 1.6; color: var(--bg); opacity: 0.9; max-width: 44ch; }
.hero-v2__cta { position: absolute; right: 24px; bottom: 24px; }

.trust-dots { padding-block: 28px; border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }
.trust-dots__row { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; color: var(--ink); }
.trust-dots__row li:not(:last-child)::after { content: '\00b7'; margin-left: 10px; color: var(--stone); }

/* ============ The Collection grid ============ */
.collection-section { padding-block: var(--space-xl); }
.collection-section__head { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; margin-bottom: 36px; }
.collection-section__head h2 { font-size: clamp(28px, 3vw, 38px); }
.collection-section__head p { font-size: 14px; opacity: 0.7; line-height: 1.7; margin: 0; }
@media (max-width: 760px) { .collection-section__head { grid-template-columns: 1fr; } }
.collection-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 760px) { .collection-grid { grid-template-columns: repeat(2, 1fr); } }
.collection-card { text-decoration: none; color: inherit; display: block; }
.collection-card__image { position: relative; background: var(--sage); border-radius: var(--radius-md); aspect-ratio: 4/5; overflow: hidden; margin-bottom: 12px; }
.collection-card__image img { width: 100%; height: 100%; object-fit: cover; }
.collection-card__add { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 16px; line-height: 1; }
.collection-card__badge { position: absolute; top: 10px; left: 10px; background: var(--gold); color: var(--ink); font-size: 10px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.03em; padding: 4px 9px; border-radius: var(--radius-button); }
.collection-card--soon .collection-card__image { opacity: 0.55; }
.collection-card__row { display: flex; justify-content: space-between; align-items: baseline; }
.collection-card__name { font-size: 14px; font-weight: 600; margin: 0; }
.collection-card__price { font-size: 13px; color: var(--gold); font-weight: 600; }
.collection-card--soon .collection-card__price { color: var(--stone); font-size: 11px; text-transform: uppercase; }

/* ============ Values section with floating annotation cards ============ */
.values-section { background: var(--sage); padding-block: var(--space-xl); }
.values-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .values-section__grid { grid-template-columns: 1fr; } }
.values-section__eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 700; margin: 0 0 16px; }
.values-section__title { font-size: clamp(28px, 3.4vw, 42px); margin: 0 0 20px; }
.values-section__desc { font-size: 15px; line-height: 1.75; opacity: 0.8; margin: 0 0 28px; max-width: 44ch; }
.values-section__visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--forest-deep); }
.values-section__visual img { width: 100%; height: 100%; object-fit: cover; }
.values-annotation { position: absolute; background: var(--surface); border-radius: var(--radius-sm); padding: 14px 16px; max-width: 190px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.values-annotation strong { display: block; font-family: var(--font-display); font-size: 15px; margin-bottom: 4px; color: var(--green); }
.values-annotation p { font-size: 12px; margin: 0; opacity: 0.75; line-height: 1.5; }
.values-annotation--a { top: 14%; left: -8%; }
.values-annotation--b { bottom: 10%; right: -8%; }
@media (max-width: 900px) { .values-annotation--a, .values-annotation--b { position: static; max-width: none; margin-top: 12px; } }
/* ============ Promo band (3-col, dark, product thumbnail + link) ============ */
.promo-band { background: var(--forest-deep); padding-block: 40px; }
.promo-band__row { display: grid; grid-template-columns: repeat(3, 1fr); }
.promo-band__item { display: flex; align-items: center; gap: 18px; padding: 20px clamp(16px, 3vw, 32px); border-left: 1px solid rgba(247,242,228,0.15); }
.promo-band__item:first-child { border-left: none; }
.promo-band__thumb { width: 64px; height: 64px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--sage); }
.promo-band__thumb img { width: 100%; height: 100%; object-fit: cover; }
.promo-band__text h3 { font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; color: var(--bg); margin: 0 0 4px; }
.promo-band__text p { font-size: 12px; color: var(--bg); opacity: 0.65; margin: 0 0 8px; }
.promo-band__text a { font-size: 12px; color: var(--gold); text-decoration: none; font-weight: 600; }
.promo-band__text a:hover { text-decoration: underline; }
.promo-band__text span.soon { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--stone); }
@media (max-width: 760px) { .promo-band__row { grid-template-columns: 1fr; } .promo-band__item { border-left: none; border-top: 1px solid rgba(247,242,228,0.15); } .promo-band__item:first-child { border-top: none; } }

/* ============ Engagements (5-col commitments) ============ */
.engagements { padding-block: var(--space-xl); text-align: center; }
.engagements h2 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin: 0 0 40px; }
.engagements__row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.engagements__row svg { width: 30px; height: 30px; color: var(--green); margin: 0 auto 14px; }
.engagements__row h3 { font-family: var(--font-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; margin: 0 0 8px; }
.engagements__row p { font-size: 12px; opacity: 0.7; line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .engagements__row { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

/* ============ Essentials (product cards with real CTA) ============ */
.essentials { padding-block: var(--space-xl); background: var(--sage); }
.essentials__head { text-align: center; margin-bottom: 40px; }
.essentials__head h2 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.essentials__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 760px) { .essentials__row { grid-template-columns: 1fr; } }
.essential-card { background: var(--surface); border-radius: var(--radius-md); padding: 20px; text-align: center; }
.essential-card__image { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/5; margin-bottom: 16px; background: var(--bg); }
.essential-card__image img { width: 100%; height: 100%; object-fit: cover; }
.essential-card__image svg { width: 100%; height: 100%; }
.essential-card h3 { font-family: var(--font-display); font-size: 17px; margin: 0 0 4px; }
.essential-card p.meta { font-size: 12px; opacity: 0.6; margin: 0 0 6px; }
.essential-card p.price { font-size: 15px; color: var(--gold); font-weight: 600; margin: 0 0 16px; }
.essential-card .btn { width: 100%; }

/* ============ Trust icons row (cream, 4-col) ============ */
.trust-icons-row { padding-block: var(--space-lg); border-top: 1px solid var(--stone); }
.trust-icons-row__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-icons-row__grid svg { width: 26px; height: 26px; color: var(--green); margin: 0 auto 10px; }
.trust-icons-row__grid p { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; margin: 0; }
@media (max-width: 760px) { .trust-icons-row__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
/* ============ Cart page (custom template) ============ */
.cart-page-hero { text-align: center; padding-block: 40px 24px; }
.cart-page-hero h1 { font-size: clamp(28px, 3.4vw, 40px); margin: 0 0 8px; }
.cart-page-hero .product-breadcrumb { justify-content: center; display: flex; margin: 0; }

.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; padding-bottom: var(--space-xl); }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-table-wrap { background: var(--surface); border: 1px solid var(--stone); border-radius: var(--radius-md); overflow: hidden; }
table.woocommerce-cart-form__contents { margin: 0; }
table.woocommerce-cart-form__contents thead th { background: var(--sage); font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; padding: 14px 16px; text-align: left; }
table.woocommerce-cart-form__contents td { padding: 16px; vertical-align: middle; border-bottom: 1px solid var(--stone); }
table.woocommerce-cart-form__contents .product-thumbnail img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); }
table.woocommerce-cart-form__contents .product-name a { font-weight: 600; text-decoration: none; color: var(--ink); }
table.woocommerce-cart-form__contents .product-name .variation { font-size: 12px; opacity: 0.6; margin-top: 2px; }
table.woocommerce-cart-form__contents .product-remove a { color: var(--stone); text-decoration: none; font-size: 18px; }
table.woocommerce-cart-form__contents .product-remove a:hover { color: #8A2E1F; }
table.woocommerce-cart-form__contents .quantity .qty { width: 60px; padding: 8px; text-align: center; border: 1px solid var(--stone); border-radius: var(--radius-sm); }
table.woocommerce-cart-form__contents .product-subtotal { font-weight: 600; color: var(--gold); }

.cart-actions-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding: 18px 16px; background: var(--bg); }
.cart-actions-row .coupon { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.cart-actions-row .coupon input { padding: 10px 14px; border: 1px solid var(--stone); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 13px; }
.cart-actions-row .coupon .button { padding: 10px 20px; border-radius: var(--radius-button); background: var(--green); color: var(--bg); border: none; font-size: 13px; font-weight: 600; cursor: pointer; }
.cart-actions-row .clear-cart-link { font-size: 13px; color: var(--stone); text-decoration: underline; }

.cart-summary { background: var(--surface); border: 1px solid var(--stone); border-radius: var(--radius-md); padding: 24px; }
.cart-summary h2 { font-family: var(--font-display); font-size: 19px; margin: 0 0 18px; }
.cart-summary table.shop_table { border: none; margin: 0; }
.cart-summary table.shop_table th, .cart-summary table.shop_table td { padding: 10px 0; border-bottom: 1px solid var(--stone); font-size: 14px; }
.cart-summary table.shop_table tr:last-child th, .cart-summary table.shop_table tr:last-child td { border-bottom: none; font-family: var(--font-display); font-size: 18px; color: var(--gold); font-weight: 600; }
.cart-summary .wc-proceed-to-checkout { margin-top: 16px; }
.cart-summary .wc-proceed-to-checkout a.checkout-button { display: block; width: 100%; text-align: center; padding: 14px; border-radius: var(--radius-button); background: var(--green); color: var(--bg); text-decoration: none; font-weight: 600; }
.cart-summary .wc-proceed-to-checkout a.checkout-button:hover { opacity: 0.92; }

.cart-trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-block: var(--space-lg); border-top: 1px solid var(--stone); text-align: center; }
.cart-trust-row svg { width: 26px; height: 26px; color: var(--green); margin: 0 auto 10px; }
.cart-trust-row h3 { font-size: 14px; font-weight: 700; margin: 0 0 4px; }
.cart-trust-row p { font-size: 12px; opacity: 0.7; margin: 0; }
@media (max-width: 760px) { .cart-trust-row { grid-template-columns: 1fr; } }

.cart-empty { text-align: center; padding-block: var(--space-xl); }
/* ============ Checkout page (custom template) ============ */
.checkout-hero { text-align: center; padding-block: 36px 8px; }
.checkout-hero h1 { font-size: clamp(26px, 3vw, 34px); margin: 0 0 24px; }
.checkout-steps { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; max-width: 620px; margin: 0 auto; }
.checkout-steps__step { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--stone); }
.checkout-steps__step.is-active { color: var(--ink); font-weight: 700; }
.checkout-steps__step span.num { width: 22px; height: 22px; border-radius: 50%; background: var(--stone); color: var(--bg); font-size: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.checkout-steps__step.is-active span.num { background: var(--gold); }
.checkout-steps__line { width: 40px; height: 1px; background: var(--stone); }

.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; padding-block: var(--space-lg) var(--space-xl); }
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }

.checkout-section { margin-bottom: 36px; }
.checkout-section h2, #order_review_heading { font-family: var(--font-display); font-size: 20px; margin: 0 0 20px; }

form.checkout .form-row { margin-bottom: 16px; }
form.checkout .form-row-first, form.checkout .form-row-last { display: inline-block; width: 48%; }
form.checkout .form-row-first { margin-right: 4%; }
@media (max-width: 600px) { form.checkout .form-row-first, form.checkout .form-row-last { width: 100%; margin-right: 0; } }
form.checkout label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
form.checkout .woocommerce-input-wrapper input, form.checkout .woocommerce-input-wrapper select, form.checkout .woocommerce-input-wrapper textarea,
form.checkout input.input-text, form.checkout select { width: 100%; padding: 12px 14px; border: 1px solid var(--stone); border-radius: var(--radius-sm); background: var(--surface); font-family: var(--font-body); font-size: 14px; }
#ship-to-different-address { margin-bottom: 16px; font-size: 14px; }

/* Shipping method list, styled like selectable cards */
ul#shipping_method { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
ul#shipping_method li { border: 1px solid var(--stone); border-radius: var(--radius-md); padding: 16px 18px; }
ul#shipping_method li label { font-weight: 600; font-size: 14px; margin: 0; display: inline; }

/* Payment method list */
ul.wc_payment_methods { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
ul.wc_payment_methods li.wc_payment_method { border: 1px solid var(--stone); border-radius: var(--radius-md); padding: 16px 18px; }
ul.wc_payment_methods li.wc_payment_method label { font-weight: 600; font-size: 14px; }
ul.wc_payment_methods .payment_box { font-size: 13px; opacity: 0.75; margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--stone); }

/* Order review sidebar */
.checkout-summary { background: var(--surface); border: 1px solid var(--stone); border-radius: var(--radius-md); padding: 24px; }
.checkout-summary table.shop_table { border: none; margin: 0 0 16px; }
.checkout-summary table.shop_table th, .checkout-summary table.shop_table td { padding: 10px 0; border-bottom: 1px solid var(--stone); font-size: 14px; }
.checkout-summary table.shop_table tr.order-total th, .checkout-summary table.shop_table tr.order-total td { font-family: var(--font-display); font-size: 18px; color: var(--gold); font-weight: 600; border-bottom: none; }
#place_order { width: 100%; padding: 15px; font-size: 15px; }
.checkout-summary__secure { text-align: center; font-size: 12px; opacity: 0.6; margin-top: 12px; }
/* ============ Contact page v2 ============ */
.contact-v2 { padding-block: var(--space-xl); }
.contact-v2__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .contact-v2__grid { grid-template-columns: 1fr; } }
.contact-v2__eyebrow { display: flex; align-items: center; gap: 10px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 700; margin: 0 0 16px; }
.contact-v2__eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.contact-v2__title { font-size: clamp(30px, 3.4vw, 42px); margin: 0 0 28px; }
.contact-v2__title em { font-style: italic; color: var(--green); font-weight: 500; }

.contact-v2__send { display: inline-flex; align-items: center; border-radius: var(--radius-button); overflow: hidden; border: none; cursor: pointer; padding: 0; background: none; }
.contact-v2__send-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-v2__send-icon svg { width: 18px; height: 18px; }
.contact-v2__send-label { background: var(--gold); color: var(--ink); font-weight: 600; font-size: 14px; padding: 14px 28px 14px 20px; margin-left: -18px; border-radius: var(--radius-button); }

.contact-v2__card { background: var(--forest-deep); border-radius: var(--radius-lg); padding: 32px; color: var(--bg); }
.contact-v2__card-block { margin-bottom: 24px; }
.contact-v2__card-block:last-child { margin-bottom: 0; }
.contact-v2__card-block h3 { font-family: var(--font-display); font-size: 19px; margin: 0 0 10px; color: var(--bg); }
.contact-v2__card-block p { font-size: 13px; line-height: 1.7; opacity: 0.8; margin: 0; }

/* Reuse existing .contact-form styles for the actual form fields, just place inside new layout */
.contact-v2 .contact-form { background: transparent; border: none; padding: 0; }

/* Trust row 3-col */
.contact-trust { padding-block: var(--space-lg); border-top: 1px solid var(--stone); }
.contact-trust__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.contact-trust__row > div { display: flex; align-items: flex-start; gap: 14px; }
.contact-trust__row svg { width: 30px; height: 30px; color: var(--gold); flex-shrink: 0; }
.contact-trust__row h3 { font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.contact-trust__row p { font-size: 13px; opacity: 0.7; margin: 0; }
@media (max-width: 760px) { .contact-trust__row { grid-template-columns: 1fr; } }

/* Marquee band */
.marquee-band { background: var(--gold); padding-block: 16px; overflow: hidden; white-space: nowrap; }
.marquee-band__track { display: inline-flex; gap: 40px; animation: pentadenn-marquee 22s linear infinite; }
.marquee-band__track span { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 40px; }
@keyframes pentadenn-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-band__track { animation: none; } }