/* ============================================================
   Pick and Print — Main Stylesheet
   Font: Plus Jakarta Sans (Google Fonts)
   Palette: #000 primary, #fff background, #f5f5f5 light bg
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 15px; scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    color: #111;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ── Typography ─────���─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(28px, 5vw, 42px); }
h2 { font-size: clamp(22px, 4vw, 32px); }
h3 { font-size: clamp(18px, 3vw, 24px); }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }
p  { line-height: 1.7; }

/* ── Layout helpers ───────────────────────────��───────────── */
.pp-container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 24px;
}

@media (max-width: 768px) {
    .pp-container { padding-inline: 16px; }
}

/* ── Buttons ──────���───────────────────────────────────────── */
.pp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: opacity .2s, transform .15s;
    white-space: nowrap;
}
.pp-btn:hover { opacity: .85; transform: translateY(-1px); }
.pp-btn--primary { background: #000; color: #fff; }
.pp-btn--outline { background: transparent; border: 2px solid #000; color: #000; }
.pp-btn--white   { background: #fff; color: #000; }

/* ── Promo Bar ──────────────────────────────────────────────── */
#pp-promo-bar {
    background: #35B777;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-align: center;
    flex-wrap: wrap;
}
#pp-promo-bar strong { font-weight: 800; letter-spacing: 0.4px; }
.pp-promo-dot { font-size: 16px; opacity: .7; line-height: 1; }

/* ── Header ───────────────────────────────────────────────── */
#pp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
    transition: box-shadow .2s;
}
#pp-header.is-scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.08); }

.pp-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 68px;
}

/* Logo */
.pp-logo { flex-shrink: 0; display: flex; align-items: center; }
.pp-logo img { height: 26px; width: auto; }

/* Primary Nav */
.pp-nav { flex: 1; }
.pp-nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.pp-nav__menu > li { position: relative; }
.pp-nav__menu > li > a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: background .15s;
}
.pp-nav__menu > li > a:hover,
.pp-nav__menu > li.current-menu-item > a { background: #f4f4f4; }

/* Dropdown */
.pp-nav__menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 100;
}
.pp-nav__menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.pp-nav__menu .sub-menu li a {
    display: block;
    padding: 9px 18px;
    font-size: 14px;
    transition: background .15s;
}
.pp-nav__menu .sub-menu li a:hover { background: #f4f4f4; }

/* Header actions */
.pp-header__actions { display: flex; align-items: center; gap: 6px; }
.pp-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: background .15s;
    color: #111;
}
.pp-icon-btn:hover { background: #f4f4f4; }

/* Cart count badge */
.pp-cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    min-width: 16px;
    height: 16px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}
.pp-cart-count:empty,
.pp-cart-count[data-count="0"] { display: none; }

/* Mobile toggle — hidden on desktop */
.pp-menu-toggle { display: none; }
.pp-hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: #111;
    position: relative;
    transition: background .2s;
}
.pp-hamburger::before,
.pp-hamburger::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #111;
    position: absolute;
    transition: transform .2s;
}
.pp-hamburger::before { top: -6px; }
.pp-hamburger::after  { top: 6px; }

/* Search Bar */
.pp-search-bar {
    border-top: 1px solid #eee;
    background: #fff;
    padding: 12px 0;
}
.pp-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 0 12px;
    transition: border-color .2s;
}
.pp-search-form:focus-within { border-color: #111; }
.pp-search-form input[type="search"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 0;
    font: inherit;
    font-size: 14px;
    background: transparent;
}
.pp-search-form button { color: #666; display: flex; align-items: center; }

/* ── Mobile Nav ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .pp-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        z-index: 999;
        padding: 80px 24px 24px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform .3s;
    }
    .pp-nav.is-open { transform: translateX(0); }
    .pp-nav__menu { flex-direction: column; align-items: flex-start; gap: 0; }
    .pp-nav__menu > li > a { font-size: 18px; padding: 12px 0; border-radius: 0; border-bottom: 1px solid #f0f0f0; width: 100%; }
    .pp-nav__menu .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 16px;
    }
    .pp-menu-toggle { display: flex; z-index: 1001; }
    .pp-account-btn { display: none; }
}

/* ── Footer ───────────────────────────────────────────────── */
.pp-footer {
    background: #111;
    color: #ccc;
    margin-top: 80px;
}
.pp-footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-top: 64px;
    padding-bottom: 48px;
}
.pp-footer__logo img { filter: brightness(0) invert(1); margin-bottom: 12px; }
.pp-footer__tagline { font-size: 13px; line-height: 1.6; color: #999; max-width: 240px; }
.pp-footer__heading { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.3px; text-transform: uppercase; }
.pp-footer__links li + li { margin-top: 10px; }
.pp-footer__links a { font-size: 14px; color: #999; transition: color .15s; }
.pp-footer__links a:hover { color: #fff; }
.pp-footer__newsletter p { font-size: 13px; color: #999; margin-bottom: 16px; }
.pp-newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.pp-newsletter-form input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    border: 1px solid #333;
    border-radius: 6px;
    background: #222;
    color: #fff;
    font: inherit;
    font-size: 13px;
    outline: none;
    transition: border-color .2s;
}
.pp-newsletter-form input[type="email"]:focus { border-color: #666; }
.pp-newsletter-form button {
    padding: 10px 18px;
    background: #fff;
    color: #000;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    transition: opacity .2s;
}
.pp-newsletter-form button:hover { opacity: .85; }

.pp-footer__bottom {
    border-top: 1px solid #222;
    padding: 20px 0;
}
.pp-footer__bottom .pp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.pp-footer__copyright { font-size: 13px; color: #666; }
.pp-footer__payments { height: 24px; width: auto; }

@media (max-width: 1024px) {
    .pp-footer__inner { grid-template-columns: 1fr 1fr 1fr; }
    .pp-footer__brand { grid-column: 1 / -1; }
    .pp-footer__newsletter { grid-column: span 3; }
}
@media (max-width: 600px) {
    .pp-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .pp-footer__brand, .pp-footer__newsletter { grid-column: 1 / -1; }
}

/* ── Page Layout ──────────────────────────────────────────── */
.pp-content-wrap { padding-top: 48px; padding-bottom: 64px; }
.pp-page-title { margin-bottom: 24px; }
.pp-page-body { max-width: 780px; }
.pp-page-body p, .pp-page-body li { line-height: 1.8; margin-bottom: 16px; }
.pp-page-body a { text-decoration: underline; }

/* ── Blog grid ────────────────────────────────────────────── */
.pp-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pp-post-card { border-radius: 10px; overflow: hidden; border: 1px solid #eee; }
.pp-post-card__thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .3s; }
.pp-post-card:hover .pp-post-card__thumb img { transform: scale(1.03); }
.pp-post-card__body { padding: 20px; }
.pp-post-card__title { font-size: 17px; margin-bottom: 8px; }
.pp-post-card__excerpt { font-size: 14px; color: #555; }
@media (max-width: 768px) { .pp-posts-grid { grid-template-columns: 1fr; } }

/* ── Pagination ───────────────────────────────────────────── */
.pp-pagination { margin-top: 48px; text-align: center; }
.pp-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid #ddd; border-radius: 6px; margin: 0 3px; font-size: 14px; transition: background .15s; }
.pp-pagination .page-numbers.current { background: #000; color: #fff; border-color: #000; }
.pp-pagination .page-numbers:hover:not(.current) { background: #f4f4f4; }

/* ── 404 ─────���────────────────────────────────────────────── */
.pp-404 { padding-top: 80px; padding-bottom: 80px; text-align: center; }
.pp-404 h1 { margin-bottom: 16px; }
.pp-404 p  { color: #666; margin-bottom: 32px; }

/* ══════════════════════════════════════════════════════════
   HOMEPAGE — front-page.php
══════════════════════════════════════════════════════════ */

/* Shared section spacing */
.pp-section { padding: 72px 0; }
.pp-section__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.pp-section__title { font-size: clamp(20px, 3vw, 28px); }
.pp-section__title--center { text-align: center; }
.pp-section__subtitle { text-align: center; color: #666; margin-top: 8px; margin-bottom: 48px; }
.pp-section__eyebrow { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #2d7a4f; margin-bottom: 10px; }
.pp-eyebrow--green { color: #2d7a4f; }
.pp-eyebrow--center { text-align: center; }

/* ── Hero ─────────────────────────────────────────────────── */
.pp-hero { padding: 64px 0 48px; overflow: hidden; }
.pp-hero__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }

.pp-hero__heading { font-size: clamp(32px, 5vw, 52px); line-height: 1.1; margin-bottom: 18px; }
.pp-hero__sub { font-size: 16px; color: #444; line-height: 1.7; margin-bottom: 24px; max-width: 440px; }
.pp-hero__badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.pp-hero__badges img { height: 36px; width: auto; }
.pp-hero__cta { font-size: 15px; padding: 14px 32px; }

/* Hero mosaic */
.pp-hero__mosaic { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 10px; align-items: start; }
.pp-hero__col { display: flex; flex-direction: column; gap: 10px; }
.pp-hero__img-wrap { border-radius: 12px; overflow: hidden; }
.pp-hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pp-hero__img--tall { aspect-ratio: 3/4; }
.pp-hero__col--b .pp-hero__img-wrap { aspect-ratio: 4/3; }
.pp-hero__cat-label { font-size: 12px; font-weight: 600; color: #666; text-align: center; padding-top: 4px; }

@media (max-width: 900px) {
    .pp-hero__inner { grid-template-columns: 1fr; }
    .pp-hero__mosaic { grid-template-columns: 1fr 1.2fr 1fr; }
    .pp-hero__sub { max-width: 100%; }
}
@media (max-width: 560px) {
    .pp-hero__mosaic { grid-template-columns: 1fr 1fr; }
    .pp-hero__col--c { display: none; }
}

/* ── Categories ───────────────────────────────────────────── */
.pp-cats { background: #f8f6f2; padding: 40px 0; }
.pp-cats__track { display: flex; gap: 12px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.pp-cats__track::-webkit-scrollbar { display: none; }
.pp-cat-card {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 12px;
    min-width: 130px;
    text-align: center;
    border: 1.5px solid transparent;
    transition: border-color .2s, box-shadow .2s;
    color: #111;
}
.pp-cat-card:hover { border-color: #000; box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.pp-cat-card__img { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; background: #f0f0f0; display: flex; align-items: center; justify-content: center; }
.pp-cat-card__img img { width: 100%; height: 100%; object-fit: cover; }
.pp-cat-card__img--placeholder { color: #aaa; }
.pp-cat-card__name { font-size: 13px; font-weight: 700; }
.pp-cat-card__desc { font-size: 11px; color: #888; line-height: 1.4; }

/* ── Products grid ────────────────────────────────────────── */
.pp-products-section { padding: 72px 0; }
.pp-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.pp-product-card { display: flex; flex-direction: column; border-radius: 10px; overflow: hidden; border: 1px solid #eee; transition: box-shadow .2s; color: #111; }
.pp-product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.pp-product-card__img { aspect-ratio: 1; overflow: hidden; background: #f5f5f5; }
.pp-product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.pp-product-card:hover .pp-product-card__img img { transform: scale(1.04); }
.pp-product-card__info { padding: 12px; flex: 1; }
.pp-product-card__name { font-size: 12px; font-weight: 600; line-height: 1.3; margin-bottom: 6px; }
.pp-product-card__price { font-size: 13px; font-weight: 700; }
.pp-product-card__price del { font-weight: 400; color: #999; }

@media (max-width: 1100px) { .pp-products-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .pp-products-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Reviews ──────────────────────────────────────────────── */
.pp-reviews-section { background: #f8f8f8; padding: 72px 0; text-align: center; }
.pp-reviews-wrap { margin-top: 32px; }
.pp-reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: left; }
.pp-review-card { background: #fff; border-radius: 12px; padding: 24px; border: 1px solid #eee; }
.pp-review-stars { color: #f59e0b; font-size: 16px; margin-bottom: 10px; letter-spacing: 2px; }
.pp-review-text { font-size: 14px; color: #444; line-height: 1.6; margin-bottom: 14px; }
.pp-review-name { font-size: 13px; font-weight: 700; color: #111; }
@media (max-width: 900px) { .pp-reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pp-reviews-grid { grid-template-columns: 1fr; } }

/* ── Sample gallery mosaic ────────────────────────────────── */
.pp-gallery-section { padding: 0; overflow: hidden; }
.pp-gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    height: 360px;
}
.pp-gallery-mosaic__item { overflow: hidden; border-radius: 8px; }
.pp-gallery-mosaic__item:nth-child(1) { grid-column: span 1; grid-row: span 2; }
.pp-gallery-mosaic__item:nth-child(3) { grid-column: span 2; grid-row: span 2; }
.pp-gallery-mosaic__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pp-gallery-mosaic__item:hover img { transform: scale(1.05); }
@media (max-width: 768px) {
    .pp-gallery-mosaic { grid-template-columns: repeat(3, 1fr); height: 280px; }
    .pp-gallery-mosaic__item:nth-child(n+6) { display: none; }
}

/* ── Feature banner ───────────────────────────────────────── */
.pp-feature-banner { background: #f8f6f2; }
.pp-feature-banner__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pp-feature-banner__text h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 16px; }
.pp-feature-banner__text p { color: #555; font-size: 15px; line-height: 1.7; margin-bottom: 28px; max-width: 420px; }
.pp-feature-banner__img { border-radius: 16px; overflow: hidden; }
.pp-feature-banner__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 768px) {
    .pp-feature-banner__inner { grid-template-columns: 1fr; }
    .pp-feature-banner__img { order: -1; }
}

/* ── Features 4-col ───────────────────────────────────────── */
.pp-features-section { background: #fff; }
.pp-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; }
.pp-feature { display: flex; flex-direction: column; gap: 12px; }
.pp-feature img { width: 56px; height: 56px; object-fit: contain; }
.pp-feature h3 { font-size: 16px; font-weight: 700; }
.pp-feature p { font-size: 14px; color: #555; line-height: 1.6; }
@media (max-width: 900px) { .pp-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pp-features-grid { grid-template-columns: 1fr; } }

/* ── How it works ─────────────────────────────────────────── */
.pp-how-section { background: #f8f6f2; }
.pp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 16px; }
.pp-step { text-align: center; }
.pp-step__num { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #2d7a4f; background: #e8f5ee; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }
.pp-step__img { border-radius: 12px; overflow: hidden; margin-bottom: 20px; aspect-ratio: 4/3; }
.pp-step__img img { width: 100%; height: 100%; object-fit: cover; }
.pp-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.pp-step p { font-size: 14px; color: #555; line-height: 1.6; }
@media (max-width: 768px) { .pp-steps { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; } }

/* ══════════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
══════════════════════════════════════════════════════════ */

.pp-product-page { padding-bottom: 80px; }

/* ── Urgency bar ──────────────────────────────────────────── */
.pp-product-urgency {
    background: #35B777;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.pp-urgency-divider { opacity: .5; }

/* ── Breadcrumb strip ─────────────────────────────────────── */
.pp-product-breadcrumb-strip {
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    padding: 0;
}
.single-product .woocommerce-breadcrumb { padding: 10px 0; font-size: 13px; color: #888; margin-bottom: 0; }
.single-product .woocommerce-breadcrumb a { color: #888; transition: color .15s; }
.single-product .woocommerce-breadcrumb a:hover { color: #111; }
.single-product .woocommerce-breadcrumb .breadcrumb-separator { margin: 0 4px; }

/* ── Top 2-col grid: gallery + summary ───────────────────── */
/* WooCommerce renders .woocommerce-product-gallery and .summary.entry-summary
   as direct children of div.product, so we make div.product a 2-col grid.
   !important overrides woocommerce-layout.css float-based rules.             */
.single-product .product {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 56px;
    align-items: start;
    padding: 8px 0 48px;
}

/* .clear divs WooCommerce injects between grid children — hide them */
.single-product .product .clear { display: none; }

/* Everything after the summary spans both columns */
.single-product .product .woocommerce-tabs,
.single-product .product .up-sells,
.single-product .product .related,
.single-product .product .upsells { grid-column: 1 / -1; }

/* ── Gallery (column 1) — never sticky ───────────────────────── */
.single-product .product .woocommerce-product-gallery,
.single-product .woocommerce-product-gallery--sticky {
    position: static !important;
    top: auto !important;
    align-self: auto !important;
}
.single-product .product .woocommerce-product-gallery__wrapper { border-radius: 12px; overflow: hidden; }
.single-product .product .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}
.single-product .product .flex-viewport { border-radius: 12px; overflow: hidden; }
.single-product .product .flex-control-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    padding: 0;
    list-style: none;
}
.single-product .product .flex-control-thumbs li { margin: 0; }
.single-product .product .flex-control-thumbs img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color .2s;
}
.single-product .product .flex-control-thumbs .flex-active { border-color: #000; }

/* ── Summary (column 2) ───────────────────────────────────── */
.single-product .product .summary.entry-summary { min-width: 0; }

.single-product .product .summary .product_title {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.single-product .product .summary .woocommerce-product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #666;
}
.single-product .product .summary .star-rating { color: #f59e0b; font-size: 14px; }

.single-product .product .summary .price {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    display: block;
}
.single-product .product .summary .price del { color: #999; font-weight: 400; font-size: 16px; margin-right: 6px; }
.single-product .product .summary .price ins { text-decoration: none; }

.single-product .product .summary .woocommerce-product-details__short-description {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}
.single-product .product .summary .woocommerce-product-details__short-description ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 8px;
}
.single-product .product .summary .woocommerce-product-details__short-description li { margin-bottom: 4px; }

.single-product .product .summary form.cart { margin-bottom: 20px; }
.single-product .product .summary .quantity {
    display: inline-flex;
    align-items: center;
    margin-right: 12px;
    margin-bottom: 12px;
}
.single-product .product .summary .quantity input.qty {
    width: 64px;
    height: 48px;
    text-align: center;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: border-color .2s;
}
.single-product .product .summary .quantity input.qty:focus { border-color: #111; }

.single-product .product .summary .single_add_to_cart_button,
.single-product .product .summary button.button {
    height: 48px;
    padding: 0 32px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
    white-space: nowrap;
}
.single-product .product .summary .single_add_to_cart_button:hover { opacity: .85; transform: translateY(-1px); }
.single-product .product .summary .single_add_to_cart_button.loading { opacity: .6; pointer-events: none; }

.single-product .product .summary table.variations {
    width: 100%;
    border: none;
    margin-bottom: 16px;
}
.single-product .product .summary table.variations td,
.single-product .product .summary table.variations th { border: none; padding: 6px 0; vertical-align: middle; }
.single-product .product .summary table.variations .label {
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    padding-right: 16px;
    width: 100px;
}
.single-product .product .summary table.variations select {
    width: 100%;
    height: 42px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 0 12px;
    font: inherit;
    font-size: 14px;
    outline: none;
    appearance: auto;
    background: #fff;
    cursor: pointer;
}

.single-product .product .summary .product_meta {
    font-size: 13px;
    color: #888;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.single-product .product .summary .product_meta span { margin-right: 16px; }
.single-product .product .summary .product_meta a { color: #555; }
.single-product .product .summary .product_meta a:hover { color: #111; }

/* ── Tabs (full-width, below the 2-col) ──────────────────── */
.single-product .product .woocommerce-tabs { margin-top: 8px; }
.single-product .product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 32px;
    padding: 0;
    list-style: none;
}
.single-product .product .woocommerce-tabs ul.tabs li {
    margin: 0;
    border: none;
    background: none;
    border-radius: 0;
}
.single-product .product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color .15s, border-color .15s;
}
.single-product .product .woocommerce-tabs ul.tabs li.active a { color: #111; border-bottom-color: #111; }
.single-product .product .woocommerce-tabs ul.tabs li a:hover { color: #111; }
.single-product .product .woocommerce-tabs .panel {
    padding: 0;
    border: none;
    margin-bottom: 48px;
}
.single-product .product .woocommerce-tabs .panel h2 { display: none; }
.single-product .product .woocommerce-tabs .woocommerce-Tabs-panel,
.single-product .product .woocommerce-tabs .entry-content { font-size: 14px; color: #444; line-height: 1.8; }
.single-product .product .woocommerce-tabs .entry-content ul { list-style: disc; padding-left: 20px; }
.single-product .product .woocommerce-tabs .entry-content li { margin-bottom: 6px; }
.single-product .product .woocommerce-tabs .entry-content h2,
.single-product .product .woocommerce-tabs .entry-content h3 { font-size: 18px; margin: 24px 0 12px; }

/* ── Related products (full-width) ───────────────────────── */
.single-product .product .related.products h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}
.single-product .product .related.products ul.products { grid-template-columns: repeat(4, 1fr); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .single-product .product {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }
    .single-product .product .woocommerce-product-gallery { position: static; }
    .single-product .product .related.products ul.products { grid-template-columns: repeat(2, 1fr); }
}

/* ── WooCommerce base overrides ───────────────────────────── */
.woocommerce .woocommerce-breadcrumb { font-size: 13px; color: #888; padding: 12px 0; }
.woocommerce .woocommerce-breadcrumb a { color: #888; }
.woocommerce .woocommerce-breadcrumb a:hover { color: #000; }

/* Product grid */
.woocommerce ul.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; list-style: none; }
.woocommerce ul.products li.product { border-radius: 10px; overflow: hidden; border: 1px solid #eee; transition: box-shadow .2s; }
.woocommerce ul.products li.product:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.woocommerce ul.products li.product a img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 14px; font-weight: 600; padding: 12px 14px 4px; }
.woocommerce ul.products li.product .price { font-size: 14px; padding: 0 14px 14px; color: #111; font-weight: 600; }
.woocommerce ul.products li.product .button { display: none; }

/* Single product */
.woocommerce div.product { padding-top: 32px; }
.woocommerce div.product .product_title { font-size: clamp(22px, 4vw, 32px); margin-bottom: 12px; }
.woocommerce div.product p.price { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.woocommerce div.product .woocommerce-product-details__short-description { color: #444; margin-bottom: 24px; }
.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button {
    background: #35B777;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: opacity .2s;
}
.woocommerce div.product form.cart .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover { opacity: .85; color: #fff; background: #35B777; }

/* Notices */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid;
}
.woocommerce-message { background: #f0faf0; border-color: #4caf50; }
.woocommerce-info    { background: #f0f6ff; border-color: #2196f3; }
.woocommerce-error   { background: #fff0f0; border-color: #f44336; }

/* ============================================================
   Reference-style single product overrides
   ============================================================ */
.single-product #pp-main { background: #fff; }

.pp-product-page {
    padding-bottom: 0;
    background: #fff;
}

.pp-product-offerbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    min-height: 48px;
    padding: 8px 18px;
    background: linear-gradient(90deg, #21884c 0%, #28d483 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.pp-product-offerbar__timer {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.pp-product-offerbar__timer strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 32px;
    padding: 0 8px;
    border-radius: 6px;
    background: rgba(0, 0, 0, .15);
    font-size: 18px;
    line-height: 1;
}

.pp-product-breadcrumb-strip {
    background: #f5f5f5;
    border-bottom: 1px solid #ededed;
}

.single-product .pp-product-breadcrumb-strip .woocommerce-breadcrumb {
    padding: 10px 0;
    margin: 0;
    text-align: center;
    color: #6d6d6d;
    font-size: 11px;
    font-weight: 600;
}

.single-product .pp-product-container {
    max-width: 1280px;
    padding-inline: 24px;
}

.single-product .product {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr) !important;
    gap: 56px;
    padding: 28px 0 0;
}

.single-product .product .woocommerce-product-gallery {
    padding-top: 24px;
}

.woocommerce-product-gallery__trigger { display: none !important; }

.single-product .product .woocommerce-product-gallery__wrapper,
.single-product .product .flex-viewport {
    border-radius: 0;
    overflow: visible;
}

.single-product .product .woocommerce-product-gallery__image {
    display: block;
    background: #fff;
}

.single-product .product .woocommerce-product-gallery__image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}

.single-product .product .flex-control-thumbs {
    gap: 12px;
    margin-top: 22px;
}

.single-product .product .flex-control-thumbs img {
    width: 66px;
    height: 66px;
    border-radius: 6px;
    border: 1px solid #d8d8d8;
    background: #fff;
    padding: 2px;
    object-fit: cover;
}

.single-product .product .flex-control-thumbs .flex-active {
    border-color: #9f9f9f;
    box-shadow: 0 0 0 1px #9f9f9f;
}

.single-product .product .summary.entry-summary {
    position: sticky;
    top: 80px;
    align-self: start;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    max-width: 470px;
    padding-top: 6px;
    scrollbar-width: none;
}
.single-product .product .summary.entry-summary::-webkit-scrollbar { display: none; }

.single-product .product .summary .product_title,
.single-product.woocommerce div.product .product_title {
    max-width: 440px;
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: 0;
}

.single-product .product .summary .woocommerce-product-rating {
    margin: 0 0 10px;
}

.single-product .product .summary .price,
.single-product.woocommerce div.product p.price {
    display: none;
}

.single-product .product .summary .price del {
    color: #b0b0b0;
    font-size: 12px;
}

.single-product .product .summary .price ins {
    color: #111;
    font-size: 14px;
}

.single-product .product .summary .woocommerce-product-details__short-description {
    margin-bottom: 10px;
    color: #6c6c6c;
    font-size: 12px;
    line-height: 1.7;
}

.single-product .product .summary form.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.single-product .product .summary form.cart::before,
.single-product .product .summary form.cart::after {
    content: none;
}

.single-product .product .summary .quantity {
    margin: 0;
    height: 34px;
    border-radius: 6px;
    background: #f4f4f4;
}

.single-product .product .summary .quantity input.qty {
    width: 110px;
    height: 34px;
    border: 0;
    border-radius: 6px;
    background: #f4f4f4;
    color: #222;
    font-size: 13px;
    font-weight: 800;
}

.single-product .product .summary .single_add_to_cart_button,
.single-product .product .summary button.button,
.single-product.woocommerce div.product form.cart .button {
    flex: 1 1 220px;
    min-width: 190px;
    height: 34px;
    padding: 0 24px;
    border-radius: 7px;
    background: #35B777;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.single-product .product .summary .single_add_to_cart_button:hover,
.single-product.woocommerce div.product form.cart .button:hover {
    background: #2da366;
    color: #fff;
}

.single-product .product .summary .single_add_to_cart_button::before,
.single-product.woocommerce div.product form.cart .button::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 7px;
    vertical-align: middle;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") no-repeat center / contain;
}

.single-product .product .summary table.variations {
    margin: 0 0 14px;
}

.single-product .product .summary table.variations td,
.single-product .product .summary table.variations th {
    display: block;
    width: 100%;
    padding: 0;
}

.single-product .product .summary table.variations .label {
    margin-bottom: 7px;
    color: #444;
    font-size: 12px;
    font-weight: 800;
}

.single-product .product .summary table.variations select,
.single-product .product .summary input[type="text"],
.single-product .product .summary input[type="email"],
.single-product .product .summary input[type="file"],
.single-product .product .summary textarea {
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    background: #fff;
    font-size: 12px;
}

.single-product .product .summary .product_meta {
    display: none;
}

.single-product .wcpa_form_outer,
.single-product .wcpa_form_item,
.single-product .wcpa_wrap,
.single-product .wcpa_field_wrap {
    margin-bottom: 14px;
}

.single-product .wcpa_form_label,
.single-product .wcpa_field_label,
.single-product .wcpa_field_label label,
.single-product .wcpa_form_item > label {
    color: #444;
    font-size: 12px;
    font-weight: 800;
}

.single-product .wcpa_radio_group,
.single-product .wcpa_checkbox_group,
.single-product .wcpa_image_group,
.single-product .wcpa_color_group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.single-product .wcpa_image,
.single-product .wcpa_color,
.single-product .wcpa_radio,
.single-product .wcpa_checkbox {
    border-radius: 8px;
}

.single-product .wcpa_price_summary,
.single-product .wcpa_total {
    width: 100%;
    color: #333;
    font-size: 12px;
    font-weight: 700;
}

.single-product .product .woocommerce-tabs,
.single-product .product .related.products,
.single-product .product .up-sells {
    grid-column: 1 / -1;
}

.single-product .product .woocommerce-tabs {
    max-width: 100%;
    margin-top: 36px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.single-product .product .woocommerce-tabs ul.tabs {
    justify-content: center;
    gap: 22px;
    margin-bottom: 30px;
    border-bottom: 0;
}

.single-product .product .woocommerce-tabs ul.tabs li a {
    padding: 10px 0;
    color: #777;
    font-size: 13px;
    border-bottom: 2px solid transparent;
}

.single-product .product .woocommerce-tabs ul.tabs li.active a {
    color: #111;
    border-bottom-color: #111;
}

.single-product .product .woocommerce-tabs .panel {
    max-width: 100%;
    margin-bottom: 74px;
    color: #333;
}

.single-product .product .woocommerce-tabs .entry-content,
.single-product .product .woocommerce-tabs .woocommerce-Tabs-panel {
    font-size: 12px;
    line-height: 1.7;
}

.single-product .product .woocommerce-tabs .entry-content h3,
.single-product .product .woocommerce-tabs .entry-content h4,
.single-product .product .woocommerce-tabs .entry-content strong {
    color: #111;
}

.single-product .product .woocommerce-tabs .entry-content ul {
    list-style: disc;
    padding-left: 18px;
    margin: 6px 0 16px;
}

.single-product .product .woocommerce-tabs .entry-content p {
    margin-bottom: 13px;
}

.single-product .product .woocommerce-Reviews,
.single-product .product #reviews {
    max-width: 760px;
    margin: 0 auto 84px;
}

.single-product .product #reviews #comments,
.single-product .product #reviews #review_form_wrapper {
    max-width: 520px;
    margin-inline: auto;
}

.single-product .product #reviews h2,
.single-product .product #review_form .comment-reply-title {
    display: block;
    margin-bottom: 18px;
    text-align: left;
    font-size: 18px;
    font-weight: 800;
}

.single-product .product #review_form textarea {
    min-height: 160px;
    border: 0;
    border-radius: 7px;
    background: #f4f4f4;
}

.single-product .product #review_form input[type="submit"] {
    min-height: 34px;
    padding: 0 20px;
    border-radius: 7px;
    background: #35B777;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.single-product .product .related.products {
    padding-top: 72px;
    border-top: 1px solid #f0f0f0;
}

.single-product .product .related.products h2 {
    margin-bottom: 36px;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
}

.single-product .product .related.products ul.products,
.single-product.woocommerce .product .related.products ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px 26px;
}

.single-product .product .related.products ul.products li.product,
.single-product.woocommerce ul.products li.product {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    text-align: center;
}

.single-product .product .related.products ul.products li.product:hover,
.single-product.woocommerce ul.products li.product:hover {
    box-shadow: none;
}

.single-product .product .related.products ul.products li.product a img,
.single-product.woocommerce ul.products li.product a img {
    aspect-ratio: 1;
    border-radius: 6px;
    background: #fafafa;
    object-fit: contain;
}

.single-product .product .related.products .woocommerce-loop-product__title,
.single-product.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 12px 0 4px;
    color: #111;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
}

.single-product .product .related.products .price,
.single-product.woocommerce ul.products li.product .price {
    padding: 0;
    color: #111;
    font-size: 12px;
    font-weight: 800;
}

.single-product .product .related.products .price del {
    color: #777;
    font-weight: 600;
}

.single-product .product .related.products .price ins {
    text-decoration: none;
}

.single-product .pp-faq,
.single-product .faq,
.single-product .schema-faq,
.single-product .rank-math-block {
    max-width: 1080px;
    margin: 90px auto;
}

.single-product .pp-faq h2,
.single-product .faq h2,
.single-product .schema-faq h2,
.single-product .rank-math-block h2 {
    margin-bottom: 26px;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
}

.single-product details,
.single-product .schema-faq-section,
.single-product .rank-math-list-item {
    border: 1px solid #e5e5e5;
    border-bottom: 0;
    background: #fff;
}

.single-product details:last-child,
.single-product .schema-faq-section:last-child,
.single-product .rank-math-list-item:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.single-product summary,
.single-product .schema-faq-question,
.single-product .rank-math-question {
    display: block;
    padding: 15px 18px;
    color: #111;
    font-size: 12px;
    font-weight: 800;
}

.single-product .schema-faq-answer,
.single-product .rank-math-answer,
.single-product details > :not(summary) {
    padding: 0 18px 16px;
    color: #555;
    font-size: 12px;
}

@media (max-width: 900px) {
    .pp-product-offerbar {
        flex-direction: column;
        gap: 7px;
        min-height: 0;
        padding: 12px 16px;
        text-align: center;
    }

    .single-product .product {
        grid-template-columns: 1fr !important;
        gap: 26px;
        padding-top: 26px;
    }

    .single-product .product .woocommerce-product-gallery {
        position: static;
        padding-top: 0;
    }

    .single-product .product .woocommerce-product-gallery__image {
        min-height: 0;
    }

    .single-product .product .summary.entry-summary {
        max-width: none;
    }

    .single-product .product .summary .product_title,
    .single-product.woocommerce div.product .product_title {
        max-width: none;
        font-size: 22px;
    }

    .single-product .product .related.products ul.products,
    .single-product.woocommerce .product .related.products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
    }
}

@media (max-width: 520px) {
    .pp-product-offerbar__timer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .single-product .product .summary form.cart {
        display: grid;
        grid-template-columns: 1fr;
    }

    .single-product .product .summary .quantity,
    .single-product .product .summary .quantity input.qty,
    .single-product .product .summary .single_add_to_cart_button,
    .single-product .product .summary button.button,
    .single-product.woocommerce div.product form.cart .button {
        width: 100%;
        min-width: 0;
    }
}

/* ── Size Guide (ACF) ───────────────────────────────────────── */
.pp-size-guide-wrap {
    margin-top: 20px;
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

.pp-size-guide-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    transition: color .15s;
}

.pp-size-guide-toggle:hover { color: #35B777; }

.pp-size-guide-caret {
    font-size: 10px;
    transition: transform .2s;
    display: inline-block;
}

.pp-size-guide-toggle.is-open .pp-size-guide-caret { transform: rotate(180deg); }

.pp-size-guide-content {
    margin-top: 14px;
    overflow-x: auto;
    font-size: 14px;
}

.pp-size-guide-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.pp-size-guide-content table th,
.pp-size-guide-content table td {
    border: 1px solid #e5e7eb;
    padding: 8px 12px;
    text-align: center;
}

.pp-size-guide-content table thead th {
    background: #f9fafb;
    font-weight: 700;
}

/* ── Below-fold product sections (care guide, FAQs) ─────────── */
.pp-below-section {
    padding: 56px 0;
    border-top: 1px solid #e5e7eb;
}

/* ── Archive / Category pages ────────────────────────────────── */
.pp-archive-header {
    padding: 36px 0 28px;
    border-bottom: 1px solid #f0f0f0;
}

.pp-archive-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.2;
}

.pp-archive-subtitle {
    font-size: 16px;
    color: #555;
    font-weight: 500;
    margin-bottom: 12px;
}

.pp-archive-intro {
    font-size: 14px;
    color: #555;
    max-width: 720px;
    line-height: 1.75;
}

.pp-archive-products {
    padding: 36px 0 48px;
}

/* Override WC loop wrapper */
.pp-archive-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 40px !important;
}

.pp-archive-products ul.products li.product {
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    width: auto !important;
}

/* Archive product card (uses pp-arch-card* to avoid colliding with homepage pp-product-card*) */
.pp-arch-card { height: 100%; }

.pp-arch-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ededed;
    background: #fff;
    transition: box-shadow .2s;
}

.pp-arch-card__link:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }

.pp-arch-card__img-wrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background: #f5f5f5;
}

.pp-arch-card__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pp-arch-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #f97316;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.pp-arch-card__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.pp-arch-card__name {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 1.35;
    margin: 0;
}

.pp-arch-card__price {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.pp-arch-card__price del { color: #999; font-weight: 400; }
.pp-arch-card__price ins { text-decoration: none; }

/* WC pagination */
.pp-archive-products .woocommerce-pagination {
    text-align: center;
    margin-top: 8px;
}

.pp-archive-products .woocommerce-pagination ul {
    display: inline-flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pp-archive-products .woocommerce-pagination ul li a,
.pp-archive-products .woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    color: #111;
    text-decoration: none;
    transition: background .15s;
}

.pp-archive-products .woocommerce-pagination ul li a:hover { background: #f4f4f4; }
.pp-archive-products .woocommerce-pagination ul li span.current { background: #000; color: #fff; border-color: #000; }

/* Below-grid content */
.pp-archive-below { padding: 0 0 72px; }

.pp-archive-why {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 36px 40px;
    margin-bottom: 48px;
}

.pp-archive-why__title {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
}

.pp-archive-why__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pp-archive-why__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.pp-archive-why__list li::before {
    content: '✓';
    color: #35B777;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.pp-archive-content {
    margin-bottom: 48px;
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

.pp-archive-content h2 { font-size: 20px; font-weight: 800; color: #111; margin: 28px 0 10px; }
.pp-archive-content h3 { font-size: 17px; font-weight: 700; color: #111; margin: 20px 0 8px; }

.pp-archive-faqs__title {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .pp-archive-products ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 700px) {
    .pp-archive-products ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .pp-archive-why { padding: 24px 20px; }
}

/* ── pp-below-section-title ──────────────────────────────────── */
.pp-below-section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}

.pp-below-section-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 32px;
    max-width: 640px;
}

/* ── Care Guide ─────────────────────────────────────────────── */
.pp-care-guide-inner {
    display: block;
}

.pp-care-guide-inner.pp-care-guide-has-image {
    display: grid;
    grid-template-columns: minmax(0, 360px) 1fr;
    gap: 48px;
    align-items: center;
    justify-items: center;
}

.pp-care-guide-image {
    width: 100%;
    text-align: center;
}

.pp-care-guide-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-inline: auto;
}

.pp-care-guide-text {
    text-align: center;
}

.pp-care-guide-text ul,
.pp-care-guide-text ol {
    text-align: left;
    display: inline-block;
}

/* ── Wysiwyg shared styles ───────────────────────────────────── */
.pp-wysiwyg p { margin-bottom: 12px; }
.pp-wysiwyg p:last-child { margin-bottom: 0; }
.pp-wysiwyg ul, .pp-wysiwyg ol { padding-left: 20px; margin-bottom: 12px; }
.pp-wysiwyg ul li { list-style: disc; }
.pp-wysiwyg ol li { list-style: decimal; }
.pp-wysiwyg strong { font-weight: 700; }
.pp-wysiwyg a { color: #35B777; text-decoration: underline; }

/* ── FAQ accordion ───────────────────────────────────────────── */
.pp-faq-list {
    margin-top: 8px;
    max-width: 800px;
}

.pp-faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.pp-faq-item:first-child { border-top: 1px solid #e5e7eb; }

.pp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 4px;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: color .15s;
}

.pp-faq-question:hover { color: #35B777; }

.pp-faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 300;
    color: #555;
    transition: border-color .15s, transform .2s;
    position: relative;
}

.pp-faq-icon::before,
.pp-faq-icon::after {
    content: '';
    position: absolute;
    background: #555;
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

.pp-faq-icon::before { width: 10px; height: 2px; }
.pp-faq-icon::after  { width: 2px;  height: 10px; }

.pp-faq-question.is-open .pp-faq-icon { border-color: #35B777; }
.pp-faq-question.is-open .pp-faq-icon::before { background: #35B777; }
.pp-faq-question.is-open .pp-faq-icon::after  { background: #35B777; transform: rotate(90deg) scaleY(0); opacity: 0; }

.pp-faq-answer { overflow: hidden; }

.pp-faq-answer-inner {
    padding: 0 4px 20px;
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

/* ── Long description + inline video ────────────────────────── */
.pp-description-heading {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.pp-product-description .pp-long-desc { max-width: 820px; }
.pp-product-description .pp-long-desc h2 { font-size: 16px; font-weight: 700; margin: 16px 0 8px; color: #111; }
.pp-product-description .pp-long-desc h3 { font-size: 14px; font-weight: 700; margin: 12px 0 6px; color: #111; }

.pp-inline-video {
    margin-top: 24px;
    max-width: 640px;
}
.pp-inline-video iframe {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    border-radius: 8px;
    display: block;
}
.pp-inline-video .wp-has-aspect-ratio,
.pp-inline-video .wp-block-embed { margin: 0; }

/* ── Responsive: below-fold sections ────────────────────────── */
@media (max-width: 900px) {
    .pp-care-guide-inner.pp-care-guide-has-image {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pp-below-section { padding: 40px 0; }
}

@media (max-width: 520px) {
    .pp-below-section { padding: 32px 0; }
    .pp-faq-question   { font-size: 14px; padding: 15px 4px; }
}

/* ── FPD Customize Design button ────────────────────────────── */
.fpd-btn,
.fpd-open-btn,
.fpd-module-btn,
.fpd-configurator-btn,
.fpd-open-product,
button.fpd-btn,
a.fpd-btn,
.single-product .summary .fpd-btn,
.single-product .summary .wc-fpd-btn,
[class*="fpd-"][class*="-btn"],
.single-product form.cart + .fpd-module-wrap a,
.single-product form.cart + .fpd-module-wrap button,
.single-product .entry-summary > div > button:not(.pp-size-guide-toggle):not(.pp-faq-question):not(.single_add_to_cart_button),
.single-product .entry-summary > div > a.button:not(.added_to_cart) {
    background: #111 !important;
    color: #fff !important;
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    border-radius: 7px !important;
    padding: 11px 20px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    font-family: inherit !important;
    margin-top: 10px !important;
    border: none !important;
    cursor: pointer !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

/* Customize Design — icon + spacing when moved above cart form */
.pp-customize-moved {
    margin-bottom: 12px !important;
    margin-top: 0 !important;
}

/* Pencil icon before button text */
.fpd-btn::before,
.fpd-open-btn::before,
.fpd-module-btn::before,
[class*="fpd-open"]::before,
[class*="fpd"][class*="btn"]::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 7px;
    vertical-align: middle;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='16 3 21 8 8 21 3 21 3 16 16 3'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Hide FPD's built-in font icon so ours is the only one */
.fpd-btn i, .fpd-btn [class*="fpdi"],
.fpd-open-btn i, [class*="fpd"][class*="btn"] i { display: none !important; }

/* ── FAQ + Reviews side-by-side ──────────────────────────────── */
.pp-faq-reviews-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Reviews column */
.pp-reviews-col #reviews,
.pp-reviews-col .woocommerce-Reviews { max-width: none; margin: 0; }

.pp-reviews-col #reviews > h2,
.pp-reviews-col .woocommerce-Reviews > h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.pp-reviews-col ol.commentlist {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.pp-reviews-col ol.commentlist li.comment { padding: 18px 0; border-bottom: 1px solid #f0f0f0; }
.pp-reviews-col ol.commentlist li.comment:first-child { border-top: 1px solid #f0f0f0; }

.pp-reviews-col .comment-body { display: flex; flex-direction: column; gap: 6px; }

.pp-reviews-col .comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pp-reviews-col .comment-author img.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pp-reviews-col .comment-author cite {
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    color: #111;
}

.pp-reviews-col .comment-meta,
.pp-reviews-col .comment-meta a {
    font-size: 11px;
    color: #aaa;
    text-decoration: none;
}

.pp-reviews-col .comment-text .star-rating {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 4px;
}

.pp-reviews-col .comment-text .description p,
.pp-reviews-col .comment-text blockquote p {
    font-size: 13px;
    color: #444;
    line-height: 1.65;
    margin: 0;
}

/* Review form */
.pp-reviews-col #review_form_wrapper { margin-top: 24px; }

.pp-reviews-col #review_form .comment-reply-title {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111;
    display: block;
}

.pp-reviews-col .comment-form p { margin-bottom: 14px; }

.pp-reviews-col .comment-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.pp-reviews-col .comment-form input[type="text"],
.pp-reviews-col .comment-form input[type="email"] {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    padding: 9px 12px;
    font: inherit;
    font-size: 13px;
    outline: none;
    transition: border-color .15s;
}

.pp-reviews-col .comment-form input[type="text"]:focus,
.pp-reviews-col .comment-form input[type="email"]:focus { border-color: #35B777; }

.pp-reviews-col .comment-form textarea {
    width: 100%;
    min-height: 110px;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    padding: 10px 12px;
    font: inherit;
    font-size: 13px;
    resize: vertical;
    outline: none;
    transition: border-color .15s;
}

.pp-reviews-col .comment-form textarea:focus { border-color: #35B777; }

.pp-reviews-col .comment-form input[type="submit"],
.pp-reviews-col #respond input#submit {
    height: 44px;
    padding: 0 28px;
    border-radius: 7px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s;
}

.pp-reviews-col .comment-form input[type="submit"]:hover,
.pp-reviews-col #respond input#submit:hover { background: #222; }

/* File upload button */
.pp-reviews-col .comment-form input[type="file"] {
    display: none;
}
.pp-reviews-col .comment-form .pp-file-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 22px;
    border-radius: 7px;
    border: 1.5px solid #ddd;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    font-family: inherit;
    transition: border-color .15s;
}
.pp-reviews-col .comment-form .pp-file-label:hover { border-color: #111; }

/* Star rating — review form */
/* JS wraps comment-form-rating + p.stars in .pp-rating-wrap since they're siblings */
.pp-reviews-col .pp-rating-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.pp-reviews-col .pp-rating-wrap .comment-form-rating { margin-bottom: 0; }
.pp-reviews-col .comment-form-rating label { font-size: 12px; font-weight: 700; margin-bottom: 0; color: #333; white-space: nowrap; }
.pp-reviews-col p.stars { margin: 0; }
.pp-reviews-col p.stars span { display: inline-flex; gap: 4px; }
.pp-reviews-col p.stars a {
    display: inline-block;
    position: relative;
    width: 28px;
    height: 28px;
    font-size: 0;
    text-indent: -9999px;
    text-decoration: none;
    cursor: pointer;
}
.pp-reviews-col p.stars a::before {
    content: '★';
    position: absolute;
    left: 0; top: 0;
    font-size: 26px;
    line-height: 1;
    color: #ddd;
    text-indent: 0;
    transition: color .1s;
}
/* Fill all stars up to hovered */
.pp-reviews-col p.stars:hover a::before { color: #f59e0b; }
.pp-reviews-col p.stars a:hover ~ a::before { color: #ddd; }
/* Fill stars up to selected */
.pp-reviews-col p.stars.selected a::before { color: #f59e0b; }
.pp-reviews-col p.stars.selected a.active ~ a::before { color: #ddd; }

.pp-reviews-col #no-comments { font-size: 13px; color: #888; }

@media (max-width: 900px) {
    .pp-faq-reviews-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ── Custom category-based related products ──────────────────── */
.pp-cat-related__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pp-cat-related__card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ededed;
    transition: box-shadow .2s;
}

.pp-cat-related__card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.pp-cat-related__img {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
}

.pp-cat-related__name {
    display: block;
    padding: 12px 14px 4px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 1.35;
}

.pp-cat-related__price {
    display: block;
    padding: 0 14px 14px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.pp-cat-related__price del { color: #999; font-weight: 400; }
.pp-cat-related__price ins { text-decoration: none; }

@media (max-width: 900px) {
    .pp-cat-related__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
    .pp-cat-related__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
