/* ============================================================
   PATRICIA PADRÓN — minimalist editorial fashion homepage
   Self-contained: zero dependency on hub.css / Bootstrap / Skote.
   All classes prefixed `pp-`. Plain HTML/CSS/JS, no build step.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --pp-bg:       #F4F2EF;   /* warm off-white page */
    --pp-surface:  #FFFFFF;   /* cards / tiles */
    --pp-ink:      #16140F;   /* near-black text */
    --pp-muted:    #8C8980;   /* secondary text / captions */
    --pp-line:     #E2DED7;   /* hairline borders */
    --pp-ease:     360ms cubic-bezier(0.22, 0.61, 0.36, 1);

    --pp-pad:      52px;      /* desktop horizontal gutter */
    --pp-max:      1240px;    /* content max-width */
}

html {
    font-family: 'Heebo', system-ui, -apple-system, sans-serif;
    background: var(--pp-bg);
    color: var(--pp-ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body { overflow-x: hidden; }

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

a { color: inherit; }

/* Shared eyebrow / hairline label */
.pp-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pp-muted);
}
.pp-eyebrow--light { color: rgba(255,255,255,0.92); text-shadow: 0 1px 12px rgba(0,0,0,0.28); }

/* Quiet underline-grow link */
.pp-link {
    display: inline-block;
    margin-top: 26px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--pp-ink);
    position: relative;
}
.pp-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: -5px;
    width: 100%; height: 1px;
    background: var(--pp-ink);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform var(--pp-ease);
}
.pp-link:hover::after { transform: scaleX(0.4); }

/* ── NAV ─────────────────────────────────────────────────── */

/* Header + hero share the first screen; the hero fills whatever's left. */
.pp-top {
    height: 100svh;
    display: flex;
    flex-direction: column;
}

.pp-nav {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 22px var(--pp-pad);
    background: var(--pp-bg);
}

.pp-nav__cluster {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.pp-nav__cluster--right { justify-content: flex-end; }

.pp-nav__cluster a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pp-ink);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
}
.pp-nav__cluster a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--pp-ease);
}
.pp-nav__cluster a:hover::after { transform: scaleX(1); }
.pp-nav__cart { color: var(--pp-muted) !important; }

.pp-nav__brand { justify-self: center; line-height: 0; }
.pp-nav__brand img { width: clamp(220px, 34vw, 520px); height: auto; }

.pp-nav__toggle {
    display: none;
    justify-self: end;
    width: 44px; height: 44px;
    background: none; border: none; cursor: pointer;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 6px;
}
.pp-nav__toggle span {
    display: block; width: 22px; height: 1.5px; background: var(--pp-ink);
    transition: transform var(--pp-ease), opacity var(--pp-ease);
}
.pp-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.pp-nav__toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* Mobile menu */
.pp-mobile-menu {
    display: none;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 4px;
    padding: 8px var(--pp-pad) 28px;
    background: var(--pp-bg);
    border-bottom: 1px solid var(--pp-line);
}
.pp-mobile-menu[hidden] { display: none; }
.pp-mobile-menu.is-open { display: flex; }
.pp-mobile-menu a {
    padding: 12px 0;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--pp-ink);
    border-bottom: 1px solid var(--pp-line);
}
.pp-mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ─────────────────────────────────────────────────── */

.pp-hero {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
}
.pp-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
}
.pp-hero__caption {
    position: absolute;
    left: var(--pp-pad);
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pp-hero__line {
    font-size: clamp(20px, 2.6vw, 30px);
    font-weight: 300;
    letter-spacing: 0.01em;
    color: #fff;
    text-shadow: 0 1px 18px rgba(0,0,0,0.3);
}
.pp-hero__line a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--pp-ease);
}
.pp-hero__line a:hover { border-bottom-color: currentColor; }

/* ── SIGNATURE INTRO ──────────────────────────────────────── */

.pp-intro {
    max-width: 680px;
    margin: clamp(72px, 11vw, 140px) auto clamp(56px, 8vw, 96px);
    padding: 0 var(--pp-pad);
    text-align: center;
}
.pp-intro__title {
    margin: 18px 0 22px;
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 300;
    letter-spacing: 0.005em;
    line-height: 1.15;
}
.pp-intro__text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: #4a473f;
}
/* Sub-page intro sits closer to the nav than the homepage's hero-fed intro. */
.pp-intro--page { margin-top: clamp(40px, 6vw, 72px); }

/* ── SHOWCASE IMAGE (contained hero on sub-pages) ─────────── */

.pp-showcase {
    max-width: var(--pp-max);
    margin: 0 auto clamp(72px, 10vw, 128px);
    padding: 0 var(--pp-pad);
}
.pp-showcase__img {
    width: 100%;
    height: clamp(360px, 52vh, 620px);
    object-fit: cover;
    object-position: center 30%;
}

/* ── PULL QUOTE ───────────────────────────────────────────── */

.pp-quote {
    max-width: 680px;
    margin: clamp(56px, 8vw, 110px) auto clamp(40px, 6vw, 80px);
    padding: 0 var(--pp-pad);
    text-align: center;
}
.pp-quote__mark {
    display: block;
    font-size: 56px;
    line-height: 0.4;
    color: var(--pp-ink);
}
.pp-quote__text {
    margin: 28px 0 22px;
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 300;
    line-height: 1.45;
    letter-spacing: 0.005em;
}
.pp-quote__cite {
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pp-muted);
}

/* ── COLLECTION GRID (4 × 2 products) ─────────────────────── */

.pp-collection {
    max-width: var(--pp-max);
    margin: clamp(40px, 6vw, 72px) auto 0;
    padding: 0 var(--pp-pad);
}
.pp-collection__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 2.6vw, 36px) clamp(20px, 2.6vw, 36px);
    row-gap: clamp(40px, 5vw, 64px);
}

/* ── SIGNATURE GRID (editorial + 2×2 products) ────────────── */

.pp-feature {
    max-width: var(--pp-max);
    margin: 0 auto clamp(80px, 11vw, 150px);
    padding: 0 var(--pp-pad);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: stretch;
}
.pp-feature__col { display: flex; flex-direction: column; }
.pp-feature__caption {
    margin-top: auto;   /* push caption to bottom — aligns with the 4th product */
    padding-top: 30px;
}
.pp-feature__title {
    font-size: clamp(18px, 1.9vw, 22px);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.25;
}
.pp-feature__subtitle {
    margin-top: 9px;
    max-width: 40ch;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--pp-muted);
}
.pp-feature__media { overflow: hidden; }
.pp-feature__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.pp-feature__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 2.6vw, 36px);
}

/* ── PRODUCT SWATCH TILE (reusable) ───────────────────────── */

.pp-product { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.pp-product__swatch {
    aspect-ratio: 4 / 5;
    background: var(--swatch, var(--pp-line));
}
.pp-product__img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.pp-product__name {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.pp-product__price {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 300;
    color: var(--pp-muted);
    font-variant-numeric: tabular-nums;
}

/* ── EDITORIAL BREAK ──────────────────────────────────────── */

.pp-editorial {
    position: relative;
    width: 100%;
    margin-bottom: clamp(80px, 11vw, 150px);
}
.pp-editorial__img {
    width: 100%;
    height: clamp(420px, 64vh, 760px);
    object-fit: cover;
    object-position: center 35%;
}
.pp-editorial__caption {
    position: absolute;
    left: var(--pp-pad);
    bottom: 36px;
}

/* ── LAB COLLECTION ───────────────────────────────────────── */

.pp-lab {
    max-width: var(--pp-max);
    margin: 0 auto;   /* the break is owned by .pp-footer's top padding */
    padding: 0 var(--pp-pad);
    text-align: center;
}
.pp-lab__title {
    margin: 16px 0 18px;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    line-height: 1.15;
}
.pp-lab__text {
    max-width: 600px;
    margin: 0 auto clamp(44px, 6vw, 72px);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: #4a473f;
}
.pp-lab__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 2.6vw, 36px);
    text-align: left;
}

/* ── FOOTER ───────────────────────────────────────────────── */

.pp-footer {
    /* The break above the footer is whitespace, not a line. */
    padding: clamp(200px, 30vw, 460px) var(--pp-pad) 40px;
    text-align: center;
}
.pp-footer__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    list-style: none;
    margin-bottom: clamp(56px, 8vw, 110px);
}
.pp-footer__nav a {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pp-muted);
    text-decoration: none;
    transition: color var(--pp-ease);
}
.pp-footer__nav a:hover { color: var(--pp-ink); }

/* Wordmark sits within the gutter so it lines up with the nav (Collections … Cart). */
.pp-footer__wordmark {
    display: block;
    width: 100%;
    margin: 0 auto;
    height: auto;
}

/* ── CONTENT PAGES (contact / legal / shipping / stockists) ─ */

.pp-content {
    max-width: var(--pp-max);
    margin: 0 auto;
    padding: clamp(40px, 6vw, 72px) var(--pp-pad) clamp(96px, 13vw, 180px);
}
.pp-content__title {
    text-align: center;
    margin-bottom: clamp(44px, 6vw, 80px);
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 300;
    letter-spacing: 0.005em;
}
.pp-content--flush { padding-top: 0; }
.pp-content__lead {
    max-width: 620px;
    margin: 0 auto clamp(48px, 7vw, 88px);
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: #4a473f;
}
.pp-content__section-title {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 44px);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 500;
}

/* — Contact: phone / email two-up — */
.pp-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 72px);
    padding-top: clamp(24px, 4vw, 36px);
    margin-bottom: clamp(64px, 9vw, 120px);
}
.pp-contact__label {
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pp-muted);
}
.pp-contact__row { margin-bottom: 18px; font-size: 15px; font-weight: 300; line-height: 1.7; }
.pp-contact__row strong { font-weight: 500; }
.pp-contact__row span { display: block; color: var(--pp-muted); font-size: 14px; }

/* — Contact form — */
.pp-form {
    max-width: 560px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
    text-align: left;
}
.pp-form__field { display: flex; flex-direction: column; gap: 8px; }
.pp-form label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pp-muted);
}
.pp-form input,
.pp-form textarea {
    font: inherit;
    font-size: 15px;
    font-weight: 300;
    padding: 13px 15px;
    color: var(--pp-ink);
    background: var(--pp-surface);
    border: 1px solid var(--pp-line);
    border-radius: 0;
    transition: border-color var(--pp-ease);
}
.pp-form textarea { resize: vertical; min-height: 130px; }
.pp-form input:focus,
.pp-form textarea:focus { outline: none; border-color: var(--pp-ink); }
.pp-form__submit {
    justify-self: start;
    margin-top: 6px;
    padding: 13px 30px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pp-bg);
    background: var(--pp-ink);
    border: 1px solid var(--pp-ink);
    cursor: pointer;
    transition: background var(--pp-ease), color var(--pp-ease);
}
.pp-form__submit:hover { background: transparent; color: var(--pp-ink); }
.pp-form__note { margin-top: 6px; font-size: 13px; color: var(--pp-muted); }
.pp-form__note[hidden] { display: none; }

/* — Legal: stacked text sections — */
.pp-doc { max-width: 780px; margin: 0 auto; }
.pp-doc__section + .pp-doc__section { margin-top: clamp(40px, 6vw, 64px); }
.pp-doc__section h2 {
    margin-bottom: 16px;
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 500;
}
.pp-doc__section p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: #4a473f;
}
.pp-doc__section p + p { margin-top: 16px; }

/* — Shipping: region rows — */
.pp-ship { max-width: 980px; margin: 0 auto; }
.pp-ship__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(24px, 5vw, 80px);
    align-items: baseline;
    padding: clamp(28px, 4vw, 44px) 0;
    border-top: 1px solid var(--pp-line);
}
.pp-ship__row:last-child { border-bottom: 1px solid var(--pp-line); }
.pp-ship__region { margin-bottom: 14px; font-size: clamp(16px, 1.8vw, 19px); font-weight: 500; }
.pp-ship__countries {
    max-width: 64ch;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: #4a473f;
}
.pp-ship__time {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    white-space: nowrap;
    color: var(--pp-ink);
}

/* — Stockists: centered blocks — */
.pp-stockists {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 7vw, 88px);
}
.pp-stockist__name { margin-bottom: 16px; font-size: clamp(16px, 1.8vw, 19px); font-weight: 500; }
.pp-stockist__text { font-size: 15px; font-weight: 300; line-height: 1.85; color: #4a473f; }

/* ── PRODUCT PAGE (single product) ────────────────────────── */

.pp-pdp {
    max-width: var(--pp-max);
    margin: 0 auto;
    padding: clamp(28px, 4vw, 52px) var(--pp-pad) clamp(96px, 13vw, 180px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}

/* Gallery */
.pp-pdp__gallery { display: flex; flex-direction: column; gap: 14px; }
.pp-pdp__main {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: var(--pp-surface);
}
.pp-pdp__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.pp-pdp__thumb {
    padding: 0;
    border: 1px solid transparent;
    background: none;
    cursor: pointer;
    line-height: 0;
    transition: border-color var(--pp-ease);
}
.pp-pdp__thumb img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.pp-pdp__thumb:hover { border-color: var(--pp-line); }
.pp-pdp__thumb.is-active { border-color: var(--pp-ink); }

/* Info column */
.pp-pdp__name {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 500;
    letter-spacing: 0.01em;
}
.pp-pdp__desc {
    margin-top: 18px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #4a473f;
}
.pp-pdp__price {
    margin-top: 18px;
    font-size: 17px;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
}

/* Size select + guide */
.pp-pdp__buy { margin-top: 30px; }
.pp-pdp__field { position: relative; }
.pp-pdp__field::after {
    content: "";
    position: absolute;
    right: 18px; top: 50%;
    width: 8px; height: 8px;
    border-right: 1.5px solid var(--pp-ink);
    border-bottom: 1.5px solid var(--pp-ink);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}
.pp-pdp__select {
    width: 100%;
    font: inherit;
    font-size: 14px;
    padding: 15px 16px;
    color: var(--pp-ink);
    background: var(--pp-surface);
    border: 1px solid var(--pp-line);
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.pp-pdp__select:focus { outline: none; border-color: var(--pp-ink); }
.pp-pdp__sizeguide {
    display: block;
    margin: 12px 0 0 auto;
    width: max-content;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--pp-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.pp-pdp__cart {
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pp-bg);
    background: var(--pp-ink);
    border: 1px solid var(--pp-ink);
    cursor: pointer;
    transition: background var(--pp-ease), color var(--pp-ease);
}
.pp-pdp__cart:hover { background: transparent; color: var(--pp-ink); }
.pp-pdp__note { margin-top: 12px; font-size: 13px; color: var(--pp-muted); }
.pp-pdp__note[hidden] { display: none; }

/* Detail + pre-order blocks */
.pp-pdp__subtitle {
    margin-top: 38px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.pp-pdp__list {
    list-style: none;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pp-pdp__list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    font-weight: 300;
    color: #4a473f;
}
.pp-pdp__list li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--pp-muted);
}
.pp-pdp__preorder {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: #4a473f;
}

/* ── CART ─────────────────────────────────────────────────── */

.pp-cart__list {
    border-bottom: 1px solid var(--pp-line);
}
.pp-cart__item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: clamp(20px, 3vw, 44px);
    align-items: center;
    padding: clamp(24px, 3vw, 36px) 0;
}
.pp-cart__thumb {
    width: clamp(96px, 10vw, 128px);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: var(--pp-surface);
}
.pp-cart__name {
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 500;
    letter-spacing: 0.01em;
}
.pp-cart__desc {
    margin-top: 10px;
    max-width: 48ch;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--pp-muted);
}
.pp-cart__meta {
    margin-top: 14px;
    display: flex;
    gap: 28px;
    font-size: 13px;
    font-weight: 300;
    color: #4a473f;
}
.pp-cart__price {
    font-size: 15px;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.pp-cart__remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    color: var(--pp-muted);
    padding: 4px;
    transition: color var(--pp-ease);
}
.pp-cart__remove:hover { color: var(--pp-ink); }

.pp-cart__summary {
    width: clamp(280px, 38%, 380px);
    margin: clamp(32px, 4vw, 48px) 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pp-cart__row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 300;
    color: #4a473f;
    font-variant-numeric: tabular-nums;
}
.pp-cart__row--total {
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--pp-line);
    font-size: 15px;
    font-weight: 500;
    color: var(--pp-ink);
}
.pp-cart__checkout {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    color: var(--pp-bg);
    background: var(--pp-ink);
    border: 1px solid var(--pp-ink);
    cursor: pointer;
    transition: background var(--pp-ease), color var(--pp-ease);
}
.pp-cart__checkout:hover { background: transparent; color: var(--pp-ink); }
.pp-cart__empty {
    margin: clamp(40px, 7vw, 88px) 0;
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    color: var(--pp-muted);
}
.pp-cart__empty a {
    color: var(--pp-ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.pp-cart__empty[hidden] { display: none; }

/* ── CHECKOUT ─────────────────────────────────────────────── */

.pp-checkout {
    max-width: var(--pp-max);
    margin: 0 auto;
    padding: clamp(28px, 4vw, 52px) var(--pp-pad) clamp(56px, 7vw, 88px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 6vw, 100px);
    align-items: start;
}
.pp-checkout__title {
    font-size: clamp(20px, 2.4vw, 27px);
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-bottom: clamp(24px, 3vw, 36px);
}
.pp-checkout__col--right .pp-checkout__title,
.pp-checkout__col--right .pp-checkout__legend { text-align: right; }

.pp-checkout__group { margin-bottom: clamp(28px, 4vw, 40px); }
.pp-checkout__group:last-child { margin-bottom: 0; }
.pp-checkout__legend {
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pp-muted);
}

/* Underline-style inputs */
.pp-checkout__input {
    width: 100%;
    font: inherit;
    font-size: 15px;
    font-weight: 300;
    padding: 12px 2px;
    margin-bottom: 14px;
    color: var(--pp-ink);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--pp-line);
    border-radius: 0;
    transition: border-color var(--pp-ease);
}
.pp-checkout__input:last-child { margin-bottom: 0; }
.pp-checkout__input::placeholder { color: var(--pp-muted); }
.pp-checkout__input:focus { outline: none; border-bottom-color: var(--pp-ink); }

/* Radio rows (delivery / payment) */
.pp-checkout__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid var(--pp-line);
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
}
.pp-checkout__option:first-of-type { border-top: 1px solid var(--pp-line); }
.pp-checkout__option input {
    accent-color: var(--pp-ink);
    width: 16px; height: 16px;
    cursor: pointer;
}

/* Bill detail reuses the cart summary block, full width inside the column */
.pp-checkout__bill { width: 100%; margin: 0; }

.pp-checkout__place {
    width: 100%;
    margin-top: clamp(24px, 3vw, 32px);
    padding: 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pp-bg);
    background: var(--pp-ink);
    border: 1px solid var(--pp-ink);
    cursor: pointer;
    transition: background var(--pp-ease), color var(--pp-ease);
}
.pp-checkout__place:hover { background: transparent; color: var(--pp-ink); }

/* ── ORDER CONFIRMATION ───────────────────────────────────── */

.pp-confirm__num {
    margin-bottom: clamp(40px, 6vw, 72px);
    font-size: 15px;
    font-weight: 300;
    color: #4a473f;
}
.pp-confirm__num strong { font-weight: 500; color: var(--pp-ink); margin-right: 10px; }

.pp-confirm__heading {
    margin-bottom: clamp(20px, 3vw, 32px);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.pp-confirm__orders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: start;
    margin-bottom: clamp(48px, 7vw, 96px);
}
.pp-confirm__item { display: flex; gap: clamp(18px, 2.5vw, 28px); }
.pp-confirm__thumb {
    flex: 0 0 auto;
    width: clamp(110px, 12vw, 150px);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: var(--pp-surface);
}
.pp-confirm__more {
    margin-top: 18px;
    font-size: 13px;
    font-weight: 300;
    color: var(--pp-muted);
}
.pp-confirm__bill { display: flex; flex-direction: column; gap: 14px; }
.pp-confirm__address {
    font-style: normal;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: #4a473f;
}

/* ── MODAL (newsletter) ───────────────────────────────────── */

.pp-no-scroll { overflow: hidden; }

.pp-sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.pp-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.pp-modal[hidden] { display: none; }

.pp-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(22, 20, 15, 0.45);
    animation: pp-fade 240ms ease;
}
.pp-modal__card {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: var(--pp-surface);
    padding: clamp(32px, 5vw, 64px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    animation: pp-rise var(--pp-ease);
}
.pp-modal__close {
    position: absolute;
    top: 16px; right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    color: var(--pp-muted);
    transition: color var(--pp-ease);
}
.pp-modal__close:hover { color: var(--pp-ink); }
.pp-modal__title {
    margin-bottom: clamp(28px, 4vw, 42px);
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 500;
    letter-spacing: 0.01em;
}
.pp-modal__input {
    width: 100%;
    font: inherit;
    font-size: 15px;
    font-weight: 300;
    padding: 12px 2px;
    margin-bottom: 28px;
    color: var(--pp-ink);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--pp-line);
    transition: border-color var(--pp-ease);
}
.pp-modal__input::placeholder { color: var(--pp-muted); }
.pp-modal__input:focus { outline: none; border-bottom-color: var(--pp-ink); }
.pp-modal__terms {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 4px 0 32px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #4a473f;
    cursor: pointer;
}
.pp-modal__terms input {
    flex: 0 0 auto;
    margin-top: 3px;
    width: 18px; height: 18px;
    accent-color: var(--pp-ink);
    cursor: pointer;
}
.pp-modal__terms strong { font-weight: 500; color: var(--pp-ink); }
.pp-modal__submit {
    width: 100%;
    padding: 18px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pp-bg);
    background: var(--pp-ink);
    border: 1px solid var(--pp-ink);
    cursor: pointer;
    transition: background var(--pp-ease), color var(--pp-ease);
}
.pp-modal__submit:hover { background: transparent; color: var(--pp-ink); }
.pp-modal__note {
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
    color: var(--pp-muted);
}
.pp-modal__note[hidden] { display: none; }

@keyframes pp-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pp-rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
}

/* ── FOCUS / ACCESSIBILITY ────────────────────────────────── */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--pp-ink);
    outline-offset: 3px;
    border-radius: 1px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 1024px) {
    :root { --pp-pad: 36px; }
    .pp-feature {
        grid-template-columns: 1fr;
        gap: clamp(32px, 6vw, 56px);
    }
    .pp-feature__col { max-width: 560px; margin: 0 auto; width: 100%; }
    .pp-feature__caption { margin-top: 0; }
    .pp-feature__grid { max-width: 560px; margin: 0 auto; width: 100%; }
}

@media (max-width: 768px) {
    :root { --pp-pad: 24px; }

    .pp-nav { grid-template-columns: auto 1fr auto; }
    .pp-nav__cluster { display: none; }
    .pp-nav__brand { justify-self: start; }
    .pp-nav__toggle { display: flex; }

    .pp-lab__grid { grid-template-columns: 1fr 1fr; }
    .pp-collection__grid { grid-template-columns: 1fr 1fr; }

    .pp-contact { grid-template-columns: 1fr; gap: clamp(28px, 6vw, 44px); }
    .pp-ship__row { grid-template-columns: 1fr; gap: 10px; }
    .pp-pdp { grid-template-columns: 1fr; gap: clamp(28px, 6vw, 40px); }
    .pp-cart__summary { width: 100%; }
    .pp-cart__item { gap: 16px 20px; }
    .pp-cart__desc { display: none; }
    .pp-checkout { grid-template-columns: 1fr; gap: clamp(36px, 7vw, 56px); }
    .pp-checkout__col--right .pp-checkout__title,
    .pp-checkout__col--right .pp-checkout__legend { text-align: left; }
    .pp-confirm__orders { grid-template-columns: 1fr; gap: clamp(32px, 6vw, 48px); }

    .pp-hero__caption { left: var(--pp-pad); bottom: 28px; }
    .pp-editorial__caption { left: var(--pp-pad); }
}

@media (max-width: 480px) {
    .pp-feature__grid { grid-template-columns: 1fr 1fr; }
    .pp-collection__grid { grid-template-columns: 1fr 1fr; }
    .pp-lab__grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .pp-footer__fine { justify-content: center; text-align: center; }
}

/* ── REDUCED MOTION ───────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}
