/* =========================================================
   PRODUCTS (all-products.html)
   The shop. Cream ground, charcoal shelf, yellow price
   stickers. Coral is reserved for the one services CTA.
========================================================= */

.pd {
    --pd-max: 1200px;
    --pd-radius: 18px;
    --pd-line: rgba(34, 31, 32, 0.14);

    overflow-x: clip;
}

.pd section {
    padding: 90px var(--page-padding);
}

.pd .pd-inner {
    max-width: var(--pd-max);
    margin: 0 auto;
}

.pd h1,
.pd h2,
.pd h3 {
    margin: 0;
    line-height: 1.02;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

.pd h1 {
    font-size: clamp(44px, 6.4vw, 84px);
    font-weight: 900;
    text-transform: uppercase;
}

.pd h2 {
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
}

.pd h3 {
    font-size: 22px;
    font-weight: 800;
}

.pd p {
    margin: 0;
}

.pd-eyebrow {
    margin-bottom: 16px;

    color: var(--charcoal);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pd-eyebrow::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 10px;
    background: var(--yellow);
    transform: rotate(45deg);
    vertical-align: 1px;
}

.pd-lead {
    max-width: 56ch;
    font-size: 19px;
    line-height: 1.5;
}

.pd-head {
    max-width: 760px;
    margin-bottom: 48px;
}

.pd-head p {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(34, 31, 32, 0.78);
}

/* Buttons */

.pd-btn {
    min-height: 60px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 34px;

    border: 2px solid var(--charcoal);
    border-radius: 100px;

    background: var(--charcoal);
    color: var(--off-white);

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.pd-btn:hover {
    background: var(--yellow);
    color: var(--charcoal);
    border-color: var(--yellow);
    transform: translateY(-2px);
}

.pd-btn-ghost {
    background: transparent;
    color: var(--charcoal);
}

.pd-btn-ghost:hover {
    background: var(--charcoal);
    color: var(--off-white);
    border-color: var(--charcoal);
}

.pd-btn-coral {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--charcoal);
}

.pd-btn-coral:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--off-white);
}

/* =========================
   HERO
========================= */

.pd-hero {
    padding-top: 30px !important;
    padding-bottom: 70px !important;
}

.pd-hero .pd-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 60px;
}

.pd-hero .pd-lead {
    margin-top: 26px;
}

.pd-hero-chips {
    list-style: none;
    margin: 34px 0 0;
    padding: 0;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pd-hero-chips li {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;

    border: 1.5px solid var(--charcoal);
    border-radius: 100px;

    font-size: 14px;
    font-weight: 700;
}

.pd-hero-chips li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--yellow);
    transform: rotate(45deg);
}

.pd-hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* The fan of covers */

.pd-fan {
    position: relative;
    height: 520px;
}

.pd-fan img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 250px;
    aspect-ratio: 900 / 1273;
    height: auto;

    border-radius: 14px;

    box-shadow: 0 30px 60px rgba(34, 31, 32, 0.22);

    transition: transform 0.35s ease;
}

.pd-fan img:nth-child(1) {
    transform: translate(-50%, -50%) translateX(-150px) rotate(-12deg);
    z-index: 1;
}

.pd-fan img:nth-child(2) {
    transform: translate(-50%, -50%) translateY(-18px);
    z-index: 3;
}

.pd-fan img:nth-child(3) {
    transform: translate(-50%, -50%) translateX(150px) rotate(12deg);
    z-index: 2;
}

.pd-fan:hover img:nth-child(1) {
    transform: translate(-50%, -50%) translateX(-190px) rotate(-16deg);
}

.pd-fan:hover img:nth-child(3) {
    transform: translate(-50%, -50%) translateX(190px) rotate(16deg);
}

.pd-fan:hover img:nth-child(2) {
    transform: translate(-50%, -50%) translateY(-34px);
}

/* =========================
   THE SHELF
========================= */

.pd-shelf {
    background: var(--charcoal);
    color: var(--off-white);
}

.pd-shelf .pd-eyebrow,
.pd-shelf .pd-head p {
    color: var(--off-white);
}

.pd-shelf .pd-head p {
    color: rgba(255, 253, 238, 0.72);
}

.pd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pd-card {
    position: relative;

    display: flex;
    flex-direction: column;

    border-radius: var(--pd-radius);

    background: var(--off-white);
    color: var(--charcoal);

    overflow: hidden;
}

.pd-card-cover {
    position: relative;
    margin: 0;
    padding: 26px 26px 0;

    background: #f2efdf;
}

.pd-card-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 900 / 1273;
    object-fit: cover;

    border-radius: 10px 10px 0 0;

    box-shadow: 0 -10px 30px rgba(34, 31, 32, 0.12);

    transition: transform 0.3s ease;
}

.pd-card:hover .pd-card-cover img {
    transform: translateY(-8px);
}

.pd-sticker {
    position: absolute;
    top: auto;
    bottom: -26px;
    right: 18px;
    z-index: 2;

    width: 84px;
    height: 84px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--yellow);
    color: var(--charcoal);

    font-weight: 900;
    line-height: 1;

    transform: rotate(10deg);

    box-shadow: 0 8px 20px rgba(34, 31, 32, 0.18);
}

.pd-sticker strong {
    font-size: 28px;
}

.pd-sticker span {
    margin-top: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.pd-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 26px 26px 28px;
}

.pd-card-tag {
    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(34, 31, 32, 0.6);
}

.pd-card-body h3 {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
}

.pd-card-pitch {
    margin-top: 12px !important;
    font-size: 16px;
    line-height: 1.5;
}

.pd-card-inside {
    list-style: none;
    margin: 20px 0 0;
    padding: 18px 0 0;

    border-top: 1px solid var(--pd-line);

    display: flex;
    flex-direction: column;
    gap: 9px;

    font-size: 15px;
    line-height: 1.4;
}

.pd-card-inside li {
    position: relative;
    padding-left: 22px;
}

.pd-card-inside li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 7px;
    width: 8px;
    height: 8px;
    background: var(--yellow);
    transform: rotate(45deg);
}

.pd-card-fit {
    margin-top: 18px !important;
    padding: 12px 14px;

    border-radius: 10px;

    background: #f2efdf;

    font-size: 14px;
    line-height: 1.45;
}

.pd-card-fit strong {
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.pd-card-actions {
    margin-top: auto;
    padding-top: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pd-card-actions .pd-btn {
    flex: 1;
    min-height: 54px;
    padding: 0 20px;
    font-size: 15px;
}

.pd-card-price {
    font-size: 28px;
    font-weight: 900;
    white-space: nowrap;
}

.pd-card-price small {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(34, 31, 32, 0.55);
}

.pd-card.is-pro {
    outline: 3px solid var(--yellow);
    outline-offset: -3px;
}

.pd-card-flag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;

    padding: 7px 12px;

    border-radius: 100px;

    background: var(--charcoal);
    color: var(--off-white);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.pd .pd-shelf-note {
    margin-top: 48px;
    color: rgba(255, 253, 238, 0.72);
    font-size: 15px;
    text-align: center;
}

.pd-shelf-note a {
    color: var(--yellow);
    font-weight: 700;
}

/* =========================
   COMPARE
========================= */

.pd-compare .pd-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 60px;
    align-items: start;
}

.pd-compare-table {
    width: 100%;
    border-collapse: collapse;

    border: 2px solid var(--charcoal);
    border-radius: var(--pd-radius);
    overflow: hidden;

    background: #fff;
}

.pd-compare-table th,
.pd-compare-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--pd-line);
    text-align: left;
    vertical-align: middle;
    font-size: 15px;
}

.pd-compare-table thead th {
    background: var(--charcoal);
    color: var(--off-white);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.pd-compare-table thead th:not(:first-child) {
    text-align: center;
}

.pd-compare-table thead th span {
    display: block;
    margin-top: 4px;
    font-size: 18px;
    letter-spacing: 0;
    color: var(--yellow);
}

.pd-compare-table tbody td {
    text-align: center;
    font-weight: 800;
}

.pd-compare-table tbody th {
    font-weight: 500;
}

.pd-compare-table tbody tr:last-child th,
.pd-compare-table tbody tr:last-child td {
    border-bottom: 0;
}

.pd-check {
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--yellow);
    color: var(--charcoal);

    font-size: 14px;
}

.pd-dash {
    color: rgba(34, 31, 32, 0.3);
}

.pd-compare-table tfoot td {
    padding: 18px;
    border-bottom: 0;
    text-align: center;
}

.pd-compare-table tfoot .pd-btn {
    min-height: 48px;
    padding: 0 22px;
    font-size: 14px;
}

.pd-compare-copy .pd-btn {
    margin-top: 26px;
}

/* =========================
   HOW IT WORKS
========================= */

.pd-how {
    background: #f2efdf;
}

.pd-steps {
    list-style: none;
    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pd-steps li {
    padding: 30px 28px 32px;

    border: 2px solid var(--charcoal);
    border-radius: var(--pd-radius);

    background: var(--off-white);
}

.pd-step-num {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: var(--charcoal);
    color: var(--yellow);

    font-size: 18px;
    font-weight: 900;
}

.pd-steps h3 {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
}

.pd-steps p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.pd .pd-how-note {
    margin-top: 36px;
    font-size: 15px;
    color: rgba(34, 31, 32, 0.7);
}

/* Screens strip */

.pd-screens {
    margin-top: 56px;

    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
}

.pd-screen {
    margin: 0;

    border-radius: 14px;

    background: var(--charcoal);

    overflow: hidden;

    box-shadow: 0 24px 50px rgba(34, 31, 32, 0.16);
}

.pd-screen-bar {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 10px 14px;
}

.pd-screen-bar i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 253, 238, 0.3);
}

.pd-screen-bar i:first-child {
    background: var(--coral);
}

.pd-screen-bar i:nth-child(2) {
    background: var(--yellow);
}

.pd-screen-bar i:nth-child(3) {
    background: var(--mint);
}

.pd-screen-bar span {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 253, 238, 0.6);
}

.pd-screen img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top left;
}

.pd-screen figcaption {
    padding: 12px 14px 14px;
    color: var(--off-white);
    font-size: 14px;
}

/* =========================
   WHICH ONE
========================= */

.pd-which-list {
    list-style: none;
    margin: 0;
    padding: 0;

    border-top: 2px solid var(--charcoal);
}

.pd-which-list li {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 30px;
    align-items: center;

    padding: 28px 0;

    border-bottom: 1px solid var(--pd-line);
}

.pd-which-list li:last-child {
    border-bottom: 2px solid var(--charcoal);
}

.pd-which-if {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.pd-which-if span {
    display: block;
    margin-top: 6px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(34, 31, 32, 0.75);
}

.pd-which-then {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.pd-which-then a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 20px;

    border-radius: 100px;

    background: var(--yellow);
    color: var(--charcoal);

    font-weight: 800;
    text-decoration: none;

    transition: background 0.2s;
}

.pd-which-then a:hover {
    background: var(--charcoal);
    color: var(--off-white);
}

.pd-which-then em {
    font-style: normal;
    font-weight: 700;
    color: rgba(34, 31, 32, 0.5);
}

/* =========================
   GUARANTEE
========================= */

.pd-guarantee {
    background: var(--yellow);
}

.pd-guarantee .pd-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}

.pd-guarantee-days {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 170px;
    height: 170px;

    border: 3px solid var(--charcoal);
    border-radius: 50%;

    font-weight: 900;
    line-height: 1;

    transform: rotate(-8deg);
}

.pd-guarantee-days strong {
    font-size: 64px;
}

.pd-guarantee-days span {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pd-guarantee h2 {
    font-size: clamp(28px, 3.6vw, 44px);
}

.pd-guarantee p {
    margin-top: 14px;
    max-width: 60ch;
    font-size: 18px;
    line-height: 1.5;
}

/* =========================
   FAQ
========================= */

.pd-faq .pd-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 60px;
    align-items: start;
}

.pd-faq details {
    border-bottom: 1px solid var(--pd-line);
}

.pd-faq details:first-of-type {
    border-top: 2px solid var(--charcoal);
}

.pd-faq summary {
    list-style: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 22px 0;

    font-size: 19px;
    font-weight: 800;
}

.pd-faq summary::-webkit-details-marker {
    display: none;
}

.pd-faq summary::after {
    content: "+";
    flex-shrink: 0;

    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;

    border: 2px solid var(--charcoal);
    border-radius: 50%;

    font-size: 20px;
    font-weight: 700;

    transition: transform 0.2s, background 0.2s;
}

.pd-faq details[open] summary::after {
    content: "–";
    background: var(--yellow);
}

.pd-faq details p {
    padding: 0 0 22px;
    max-width: 62ch;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(34, 31, 32, 0.85);
}

/* =========================
   FINAL (services hand-off)
========================= */

.pd-final {
    background: var(--charcoal);
    color: var(--off-white);
    text-align: center;
}

.pd-final .pd-eyebrow {
    color: var(--off-white);
}

.pd-final .pd-eyebrow::before {
    background: var(--coral);
}

.pd-final p {
    max-width: 56ch;
    margin: 18px auto 0;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 253, 238, 0.8);
}

.pd-final .pd-btn {
    margin-top: 32px;
}

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

@media (max-width: 1024px) {
    .pd-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pd-grid .pd-card:last-child {
        grid-column: 1 / -1;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .pd-compare .pd-inner,
    .pd-faq .pd-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .pd-screens {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .pd section {
        padding: 64px var(--page-padding);
    }

    .pd-hero .pd-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pd-fan {
        height: 380px;
    }

    .pd-fan img {
        width: 180px;
    }

    .pd-fan img:nth-child(1) {
        transform: translate(-50%, -50%) translateX(-105px) rotate(-12deg);
    }

    .pd-fan img:nth-child(3) {
        transform: translate(-50%, -50%) translateX(105px) rotate(12deg);
    }

    .pd-steps {
        grid-template-columns: 1fr;
    }

    .pd-guarantee .pd-inner {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 28px;
    }

    .pd-which-list li {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pd-which-then {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .pd-grid {
        grid-template-columns: 1fr;
    }

    .pd-grid .pd-card:last-child {
        max-width: none;
    }

    .pd-compare-table th,
    .pd-compare-table td {
        padding: 12px 10px;
        font-size: 14px;
    }

    .pd-compare-wrap {
        overflow-x: auto;
    }
}

/* =========================================================
   PRODUCT DETAIL PAGES (pdp-*)
   Shared by A to Z, Basic and Pro.
========================================================= */

.pdp-hero {
    padding-top: 30px !important;
    padding-bottom: 80px !important;
}

.pdp-hero .pd-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 70px;
    align-items: center;
}

.pdp-cover {
    position: relative;
    margin: 0;
    max-width: 380px;
}

.pdp-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 900 / 1273;

    border-radius: 16px;

    box-shadow: 0 30px 60px rgba(34, 31, 32, 0.2);
}

.pdp-cover .pd-sticker {
    top: auto;
    bottom: -22px;
    right: -22px;
    width: 104px;
    height: 104px;
}

.pdp-cover .pd-sticker strong {
    font-size: 34px;
}

.pdp-hero-copy .pd-lead {
    margin-top: 24px;
}

.pdp-hero-copy h1 {
    font-size: clamp(40px, 5.4vw, 72px);
}

.pdp-proof {
    list-style: none;
    margin: 26px 0 0;
    padding: 22px 0 0;

    border-top: 2px solid var(--charcoal);

    display: flex;
    flex-direction: column;
    gap: 10px;

    font-size: 16px;
    line-height: 1.45;
}

.pdp-proof li {
    position: relative;
    padding-left: 24px;
}

.pdp-proof li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--yellow);
    transform: rotate(45deg);
}

.pdp-buy {
    margin-top: 32px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 24px;
}

.pdp-buy .pd-btn {
    min-height: 64px;
    padding: 0 40px;
    font-size: 17px;
}

.pdp-buy-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;

    font-size: 14px;
    line-height: 1.4;
    color: rgba(34, 31, 32, 0.7);
}

.pdp-buy-meta strong {
    color: var(--charcoal);
}

/* Video */

.pdp-video {
    background: #f2efdf;
}

.pdp-video .pd-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 50px;
    align-items: center;
}

.pdp-video .pd-head {
    margin-bottom: 0;
}

.pdp-frame {
    margin: 0;

    border-radius: 14px;

    background: var(--charcoal);

    overflow: hidden;

    box-shadow: 0 24px 50px rgba(34, 31, 32, 0.16);
}

.pdp-frame iframe,
.pdp-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    object-fit: cover;
    object-position: top left;
}

/* Rooms */

.pdp-rooms {
    list-style: none;
    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.pdp-room {
    display: flex;
    flex-direction: column;

    border: 2px solid var(--charcoal);
    border-radius: var(--pd-radius);

    background: #fff;

    overflow: hidden;
}

.pdp-room-tile {
    position: relative;

    height: 120px;

    display: flex;
    align-items: flex-end;

    padding: 14px 18px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.pdp-room-tile::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    width: 12px;
    height: 12px;
    background: var(--charcoal);
    transform: rotate(45deg);
}

.pdp-room:nth-child(1) .pdp-room-tile { background: var(--coral); }
.pdp-room:nth-child(2) .pdp-room-tile { background: var(--yellow); }
.pdp-room:nth-child(3) .pdp-room-tile { background: var(--blue); }
.pdp-room:nth-child(4) .pdp-room-tile { background: var(--mint); }
.pdp-room:nth-child(5) .pdp-room-tile { background: var(--lilac); }

.pdp-room-body {
    padding: 20px 20px 24px;
}

.pdp-room-body h3 {
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}

.pdp-room-body h3 span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: none;
    color: rgba(34, 31, 32, 0.6);
}

.pdp-room-body p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.pdp-room-body ul {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 6px;

    font-size: 14px;
    line-height: 1.4;
    color: rgba(34, 31, 32, 0.8);
}

.pdp-room-body ul li::before {
    content: "\2192\00a0";
}

/* Outcomes (charcoal) */

.pdp-outcomes {
    background: var(--charcoal);
    color: var(--off-white);
}

.pdp-outcomes .pd-eyebrow,
.pdp-outcomes .pd-head p {
    color: var(--off-white);
}

.pdp-outcomes .pd-head p {
    color: rgba(255, 253, 238, 0.72);
}

.pdp-outcomes-grid {
    list-style: none;
    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pdp-outcomes-grid li {
    padding: 26px 26px 28px;

    border-radius: var(--pd-radius);

    background: rgba(255, 253, 238, 0.06);
    border: 1px solid rgba(255, 253, 238, 0.14);
}

.pdp-outcomes-grid strong {
    display: block;

    font-size: 20px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--yellow);
}

.pdp-outcomes-grid span {
    display: block;
    margin-top: 10px;

    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 253, 238, 0.85);
}

/* Screens (reuse pd-screens) */

.pdp-screens .pd-screens {
    margin-top: 0;
    grid-template-columns: 1fr 1fr;
}

/* Fit */

.pdp-fit .pd-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pdp-fit-col {
    padding: 30px 30px 34px;

    border: 2px solid var(--charcoal);
    border-radius: var(--pd-radius);

    background: #fff;
}

.pdp-fit-col.is-yes {
    background: var(--yellow);
}

.pdp-fit-col h3 {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.pdp-fit-col ul {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 10px;

    font-size: 16px;
    line-height: 1.45;
}

.pdp-fit-col li {
    position: relative;
    padding-left: 26px;
}

.pdp-fit-col li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
}

.pdp-fit-col.is-yes li::before {
    content: "\2713";
}

.pdp-fit-col.is-no li::before {
    content: "\2013";
    color: rgba(34, 31, 32, 0.45);
}

/* Maker */

.pdp-maker .pd-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 60px;
    align-items: center;
}

.pdp-maker-text p {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.55;
}

.pdp-maker-text p:first-of-type {
    margin-top: 0;
}

.pdp-maker-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;

    padding: 34px 36px;

    border-radius: var(--pd-radius);

    background: var(--charcoal);
    color: var(--off-white);
}

.pdp-maker-stat strong {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    line-height: 1;
    color: var(--yellow);
}

.pdp-maker-stat span {
    font-size: 16px;
    line-height: 1.45;
    color: rgba(255, 253, 238, 0.85);
}

/* Also on the shelf */

.pdp-also {
    background: #f2efdf;
}

.pdp-also-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pdp-also-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 22px;
    align-items: center;

    padding: 20px;

    border: 2px solid var(--charcoal);
    border-radius: var(--pd-radius);

    background: var(--off-white);
    color: var(--charcoal);
    text-decoration: none;

    transition: transform 0.2s, box-shadow 0.2s;
}

.pdp-also-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(34, 31, 32, 0.14);
}

.pdp-also-card img {
    display: block;
    width: 100%;
    aspect-ratio: 900 / 1273;
    border-radius: 10px;
}

.pdp-also-card strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}

.pdp-also-card p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.45;
}

.pdp-also-card em {
    display: inline-block;
    margin-top: 12px;
    font-style: normal;
    font-weight: 800;
}

/* Sticky buy bar (mobile + desktop, appears after hero) */

.pdp-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    padding: 12px var(--page-padding);

    background: var(--charcoal);
    color: var(--off-white);

    transform: translateY(110%);
    transition: transform 0.3s ease;
}

.pdp-bar.is-visible {
    transform: translateY(0);
}

.pdp-bar-title {
    font-size: 15px;
    font-weight: 700;
}

.pdp-bar-title span {
    margin-left: 10px;
    color: var(--yellow);
}

.pdp-bar .pd-btn {
    min-height: 48px;
    padding: 0 24px;
    font-size: 14px;
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--charcoal);
}

.pdp-bar .pd-btn:hover {
    background: var(--off-white);
    border-color: var(--off-white);
}

@media (max-width: 1100px) {
    .pdp-rooms {
        grid-template-columns: repeat(3, 1fr);
    }

    .pdp-outcomes-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .pdp-hero .pd-inner,
    .pdp-video .pd-inner,
    .pdp-maker .pd-inner,
    .pdp-fit .pd-inner,
    .pdp-also-grid,
    .pdp-screens .pd-screens {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pdp-cover {
        max-width: 280px;
    }

    .pdp-cover .pd-sticker {
        right: -10px;
        bottom: -14px;
    }

    .pdp-rooms {
        grid-template-columns: 1fr 1fr;
    }

    .pdp-outcomes-grid {
        grid-template-columns: 1fr;
    }

    .pdp-bar-title span {
        display: none;
    }
}

@media (max-width: 560px) {
    .pdp-rooms {
        grid-template-columns: 1fr;
    }

    .pdp-also-card {
        grid-template-columns: 90px 1fr;
    }
}

.pdp-bar.is-visible ~ .site-footer {
    padding-bottom: 90px;
}

/* Product detail pages: tighter vertical rhythm */
.pdp section {
    padding-top: 64px;
    padding-bottom: 64px;
}

.pdp .pd-head {
    margin-bottom: 34px;
}

.pdp-screens {
    padding-top: 40px !important;
}

/* Four-module variant + chips + upgrade nudge */
.pdp-rooms-4 {
    grid-template-columns: repeat(4, 1fr);
}

.pdp-room-chips {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;

    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pdp-room-chips li {
    padding: 5px 10px;

    border: 1.5px solid var(--charcoal);
    border-radius: 100px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.pdp-room-body .pdp-room-chips li::before {
    content: none;
}

.pdp-upgrade {
    background: #f2efdf;
}

.pdp-upgrade .pd-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
}

.pdp-upgrade-card {
    padding: 34px 34px 36px;

    border: 2px solid var(--charcoal);
    border-radius: var(--pd-radius);

    background: var(--off-white);
}

.pdp-upgrade-card.is-dark {
    background: var(--charcoal);
    color: var(--off-white);
}

.pdp-upgrade-card .pd-eyebrow {
    color: inherit;
}

.pdp-upgrade-card h3 {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
}

.pdp-upgrade-card p {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.5;
}

.pdp-upgrade-card .pd-btn {
    margin-top: 22px;
}

.pdp-upgrade-card.is-dark .pd-btn {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--charcoal);
}

.pdp-upgrade-card.is-dark .pd-btn:hover {
    background: var(--off-white);
    border-color: var(--off-white);
}

.pdp-cover.has-flag .pd-card-flag {
    top: -14px;
    left: -14px;
}

@media (max-width: 1100px) {
    .pdp-rooms-4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .pdp-upgrade .pd-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .pdp-rooms-4 {
        grid-template-columns: 1fr;
    }
}
