/* ============================================================
   BRAND PALETTE (Source: Gebenco Brand Guidelines v1)
   Primary (85%): Snow #FFFFFF, Off-White #F5F5F5, Stone #E8E8E8, Charcoal #2B2B2B
   Accent  (15%): Gebenco Green #1B8C4F, Green Dark #0D5A34, Green Light #E8F5F0
   ============================================================ */
:root {
    --gebenco-snow: #FFFFFF;
    --gebenco-off-white: #F5F5F5;
    --gebenco-stone: #E8E8E8;
    --gebenco-charcoal: #2B2B2B;
    --gebenco-green: #1B8C4F;
    --gebenco-green-dark: #0D5A34;
    --gebenco-green-light: #E8F5F0;
    --gebenco-border: #E8E8E8;
    --gebenco-border-strong: #D5D5D5;
    --gebenco-ink: #1A1A1A;
    --gebenco-muted: #444444;
    --gebenco-muted-soft: #666666;
    --gebenco-muted-light: #F0F0F0;
    --gebenco-radius-sm: 14px;
    --gebenco-radius-md: 20px;
    --gebenco-radius-lg: 28px;
    --gebenco-shadow-soft: 0 18px 40px rgba(27, 140, 79, 0.08);

    /* Legacy aliases kept for compatibility */
    --gebenco-white: #FFFFFF;
    --gebenco-primary: #1B8C4F;

    /* ── Blocksy palette overrides ──────────────────────────────
       Blocksy reads these variables for all its own components
       (links, focus states, WooCommerce checkout, form borders,
       badge colours, etc.). Without overrides the default values
       are blue (#2872FA / #1559ED) which clashes with the brand.
       Mapping: 1–2 = primary action / hover, 3–4 = text tones,
       5–8 = surface / background tones.
    ─────────────────────────────────────────────────────────── */
    --theme-palette-color-1: #1B8C4F; /* Gebenco Green – replaces Blocksy blue */
    --theme-palette-color-2: #0D5A34; /* Green Dark – hover / secondary */
    --theme-palette-color-3: #666666; /* Muted – body text tones */
    --theme-palette-color-4: #1A1A1A; /* Ink – deep text */
    --theme-palette-color-5: #E8E8E8; /* Stone – border / divider */
    --theme-palette-color-6: #F0F0F0; /* Muted Light – subtle surface */
    --theme-palette-color-7: #F5F5F5; /* Off-White – page background */
    --theme-palette-color-8: #FFFFFF; /* Snow – card / overlay background */
}

/* ============================================================
   1. SKIP LINK (Accessibility – WP required)
   ============================================================ */
.skip-link {
    position: absolute;
    left: -9999em;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 10000;
}

.skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 12px 24px;
    background: var(--gebenco-green);
    color: var(--gebenco-snow);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    z-index: 9999;
    overflow: visible;
    text-decoration: none;
}

/* ============================================================
   2. FOCUS RINGS (Accessibility – WP required)
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--gebenco-green-dark);
    outline-offset: 2px;
}

/* ============================================================
   3. GLOBAL RESETS
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    color: var(--gebenco-charcoal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.8;
    background-color: var(--gebenco-off-white);
    font-size: 1rem;
}

input,
textarea,
select,
button {
    accent-color: var(--gebenco-charcoal);
}

/* ============================================================
   4. TYPOGRAPHY  (Brand Guidelines §4)
   Inter Light (300) = aspirational headlines
   Inter Semi-Bold (600) = subheadings with impact
   Lora Regular (400) = body / editorial
   ============================================================ */
h1,
.site-title,
.entry-title,
.page-title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    /* Light – aspirational */
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--gebenco-charcoal);
    text-transform: none;
}

h2,
h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    /* Semi-Bold – subheadings with impact */
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--gebenco-charcoal);
    text-transform: none;
}

h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--gebenco-charcoal);
    text-transform: none;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

h4 {
    font-size: 1.1rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.9rem;
}

p {
    font-family: 'Lora', serif;
    margin-bottom: 1.5em;
    max-width: 66ch;
    line-height: 1.85;
}

/* Links: underlined in content per WP accessibility requirement */
a {
    color: var(--gebenco-charcoal);
    text-decoration: underline;
    text-decoration-color: var(--gebenco-stone);
    text-underline-offset: 3px;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

a:hover {
    color: var(--gebenco-green-dark);
    text-decoration-color: var(--gebenco-green);
}

/* Nav-context links: underline not required per WP spec */
.main-navigation a,
.header-menu a,
.ct-menu a,
.footer-links a,
.gebenco-tag,
.button,
button,
.wp-block-button__link {
    text-decoration: none;
}

/* ============================================================
   5. LAYOUT & WHITESPACE
   ============================================================ */
.container,
.wp-block-group__inner-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* Utility: serenity whitespace (Brand: aggressive negative space) */
.serene-section {
    padding-top: 72px;
    padding-bottom: 72px;
}

section {
    padding-top: 64px;
    padding-bottom: 64px;
}

/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    padding: 24px 40px;
}

.site-header.scrolled {
    background-color: var(--gebenco-snow);
    box-shadow: 0 1px 0 var(--gebenco-border);
}

/* Non-front-page: header is always solid — no transparent phase.
   On inner pages (Shop, Product, Journal, etc.) there is no hero
   image to justify white text on a transparent background, so we
   lock it to the snow/charcoal treatment immediately. */
body:not(.home) .site-header:not(.scrolled) {
    background-color: var(--gebenco-snow);
    box-shadow: 0 1px 0 var(--gebenco-border);
}

body:not(.home) .site-header:not(.scrolled) .site-title a,
body:not(.home) .site-header:not(.scrolled) .gebenco-logo-link {
    color: var(--gebenco-charcoal);
}

body:not(.home) .site-header:not(.scrolled) .header-menu-link {
    color: var(--gebenco-charcoal);
}

body:not(.home) .site-header:not(.scrolled) .header-menu-link:hover {
    color: var(--gebenco-green-dark);
}

body:not(.home) .site-header:not(.scrolled) .header-wishlist-link {
    color: var(--gebenco-charcoal);
}

body:not(.home) .site-header:not(.scrolled) .header-wishlist-link:hover {
    color: var(--gebenco-green-dark);
}

body:not(.home) .site-header:not(.scrolled) .menu-toggle__bar {
    background-color: var(--gebenco-charcoal);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo: Inter Semi-Bold per brand guidelines */
.site-title a,
.gebenco-logo-link,
.gebenco-logo-link {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--gebenco-charcoal);
    text-decoration: none;
}

/* White wordmark on transparent hero */
.site-header:not(.scrolled) .site-title a,
.site-header:not(.scrolled) .gebenco-logo-link,
.site-header:not(.scrolled) .gebenco-logo-link {
    color: var(--gebenco-snow);
}

.site-header:not(.scrolled) .header-menu-link {
    color: rgba(255, 255, 255, 0.85);
}

.site-header:not(.scrolled) .header-menu-link:hover {
    color: var(--gebenco-snow);
}

/* Nav links */
.main-navigation,
.header-menu,
.ct-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu-link,
.ct-menu a,
.main-navigation a {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gebenco-charcoal);
    transition: color 0.3s ease;
}

.header-menu-link:hover,
.ct-menu a:hover,
.main-navigation a:hover {
    color: var(--gebenco-green-dark);
}

/* Dropdown submenus */
.header-menu li {
    position: relative;
    list-style: none;
}

.header-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gebenco-snow);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    padding: 16px 0;
    z-index: 999;
    list-style: none;
    margin: 0;
}

.header-menu li:hover>.sub-menu,
.header-menu li:focus-within>.sub-menu {
    display: block;
}

.header-menu .sub-menu li {
    padding: 0;
    margin: 0;
}

.header-menu .sub-menu a {
    display: block;
    padding: 8px 28px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--gebenco-charcoal);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header-menu .sub-menu a:hover {
    background-color: var(--gebenco-off-white);
    color: var(--gebenco-green-dark);
}

/* Header actions container */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Wishlist header link (heart icon) */
.header-wishlist-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: var(--gebenco-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-wishlist-link:hover {
    color: var(--gebenco-green-dark);
    text-decoration: none;
}

.site-header:not(.scrolled) .header-wishlist-link {
    color: rgba(255, 255, 255, 0.85);
}

.site-header:not(.scrolled) .header-wishlist-link:hover {
    color: var(--gebenco-snow);
}

/* Hamburger toggle (hidden on desktop) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.menu-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--gebenco-charcoal);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header:not(.scrolled) .menu-toggle__bar {
    background-color: var(--gebenco-snow);
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Header CTA button */
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px !important;
    font-size: 0.75rem !important;
    color: var(--gebenco-snow) !important;
}

.header-cta-btn__icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
    color: var(--gebenco-snow);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-cta-btn__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

/* Search overlay */
.header-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gebenco-snow);
    padding: 100px 40px 40px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.header-search-overlay.is-open {
    transform: translateY(0);
}

.header-search-overlay__inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-search-overlay .search-form {
    flex: 1;
    display: flex;
    gap: 0;
}

.header-search-overlay .search-field {
    flex: 1;
    font-size: 1.2rem !important;
    padding: 16px 20px !important;
    border: none !important;
    border-bottom: 2px solid var(--gebenco-charcoal) !important;
    background: transparent;
    font-family: 'Inter', sans-serif;
}

.header-search-overlay .search-submit {
    padding: 16px 24px !important;
}

.header-search-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--gebenco-charcoal);
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.header-search-close:hover {
    color: var(--gebenco-green-dark);
}

/* ============================================================
   7. BUTTONS  (Brand: calm, tactile, high contrast)
      TOV: "Explore", "Discover", "Add to Basket" — not "BUY" or "GRAB"
   ============================================================ */
button,
.button,
input[type="submit"],
input[type="button"],
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background-color: var(--gebenco-green-dark) !important;
    color: var(--gebenco-snow) !important;
    border-radius: 999px !important;
    border: 1px solid var(--gebenco-green-dark) !important;
    padding: 14px 32px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    /* Semi-Bold per brand guidelines */
    letter-spacing: 0.12em !important;
    text-decoration: none !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 22px rgba(35, 37, 34, 0.12) !important;
    transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease,
        transform 0.35s ease !important;
}

button:hover,
.button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background-color: var(--gebenco-green) !important;
    border-color: var(--gebenco-green) !important;
    color: var(--gebenco-snow) !important;
    transform: translateY(-1px) !important;
}

/* Ghost variant */
.button--ghost {
    background-color: rgba(255, 255, 255, 0.72) !important;
    color: var(--gebenco-charcoal) !important;
    border: 1px solid var(--gebenco-charcoal) !important;
    box-shadow: none !important;
}

.button--ghost:hover {
    background-color: var(--gebenco-charcoal) !important;
    color: var(--gebenco-snow) !important;
}

/* ============================================================
   8. WOOCOMMERCE OVERRIDES
   ============================================================ */

/* Price */
.woocommerce-Price-amount,
.price,
.woocommerce div.product p.price {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--gebenco-charcoal);
}

/* Remove "Sale!" badge – brand: no discount language */
.onsale,
.woocommerce span.onsale {
    display: none !important;
}

/* Product grid */
.products,
.woocommerce ul.products {
    display: grid !important;
    gap: 40px !important;
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 1200px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 991px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
}

.woocommerce ul.products li.product {
    margin: 0 !important;
    padding: 18px;
    border: 1px solid var(--gebenco-border);
    border-radius: var(--gebenco-radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--gebenco-shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: grid;
    gap: 16px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link img {
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: contain;
    border-radius: calc(var(--gebenco-radius-lg) - 4px);
    background: linear-gradient(180deg, #ffffff 0%, #f4f1ed 100%);
    padding: 18px;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.02);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.01em;
    margin-top: 0;
    margin-bottom: 0;
}

.woocommerce ul.products li.product .price {
    display: block;
    margin: 0;
    color: var(--gebenco-muted);
}

.woocommerce ul.products li.product .button {
    align-self: flex-start;
    margin-top: auto !important;
}

.woocommerce .quantity input.qty {
    border-radius: var(--gebenco-radius-sm);
    border: 1px solid var(--gebenco-border-strong);
    font-family: 'Inter', sans-serif;
    padding: 8px 12px;
    width: 64px;
    text-align: center;
}

/* Related products suppressed by PHP filter; CSS fallback */
.related.products {
    display: none !important;
}

/* Upsells */
.up-sells.upsells.products h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-top-color: var(--gebenco-green) !important;
    border-radius: var(--gebenco-radius-sm);
    font-family: 'Inter', sans-serif;
}

/* ============================================================
   9. SINGLE PRODUCT PAGE  (Brand: "Calm Hypothesis" layout)
   ============================================================ */

/* Single product container – ensures consistent max-width across all sections */
.single-product .site-main .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.gebenco-breadcrumb--product {
    max-width: 1200px;
    margin: 120px auto 24px;
    padding: 0 40px;
}

.woocommerce .woocommerce-product-wrap {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 48px !important;
    max-width: 100%;
    margin: 0;
    padding: 0 0 40px;
    align-items: start !important;
}

.woocommerce .product-entry-wrapper {
    display: contents !important;
}

@media (min-width: 992px) {
    .single-product .woocommerce .woocommerce-product-wrap {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        align-items: start !important;
    }
}

.woocommerce-product-gallery,
.summary.entry-summary {
    min-width: 0;
}

.woocommerce-product-gallery {
    position: sticky;
    top: 130px;
}

.woocommerce-product-gallery img {
    max-height: 72vh;
    width: 100%;
    object-fit: contain;
    border-radius: var(--gebenco-radius-lg);
    background: linear-gradient(180deg, #ffffff 0%, #f4f1ed 100%);
}

.summary.entry-summary {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px;
    border: 1px solid var(--gebenco-border);
    border-radius: var(--gebenco-radius-lg);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--gebenco-shadow-soft);
}

.gebenco-product-kicker {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--gebenco-muted);
}

.summary.entry-summary .product_title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    margin-bottom: 0;
}

.summary.entry-summary p.price,
.summary.entry-summary span.price {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: var(--gebenco-ink);
}

.summary.entry-summary .woocommerce-product-details__short-description,
.summary.entry-summary .woocommerce-product-details__short-description p {
    margin: 0;
    padding: 12px 0 18px 0;
    color: var(--gebenco-muted);
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Product Intro — Gebenco voice before description */
.gebenco-product-intro {
    padding: 18px 0;
    border-top: 1px solid var(--gebenco-border);
    border-bottom: 1px solid var(--gebenco-border);
    margin: 12px 0 18px 0;
}

.gebenco-product-intro__text {
    margin: 0;
    padding: 0;
    color: var(--gebenco-muted);
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* Description Expandable Section */
.gebenco-description-wrapper {
    position: relative;
    overflow: hidden;
}

.gebenco-description-wrapper.collapsed {
    max-height: 80px;
    overflow: hidden;
}

.gebenco-description-wrapper.expanded {
    max-height: none;
}

.gebenco-description-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gebenco-primary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 0;
    cursor: pointer;
    margin-top: 8px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.gebenco-description-toggle:hover {
    text-decoration: underline;
}

.gebenco-description-wrapper.has-overflow .gebenco-description-toggle {
    display: inline-block;
}

.gebenco-description-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--gebenco-snow));
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.gebenco-description-wrapper.expanded::after {
    opacity: 0;
    pointer-events: none;
}

.woocommerce-product-summary-wrap .variations_form {
    display: grid;
    gap: 18px;
}

.woocommerce-product-summary-wrap form.cart {
    display: grid;
    gap: 18px;
}

/* Ensure quantity + add-to-cart button layout */
.woocommerce-product-summary-wrap form.cart .quantity + .button {
    width: 100%;
}

.woocommerce-product-summary-wrap table.variations {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.woocommerce-product-summary-wrap table.variations td,
.woocommerce-product-summary-wrap table.variations th {
    padding: 0;
}

.woocommerce-product-summary-wrap table.variations label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--gebenco-muted);
    display: block;
    margin-bottom: 6px;
}

.woocommerce-product-summary-wrap table.variations td:nth-child(2) {
    width: 100%;
}

.woocommerce-product-summary-wrap select,
.woocommerce-product-summary-wrap input.qty {
    border-radius: var(--gebenco-radius-sm) !important;
    border: 1px solid var(--gebenco-border-strong) !important;
    padding: 14px 16px !important;
    min-height: 56px;
    background: var(--gebenco-snow) !important;
    color: var(--gebenco-charcoal) !important;
    width: 100% !important;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.woocommerce-product-summary-wrap select:focus,
.woocommerce-product-summary-wrap input.qty:focus {
    border-color: var(--gebenco-green) !important;
    box-shadow: 0 0 0 3px rgba(27, 140, 79, 0.1) !important;
    outline: none !important;
}

/* Quantity selector layout */
.woocommerce-product-summary-wrap .quantity {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

.woocommerce-product-summary-wrap .quantity input.qty {
    width: 100%;
    margin: 0;
    padding: 14px 16px !important;
    min-height: 56px;
    text-align: center;
    border-radius: 0;
    flex: 1;
}

.woocommerce-product-summary-wrap .quantity button {
    padding: 14px 16px !important;
    min-height: 56px;
    min-width: 56px;
    background: var(--gebenco-snow) !important;
    border: 1px solid var(--gebenco-border-strong) !important;
    color: var(--gebenco-charcoal) !important;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce-product-summary-wrap .quantity button:first-child {
    border-radius: var(--gebenco-radius-sm) 0 0 var(--gebenco-radius-sm);
    border-right: none;
}

.woocommerce-product-summary-wrap .quantity button:last-child {
    border-radius: 0 var(--gebenco-radius-sm) var(--gebenco-radius-sm) 0;
    border-left: none;
}

.woocommerce-product-summary-wrap .quantity button:hover {
    background: var(--gebenco-light) !important;
}

.woocommerce-product-summary-wrap .single_add_to_cart_button {
    width: 100%;
}

/* Trust snippet below Add to Basket (brand playbook §3) */
.gebenco-trust-snippet {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: var(--gebenco-muted-soft);
    margin-top: 12px;
    font-style: italic;
}

/* Shipping & returns accordion */
.gebenco-shipping-info {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gebenco-border);
}

.gebenco-shipping-info details {
    margin-bottom: 12px;
    padding: 0 18px;
    border-radius: var(--gebenco-radius-md);
    background: var(--gebenco-muted-light);
}

.gebenco-shipping-info summary {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 12px 0;
    border-bottom: 1px solid var(--gebenco-border);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gebenco-charcoal);
}

.gebenco-shipping-info summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.gebenco-shipping-info details[open] summary::after {
    transform: rotate(45deg);
}

.gebenco-shipping-info details p {
    padding: 16px 0;
    font-size: 0.9rem;
    color: var(--gebenco-muted);
    max-width: none;
    margin: 0;
    font-family: 'Lora', serif;
    line-height: 1.7;
}

/* ============================================================
   10. JOURNAL / BLOG  (Brand: editorial magazine aesthetic)
   ============================================================ */
.single .site-main,
.single-post .site-main {
    max-width: 100%;
    padding: 0;
}

.single article.post,
.single-post article.post {
    padding-top: 120px;
}

.single .post-thumbnail,
.single-post .post-thumbnail {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    max-height: 70vh;
}

.single .post-thumbnail img,
.single-post .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single .entry-title,
.single-post .entry-title {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 300;
    /* Light for aspirational feel */
    letter-spacing: -0.03em;
    max-width: 800px;
    margin: 60px auto 16px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
}

.gebenco-post-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--gebenco-muted);
    margin-bottom: 60px;
}

/* Centre category tags and content on blog posts */
.single-post .entry-header,
.single .entry-header {
    text-align: center;
}

/* Ensure meta line is always centred regardless of Blocksy flex overrides */
.single-post .entry-header .gebenco-post-meta,
.single .entry-header .gebenco-post-meta {
    width: 100%;
    justify-content: center;
    text-align: center;
    display: flex !important;
    margin-left: auto;
    margin-right: auto;
}

.single-post .entry-header .gebenco-breadcrumb,
.single .entry-header .gebenco-breadcrumb {
    margin-top: 34px;
    margin-bottom: 30px;
}

.single-post .cat-links,
.single .cat-links {
    text-align: center;
    display: block;
    margin-bottom: 20px;
}

.single-post .cat-links a,
.single .cat-links a {
    display: inline;
    margin: 0 4px;
}

.single-post .gebenco-tag,
.single .gebenco-tag {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

.gebenco-post-meta a {
    color: var(--gebenco-muted);
    text-decoration: none;
}

.gebenco-post-meta a:hover {
    color: var(--gebenco-green-dark);
}

.gebenco-post-meta__author {
    font-weight: 500;
}

.gebenco-post-meta__separator {
    color: var(--gebenco-stone);
}

.single .entry-content,
.single-post .entry-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px 100px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.single .entry-content>*+* {
    margin-top: 1.8em;
}

.single-post .entry-footer,
.single .entry-footer {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    justify-content: flex-start;
    text-align: left;
}

.single-post .entry-footer .tags-links,
.single .entry-footer .tags-links {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.single .entry-content h2,
.single .entry-content h3,
.single-post .entry-content h2,
.single-post .entry-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

.single .entry-content h2,
.single-post .entry-content h2 {
    margin-top: 2.6em;
    margin-bottom: 0.75em;
}

.single .entry-content h3,
.single-post .entry-content h3 {
    margin-top: 2.2em;
    margin-bottom: 0.7em;
}

.single .entry-content ul,
.single .entry-content ol,
.single-post .entry-content ul,
.single-post .entry-content ol {
    padding-left: 1.3em;
}

.single .entry-content li+li,
.single-post .entry-content li+li {
    margin-top: 0.6em;
}

/* No sidebars on Journal */
.single .widget-area,
.single-post .widget-area,
.single .sidebar {
    display: none !important;
}

/* Archive / Journal index */
.blog .site-main,
.archive .site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 80px;
}

.blog .posts-grid,
.archive .posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.archive article,
.blog article {
    border: none;
    padding: 0;
}

.archive .post-thumbnail img,
.blog .post-thumbnail img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.archive article:hover .post-thumbnail img,
.blog article:hover .post-thumbnail img {
    transform: scale(1.02);
}

.archive .entry-title,
.blog .entry-title {
    font-size: 1.4rem;
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: 8px;
}

.archive .entry-meta,
.blog .entry-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gebenco-muted);
}

.archive .entry-summary p,
.blog .entry-summary p {
    max-width: none;
    margin-bottom: 24px;
    color: var(--gebenco-muted);
}

.archive article,
.blog article {
    padding-bottom: 40px;
}

.gebenco-post-card__category {
    margin-top: 20px;
}

/* ============================================================
   11. FOOTER  (4-column grid – competitor parity)
   ============================================================ */
.site-footer {
    background-color: var(--gebenco-green);
    color: rgba(255, 255, 255, 0.85);
    padding: 80px 40px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col--brand {
    padding-right: 24px;
}

.site-footer .gebenco-wordmark {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--gebenco-snow);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 100%;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    border-radius: 999px;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    color: var(--gebenco-snow);
    background-color: rgba(255, 255, 255, 0.12);
}

.footer-col__heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--gebenco-snow);
    margin-bottom: 20px;
}

.footer-col__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col__links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
}

.footer-col__links a:hover,
.footer-col__links a:focus-visible {
    color: var(--gebenco-snow);
}

/* Newsletter */
.footer-newsletter {
    margin-top: 32px;
}

.footer-newsletter__form {
    display: flex;
    gap: 0;
    margin-top: 12px;
}

.footer-newsletter__form input[type="email"] {
    flex: 1;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-right: none !important;
    color: var(--gebenco-snow) !important;
    font-size: 0.82rem;
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
}

.footer-newsletter__form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter__btn {
    background: var(--gebenco-green) !important;
    border: 1px solid var(--gebenco-green) !important;
    color: var(--gebenco-charcoal) !important;
    padding: 10px 14px !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease !important;
}

.footer-newsletter__btn:hover {
    background: var(--gebenco-green-dark) !important;
}

.footer-support-card {
    display: grid;
    gap: 16px;
}

.footer-support-card__copy {
    font-family: 'Lora', serif;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    max-width: none;
}

.footer-support-card__button {
    justify-self: start;
    color: var(--gebenco-green) !important;
    border-color: rgba(255, 255, 255, 0.68) !important;
    background-color: var(--gebenco-snow) !important;
    min-height: 48px;
}

.footer-support-card__button:hover,
.footer-support-card__button:focus-visible {
    background-color: var(--gebenco-off-white) !important;
    border-color: var(--gebenco-snow) !important;
    color: var(--gebenco-green-dark) !important;
}

/* Footer bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* ============================================================
   12. FORMS & INPUTS
   ============================================================ */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea,
select {
    border-radius: var(--gebenco-radius-sm) !important;
    border: 1px solid var(--gebenco-border-strong) !important;
    font-family: 'Lora', serif;
    padding: 14px 18px;
    width: 100%;
    min-height: 54px;
    background: var(--gebenco-snow);
    color: var(--gebenco-charcoal);
    transition: border-color 0.3s ease, outline 0.2s ease;
    font-size: 1rem;
    outline: none;
    appearance: none;
}

textarea {
    min-height: 180px;
}

select {
    min-height: 56px;
}

input[type="password"] {
    letter-spacing: 0.1em;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--gebenco-green-dark) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(13, 90, 52, 0.1), inset 0 0 0 1px var(--gebenco-green-dark) !important;
}

/* ============================================================
   13. UTILITY CLASSES
   ============================================================ */
.text-sage {
    color: var(--gebenco-green);
}

.text-charcoal {
    color: var(--gebenco-charcoal);
}

.bg-linen {
    background-color: var(--gebenco-off-white);
}

.bg-stone {
    background-color: var(--gebenco-stone);
}

.bg-charcoal {
    background-color: var(--gebenco-charcoal);
    color: var(--gebenco-snow);
}

.text-center {
    text-align: center;
}

.gebenco-divider {
    height: 1px;
    background-color: var(--gebenco-border);
    border: none;
    margin: 60px 0;
}

/* Category tag / label */
.gebenco-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--gebenco-charcoal);
    border: 1px solid var(--gebenco-stone);
    padding: 8px 14px;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gebenco-tag:hover {
    border-color: var(--gebenco-green);
    background-color: var(--gebenco-green);
    color: var(--gebenco-snow);
}

/* Blog post tags (entry-footer) */
.entry-footer,
.gebenco-post-tags {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gebenco-border);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.entry-footer a,
.gebenco-post-tags a {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--gebenco-charcoal);
    border: 1px solid var(--gebenco-stone);
    padding: 8px 14px;
    border-radius: 20px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.entry-footer a:hover,
.gebenco-post-tags a:hover {
    border-color: var(--gebenco-green);
    background-color: var(--gebenco-green);
    color: var(--gebenco-snow);
}

/* ============================================================
   CART ICON FOOTER INVERSION (Phase 2)
   ============================================================ */
.xoo-wsc-basket.is-at-footer {
    color: var(--gebenco-snow) !important;
    background-color: rgba(43, 43, 43, 0.8) !important;
}

/* ============================================================
   HIDE WISHLIST PLUGIN HEADER OVERLAY (Phase 2)
   ============================================================ */
.stw-header-btn,
.stw-header-text {
    display: none !important;
}

/* Ensure wishlist icon link is properly visible */
.header-wishlist-link {
    position: relative;
    z-index: 100;
}

/* Account link styling */
.header-account-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
    padding: 4px;
    border-radius: 4px;
}

.header-account-link:hover {
    opacity: 0.7;
}

/* ============================================================
   14. RESPONSIVE
   ============================================================ */

/* --- Tablet & small desktop (≤ 900px) --- */
@media (max-width: 900px) {

    /* Header: solid background on mobile */
    .site-header {
        padding: 14px 20px;
        background-color: var(--gebenco-snow);
        box-shadow: 0 1px 0 var(--gebenco-border);
    }

    .site-header:not(.scrolled) .site-title a,
    .site-header:not(.scrolled) .gebenco-logo-link {
        color: var(--gebenco-charcoal);
    }

    .site-header:not(.scrolled) .header-menu-link {
        color: var(--gebenco-charcoal);
    }

    .site-header:not(.scrolled) .header-wishlist-link {
        color: var(--gebenco-charcoal);
    }

    .site-header:not(.scrolled) .menu-toggle__bar {
        background-color: var(--gebenco-charcoal);
    }

    /* Show hamburger, hide CTA button */
    .menu-toggle {
        display: flex;
    }

    .header-cta-btn {
        display: none !important;
    }

    /* Mobile navigation: full-screen overlay */
    .main-navigation {
        display: none;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gebenco-snow);
        z-index: 998;
        padding: 40px 32px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-navigation.is-open {
        display: block;
    }

    .main-navigation .header-menu,
    .main-navigation .ct-menu {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .main-navigation .header-menu li {
        width: 100%;
        border-bottom: 1px solid var(--gebenco-border);
    }

    .main-navigation .header-menu a {
        display: block;
        padding: 16px 0;
        font-size: 0.9rem;
    }

    /* Submenus: static on mobile (always visible under parent) */
    .header-menu .sub-menu {
        position: static;
        display: none;
        box-shadow: none;
        min-width: 0;
        padding: 0 0 8px 20px;
        transform: none;
        background: transparent;
    }

    .header-menu li.is-open>.sub-menu {
        display: block;
    }

    .header-menu .sub-menu a {
        padding: 10px 0;
        font-size: 0.82rem;
        color: var(--gebenco-charcoal); /* was --gebenco-muted: too faint on white */
    }

    /* Product grid: 2 columns on tablet */
    .products,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }

    /* Product page: keep 2 columns on large tablets/desktop */
    .woocommerce .woocommerce-product-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .woocommerce-product-gallery {
        position: static;
    }

    .gebenco-buying-guide__grid {
        grid-template-columns: 1fr;
    }

    /* Blog grid: single column */
    .blog .posts-grid,
    .archive .posts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Container padding */
    .container,
    .wp-block-group__inner-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    /* Reduced section spacing */
    section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .serene-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* Room grid: 2 columns */
    .gebenco-rooms__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Journal preview: 2 columns then 1 */
    .gebenco-journal-preview__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    /* USP strip: stack vertically */
    .gebenco-usp__list {
        flex-direction: column;
        gap: 28px;
    }

    /* About page: single column */
    .gebenco-about-narrative__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Values: 2 columns */
    .gebenco-values__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    /* Contact: single column */
    .gebenco-contact-body__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer: 2 columns */
    .site-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
    }

    /* Category journal teaser: single column */
    .gebenco-cat-journal-teaser__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Search overlay */
    .header-search-overlay {
        padding: 80px 24px 32px;
    }
}

/* --- Mobile (≤ 600px) --- */
@media (max-width: 600px) {

    /* Product grid: single column */
    .products,
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    /* Room grid: single column */
    .gebenco-rooms__grid {
        grid-template-columns: 1fr;
    }

    /* Journal preview: single column */
    .gebenco-journal-preview__grid {
        grid-template-columns: 1fr;
    }

    /* Values: single column */
    .gebenco-values__grid {
        grid-template-columns: 1fr;
    }

    /* Footer: single column */
    .site-footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Hero: reduce headline size */
    .gebenco-hero__headline {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    /* Section padding */
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .serene-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

/* ============================================================
   PAGE TEMPLATES — All custom template CSS
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   SHARED SECTION HEADER
   ───────────────────────────────────────────────────────────── */
.gebenco-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.gebenco-section-header h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.gebenco-section-header p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--gebenco-muted-soft);
    max-width: 50ch;
    margin: 0 auto;
    font-style: italic;
}

/* ─────────────────────────────────────────────────────────────
   HOMEPAGE — HERO
   ───────────────────────────────────────────────────────────── */
.gebenco-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gebenco-charcoal);
    background-image: var(--hero-img,
            linear-gradient(135deg, var(--gebenco-charcoal) 0%, #4a4f42 60%, var(--gebenco-green-dark) 100%));
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Dark overlay for text legibility */
.gebenco-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.45) 60%,
            rgba(0, 0, 0, 0.60) 100%);
    z-index: 1;
}

.gebenco-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.gebenco-hero__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    display: block;
    margin-bottom: 20px;
}

.gebenco-hero__headline {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    letter-spacing: -0.04em;
    line-height: 1.0;
    color: var(--gebenco-snow);
    margin-bottom: 24px;
}

.gebenco-hero__sub {
    font-family: 'Lora', serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin: 0 auto 40px;
    max-width: 50ch;
    line-height: 1.7;
}

/* Scroll indicator */
.gebenco-hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.gebenco-hero__scroll-indicator span {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    margin: 0 auto;
    animation: gebenco-scroll-fade 2s ease infinite;
}

@keyframes gebenco-scroll-fade {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scaleY(1);
        transform-origin: top;
    }
}

/* ─────────────────────────────────────────────────────────────
   HOMEPAGE — USP STRIP
   ───────────────────────────────────────────────────────────── */
.gebenco-usp {
    background-color: var(--gebenco-snow);
    border-bottom: 1px solid var(--gebenco-border);
    padding: 40px;
}

.gebenco-usp__list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 80px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 1200px;
}

.gebenco-usp__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.gebenco-usp__icon {
    font-size: 0.8rem;
    color: var(--gebenco-green);
    margin-bottom: 4px;
}

.gebenco-usp__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gebenco-charcoal);
}

.gebenco-usp__desc {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: var(--gebenco-muted);
    font-style: italic;
    max-width: 22ch;
}

/* ─────────────────────────────────────────────────────────────
   HOMEPAGE — SHOP BY ROOM GRID
   ───────────────────────────────────────────────────────────── */
.gebenco-rooms {
    background-color: var(--gebenco-off-white);
    padding-left: 40px;
    padding-right: 40px;
}

.gebenco-rooms__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
    justify-content: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.gebenco-room-card {
    position: relative;
    display: block;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: var(--gebenco-stone);
    background-image: var(--room-img, none);
    background-size: cover;
    background-position: center;
    text-decoration: none;
}

.gebenco-room-card:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.92);
    outline-offset: 4px;
}

.gebenco-room-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 60%);
    transition: opacity 0.4s ease;
}

.gebenco-room-card:hover::before {
    opacity: 0.8;
}

.gebenco-room-card:hover {
    text-decoration: none;
}

.gebenco-room-card__overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 1;
}

.gebenco-room-card__label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gebenco-snow);
    margin-bottom: 4px;
}

.gebenco-room-card__desc {
    display: block;
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    transform: translateY(6px);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gebenco-room-card:hover .gebenco-room-card__desc {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: none), (max-width: 900px) {
    .gebenco-room-card::before {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.18) 68%);
    }

    .gebenco-room-card__desc {
        opacity: 1;
        transform: none;
        color: rgba(255, 255, 255, 0.88);
        max-width: 24ch;
    }
}

.gebenco-rooms__cta {
    text-align: center;
}

/* ─────────────────────────────────────────────────────────────
   SHARED — BRAND STATEMENT
   ───────────────────────────────────────────────────────────── */
.gebenco-statement {
    background-color: var(--gebenco-charcoal);
    padding: 100px 40px;
    text-align: center;
}

.gebenco-statement__inner {
    max-width: 800px;
    margin: 0 auto;
}

.gebenco-statement__quote {
    margin: 0 0 24px;
    border: none;
    padding: 0;
}

.gebenco-statement__quote p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--gebenco-snow);
    margin: 0;
    max-width: none;
}

.gebenco-statement__attr {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    font-style: normal;
}

/* ─────────────────────────────────────────────────────────────
   HOMEPAGE — NEW ARRIVALS
   ───────────────────────────────────────────────────────────── */
.gebenco-new-arrivals {
    background-color: var(--gebenco-snow);
    padding-left: 40px;
    padding-right: 40px;
}

.gebenco-products-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.gebenco-new-arrivals__cta {
    text-align: center;
    margin-top: 48px;
}

/* ─────────────────────────────────────────────────────────────
   HOMEPAGE — JOURNAL PREVIEW
   ───────────────────────────────────────────────────────────── */
.gebenco-journal-preview {
    background-color: var(--gebenco-off-white);
    padding-left: 40px;
    padding-right: 40px;
}

.gebenco-journal-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.gebenco-journal-card {
    display: flex;
    flex-direction: column;
}

.gebenco-journal-card__thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
    margin-bottom: 20px;
}

.gebenco-journal-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gebenco-journal-card:hover .gebenco-journal-card__thumb img {
    transform: scale(1.04);
}

.gebenco-journal-card__body {
    flex: 1;
}

.gebenco-journal-card__title {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 10px 0 8px;
    line-height: 1.3;
}

.gebenco-journal-card__title a {
    color: var(--gebenco-charcoal);
    text-decoration: none;
}

.gebenco-journal-card__title a:hover {
    color: var(--gebenco-green-dark);
}

.gebenco-journal-card__excerpt {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: var(--gebenco-muted-soft);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: none;
}

.gebenco-journal-card__read {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gebenco-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.gebenco-journal-card__read:hover {
    color: var(--gebenco-green-dark);
    text-decoration: none;
}

.gebenco-journal-preview__cta {
    text-align: center;
    margin-top: 56px;
}

/* ─────────────────────────────────────────────────────────────
   HOMEPAGE — CLOSING CTA
   ───────────────────────────────────────────────────────────── */
.gebenco-closing-cta {
    background-color: var(--gebenco-off-white);
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
}

.gebenco-closing-cta__inner {
    max-width: 680px;
    margin: 0 auto;
}

.gebenco-closing-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.gebenco-closing-cta p {
    font-family: 'Lora', serif;
    color: var(--gebenco-muted-soft);
    font-style: italic;
    margin: 0 auto 32px;
}

/* ─────────────────────────────────────────────────────────────
   PRODUCT CATEGORY — HERO
   ───────────────────────────────────────────────────────────── */
.gebenco-cat-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    padding-left: 40px;
    padding-right: 40px;
    background-color: var(--gebenco-off-white);
    background-image: var(--cat-img, none);
    background-size: cover;
    background-position: center;
    position: relative;
}

.gebenco-cat-hero[style*="--cat-img"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(247, 245, 242, 0.85);
}

.gebenco-cat-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gebenco-breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--gebenco-muted);
    margin-bottom: 20px;
    justify-content: center;
    display: flex;
}

.gebenco-breadcrumb a {
    color: var(--gebenco-muted);
    text-decoration: none;
}

.gebenco-breadcrumb a:hover {
    color: var(--gebenco-green-dark);
}

.gebenco-cat-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.gebenco-cat-hero__eyebrow {
    margin-bottom: 18px;
}

.gebenco-cat-hero__desc {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--gebenco-muted);
    max-width: 60ch;
    font-style: italic;
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
}

.gebenco-shop-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

.gebenco-collection-term-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    justify-content: center;
}

.gebenco-collection-term {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(51, 51, 51, 0.12);
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gebenco-charcoal);
    background-color: rgba(255, 255, 255, 0.75);
}

.gebenco-collection-term:hover {
    border-color: var(--gebenco-green);
    color: var(--gebenco-green-dark);
}

.gebenco-collection-intro {
    background-color: var(--gebenco-snow);
    padding: 44px 40px 0;
}

.gebenco-collection-intro__inner {
    max-width: 760px;
    margin: 0 auto;
    color: var(--gebenco-muted);
}

.gebenco-collection-intro__inner>*:first-child {
    margin-top: 0;
}

.gebenco-collection-intro__inner>*:last-child {
    margin-bottom: 0;
}

.gebenco-collection-hub {
    padding-left: 40px;
    padding-right: 40px;
    background-color: var(--gebenco-snow);
}

.gebenco-collection-hub__inner,
.gebenco-collection-featured__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.gebenco-collection-hub__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gebenco-collection-card {
    position: relative;
    min-height: 320px;
    padding: 28px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(51, 51, 51, 0.06), rgba(51, 51, 51, 0.7)),
        var(--collection-card-img, linear-gradient(135deg, #f7f5f2, #e4e4e3));
    background-size: cover;
    background-position: center;
    color: var(--gebenco-snow);
    text-decoration: none;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gebenco-collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.08);
}

.gebenco-collection-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(51, 51, 51, 0.1) 0%, rgba(51, 51, 51, 0.65) 100%);
}

.gebenco-collection-card__body {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.gebenco-collection-card__eyebrow,
.gebenco-collection-card__count {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gebenco-collection-card__eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.gebenco-collection-card__title {
    color: var(--gebenco-snow);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    margin: 0;
}

.gebenco-collection-card__desc {
    color: rgba(255, 255, 255, 0.84);
    font-family: 'Lora', serif;
    line-height: 1.8;
    margin: 0;
    max-width: 36ch;
}

.gebenco-collection-card__count {
    color: rgba(255, 255, 255, 0.74);
}

.gebenco-collection-featured {
    background-color: var(--gebenco-off-white);
    padding: 0 40px 80px;
}

.gebenco-collection-featured__cta {
    margin-top: 32px;
    text-align: center;
}

.gebenco-shop-taxonomy,
.gebenco-shop-products {
    scroll-margin-top: 120px;
}

.gebenco-shop-taxonomy {
    background-color: var(--gebenco-off-white);
    padding-left: 40px;
    padding-right: 40px;
}

.gebenco-collection-products-header {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

.gebenco-collection-products-header h2 {
    margin: 0;
}

.gebenco-collection-products-header p {
    margin: 0;
    color: var(--gebenco-muted);
    max-width: 60ch;
}

.gebenco-cat-products {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.gebenco-buying-guide {
    padding: 0 40px 12px;
    background: var(--gebenco-snow);
}

.gebenco-buying-guide__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
    border-radius: var(--gebenco-radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 245, 242, 0.96) 100%);
    border: 1px solid var(--gebenco-border);
    box-shadow: var(--gebenco-shadow-soft);
}

.gebenco-buying-guide__header {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.gebenco-buying-guide__header h2,
.gebenco-buying-guide__header p {
    margin: 0;
}

.gebenco-buying-guide__header p {
    color: var(--gebenco-muted);
    max-width: 68ch;
}

.gebenco-buying-guide__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gebenco-buying-guide__card {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: var(--gebenco-radius-md);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--gebenco-border);
}

.gebenco-buying-guide__count {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gebenco-muted);
}

.gebenco-buying-guide__card p {
    margin: 0;
    max-width: none;
    color: var(--gebenco-charcoal);
}

.gebenco-empty-cat {
    text-align: center;
    padding: 80px 40px;
}

.gebenco-empty-cat--curated {
    display: grid;
    gap: 20px;
    justify-items: center;
}

.gebenco-empty-cat--curated .gebenco-newsletter-signup {
    width: min(100%, 720px);
    margin-top: 16px;
}

/* Journal teaser below category grid */
.gebenco-cat-journal-teaser {
    background-color: var(--gebenco-off-white);
    padding: 80px 40px;
}

.gebenco-cat-journal-teaser__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gebenco-cat-journal-teaser__img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: var(--gebenco-radius-lg);
}

.gebenco-cat-journal-teaser__body h2 {
    font-size: 1.6rem;
    font-weight: 300;
    margin: 16px 0 12px;
}

.gebenco-cat-journal-teaser__body p {
    font-family: 'Lora', serif;
    color: var(--gebenco-muted);
    margin-bottom: 24px;
}

/* ─────────────────────────────────────────────────────────────
   ABOUT PAGE
   ───────────────────────────────────────────────────────────── */
.gebenco-about-intro {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 140px;
    background-color: var(--gebenco-off-white);
}

.gebenco-about-intro__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.gebenco-about-intro h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    text-align: center;
}

.gebenco-about-intro__lead {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: var(--gebenco-muted);
    font-style: italic;
    line-height: 1.8;
    max-width: none;
}

.gebenco-about-narrative {
    background-color: var(--gebenco-snow);
    padding-left: 40px;
    padding-right: 40px;
}

.gebenco-about-narrative__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.gebenco-about-narrative__col h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.gebenco-about-narrative__col p {
    font-family: 'Lora', serif;
    line-height: 1.9;
    color: var(--gebenco-muted);
}

.gebenco-values {
    background-color: var(--gebenco-off-white);
    padding: 100px 40px;
}

.gebenco-values__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.gebenco-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.gebenco-value-card {
    border-top: 2px solid var(--gebenco-green);
    padding-top: 28px;
}

.gebenco-value-card__num {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: var(--gebenco-muted);
    display: block;
    margin-bottom: 16px;
}

.gebenco-value-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.gebenco-value-card p {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: var(--gebenco-muted);
    line-height: 1.8;
    max-width: none;
}

/* About lifestyle image block */
.gebenco-about-image {
    width: 100%;
    height: 60vh;
    background-color: var(--gebenco-stone);
    background-image: var(--about-img, none);
    background-size: cover;
    background-position: center;
}

/* ─────────────────────────────────────────────────────────────
   CONTACT PAGE
   ───────────────────────────────────────────────────────────── */
.gebenco-contact-hero {
    padding: 140px 40px 80px;
    background-color: var(--gebenco-off-white);
}

.gebenco-contact-hero__inner {
    max-width: 680px;
    margin: 0 auto;
}

.gebenco-contact-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin: 16px 0 24px;
}

.gebenco-contact-hero p {
    font-family: 'Lora', serif;
    font-style: italic;
    color: var(--gebenco-muted);
    max-width: none;
}

.gebenco-contact-body {
    background-color: var(--gebenco-snow);
    padding-left: 40px;
    padding-right: 40px;
}

.gebenco-contact-body__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.gebenco-contact-info h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.gebenco-contact-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px;
}

.gebenco-contact-detail__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gebenco-muted-soft);
}

.gebenco-contact-detail__value {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: var(--gebenco-charcoal);
    text-decoration: none;
}

.gebenco-contact-detail a:hover {
    color: var(--gebenco-green-dark);
}

.gebenco-contact-info__note {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: var(--gebenco-muted);
    font-style: italic;
    line-height: 1.7;
    max-width: none;
    margin: 0;
}

.gebenco-contact-form-card {
    display: grid;
    gap: 20px;
    padding: 32px;
    border: 1px solid var(--gebenco-border);
    background-color: var(--gebenco-off-white);
    border-radius: var(--gebenco-radius-lg);
    box-shadow: var(--gebenco-shadow-soft);
}

.gebenco-contact-form-native {
    display: grid;
    gap: 18px;
}

.gebenco-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.gebenco-contact-form-native label,
.gebenco-newsletter-form {
    display: grid;
    gap: 10px;
}

.gebenco-contact-form-native span {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--gebenco-muted);
}

.gebenco-contact-form-native input,
.gebenco-contact-form-native textarea,
.gebenco-contact-form-native select,
.gebenco-newsletter-form input {
    width: 100%;
    border: 1px solid var(--gebenco-border-strong);
    background-color: var(--gebenco-snow);
    color: var(--gebenco-charcoal);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 16px 18px;
    min-height: 54px;
    border-radius: var(--gebenco-radius-sm);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    line-height: 1.35;
}

.gebenco-contact-form-native textarea {
    min-height: 220px;
}

.gebenco-contact-form-native select {
    min-height: 56px;
}

.gebenco-contact-form-native textarea {
    resize: vertical;
    min-height: 180px;
}

.gebenco-contact-form-native select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232B2B2B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    overflow: visible;
    text-align: center;
    text-align-last: center;
}

.gebenco-form-privacy {
    font-size: 0.85rem;
    color: var(--gebenco-muted);
    max-width: none;
    margin: 0;
}

.gebenco-form-feedback {
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: none;
}

.gebenco-form-feedback--success {
    background-color: rgba(178, 184, 163, 0.18);
    color: var(--gebenco-charcoal);
}

.gebenco-form-feedback--error {
    background-color: rgba(209, 183, 167, 0.24);
    color: var(--gebenco-charcoal);
}

.gebenco-honeypot {
    position: absolute !important;
    left: -9999px !important;
}

form select,
form option,
.geb-quiz-lead-gate select,
.gebenco-quiz-lead-form-native select,
.woocommerce form .input-text,
.woocommerce form select {
    text-overflow: clip;
    white-space: nowrap;
}

form select,
.woocommerce form select,
.geb-quiz-lead-gate select,
.gebenco-quiz-lead-form-native select {
    min-height: 48px;
    line-height: 1.35;
    text-align: center;
    text-align-last: center;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

.gebenco-native-quiz {
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid var(--gebenco-border);
    border-radius: var(--gebenco-radius-lg);
    background: var(--gebenco-snow);
    box-shadow: var(--gebenco-shadow-soft);
    padding: 28px;
}

.gebenco-native-quiz__header {
    text-align: center;
    margin-bottom: 20px;
}

.gebenco-native-quiz__header h1 {
    margin-top: 14px;
    margin-bottom: 12px;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 300;
}

.gebenco-native-quiz__header p {
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
    color: var(--gebenco-muted);
}

.gebenco-native-quiz__progress {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(27, 140, 79, 0.14);
    margin-bottom: 22px;
    overflow: hidden;
}

.gebenco-native-quiz__progress-bar {
    width: 0;
    height: 100%;
    background: var(--gebenco-green);
    transition: width 0.25s ease;
}

.gebenco-native-quiz__step {
    display: none;
}

.gebenco-native-quiz__step.is-active {
    display: block;
}

.gebenco-native-quiz__meta {
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    color: var(--gebenco-muted);
    text-transform: none;
}

.gebenco-native-quiz__options {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.gebenco-native-quiz__option {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gebenco-border);
    border-radius: 10px;
    padding: 12px 14px;
    cursor: pointer;
}

.gebenco-native-quiz__option input {
    margin: 0;
}

.gebenco-native-quiz__actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gebenco-native-quiz__actions .button {
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0.03em;
    min-height: 44px;
}

.gebenco-quiz-lead-form-native {
    display: grid;
    gap: 12px;
}

.gebenco-quiz-lead-form-native label {
    display: grid;
    gap: 8px;
}

.gebenco-quiz-lead-form-native label span {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--gebenco-muted);
}

.gebenco-native-quiz .geb-quiz-standard-footer {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--gebenco-border);
    text-align: center;
}

.gebenco-native-quiz .geb-quiz-standard-footer p {
    margin: 6px 0;
}

.gebenco-quizzes-hub {
    max-width: 1180px;
    margin: 0 auto;
    padding: 38px 40px 84px;
    display: grid;
    gap: 34px;
}

.gebenco-quizzes-hub__hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.gebenco-quizzes-hub__hero h1 {
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
}

.gebenco-quizzes-hub__hero p {
    color: var(--gebenco-muted);
}

.gebenco-quizzes-hub__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.gebenco-quiz-card {
    border: 1px solid var(--gebenco-border);
    border-radius: var(--gebenco-radius-md);
    padding: 22px;
    background: var(--gebenco-snow);
    box-shadow: var(--gebenco-shadow-soft);
    display: grid;
    gap: 10px;
}

.gebenco-quiz-card h3 {
    margin: 0;
}

.gebenco-quiz-card p {
    margin: 0;
    color: var(--gebenco-muted);
}

.gebenco-quiz-card .button {
    justify-self: flex-start;
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0.03em;
}

.gebenco-newsletter-signup {
    padding: 72px 40px;
}

.gebenco-newsletter-signup__inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px;
    border: 1px solid var(--gebenco-border);
    background-color: var(--gebenco-snow);
    display: grid;
    gap: 14px;
    border-radius: var(--gebenco-radius-lg);
    box-shadow: var(--gebenco-shadow-soft);
}

.gebenco-newsletter-signup__inner h2 {
    margin: 0;
}

.gebenco-newsletter-signup__inner p {
    margin: 0;
    max-width: none;
}

.gebenco-newsletter-signup__note {
    font-size: 0.92rem;
    color: var(--gebenco-muted);
}

.gebenco-newsletter-form {
    grid-template-columns: 1fr 1.4fr auto;
    align-items: end;
    gap: 14px;
}

.gebenco-newsletter-form__response {
    grid-column: 1 / -1;
    min-height: 1.5rem;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--gebenco-muted);
}

.gebenco-newsletter-popup {
    position: fixed;
    inset: 0;
    z-index: 9998;
}

.gebenco-newsletter-popup__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(51, 51, 51, 0.52);
}

.gebenco-newsletter-popup__dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 720px);
    margin: 8vh auto 0;
}

.gebenco-newsletter-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--gebenco-charcoal);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: none !important;
    padding: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.gebenco-newsletter-popup__close:hover {
    background-color: rgba(27, 140, 79, 0.08) !important;
    border-color: var(--gebenco-green) !important;
}

.gebenco-newsletter-signup--popup {
    padding: 0;
}

.gebenco-newsletter-signup--popup .gebenco-newsletter-signup__inner {
    padding: 48px 32px 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.gebenco-contact-assurance {
    background-color: var(--gebenco-charcoal);
    padding: 28px 40px;
    text-align: center;
}

.gebenco-contact-assurance__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.gebenco-contact-assurance p {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    max-width: none;
}

/* ─────────────────────────────────────────────────────────────
   GENERIC PAGE (page.php)
   ───────────────────────────────────────────────────────────── */
.gebenco-generic-page .gebenco-page-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 40px 100px;
}

.gebenco-page-header {
    margin-bottom: 48px;
}

.gebenco-page-header__inner {
    max-width: 800px;
    margin: 0 auto;
}

.gebenco-page-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    margin-top: 16px;
}

.gebenco-page-content {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--gebenco-charcoal);
}

.gebenco-page-content h2,
.gebenco-page-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-top: 2em;
    margin-bottom: 0.5em;
}

.gebenco-page-content a {
    color: var(--gebenco-green-dark);
    text-decoration: underline;
}

.gebenco-answer-section,
.gebenco-journal-pillars,
.gebenco-journal-intro {
    max-width: 960px;
    margin: 72px auto 0;
}

.gebenco-answer-section__header {
    padding-top: 14px;
    margin-bottom: 24px;
}

.gebenco-journal-intro h1,
.gebenco-answer-section__header h2,
.gebenco-journal-pillars__header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    margin-top: 16px;
    margin-bottom: 16px;
}

.gebenco-journal-intro p,
.gebenco-answer-section__header p,
.gebenco-journal-pillars__header p {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--gebenco-muted);
}

.gebenco-journal-intro__content {
    margin-top: 20px;
    font-family: 'Lora', serif;
    color: var(--gebenco-muted);
}

.gebenco-answer-section__items {
    display: grid;
    gap: 20px;
    margin-top: 28px;
}

.gebenco-answer-item {
    border: 1px solid var(--gebenco-border);
    background: var(--gebenco-snow);
    border-radius: 16px;
    padding: 0 20px;
}

.gebenco-answer-item summary {
    list-style: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 18px 0;
    position: relative;
    padding-right: 28px;
}

.gebenco-answer-item summary::-webkit-details-marker {
    display: none;
}

.gebenco-answer-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gebenco-charcoal);
}

.gebenco-answer-item[open] summary::after {
    content: '−';
}

.gebenco-answer-item p {
    color: var(--gebenco-muted);
    margin-bottom: 18px;
    max-width: none;
}

.gebenco-answer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
    padding-bottom: 14px;
}

.gebenco-answer-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--gebenco-border);
    color: var(--gebenco-charcoal);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.92);
}

.gebenco-answer-link:hover {
    border-color: var(--gebenco-green);
    color: var(--gebenco-green-dark);
}

.gebenco-journal-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.gebenco-journal-pillar {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--gebenco-border);
    border-radius: 18px;
    padding: 32px;
}

.gebenco-journal-pillar h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.gebenco-journal-pillar p {
    color: var(--gebenco-muted);
    margin-bottom: 14px;
}

.gebenco-journal-pillar ul {
    margin: 0;
    padding-left: 18px;
    color: var(--gebenco-muted);
}

.gebenco-journal-pillar li+li {
    margin-top: 8px;
}

/* ─────────────────────────────────────────────────────────────
   404 PAGE
   ───────────────────────────────────────────────────────────── */
.gebenco-404-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.gebenco-404-body {
    width: 100%;
    text-align: center;
    background-color: var(--gebenco-off-white);
    padding-left: 40px;
    padding-right: 40px;
}

.gebenco-404-body__inner {
    max-width: 600px;
    margin: 0 auto;
}

.gebenco-404-num {
    font-family: 'Inter', sans-serif;
    font-size: clamp(6rem, 18vw, 12rem);
    font-weight: 300;
    letter-spacing: -0.06em;
    color: var(--gebenco-stone);
    display: block;
    line-height: 1;
    margin-bottom: 24px;
}

.gebenco-404-headline {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.gebenco-404-sub {
    font-family: 'Lora', serif;
    font-style: italic;
    color: var(--gebenco-muted);
    margin-bottom: 40px;
}

.gebenco-404-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.gebenco-404-search {
    margin-top: 16px;
}

.gebenco-404-search p {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gebenco-muted-soft);
    margin-bottom: 16px;
    max-width: none;
}

.search-form {
    display: flex;
    gap: 0;
    border: 1px solid var(--gebenco-border);
    border-radius: 999px;
    overflow: hidden;
    max-width: 440px;
    margin: 0 auto;
    background: var(--gebenco-snow);
}

.search-form label {
    flex: 1;
}

.search-form .search-field {
    border: none !important;
    border-radius: 999px 0 0 999px !important;
    padding: 12px 16px !important;
    font-family: 'Lora', serif;
    width: 100%;
    outline: none !important;
}

.search-form .search-submit {
    flex-shrink: 0;
    border-radius: 999px !important;
    padding: 12px 20px !important;
    font-size: 0.72rem !important;
}

/* ─────────────────────────────────────────────────────────────
   CART / CHECKOUT — Minimal styles and confirmation order
   ───────────────────────────────────────────────────────────── */

/* Cart progress indicator */
.gebenco-cart-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 16px 40px;
    background: var(--gebenco-snow);
    border-bottom: 1px solid var(--gebenco-border);
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.03em;
    text-transform: none;
}

.gebenco-progress-step {
    color: var(--gebenco-border-strong);
    padding: 0 16px;
}

.gebenco-progress-step--active {
    color: var(--gebenco-charcoal);
}

.gebenco-progress-step--done {
    color: var(--gebenco-green);
}

.gebenco-progress-sep {
    color: var(--gebenco-border);
    font-size: 0.5rem;
}

.gebenco-woo-shell {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 0 40px 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: start;
}

.gebenco-woo-shell__main,
.gebenco-woo-shell__summary {
    min-width: 0;
}

.gebenco-checkout-card {
    border: 1px solid var(--gebenco-border);
    background: var(--gebenco-snow);
    border-radius: var(--gebenco-radius-lg);
    box-shadow: var(--gebenco-shadow-soft);
    padding: 22px;
}

.gebenco-woo-shell--cart .woocommerce-cart-form__contents {
    border: 1px solid var(--gebenco-border);
    border-radius: var(--gebenco-radius-lg);
    overflow: hidden;
    background: var(--gebenco-snow);
}

.gebenco-woo-shell--cart .shop_table thead th {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--gebenco-muted);
    background: rgba(247, 245, 242, 0.92);
    border-bottom: 1px solid var(--gebenco-border);
    padding-top: 14px;
    padding-bottom: 14px;
}

.gebenco-woo-shell--cart .shop_table td {
    vertical-align: middle;
    padding-top: 16px;
    padding-bottom: 16px;
}

.gebenco-woo-shell--cart .actions {
    background: rgba(247, 245, 242, 0.72);
}

.gebenco-woo-shell--cart .coupon {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gebenco-woo-shell--cart .coupon .input-text {
    min-height: 44px;
    border-radius: 999px;
    padding-inline: 14px;
}

.gebenco-woo-shell--cart .actions .button {
    min-height: 44px;
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0.03em;
}

.gebenco-woo-shell--cart .cart_totals h2 {
    margin: 0 0 16px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.03em;
    text-transform: none;
}

.gebenco-woo-shell--cart .wc-proceed-to-checkout .checkout-button {
    border-radius: 999px;
    min-height: 48px;
    text-transform: none;
    letter-spacing: 0.03em;
}

.gebenco-woo-shell--checkout #customer_details {
    display: grid;
    gap: 20px;
}

.gebenco-woo-shell--checkout #customer_details .col-1,
.gebenco-woo-shell--checkout #customer_details .col-2 {
    border: 1px solid var(--gebenco-border);
    border-radius: var(--gebenco-radius-lg);
    background: var(--gebenco-snow);
    box-shadow: var(--gebenco-shadow-soft);
    padding: 24px;
}

.gebenco-woo-shell--checkout #customer_details h3,
.gebenco-checkout-card--review h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: none;
}

.gebenco-woo-shell--checkout .form-row input,
.gebenco-woo-shell--checkout .form-row select,
.gebenco-woo-shell--checkout .form-row textarea {
    min-height: 48px;
    border-radius: 10px;
    padding: 12px 14px;
}

.gebenco-checkout-card--review .woocommerce-checkout-review-order-table {
    margin-bottom: 16px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--gebenco-border);
}

.gebenco-checkout-card--review .shop_table th,
.gebenco-checkout-card--review .shop_table td {
    font-size: 0.88rem;
}

.gebenco-checkout-card--review .shop_table .order-total th,
.gebenco-checkout-card--review .shop_table .order-total td {
    font-size: 0.95rem;
}

.gebenco-checkout-card--review #place_order {
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0.03em;
}

/* Checkout: suppress main nav, show wordmark only */
body.woocommerce-checkout .site-header .main-navigation,
body.woocommerce-checkout .site-header .header-cta {
    display: none !important;
}

body.woocommerce-checkout .site-header {
    background-color: var(--gebenco-snow) !important;
    box-shadow: 0 1px 0 var(--gebenco-border) !important;
}

/* Checkout: minimal footer */
body.woocommerce-checkout .site-footer {
    padding: 24px 40px;
}

body.woocommerce-checkout .footer-links {
    display: none;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — NEW TEMPLATE RULES
   ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .gebenco-quizzes-hub {
        padding: 28px 20px 56px;
        gap: 22px;
    }

    .gebenco-native-quiz {
        padding: 20px 16px;
    }

    .gebenco-native-quiz__actions .button {
        width: 100%;
    }

    .gebenco-woo-shell {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px 56px;
    }

    .gebenco-woo-shell__summary {
        order: -1;
    }

    .gebenco-woo-shell--cart .shop_table thead {
        display: none;
    }

    .gebenco-woo-shell--cart .shop_table td {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .gebenco-woo-shell--checkout #customer_details .col-1,
    .gebenco-woo-shell--checkout #customer_details .col-2,
    .gebenco-checkout-card {
        padding: 18px;
    }

    .gebenco-usp__list {
        flex-direction: column;
        gap: 32px;
    }

    .gebenco-rooms__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gebenco-journal-preview__grid {
        grid-template-columns: 1fr;
    }

    .gebenco-about-narrative__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gebenco-values__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .gebenco-contact-body__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .gebenco-form-grid,
    .gebenco-newsletter-form {
        grid-template-columns: 1fr;
    }

    .gebenco-cat-journal-teaser__inner {
        grid-template-columns: 1fr;
    }

    .gebenco-collection-hub__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gebenco-hero__headline {
        font-size: clamp(2.4rem, 10vw, 4rem);
    }
}

@media (max-width: 600px) {
    .gebenco-rooms__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gebenco-404-actions {
        flex-direction: column;
        align-items: center;
    }

    .gebenco-hero__inner {
        padding: 24px;
    }

    .gebenco-room-card {
        aspect-ratio: 16/11;
        min-height: 240px;
    }

    .gebenco-room-card__overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .gebenco-collection-hub,
    .gebenco-collection-featured,
    .gebenco-collection-intro {
        padding-left: 20px;
        padding-right: 20px;
    }

    .gebenco-collection-hub__grid {
        grid-template-columns: 1fr;
    }

    .gebenco-collection-card {
        min-height: 280px;
        padding: 22px;
    }

    .gebenco-newsletter-signup,
    .gebenco-contact-body,
    .gebenco-contact-hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .gebenco-newsletter-signup__inner,
    .gebenco-contact-form-card {
        padding: 24px 20px;
    }

    .gebenco-breadcrumb--product,
    .woocommerce .woocommerce-product-wrap,
    .gebenco-cat-products,
    .gebenco-buying-guide,
    .gebenco-cat-journal-teaser,
    .gebenco-cat-hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .gebenco-buying-guide__inner,
    .woocommerce-product-summary-wrap {
        padding: 24px 20px;
    }

    .gebenco-newsletter-popup__dialog {
        width: calc(100vw - 24px);
        margin-top: 5vh;
    }

    .site-footer {
        padding: 64px 20px 0;
    }
}

/* ============================================================
   UX IMPROVEMENTS (PHASE 1)
   ============================================================ */

/* AJAX Side Cart (xoo-wsc) Overrides */
.xoo-wsc-container {
    font-family: 'Inter', sans-serif !important;
}

.xoo-wsc-header {
    background-color: var(--gebenco-off-white) !important;
    border-bottom: 1px solid var(--gebenco-border) !important;
}

.xoo-wsc-header-title {
    color: var(--gebenco-charcoal) !important;
    font-weight: 400 !important;
    font-size: 1.2rem !important;
    letter-spacing: 0.02em !important;
}

.xoo-wsc-body {
    background-color: var(--gebenco-snow) !important;
}

.xoo-wsc-footer {
    background-color: var(--gebenco-snow) !important;
    border-top: 1px solid var(--gebenco-border) !important;
    padding: 20px !important;
}

.xoo-wsc-sm-btn,
.xoo-wsc-ft-btn {
    background-color: var(--gebenco-charcoal) !important;
    color: var(--gebenco-snow) !important;
    border-radius: 999px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.03em !important;
    text-transform: none !important;
    border: 1px solid var(--gebenco-charcoal) !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
}

.xoo-wsc-sm-btn:hover,
.xoo-wsc-ft-btn:hover {
    background-color: var(--gebenco-green) !important;
    color: var(--gebenco-snow) !important;
}

.xoo-wsc-sm-btn:focus,
.xoo-wsc-sm-btn:active,
.xoo-wsc-ft-btn:focus,
.xoo-wsc-ft-btn:active {
    color: var(--gebenco-snow) !important;
}

.xoo-wsc-cont-shop,
.xoo-wsc-footer .xoo-wsc-sm-btn,
.xoo-wsc-footer .xoo-wsc-sm-btn span {
    color: var(--gebenco-snow) !important;
}

.site-footer .footer-col__heading,
.site-footer .footer-col__links a,
.gebenco-breadcrumb,
.gebenco-post-meta,
.gebenco-cart-progress,
.woocommerce-tabs ul.tabs.wc-tabs li a,
.woocommerce-tabs .woocommerce-Tabs-panel h2,
.woocommerce-tabs .woocommerce-Tabs-panel table.shop_attributes th,
.gebenco-tag,
.entry-footer a,
.gebenco-post-tags a {
    text-transform: none !important;
}

.xoo-wsc-pname {
    color: var(--gebenco-charcoal) !important;
    font-weight: 500 !important;
}

.xoo-wsc-pprice {
    color: var(--gebenco-charcoal) !important;
}

.xoo-wsc-cart-close {
    color: var(--gebenco-charcoal) !important;
}

/* Side Cart Basket Icon override (to match theme) */
.xoo-wsc-basket {
    background-color: var(--gebenco-charcoal) !important;
    border-radius: 50% !important;
}

/* Cart basket icon: white bag on charcoal circle for readability */
.xoo-wsc-basket .xoo-wsc-bki {
    color: var(--gebenco-snow) !important;
}

/* ============================================================
   UX IMPROVEMENTS (PHASE 1 - HOVER SWAP)
   ============================================================ */

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block;
    position: relative;
    overflow: hidden;
}

.woocommerce-loop-product__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 2.8em;
}

.woocommerce-loop-product__title a {
    display: inline;
}

.woocommerce ul.products li.product img.gebenco-hover-image {
    display: none !important;
}

.woocommerce ul.products li.product:hover img.gebenco-hover-image {
    display: none !important;
}

/* Ensure original image stays behind it */
.woocommerce ul.products li.product img.attachment-woocommerce_thumbnail:not(.gebenco-hover-image) {
    position: relative;
    z-index: 1;
    transition: none;
}

/* Optional: Slight fade on original image */
.woocommerce ul.products li.product:hover img.attachment-woocommerce_thumbnail:not(.gebenco-hover-image) {
    opacity: 1;
}

/* ============================================================
   UX IMPROVEMENTS (PHASE 1 - STICKY ADD TO CART)
   ============================================================ */
.gebenco-sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--gebenco-snow);
    border-top: 1px solid var(--gebenco-border);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.gebenco-sticky-cart.is-visible {
    transform: translateY(0);
}

.gebenco-sticky-cart__info {
    display: flex;
    flex-direction: column;
}

.gebenco-sticky-cart__title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--gebenco-charcoal);
    font-size: 1rem;
    line-height: 1.2;
}

.gebenco-sticky-cart__price {
    font-size: 0.9rem;
    color: var(--gebenco-charcoal);
    opacity: 0.8;
}

.gebenco-sticky-cart__button {
    margin-bottom: 0;
    padding: 12px 24px;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .gebenco-sticky-cart__title {
        font-size: 0.9rem;
    }

    .gebenco-sticky-cart__button {
        padding: 10px 20px;
    }
}

/* ============================================================
   UX IMPROVEMENTS (PHASE 2 - TRUST BADGES)
   ============================================================ */

.gebenco-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gebenco-border);
}

.gebenco-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gebenco-charcoal);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.gebenco-badge-icon {
    color: var(--gebenco-charcoal);
    flex-shrink: 0;
}

.gebenco-hidden-variation-row {
    display: none !important;
}

.variations.gebenco-variations--supplier-only {
    margin-bottom: 0;
}

.variations.gebenco-variations--supplier-only tbody {
    display: none;
}

.single-product .product_meta {
    display: none !important;
}

@media (max-width: 900px) {
    .gebenco-journal-pillars__grid {
        grid-template-columns: 1fr;
    }

    .gebenco-sticky-cart {
        gap: 12px;
        align-items: center;
    }
}

@media (max-width: 680px) {
    .gebenco-answer-links {
        flex-direction: column;
    }

    .gebenco-answer-link {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   UX IMPROVEMENTS (PHASE 3 - FADE-UP ANIMATIONS)
   ============================================================ */

.gebenco-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.gebenco-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items if needed */
.gebenco-fade-up:nth-child(2) {
    transition-delay: 0.1s;
}

.gebenco-fade-up:nth-child(3) {
    transition-delay: 0.2s;
}

.gebenco-fade-up:nth-child(4) {
    transition-delay: 0.3s;
}

.gebenco-fade-up:nth-child(5) {
    transition-delay: 0.4s;
}

.gebenco-fade-up:nth-child(6) {
    transition-delay: 0.5s;
}

/* ============================================================
   PREMIUM ACCOUNT PAGES DESIGN SYSTEM (Phase 3 Redesign)

   This section contains the complete design system for the
   Gebenco account area (login, register, password reset, dashboard).

   Design direction: Premium minimalist (Muji, Aesop, Baserange).
   All spacing uses an 8px base unit grid.
   All typography is system-first with restrained hierarchy.
   All interactions are subtle and intentional.
   ============================================================ */

/* ── Typography System ────────────────────────────────────── */
:root {
    /* Font family system */
    --gebenco-font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;

    /* Typography sizes (modular scale 1.2) */
    --gebenco-type-h1: 3rem;      /* 48px */
    --gebenco-type-h2: 1.75rem;   /* 28px */
    --gebenco-type-h3: 1.25rem;   /* 20px */
    --gebenco-type-body: 1rem;    /* 16px */
    --gebenco-type-label: 0.875rem; /* 14px */
    --gebenco-type-caption: 0.75rem; /* 12px */

    /* Typography weights */
    --gebenco-font-light: 300;
    --gebenco-font-normal: 400;
    --gebenco-font-medium: 500;
    --gebenco-font-semibold: 600;
    --gebenco-font-bold: 700;

    /* Line heights */
    --gebenco-lh-tight: 1.2;
    --gebenco-lh-normal: 1.5;
    --gebenco-lh-relaxed: 1.6;
}

/* ── Colour System (Expanded) ────────────────────────────── */
:root {
    /* Primary actions */
    --gebenco-primary: #1B8C4F;
    --gebenco-primary-dark: #156639;
    --gebenco-primary-light: #C5E4D8;

    /* Neutrals */
    --gebenco-white: #FFFFFF;
    --gebenco-off-white: #F5F5F5;
    --gebenco-light-gray: #F0F0F0;
    --gebenco-border-light: #E8E8E8;
    --gebenco-border-medium: #D5D5D5;
    --gebenco-gray-medium: #808080;
    --gebenco-gray-dark: #2A2A2A;
    --gebenco-charcoal: #1A1A1A;

    /* Semantic */
    --gebenco-success: #2D5A3D;
    --gebenco-warning: #D9A825;
    --gebenco-error: #C62828;

    /* Opacity values for consistent transparency */
    --gebenco-overlay-10: rgba(0, 0, 0, 0.1);
    --gebenco-overlay-15: rgba(0, 0, 0, 0.15);
}

/* ── Spacing System (8px base unit) ────────────────────────── */
:root {
    --sp-xs: 8px;
    --sp-sm: 16px;
    --sp-md: 24px;
    --sp-lg: 32px;
    --sp-xl: 48px;
    --sp-2xl: 64px;
}

/* ── Border & Radius System ──────────────────────────────── */
:root {
    --gebenco-border-width: 2px;
    --gebenco-radius-sm: 4px;
    --gebenco-radius-md: 8px;
    --gebenco-radius-lg: 12px;
}

/* ── Shadow System (Premium, restrained) ──────────────────── */
:root {
    --gebenco-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --gebenco-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --gebenco-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --gebenco-shadow-focus: 0 0 0 4px rgba(27, 140, 79, 0.15);
}

/* ============================================================
   ACCOUNT PAGE CONTAINER & LAYOUT
   ============================================================ */

.gebenco-account-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
    padding: var(--sp-2xl) var(--sp-md);
    background: var(--gebenco-off-white);
    font-family: var(--gebenco-font-system);
    padding-top: var(--sp-lg);
}

.gebenco-account-container {
    width: 100%;
    max-width: 900px;
    background: var(--gebenco-white);
    padding: var(--sp-lg) var(--sp-lg);
    border-radius: var(--gebenco-radius-lg);
    box-shadow: var(--gebenco-shadow-lg);
}

/* ============================================================
   ACCOUNT PAGE TYPOGRAPHY
   ============================================================ */

.gebenco-account-container h1 {
    font-size: var(--gebenco-type-h1);
    font-weight: var(--gebenco-font-semibold);
    line-height: var(--gebenco-lh-tight);
    margin: 0 0 var(--sp-md) 0;
    color: var(--gebenco-charcoal);
    letter-spacing: -0.01em;
}

.gebenco-account-container h2 {
    font-size: var(--gebenco-type-h2);
    font-weight: var(--gebenco-font-medium);
    line-height: var(--gebenco-lh-tight);
    margin: 0 0 var(--sp-md) 0;
    color: var(--gebenco-charcoal);
    border-bottom: 1px solid var(--gebenco-border-light);
    padding-bottom: var(--sp-md);
}

.gebenco-account-container p {
    font-size: var(--gebenco-type-body);
    font-weight: var(--gebenco-font-normal);
    line-height: var(--gebenco-lh-relaxed);
    color: var(--gebenco-gray-dark);
    margin: 0 0 var(--sp-md) 0;
}

.gebenco-account-container label {
    display: block;
    font-size: var(--gebenco-type-label);
    font-weight: var(--gebenco-font-medium);
    line-height: var(--gebenco-lh-normal);
    color: var(--gebenco-charcoal);
    margin-bottom: var(--sp-xs);
    text-transform: none;
    letter-spacing: 0.02em;
}

/* ============================================================
   FORM GROUPS & SECTIONS
   ============================================================ */

.gebenco-account-form-group {
    margin-bottom: var(--sp-xl);
}

.gebenco-account-form-group:last-child {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: var(--sp-md);
}

.form-group:last-child {
    margin-bottom: 0;
}

/* ============================================================
   FORM INPUTS (Premium Design)
   ============================================================ */

.gebenco-account-container input[type="text"],
.gebenco-account-container input[type="email"],
.gebenco-account-container input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: var(--gebenco-border-width) solid var(--gebenco-border-light);
    border-radius: var(--gebenco-radius-sm);
    font-family: var(--gebenco-font-system);
    font-size: var(--gebenco-type-body);
    line-height: var(--gebenco-lh-normal);
    color: var(--gebenco-charcoal);
    background: var(--gebenco-white);
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

/* Input hover state */
.gebenco-account-container input[type="text"]:hover,
.gebenco-account-container input[type="email"]:hover,
.gebenco-account-container input[type="password"]:hover {
    border-color: var(--gebenco-border-medium);
}

/* Input focus state (strong, accessible) */
.gebenco-account-container input[type="text"]:focus,
.gebenco-account-container input[type="email"]:focus,
.gebenco-account-container input[type="password"]:focus {
    outline: none;
    border-color: var(--gebenco-primary);
    box-shadow: var(--gebenco-shadow-focus);
    background: rgba(27, 140, 79, 0.01);
}

/* Input invalid state */
.gebenco-account-container input[type="text"]:invalid,
.gebenco-account-container input[type="email"]:invalid,
.gebenco-account-container input[type="password"]:invalid {
    border-color: var(--gebenco-error);
}

.gebenco-account-container input[type="text"]:invalid:focus,
.gebenco-account-container input[type="email"]:invalid:focus,
.gebenco-account-container input[type="password"]:invalid:focus {
    box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.15);
}

/* Input disabled state */
.gebenco-account-container input:disabled {
    background: var(--gebenco-light-gray);
    color: var(--gebenco-gray-medium);
    cursor: not-allowed;
    border-color: var(--gebenco-border-light);
}

/* ============================================================
   REMOVE PASSWORD TOGGLE AFFORDANCES
   ============================================================ */

.gebenco-password-toggle,
.gebenco-password-toggle-btn,
.show-password-input,
.woocommerce-password-strength + .show-password-input,
button.show-password-input {
    display: none !important;
}

.woocommerce-account .nsl-container,
.woocommerce-account .nsl-container-block,
.woocommerce-account .nsl-social-login,
.woocommerce-account .google-signin-wrapper,
.woocommerce-account .google-login-button,
.woocommerce-account [class*="google-sign"] {
    margin-bottom: var(--sp-md) !important;
}

.woocommerce-account .nsl-container + form,
.woocommerce-account .nsl-container-block + form,
.woocommerce-account .woocommerce-form-login {
    margin-top: var(--sp-sm);
}

/* ============================================================
   BUTTONS (Premium Design)
   ============================================================ */

.gebenco-account-container button,
.gebenco-account-container .woocommerce-button,
.gebenco-account-container .button {
    width: 100%;
    padding: 14px 32px;
    background-color: var(--gebenco-primary);
    color: var(--gebenco-white);
    border: var(--gebenco-border-width) solid var(--gebenco-primary);
    border-radius: var(--gebenco-radius-sm);
    font-family: var(--gebenco-font-system);
    font-size: var(--gebenco-type-body);
    font-weight: var(--gebenco-font-semibold);
    letter-spacing: 0.5px;
    text-transform: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

/* Button hover state */
.gebenco-account-container button:hover,
.gebenco-account-container .woocommerce-button:hover,
.gebenco-account-container .button:hover {
    background-color: var(--gebenco-primary-dark);
    border-color: var(--gebenco-primary-dark);
    box-shadow: var(--gebenco-shadow-md);
}

/* Button focus state (keyboard navigation) */
.gebenco-account-container button:focus,
.gebenco-account-container .woocommerce-button:focus,
.gebenco-account-container .button:focus {
    outline: 2px solid var(--gebenco-primary);
    outline-offset: 2px;
}

/* Button active state */
.gebenco-account-container button:active,
.gebenco-account-container .woocommerce-button:active,
.gebenco-account-container .button:active {
    background-color: var(--gebenco-primary-dark);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Button disabled state */
.gebenco-account-container button:disabled,
.gebenco-account-container .woocommerce-button:disabled,
.gebenco-account-container .button:disabled {
    background-color: var(--gebenco-light-gray);
    border-color: var(--gebenco-border-light);
    color: var(--gebenco-gray-medium);
    cursor: not-allowed;
}

/* ============================================================
   LINKS & HELPER TEXT
   ============================================================ */

.gebenco-account-container a {
    color: var(--gebenco-primary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.gebenco-account-container a:hover {
    color: var(--gebenco-primary-dark);
}

.gebenco-account-container a:focus {
    outline: 2px solid var(--gebenco-primary);
    outline-offset: 2px;
    border-radius: var(--gebenco-radius-sm);
}

.gebenco-lost-password {
    display: block;
    margin-top: var(--sp-md);
    font-size: var(--gebenco-type-label);
    text-align: center;
}

.gebenco-lost-password-help {
    margin: var(--sp-md) 0;
    padding: var(--sp-md);
    background: rgba(27, 140, 79, 0.05);
    border-left: 4px solid var(--gebenco-primary);
    border-radius: var(--gebenco-radius-sm);
    font-size: var(--gebenco-type-label);
    color: var(--gebenco-gray-dark);
    line-height: var(--gebenco-lh-relaxed);
}

.gebenco-back-to-login,
.gebenco-already-have-account {
    display: block;
    margin-top: var(--sp-lg);
    text-align: center;
    font-size: var(--gebenco-type-label);
    color: var(--gebenco-gray-dark);
}

.gebenco-back-to-login a,
.gebenco-already-have-account a {
    color: var(--gebenco-primary);
    text-decoration: none;
    font-weight: var(--gebenco-font-medium);
    border-bottom: 1px solid var(--gebenco-primary);
    transition: all 0.2s ease;
}

.gebenco-back-to-login a:hover,
.gebenco-already-have-account a:hover {
    color: var(--gebenco-primary-dark);
    border-bottom-color: var(--gebenco-primary-dark);
}

/* ============================================================
   ERROR & SUCCESS STATES
   ============================================================ */

.gebenco-account-error {
    padding: var(--sp-md);
    background: rgba(198, 40, 40, 0.08);
    border: 2px solid var(--gebenco-error);
    border-radius: var(--gebenco-radius-sm);
    color: var(--gebenco-error);
    font-size: var(--gebenco-type-label);
    line-height: var(--gebenco-lh-relaxed);
    margin-bottom: var(--sp-md);
}

.gebenco-account-error-icon {
    display: inline-block;
    margin-right: 8px;
    font-weight: bold;
}

.gebenco-account-success {
    padding: var(--sp-md);
    background: rgba(45, 90, 61, 0.08);
    border: 2px solid var(--gebenco-success);
    border-radius: var(--gebenco-radius-sm);
    color: var(--gebenco-success);
    font-size: var(--gebenco-type-label);
    line-height: var(--gebenco-lh-relaxed);
    margin-bottom: var(--sp-md);
}

/* ============================================================
   ACCOUNT & CHECKOUT PAGES: OPTIMIZATION FOR CONVERSION
   ============================================================ */

/* Dashboard cards - enhanced hover state and accessibility */
.gebenco-dashboard-card a {
    display: inline-block;
    color: var(--gebenco-green);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--gebenco-green);
}

.gebenco-dashboard-card a:hover {
    color: var(--gebenco-green-dark);
    border-bottom-color: var(--gebenco-green-dark);
}

.gebenco-dashboard-card a:focus {
    outline: 2px solid var(--gebenco-green);
    outline-offset: 2px;
    border-radius: var(--gebenco-radius-sm);
}

/* Dashboard section headings */
.gebenco-dashboard-section h2 {
    margin-top: var(--sp-xl);
    margin-bottom: var(--sp-lg);
}

.gebenco-dashboard-section:first-of-type h2 {
    margin-top: 0;
}

/* Account actions bar */
.gebenco-dashboard-actions {
    display: flex;
    gap: var(--sp-lg);
    flex-wrap: wrap;
}

.gebenco-dashboard-actions a {
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    background: var(--gebenco-green);
    color: var(--gebenco-white) !important;
    border: none;
    border-radius: var(--gebenco-radius-sm);
    text-decoration: none !important;
    text-align: center;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border-bottom: none;
}

.gebenco-dashboard-actions a:hover {
    background: var(--gebenco-green-dark);
    color: var(--gebenco-white) !important;
    box-shadow: var(--gebenco-shadow-md);
}

.gebenco-dashboard-actions a:focus {
    outline: 2px solid var(--gebenco-green);
    outline-offset: 2px;
    border-radius: var(--gebenco-radius-sm);
}

/* Orders table styling */
.gebenco-dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.gebenco-dashboard-table thead {
    background: var(--gebenco-off-white);
    border-bottom: 2px solid var(--gebenco-border);
}

.gebenco-dashboard-table th {
    text-align: left;
    padding: var(--sp-md) var(--sp-lg);
    font-weight: 500;
    color: var(--gebenco-charcoal);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.gebenco-dashboard-table td {
    padding: var(--sp-md) var(--sp-lg);
    border-bottom: 1px solid var(--gebenco-border-light);
    color: var(--gebenco-gray-dark);
}

.gebenco-dashboard-table tbody tr:hover {
    background: rgba(27, 140, 79, 0.02);
}

/* Order status badge */
.gebenco-dashboard-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: var(--gebenco-radius-sm);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   PRODUCT PAGE: TRUST SIGNALS & REVENUE OPTIMIZATION
   ============================================================ */

/* Trust signals panel below shipping & returns */
.gebenco-trust-signals {
    margin-top: var(--sp-lg);
    padding: var(--sp-md) var(--sp-lg);
    background: rgba(27, 140, 79, 0.05);
    border-left: 3px solid var(--gebenco-green);
    border-radius: var(--gebenco-radius-sm);
}

.gebenco-trust-signals .trust-signal {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--gebenco-gray-dark);
    line-height: 1.5;
    margin-bottom: 10px;
}

.gebenco-trust-signals .trust-signal:last-child {
    margin-bottom: 0;
}

.gebenco-trust-signals .trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    font-size: 0.9rem;
    color: var(--gebenco-green);
}

/* Related products section styling */
.woocommerce-related-products {
    margin-top: var(--sp-2xl);
    padding-top: var(--sp-2xl);
    border-top: 1px solid var(--gebenco-border);
}

.single-product .woocommerce-related-products {
    margin-left: 0;
    margin-right: 0;
}

.woocommerce-related-products h2,
.related.products h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gebenco-ink);
    margin-bottom: var(--sp-lg);
}

.woocommerce-related-products .products,
.related.products .products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-lg);
}

/* Related product card styling */
.woocommerce-related-products .product,
.related.products .product {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.woocommerce-related-products .product:hover,
.related.products .product:hover {
    box-shadow: var(--gebenco-shadow-md);
    transform: translateY(-2px);
}

/* Upsells section (if present) */
.upsells.products {
    margin-top: var(--sp-2xl);
}

.upsells.products h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gebenco-ink);
    margin-bottom: var(--sp-lg);
}

.upsells.products .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sp-lg);
}

/* ============================================================
   LOGIN FORM REFINEMENTS (Password button fix & spacing)
   ============================================================ */

/* Hide duplicate password visibility toggle buttons from plugins */
.gebenco-account-container .form-group button[type="button"] {
    display: none !important;
}

/* Increase spacing between form fields for better breathing room */
.gebenco-account-container .form-group {
    margin-bottom: var(--sp-lg);
}

/* Register column (right side) - visual separation from login */
.u-columns.col2-set .u-column2 {
    margin-top: var(--sp-xl);
}

/* ============================================================
   DASHBOARD STYLES
   ============================================================ */

.gebenco-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--sp-2xl) var(--sp-lg);
    font-family: var(--gebenco-font-system);
}

.gebenco-dashboard h1 {
    font-size: var(--gebenco-type-h1);
    font-weight: var(--gebenco-font-semibold);
    line-height: var(--gebenco-lh-tight);
    color: var(--gebenco-charcoal);
    margin-bottom: var(--sp-md);
    letter-spacing: -0.01em;
}

.gebenco-dashboard h2 {
    font-size: var(--gebenco-type-h2);
    font-weight: var(--gebenco-font-medium);
    color: var(--gebenco-charcoal);
    margin-bottom: var(--sp-md);
}

.gebenco-dashboard-welcome {
    margin-bottom: var(--sp-xl);
    padding: var(--sp-lg);
    background: rgba(27, 140, 79, 0.05);
    border-left: 4px solid var(--gebenco-primary);
    border-radius: var(--gebenco-radius-sm);
}

.gebenco-dashboard-welcome p {
    font-size: var(--gebenco-type-body);
    line-height: var(--gebenco-lh-relaxed);
    color: var(--gebenco-gray-dark);
    margin: 0;
}

/* Dashboard card grid */
.gebenco-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-lg);
    margin-bottom: var(--sp-xl);
}

.gebenco-dashboard-card {
    padding: var(--sp-lg);
    border: 1px solid var(--gebenco-border-light);
    border-radius: var(--gebenco-radius-md);
    background: var(--gebenco-white);
    transition: all 0.2s ease;
}

.gebenco-dashboard-card:hover {
    box-shadow: var(--gebenco-shadow-md);
    border-color: var(--gebenco-border-medium);
}

.gebenco-dashboard-card h3 {
    font-size: var(--gebenco-type-h3);
    font-weight: var(--gebenco-font-medium);
    margin: 0 0 var(--sp-sm) 0;
    color: var(--gebenco-charcoal);
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
}

.gebenco-dashboard-card-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gebenco-dashboard-card p {
    font-size: var(--gebenco-type-label);
    color: var(--gebenco-gray-medium);
    margin: 0 0 var(--sp-md) 0;
    line-height: var(--gebenco-lh-relaxed);
}

.gebenco-dashboard-card a {
    display: inline-block;
    font-size: var(--gebenco-type-label);
    font-weight: var(--gebenco-font-medium);
    color: var(--gebenco-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--gebenco-primary);
    transition: all 0.2s ease;
}

.gebenco-dashboard-card a:hover {
    color: var(--gebenco-primary-dark);
    border-bottom-color: var(--gebenco-primary-dark);
}

/* Dashboard section */
.gebenco-dashboard-section {
    margin-bottom: var(--sp-xl);
}

.gebenco-dashboard-section h2 {
    margin-bottom: var(--sp-lg);
}

/* Dashboard actions */
.gebenco-dashboard-actions {
    display: flex;
    gap: var(--sp-md);
    flex-wrap: wrap;
}

.gebenco-dashboard-actions a {
    padding: 12px 32px;
    background: var(--gebenco-primary);
    color: var(--gebenco-white);
    text-decoration: none;
    border-radius: var(--gebenco-radius-sm);
    font-weight: var(--gebenco-font-semibold);
    transition: all 0.2s ease;
    border-bottom: none;
    display: inline-block;
}

.gebenco-dashboard-actions a:hover {
    background: var(--gebenco-primary-dark);
    color: var(--gebenco-white);
    box-shadow: var(--gebenco-shadow-md);
}

.gebenco-dashboard-actions a:focus {
    outline: 2px solid var(--gebenco-primary);
    outline-offset: 2px;
}

/* Recent orders table */
.gebenco-dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--gebenco-type-label);
}

.gebenco-dashboard-table thead {
    background: var(--gebenco-light-gray);
    border-bottom: 2px solid var(--gebenco-border-light);
}

.gebenco-dashboard-table th {
    padding: var(--sp-md);
    text-align: left;
    font-weight: var(--gebenco-font-semibold);
    color: var(--gebenco-charcoal);
}

.gebenco-dashboard-table td {
    padding: var(--sp-md);
    border-bottom: 1px solid var(--gebenco-border-light);
    color: var(--gebenco-gray-dark);
}

.gebenco-dashboard-table tbody tr:hover {
    background: var(--gebenco-off-white);
}

/* Status badges */
.gebenco-dashboard-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: var(--gebenco-type-caption);
    font-weight: var(--gebenco-font-medium);
    white-space: nowrap;
}

.gebenco-dashboard-status.completed {
    background: rgba(45, 90, 61, 0.1);
    color: var(--gebenco-success);
}

.gebenco-dashboard-status.pending {
    background: rgba(217, 168, 37, 0.1);
    color: var(--gebenco-warning);
}

.gebenco-dashboard-status.cancelled {
    background: rgba(198, 40, 40, 0.1);
    color: var(--gebenco-error);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 768px) {
    .woocommerce-product-gallery,
    .summary.entry-summary {
        width: 100% !important;
        margin-bottom: var(--sp-lg);
        border: none !important;
        background: none !important;
        box-shadow: none !important;
    }

    /* Trust signals - stack and reduce padding on mobile */
    .gebenco-trust-signals {
        padding: var(--sp-md);
    }

    .gebenco-trust-signals .trust-signal {
        font-size: 0.8rem;
        gap: 10px;
    }

    /* Related products - single column on tablet */
    .woocommerce-related-products .products,
    .related.products .products {
        grid-template-columns: 1fr;
    }

    /* Upsells - 2 columns on tablet */
    .upsells.products .products {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Dashboard cards - better mobile layout */
    .gebenco-dashboard-grid {
        gap: var(--sp-md);
    }

    .gebenco-dashboard-card {
        padding: var(--sp-lg);
    }

    .gebenco-dashboard-card h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .gebenco-dashboard-card p {
        font-size: 0.85rem;
    }

    /* Orders table - responsive on tablet */
    .gebenco-dashboard-table {
        font-size: 0.8rem;
    }

    .gebenco-dashboard-table th,
    .gebenco-dashboard-table td {
        padding: var(--sp-sm) var(--sp-md);
    }

    /* Actions bar wraps on tablet */
    .gebenco-dashboard-actions {
        gap: var(--sp-md);
    }

    .gebenco-dashboard-actions a {
        min-width: 120px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .gebenco-account-wrapper {
        padding: var(--sp-md) var(--sp-sm);
    }

    .gebenco-account-container {
        padding: var(--sp-xl) var(--sp-md);
        border-radius: var(--gebenco-radius-md);
    }

    .gebenco-account-container h1 {
        font-size: 2rem;
    }

    .gebenco-account-container h2 {
        font-size: 1.5rem;
    }

    /* Stack columns on mobile */
    .u-columns.col2-set {
        display: flex;
        flex-direction: column;
    }

    .u-columns.col2-set .u-column2 {
        margin-top: var(--sp-lg);
    }

    .gebenco-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .gebenco-dashboard-actions {
        flex-direction: column;
    }

    .gebenco-dashboard-actions a {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   MOBILE AUDIT (375px viewport)
   ============================================================ */

@media (max-width: 480px) {
    /* GLOBAL: Ensure touch targets are 44px minimum */
    a, button, input[type="submit"], input[type="button"] {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Text sizing for readability */
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    /* Trust signals - tighter on mobile */
    .gebenco-trust-signals {
        padding: var(--sp-md) var(--sp-sm);
        margin-top: var(--sp-md);
    }

    .gebenco-trust-signals .trust-signal {
        font-size: 0.75rem;
        gap: 8px;
        margin-bottom: 8px;
    }

    /* Related and upsell products - single column */
    .woocommerce-related-products .products,
    .related.products .products,
    .upsells.products .products {
        grid-template-columns: 1fr;
        gap: var(--sp-md);
    }

    .woocommerce-related-products,
    .upsells.products {
        margin-top: var(--sp-xl);
    }

    .gebenco-account-container {
        padding: var(--sp-lg) var(--sp-md);
    }

    .gebenco-account-container h1 {
        font-size: 1.75rem;
        margin-bottom: var(--sp-md);
    }

    .gebenco-account-form-group {
        margin-bottom: var(--sp-lg);
    }

    .gebenco-dashboard-table {
        font-size: 0.8rem;
    }

    .gebenco-dashboard-table th,
    .gebenco-dashboard-table td {
        padding: var(--sp-sm);
    }

    /* PRODUCT PAGE: Ensure images scale properly */
    .woocommerce-product-gallery img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .woocommerce-product-wrap {
        display: flex;
        flex-direction: column;
    }

    .woocommerce-product-gallery-wrap {
        width: 100%;
        margin-bottom: var(--sp-lg);
    }

    .woocommerce-product-summary-wrap {
        width: 100%;
        padding: var(--sp-lg) var(--sp-md);
    }

    /* PRODUCT FORM: Button full-width and tall */
    .woocommerce-product-summary-wrap .button,
    .woocommerce-product-summary-wrap button,
    .variations_form .single_variation_wrap .button {
        width: 100%;
        min-height: 48px;
        font-size: 1rem;
        padding: 12px 16px;
    }

    /* PRODUCT QUANTITY: Increase input size */
    .quantity input[type="number"] {
        width: 70px;
        font-size: 1rem;
        padding: 8px;
        min-height: 44px;
    }

    .quantity .qty {
        min-height: 44px;
    }

    /* PRODUCT VARIATIONS: Ensure selectbox is mobile-friendly */
    .woocommerce-product-summary-wrap select {
        width: 100%;
        min-height: 44px;
        font-size: 1rem;
        padding: 10px;
        border-radius: var(--gebenco-radius-sm);
    }

    /* BLOG POST: Improve readability */
    .entry-content {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .entry-content img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .entry-content details {
        padding: 0 var(--sp-sm);
    }

    /* NAVIGATION: Mobile-friendly */
    nav a {
        min-height: 44px;
        padding: 12px 16px;
        display: block;
    }

    /* FORMS: Full-width inputs */
    .gebenco-account-container input[type="text"],
    .gebenco-account-container input[type="email"],
    .gebenco-account-container input[type="password"],
    .woocommerce-form input[type="text"],
    .woocommerce-form input[type="email"],
    .woocommerce-form input[type="password"] {
        width: 100%;
        min-height: 44px;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .gebenco-account-container label,
    .woocommerce-form label {
        display: block;
        margin-bottom: 8px;
        font-size: 0.85rem;
    }

    /* FORM ERRORS: Better visibility */
    .woocommerce-error,
    .gebenco-account-error {
        padding: var(--sp-md);
        font-size: 0.85rem;
    }

    /* Dashboard - single column on mobile */
    .gebenco-dashboard-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-md);
    }

    .gebenco-dashboard-card {
        padding: var(--sp-md);
    }

    .gebenco-dashboard-card h3 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .gebenco-dashboard-card p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .gebenco-dashboard-card a {
        font-size: 0.8rem;
    }

    /* Actions - stack on mobile */
    .gebenco-dashboard-actions {
        flex-direction: column;
        gap: var(--sp-sm);
    }

    .gebenco-dashboard-actions a {
        flex: 1;
        min-width: auto;
        width: 100%;
        padding: 12px 16px;
    }

    /* Orders table - horizontal scroll on mobile */
    .gebenco-dashboard-table {
        font-size: 0.75rem;
        display: block;
        overflow-x: auto;
    }

    .gebenco-dashboard-table th,
    .gebenco-dashboard-table td {
        padding: var(--sp-sm);
        white-space: nowrap;
    }

    .gebenco-dashboard-welcome {
        padding: var(--sp-md);
    }

    .gebenco-dashboard-welcome p {
        font-size: 0.85rem;
    }
}

/* ============================================================
   ULTRA-MOBILE: 360px-375px (smallest phones)
   ============================================================ */

@media (max-width: 360px) {
    /* Reduce padding on smallest screens */
    .gebenco-account-wrapper {
        padding: var(--sp-lg) var(--sp-sm);
    }

    .gebenco-account-container {
        padding: var(--sp-lg) var(--sp-sm);
        border-radius: var(--gebenco-radius-md);
    }

    /* Smaller headings */
    h1 {
        font-size: 1.35rem;
    }

    h2 {
        font-size: 1.15rem;
    }

    /* Compact form spacing */
    .gebenco-account-container .form-group {
        margin-bottom: var(--sp-md);
    }

    .gebenco-account-container label {
        margin-bottom: 6px;
    }

    /* Reduce card padding */
    .gebenco-dashboard-card {
        padding: var(--sp-md);
    }

    /* Stackable dashboard actions */
    .gebenco-dashboard-actions {
        flex-direction: column;
    }

    .gebenco-dashboard-actions a {
        width: 100%;
    }

    /* Tighter button padding */
    .gebenco-account-container button,
    .gebenco-account-container .woocommerce-button,
    .gebenco-account-container .button,
    .woocommerce-form button {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    /* Product summary - minimal padding */
    .woocommerce-product-summary-wrap {
        padding: var(--sp-md);
    }

    /* Trust signals - minimal spacing */
    .gebenco-trust-signals {
        padding: var(--sp-sm);
        gap: 8px;
    }

    .gebenco-trust-signals .trust-signal {
        font-size: 0.7rem;
        gap: 6px;
    }

    /* Related products - single column with reduced gap */
    .woocommerce-related-products .products,
    .related.products .products,
    .upsells.products .products {
        grid-template-columns: 1fr;
        gap: var(--sp-sm);
    }

    /* Table responsiveness - more aggressive */
    .gebenco-dashboard-table {
        font-size: 0.7rem;
    }

    .gebenco-dashboard-table th,
    .gebenco-dashboard-table td {
        padding: 6px 8px;
    }
}

/* ============================================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================================ */

/* High contrast mode support */
@media (prefers-contrast: more) {
    .gebenco-account-container input[type="text"],
    .gebenco-account-container input[type="email"],
    .gebenco-account-container input[type="password"] {
        border-width: 3px;
    }

    .gebenco-account-container button,
    .gebenco-account-container .woocommerce-button,
    .gebenco-account-container .button {
        border-width: 3px;
    }
}

/* Reduced motion support */
/* ============================================================
   WOOCOMMERCE MYACCOUNT NAVIGATION OVERRIDE
   ============================================================ */

/* Override parent theme blue link with green */
.woocommerce-MyAccount-navigation li.is-active > a,
.woocommerce-MyAccount-navigation li.is-active > a:visited {
    background-color: var(--gebenco-green) !important;
    color: var(--gebenco-white) !important;
}

.woocommerce-MyAccount-navigation li.is-active > a:hover {
    background-color: var(--gebenco-primary-dark) !important;
    color: var(--gebenco-white) !important;
}

/* Ensure non-active links are properly styled */
.woocommerce-MyAccount-navigation li a {
    color: var(--gebenco-charcoal);
    text-decoration: none;
    border-bottom: none;
    transition: all 0.2s ease;
}

.woocommerce-MyAccount-navigation li a:hover {
    color: var(--gebenco-green);
}

/* Page title styling */
.woocommerce .page-title,
.woocommerce-page h1 {
    text-align: center;
    margin-bottom: var(--sp-2xl);
}

@media (prefers-reduced-motion: reduce) {
    .gebenco-account-container input[type="text"],
    .gebenco-account-container input[type="email"],
    .gebenco-account-container input[type="password"],
    .gebenco-account-container button,
    .gebenco-account-container .woocommerce-button,
    .gebenco-account-container .button,
    .gebenco-dashboard-card,
    .gebenco-dashboard-actions a {
        transition: none;
    }
}

/* ============================================================
   UX FIXES (PHASE 4 — PRODUCT PAGE & JOURNAL POST TEMPLATES)
   ============================================================ */

/* ── Product Page: WooCommerce Tabs ───────────────────────── */
.woocommerce-tabs.wc-tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 64px;
}

.woocommerce-tabs ul.tabs.wc-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--gebenco-border);
    max-width: 720px;
}

.woocommerce-tabs ul.tabs.wc-tabs::before,
.woocommerce-tabs ul.tabs.wc-tabs::after {
    display: none;
}

.woocommerce-tabs ul.tabs.wc-tabs li {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    top: auto;
}

.woocommerce-tabs ul.tabs.wc-tabs li::before,
.woocommerce-tabs ul.tabs.wc-tabs li::after {
    display: none !important;
}

.woocommerce-tabs ul.tabs.wc-tabs li a {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--gebenco-muted);
    padding: 14px 20px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s ease, border-color 0.2s ease;
    background: none !important;
}

.woocommerce-tabs ul.tabs.wc-tabs li.active a,
.woocommerce-tabs ul.tabs.wc-tabs li a:hover {
    color: var(--gebenco-ink);
    border-bottom-color: var(--gebenco-green);
}

.woocommerce-tabs .woocommerce-Tabs-panel {
    padding: 32px 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gebenco-muted);
    max-width: 720px;
    background: none !important;
    border: none !important;
}

.woocommerce-tabs .woocommerce-Tabs-panel h2 {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--gebenco-muted);
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 500;
}

.woocommerce-tabs .woocommerce-Tabs-panel table.shop_attributes {
    border-collapse: collapse;
    width: auto;
}

.woocommerce-tabs .woocommerce-Tabs-panel table.shop_attributes th,
.woocommerce-tabs .woocommerce-Tabs-panel table.shop_attributes td {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    padding: 8px 24px 8px 0;
    border: none;
    background: none !important;
}

.woocommerce-tabs .woocommerce-Tabs-panel table.shop_attributes th {
    color: var(--gebenco-muted);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.03em;
    font-size: 0.72rem;
    width: 140px;
}

.woocommerce-tabs ul.tabs.wc-tabs li.reviews_tab a {
    margin-bottom: 0;
}

#tab-reviews h2,
#reviews h2 {
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: 0.03em;
}

/* ── Product Page: Hide Blocksy Divider ───────────────────── */
.woocommerce-product-summary-wrap .ct-product-divider {
    display: none !important;
}

/* ── Product Page: Payment Elements in Summary Card ──────── */
/* Stripe instalment messaging */
.woocommerce-product-summary-wrap #payment-method-message {
    border-top: 1px solid var(--gebenco-border);
    padding-top: 16px;
    font-size: 0.8rem;
    color: var(--gebenco-muted);
}

/* PayPal Pay Later message */
.woocommerce-product-summary-wrap .ppcp-messages {
    border-top: 1px solid var(--gebenco-border);
    padding-top: 12px;
    font-size: 0.8rem;
}

/* PayPal express checkout button — visual separator */
.woocommerce-product-summary-wrap .ppc-button-wrapper {
    border-top: 1px solid var(--gebenco-border);
    padding-top: 16px;
}

/* ── Blog Post: Entry Title Margin (higher specificity win) ── */
body.single .entry-title,
body.single-post .entry-title {
    margin-top: 60px;
}

/* ── Blog Post: Details / FAQ Accordion ──────────────────── */
.entry-content details {
    border: 1px solid var(--gebenco-border);
    border-radius: var(--gebenco-radius-md);
    padding: 0 20px;
    margin-bottom: 8px;
    background: var(--gebenco-muted-light);
}

.entry-content details summary {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gebenco-ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease;
}

.entry-content details summary::-webkit-details-marker {
    display: none;
}

.entry-content details[open] summary {
    border-bottom-color: var(--gebenco-border);
    margin-bottom: 12px;
}

.entry-content details summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gebenco-muted);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.entry-content details[open] summary::after {
    transform: rotate(45deg);
}

.entry-content details > p {
    font-size: 0.9rem;
    color: var(--gebenco-muted);
    line-height: 1.7;
    padding-bottom: 16px;
    margin: 0;
}

/* ── Blog Post: Closing CTA Block ────────────────────────── */
.gebenco-closing-cta {
    margin-top: 2.6em;
    padding: 32px 36px;
    background: var(--gebenco-muted-light);
    border-radius: var(--gebenco-radius-lg);
    border-left: 3px solid var(--gebenco-green);
}

.gebenco-closing-cta h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--gebenco-ink);
}

.gebenco-closing-cta p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gebenco-muted);
    margin-bottom: 20px;
}

.gebenco-closing-cta p:last-child {
    margin-bottom: 0;
}

.gebenco-closing-cta .button {
    display: inline-block;
    background: var(--gebenco-green);
    color: var(--gebenco-snow) !important;
    padding: 10px 24px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    text-transform: none;
    font-weight: 500;
    text-decoration: none !important;
    border: none !important;
    transition: background-color 0.2s ease;
}

.gebenco-closing-cta .button:hover {
    background: var(--gebenco-green-dark);
}

@media (max-width: 767px) {
    .woocommerce-tabs.wc-tabs-wrapper {
        padding: 0 20px 48px;
    }

    .gebenco-closing-cta {
        padding: 24px 20px;
    }
}

/* ════════════════════════════════════════════════════════════
   TEMPLATE ENRICHMENT: PDP, CATEGORY, JOURNAL (2026-04-11)
   ════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   PDP ENRICHMENT STYLES (PDP-01 through PDP-08)
   ───────────────────────────────────────────────────────────── */

/* PDP-01: Reassurance Strip */
.gebenco-pdp-reassurance {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 18px 0;
    margin: 18px 0 24px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.gebenco-pdp-reassurance__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gebenco-muted);
}

.gebenco-pdp-reassurance__icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    margin-top: 2px;
}

@media (max-width: 767px) {
    .gebenco-pdp-reassurance {
        gap: 16px;
        flex-direction: column;
    }
}

/* PDP-02: Why It Works */
.gebenco-pdp-why-it-works {
    margin: 48px 0;
}

.gebenco-pdp-why-it-works__inner {
    max-width: 720px;
    margin: 0 auto;
}

.gebenco-pdp-why-it-works__title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 16px;
}

.gebenco-pdp-why-it-works__content {
    line-height: 1.7;
    color: var(--gebenco-text-default);
}

.gebenco-pdp-why-it-works__content p {
    margin-bottom: 16px;
}

/* PDP-03: Use-Case Matrix */
.gebenco-pdp-use-cases {
    margin: 40px 0;
}

.gebenco-pdp-use-cases__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.gebenco-pdp-use-cases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gebenco-pdp-use-case-card {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
}

.gebenco-pdp-use-case-card__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gebenco-text-default);
    margin-bottom: 8px;
}

.gebenco-pdp-use-case-card__text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--gebenco-muted);
    margin: 0;
}

/* PDP-04: Fit Guide */
.gebenco-pdp-fit-guide {
    margin: 40px 0;
}

.gebenco-pdp-fit-guide__inner {
    max-width: 720px;
}

.gebenco-pdp-fit-guide h2,
.gebenco-pdp-fit-guide h3 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 24px 0 16px;
}

.gebenco-pdp-dimensions__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.gebenco-pdp-dimension {
    padding: 16px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.gebenco-pdp-dimension__label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gebenco-muted);
    margin-bottom: 8px;
}

.gebenco-pdp-dimension__value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gebenco-text-default);
}

.gebenco-pdp-measure-checklist {
    margin-top: 24px;
}

.gebenco-pdp-measure-checklist__list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.gebenco-pdp-measure-checklist__item {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--gebenco-text-default);
}

.gebenco-pdp-measure-checklist__check {
    flex-shrink: 0;
    color: var(--gebenco-green);
    font-weight: 600;
}

/* PDP-05: Material, Care, Durability */
.gebenco-pdp-material-care {
    margin: 40px 0;
}

.gebenco-pdp-material-care__section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
}

.gebenco-pdp-material-care__section:last-child {
    border-bottom: none;
}

.gebenco-pdp-material-care__section h3 {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.gebenco-pdp-material-care__section p {
    line-height: 1.6;
    color: var(--gebenco-text-default);
}

/* PDP-06: Pairs Well With */
.gebenco-pdp-pairs-well-with {
    margin: 48px 0;
}

.gebenco-pdp-pairs-well-with__inner h2 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 24px;
}

.gebenco-pdp-pairs-well-with .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

/* PDP-07: FAQ Expansion */
.gebenco-pdp-faq-expansion {
    margin: 24px 0;
}

.gebenco-pdp-faq-expansion__item {
    margin-bottom: 12px;
    border: none;
}

.gebenco-pdp-faq-expansion__item summary {
    cursor: pointer;
    padding: 12px;
    font-weight: 500;
    color: var(--gebenco-text-default);
    user-select: none;
}

.gebenco-pdp-faq-expansion__item summary:hover {
    background: #f5f5f5;
}

.gebenco-pdp-faq-expansion__a {
    padding: 12px;
    background: #fafafa;
    line-height: 1.6;
    color: var(--gebenco-text-default);
}

/* PDP-08: Styling Note */
.gebenco-pdp-styling-note {
    margin: 32px 0;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid var(--gebenco-green);
}

.gebenco-pdp-styling-note__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.gebenco-pdp-styling-note__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gebenco-text-default);
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   CATEGORY ENRICHMENT STYLES (CAT-01 through CAT-06)
   ───────────────────────────────────────────────────────────── */

/* CAT-01: Extended Intro */
.gebenco-cat-extended-intro {
    margin: 40px 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.gebenco-cat-extended-intro__text {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gebenco-text-default);
    margin: 0;
}

/* CAT-02: Best For Chips */
.gebenco-cat-best-for-chips {
    margin: 24px 0;
    padding: 16px 0;
}

.gebenco-cat-best-for-chips__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.gebenco-cat-best-for-chips__label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gebenco-muted);
}

.gebenco-cat-best-for-chip {
    display: inline-block;
    padding: 8px 16px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gebenco-text-default);
}

/* CAT-03: Criteria Cards */
.gebenco-cat-criteria-cards {
    margin: 40px 0;
}

.gebenco-cat-criteria-cards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.gebenco-cat-criteria-card {
    padding: 24px;
    border: 1px solid #e0e0e0;
}

.gebenco-cat-criteria-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.gebenco-cat-criteria-card__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gebenco-text-default);
    margin: 0;
}

/* CAT-04: Bundle Tiers */
.gebenco-cat-bundle-tiers {
    margin: 48px 0;
}

.gebenco-cat-bundle-tiers__inner h2 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 32px;
}

.gebenco-cat-bundle-tier {
    margin-bottom: 40px;
}

.gebenco-cat-bundle-tier__label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--gebenco-text-default);
}

.gebenco-cat-bundle-tier .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

/* CAT-05: FAQ Expansion */
.gebenco-cat-faq-expansion {
    margin: 24px 0;
}

.gebenco-cat-faq-expansion__item {
    margin-bottom: 12px;
    border: none;
}

.gebenco-cat-faq-expansion__q {
    cursor: pointer;
    padding: 12px;
    font-weight: 500;
    color: var(--gebenco-text-default);
}

.gebenco-cat-faq-expansion__q:hover {
    background: #f5f5f5;
}

.gebenco-cat-faq-expansion__a {
    padding: 12px;
    background: #fafafa;
    color: var(--gebenco-text-default);
    line-height: 1.6;
}

/* CAT-06: Editorial + Trust Links */
.gebenco-cat-editorial-trust-cluster {
    margin: 40px 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.gebenco-cat-editorial-trust-cluster__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.gebenco-cat-editorial-link,
.gebenco-cat-trust-link {
    display: inline-block;
    padding: 12px 0;
    font-weight: 500;
    color: var(--gebenco-text-default);
    text-decoration: none;
    border-bottom: 2px solid var(--gebenco-green);
    transition: opacity 0.2s ease;
}

.gebenco-cat-editorial-link:hover,
.gebenco-cat-trust-link:hover {
    opacity: 0.7;
}

/* ─────────────────────────────────────────────────────────────
   JOURNAL ENRICHMENT STYLES (POST-01 through POST-06)
   ───────────────────────────────────────────────────────────── */

/* POST-01: Quick Reset Box */
.gebenco-post-quick-reset-box {
    max-width: 720px;
    margin: 32px auto;
    padding: 24px;
    background: #fafafa;
    border-left: 4px solid var(--gebenco-green);
}

.gebenco-post-quick-reset-box__title {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0 0 12px;
}

.gebenco-post-quick-reset-box__time {
    display: flex;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gebenco-muted);
    margin: 0 0 16px;
}

.gebenco-post-quick-reset-box__steps {
    list-style: decimal;
    padding-left: 20px;
    margin: 0;
}

.gebenco-post-quick-reset-box__step {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--gebenco-text-default);
}

/* POST-02: Shop This Setup */
.gebenco-post-shop-this-setup {
    margin: 48px 0;
}

.gebenco-post-shop-this-setup__inner h2 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 24px;
}

.gebenco-post-shop-this-setup .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

/* POST-03: Common Mistakes */
.gebenco-post-common-mistakes {
    margin: 40px 0;
}

.gebenco-post-common-mistakes__inner h2 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.gebenco-post-common-mistakes__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gebenco-post-common-mistakes__item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gebenco-text-default);
}

.gebenco-post-common-mistakes__icon {
    flex-shrink: 0;
}

/* POST-04: Practical Checklist */
.gebenco-post-practical-checklist {
    margin: 40px 0;
}

.gebenco-post-practical-checklist__inner h2 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.gebenco-post-practical-checklist__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.gebenco-post-practical-checklist__item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    align-items: center;
}

.gebenco-post-practical-checklist__checkbox {
    cursor: pointer;
}

.gebenco-post-practical-checklist__item label {
    cursor: pointer;
    margin: 0;
}

.gebenco-post-practical-checklist .button {
    display: inline-block;
    margin-top: 12px;
}

/* POST-05: Trust Links */
.gebenco-post-trust-links {
    max-width: 720px;
    margin: 32px auto;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.gebenco-post-trust-links__list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.gebenco-post-trust-link {
    text-decoration: none;
    color: var(--gebenco-text-default);
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--gebenco-green);
    transition: opacity 0.2s ease;
}

.gebenco-post-trust-link:hover {
    opacity: 0.7;
}

/* POST-06: FAQ/HowTo Appendix */
.gebenco-post-appendix {
    max-width: 720px;
    margin: 48px auto 0;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.gebenco-post-faq-appendix,
.gebenco-post-howto-appendix {
    margin-bottom: 32px;
}

.gebenco-post-faq-appendix h3,
.gebenco-post-howto-appendix h3 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 16px;
}

.gebenco-post-faq-appendix__item {
    margin-bottom: 12px;
    border: none;
}

.gebenco-post-faq-appendix__q {
    cursor: pointer;
    padding: 12px;
    font-weight: 500;
}

.gebenco-post-faq-appendix__q:hover {
    background: #f5f5f5;
}

.gebenco-post-faq-appendix__a {
    padding: 12px;
    background: #fafafa;
    line-height: 1.6;
}

.gebenco-post-howto-appendix__steps {
    list-style: decimal;
    padding-left: 20px;
    margin: 0;
}

.gebenco-post-howto-appendix__step {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   MOBILE RESPONSIVE ADJUSTMENTS (All Enrichment Blocks)
   ───────────────────────────────────────────────────────────── */

@media (max-width: 767px) {
    .gebenco-pdp-use-cases__grid,
    .gebenco-cat-criteria-cards__grid,
    .gebenco-pdp-fit-guide .gebenco-pdp-dimensions__row {
        grid-template-columns: 1fr;
    }

    .gebenco-pdp-pairs-well-with .products,
    .gebenco-cat-bundle-tier .products,
    .gebenco-post-shop-this-setup .products {
        grid-template-columns: 1fr;
    }

    .gebenco-cat-editorial-trust-cluster__grid {
        flex-direction: column;
    }

    .gebenco-post-quick-reset-box,
    .gebenco-post-trust-links {
        margin-left: 20px;
        margin-right: 20px;
    }

    .gebenco-cat-best-for-chips__list {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ─────────────────────────────────────────────────────────────
   EXPLORE YOUR CALM CONVERSION PAGE (Wellness Seeker Campaign)
   ───────────────────────────────────────────────────────────── */

.gebenco-explore-calm-page {
    background: #fff;
}

/* ── Hero Section ──────────────────────────────────────────── */
.gebenco-explore-calm-hero {
    padding: 80px 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.gebenco-explore-calm-hero__inner {
    max-width: 700px;
    margin: 0 auto;
}

.gebenco-explore-calm-hero__title {
    font-family: 'Lora', serif;
    font-size: 3.2rem;
    font-weight: 300;
    color: #1b8c4f;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.gebenco-explore-calm-hero__subtitle {
    font-size: 1.4rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.gebenco-explore-calm-hero__body {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Buttons ───────────────────────────────────────────────── */
.gebenco-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.gebenco-btn--primary {
    background: #1b8c4f;
    color: #fff;
}

.gebenco-btn--primary:hover {
    background: #156836;
    opacity: 0.9;
}

.gebenco-btn--secondary {
    background: #1b8c4f;
    color: #fff;
    margin-right: 16px;
}

.gebenco-btn--secondary:hover {
    background: #156836;
}

.gebenco-btn--ghost {
    background: transparent;
    color: #1b8c4f;
    border: 2px solid #1b8c4f;
    padding: 12px 34px;
}

.gebenco-btn--ghost:hover {
    background: #f5f5f5;
}

/* ── Personalization Indicator ─────────────────────────────── */
.gebenco-explore-calm-personalization {
    background: #f5f5f5;
    padding: 20px;
    border-left: 4px solid #1b8c4f;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.gebenco-personalization-text {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
}

.gebenco-personalization-icon {
    display: inline-block;
    margin-right: 8px;
    color: #1b8c4f;
    font-weight: 600;
}

/* ── Value Statement Cards ─────────────────────────────────── */
.gebenco-explore-calm-values {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.gebenco-explore-calm-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.gebenco-explore-calm-value-card {
    background: #f5f5f5;
    padding: 32px;
    border: 1px solid #e8e8e8;
    border-left: 4px solid #1b8c4f;
    text-align: center;
}

.gebenco-explore-calm-value-card__icon {
    width: 40px;
    height: 40px;
    background: #1b8c4f;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.gebenco-explore-calm-value-card__title {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 12px;
}

.gebenco-explore-calm-value-card__description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ── Product Grid Section ──────────────────────────────────── */
.gebenco-explore-calm-products {
    padding: 60px 40px;
    background: #fff;
    max-width: 1400px;
    margin: 0 auto;
}

.gebenco-explore-calm-products__header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gebenco-explore-calm-products__header h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 12px;
}

.gebenco-explore-calm-products__header p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ── Product Grid (3-2-1 responsive) ──────────────────────── */
.gebenco-explore-calm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gebenco-explore-calm-grid .product {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 16px;
    transition: box-shadow 0.3s ease;
}

.gebenco-explore-calm-grid .product:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gebenco-explore-calm-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 12px;
}

.gebenco-explore-calm-product-link img {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    border-radius: 2px;
}

.gebenco-explore-calm-product-link h3 {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #000;
    margin: 12px 0;
    line-height: 1.4;
}

.gebenco-explore-calm-grid .price {
    font-weight: 600;
    color: #1b8c4f;
    display: block;
    margin-bottom: 8px;
}

.gebenco-product-benefit {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin: 8px 0;
    line-height: 1.4;
}

.gebenco-explore-calm-grid .cart {
    display: flex;
    gap: 8px;
    align-items: center;
}

.gebenco-explore-calm-grid .quantity {
    flex: 0 0 auto;
}

.gebenco-explore-calm-grid .single_add_to_cart_button {
    flex: 1;
    padding: 8px 12px;
    font-size: 0.8rem;
}

.gebenco-empty-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

/* ── Testimonials Section ──────────────────────────────────── */
.gebenco-explore-calm-testimonials {
    padding: 60px 40px;
    background: #f5f5f5;
    max-width: 1200px;
    margin: 0 auto;
}

.gebenco-explore-calm-testimonials h2 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
}

.gebenco-explore-calm-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.gebenco-explore-calm-testimonial {
    background: #fff;
    padding: 32px;
    border-left: 4px solid #1b8c4f;
}

.gebenco-testimonial-quote {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #000;
    margin: 0 0 16px 0;
}

.gebenco-testimonial-author {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    font-weight: 600;
    margin-bottom: 4px;
}

.gebenco-testimonial-role {
    display: block;
    font-size: 0.8rem;
    color: #1b8c4f;
}

/* ── FAQ Section ───────────────────────────────────────────── */
.gebenco-explore-calm-faq {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.gebenco-explore-calm-faq h2 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
}

.gebenco-explore-calm-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gebenco-explore-calm-faq-item {
    border: 1px solid #e8e8e8;
    border-left: 4px solid #1b8c4f;
}

.gebenco-explore-calm-faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.gebenco-explore-calm-faq-question:hover {
    background: #f5f5f5;
}

.gebenco-faq-toggle {
    display: inline-block;
    font-size: 1.5rem;
    color: #1b8c4f;
    transition: transform 0.3s ease;
}

.gebenco-explore-calm-faq-item[open] .gebenco-faq-toggle {
    transform: rotate(45deg);
}

.gebenco-explore-calm-faq-answer {
    padding: 0 20px 20px 20px;
    background: #f5f5f5;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.gebenco-explore-calm-faq-answer p {
    margin: 0;
}

/* ── Secondary CTAs Section ────────────────────────────────── */
.gebenco-explore-calm-secondary-ctas {
    padding: 60px 40px;
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.gebenco-explore-calm-secondary-ctas h2 {
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
}

.gebenco-explore-calm-secondary-ctas__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* ── Closing Section ───────────────────────────────────────── */
.gebenco-explore-calm-closing {
    padding: 60px 40px;
    background: #f5f5f5;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.gebenco-explore-calm-closing__inner {
    border-top: 2px solid #1b8c4f;
    padding-top: 40px;
}

.gebenco-explore-calm-closing__inner p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.gebenco-explore-calm-support {
    font-size: 0.9rem;
}

.gebenco-explore-calm-support a {
    color: #1b8c4f;
    text-decoration: none;
    border-bottom: 2px solid #1b8c4f;
    padding-bottom: 2px;
}

/* ─────────────────────────────────────────────────────────────
   EXPLORE YOUR CALM - RESPONSIVE BREAKPOINTS
   ───────────────────────────────────────────────────────────── */

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .gebenco-explore-calm-values__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .gebenco-explore-calm-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gebenco-explore-calm-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .gebenco-explore-calm-hero__title {
        font-size: 2.4rem;
    }

    .gebenco-explore-calm-hero {
        padding: 60px 30px;
    }

    .gebenco-explore-calm-products,
    .gebenco-explore-calm-testimonials,
    .gebenco-explore-calm-faq,
    .gebenco-explore-calm-secondary-ctas,
    .gebenco-explore-calm-closing {
        padding: 50px 30px;
    }
}

/* Mobile: 1 column */
@media (max-width: 767px) {
    .gebenco-explore-calm-values__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gebenco-explore-calm-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gebenco-explore-calm-hero {
        padding: 40px 20px;
    }

    .gebenco-explore-calm-hero__title {
        font-size: 1.8rem;
    }

    .gebenco-explore-calm-hero__subtitle {
        font-size: 1.1rem;
    }

    .gebenco-explore-calm-products,
    .gebenco-explore-calm-testimonials,
    .gebenco-explore-calm-faq,
    .gebenco-explore-calm-secondary-ctas,
    .gebenco-explore-calm-closing {
        padding: 40px 20px;
    }

    .gebenco-explore-calm-products__header h2,
    .gebenco-explore-calm-testimonials h2,
    .gebenco-explore-calm-faq h2,
    .gebenco-explore-calm-secondary-ctas h2 {
        font-size: 1.4rem;
    }

    .gebenco-explore-calm-secondary-ctas__buttons {
        flex-direction: column;
        gap: 12px;
    }

    .gebenco-btn--secondary {
        margin-right: 0;
        width: 100%;
    }

    .gebenco-btn--ghost {
        width: 100%;
    }

    .gebenco-explore-calm-value-card {
        padding: 24px;
    }

    .gebenco-explore-calm-testimonial {
        padding: 20px;
    }

    .gebenco-explore-calm-faq-question {
        padding: 16px;
        font-size: 0.9rem;
    }

    .gebenco-explore-calm-faq-answer {
        padding: 0 16px 16px 16px;
        font-size: 0.9rem;
    }
}
}
