:root {
    --plg-ink: #26352f;
    --plg-deep: #173f34;
    --plg-paprika: #a33b35;
    --plg-paprika-dark: #7f2c28;
    --plg-cream: #fbf6e9;
    --plg-paper: #fffdf7;
    --plg-gold: #b58a45;
    --plg-line: #dfd3b8;
    --plg-muted: #6a706c;
    --plg-white: #ffffff;
    --plg-shadow: 0 18px 45px rgba(38, 53, 47, .12);
    --plg-radius: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--plg-ink);
    background: var(--plg-paper);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

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

a {
    color: var(--plg-deep);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--plg-paprika);
}

h1,
h2,
h3,
.plg-logo {
    font-family: "Baskerville", "Baskerville Old Face", "Hoefler Text", "Palatino Linotype", serif;
    color: var(--plg-deep);
    line-height: 1.12;
    letter-spacing: .015em;
}

h1 {
    margin: 0 0 18px;
    font-size: clamp(2.35rem, 5vw, 4.9rem);
}

h2 {
    margin: 2.2rem 0 1rem;
    font-size: clamp(1.75rem, 3vw, 2.55rem);
}

h3 {
    margin: 1.7rem 0 .7rem;
    font-size: 1.35rem;
}

p,
ul,
dl {
    margin-top: 0;
}

.plg-wrap {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.plg-skip {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--plg-white);
    background: var(--plg-deep);
}

.plg-skip:focus {
    top: 16px;
}

.plg-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(181, 138, 69, .35);
    background: rgba(255, 253, 247, .95);
    backdrop-filter: blur(12px);
}

.plg-header-grid {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.plg-logo {
    position: relative;
    font-size: 1.7rem;
    font-weight: 700;
    text-decoration: none;
}

.plg-logo::after {
    content: "";
    display: block;
    width: 74%;
    height: 3px;
    margin-top: 5px;
    background: linear-gradient(90deg, var(--plg-paprika) 0 33%, var(--plg-paper) 33% 66%, var(--plg-deep) 66% 100%);
    box-shadow: 0 0 0 1px rgba(38, 53, 47, .08);
}

.plg-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.plg-nav a,
.plg-footer-links a {
    font-weight: 700;
    text-decoration: none;
}

.plg-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(74px, 9vw, 122px) 0;
    border-bottom: 1px solid var(--plg-line);
    background:
        radial-gradient(circle at 18% 18%, rgba(181, 138, 69, .20), transparent 30%),
        radial-gradient(circle at 84% 35%, rgba(163, 59, 53, .16), transparent 27%),
        linear-gradient(135deg, #fffaf0 0%, #f4ead4 100%);
}

.plg-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 10px;
    background: repeating-linear-gradient(90deg, var(--plg-paprika) 0 18px, var(--plg-gold) 18px 26px, var(--plg-deep) 26px 44px, var(--plg-cream) 44px 52px);
}

.plg-hero p {
    max-width: 780px;
    margin-bottom: 0;
    font-size: clamp(1.08rem, 2vw, 1.3rem);
    color: #46544e;
}

.plg-shop-layout {
    padding-block: 64px 84px;
}

.plg-shop-intro h2 {
    margin-top: 0;
}

.plg-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.plg-product-card,
.plg-related-card,
.plg-sidebar-card {
    border: 1px solid var(--plg-line);
    border-radius: var(--plg-radius);
    background: var(--plg-white);
    box-shadow: var(--plg-shadow);
}

.plg-product-card {
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
}

.plg-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(38, 53, 47, .17);
}

.plg-product-image {
    display: block;
    padding: 22px;
    background: linear-gradient(180deg, #fffdfa 0%, #f7efdc 100%);
}

.plg-product-image img {
    aspect-ratio: 1;
    width: 100%;
    object-fit: contain;
}

.plg-product-card__content {
    padding: 22px;
}

.plg-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 11px;
    border-radius: 999px;
    color: var(--plg-white);
    background: var(--plg-paprika);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.plg-product-title {
    margin: 13px 0 18px;
    font-size: 1.35rem;
}

.plg-product-title a,
.plg-related-card__title a {
    color: inherit;
    text-decoration: none;
}

.plg-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 18px;
    border: 1px solid var(--plg-deep);
    border-radius: 11px;
    color: var(--plg-white);
    background: var(--plg-deep);
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.plg-button:hover {
    color: var(--plg-white);
    background: var(--plg-paprika);
    border-color: var(--plg-paprika);
    transform: translateY(-1px);
}

.plg-button--large {
    min-height: 54px;
    padding: 14px 24px;
    font-size: 1.05rem;
}

.plg-footer {
    padding: 56px 0 26px;
    color: #f7f3e7;
    background: var(--plg-deep);
}

.plg-footer h2,
.plg-footer a {
    color: var(--plg-white);
}

.plg-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr);
    gap: 44px;
}

.plg-footer-grid h2 {
    margin-top: 0;
    font-size: 1.7rem;
}

.plg-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plg-footer-copy {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    font-size: .92rem;
}

.plg-product-hero {
    padding: 34px 0 60px;
    background: linear-gradient(180deg, #faf1dc 0%, #fffdf7 100%);
    border-bottom: 1px solid var(--plg-line);
}

.plg-product-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 54px;
    align-items: center;
}

.plg-breadcrumbs {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: .92rem;
    color: var(--plg-muted);
}

.plg-product-media {
    position: relative;
    padding: 34px;
    border: 1px solid var(--plg-line);
    border-radius: 28px;
    background: var(--plg-white);
    box-shadow: var(--plg-shadow);
}

.plg-product-media > .plg-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
}

.plg-product-media img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
}

.plg-product-summary .plg-lead {
    font-size: 1.15rem;
    color: #4e5c56;
}

.plg-facts {
    margin: 28px 0 0;
    border-top: 1px solid var(--plg-line);
}

.plg-facts > div {
    display: grid;
    grid-template-columns: minmax(120px, .45fr) minmax(0, 1fr);
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--plg-line);
}

.plg-facts dt {
    font-weight: 800;
}

.plg-facts dd {
    margin: 0;
}

.plg-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: start;
    padding-block: 58px 86px;
}

.plg-article-content {
    min-width: 0;
}

.plg-article-content > p,
.plg-article-content section > p,
.plg-article-content li {
    color: #3f4d47;
}

.plg-article-content section {
    margin-bottom: 40px;
}

.plg-article-content ul {
    padding-left: 22px;
}

.plg-check-list {
    list-style: none;
    padding-left: 0 !important;
}

.plg-check-list li {
    position: relative;
    padding-left: 31px;
    margin-bottom: 10px;
}

.plg-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--plg-deep);
    font-weight: 900;
}

.plg-cta-box {
    margin: 34px 0;
    padding: 28px;
    border: 1px solid #d6c08c;
    border-radius: var(--plg-radius);
    background: linear-gradient(135deg, #fff5da 0%, #f7e7c0 100%);
}

.plg-cta-box h2 {
    margin: 0 0 16px;
    font-size: 1.85rem;
}

.plg-sidebar {
    position: sticky;
    top: 102px;
}

.plg-sidebar-card {
    padding: 26px;
}

.plg-sidebar-card h2 {
    margin-top: 0;
}

.plg-sidebar-card ul {
    padding-left: 20px;
}

.plg-sidebar-card .plg-button {
    width: 100%;
}

.plg-related {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--plg-line);
}

.plg-related__head {
    max-width: 760px;
    margin-bottom: 26px;
}

.plg-eyebrow {
    margin-bottom: 8px;
    color: var(--plg-paprika) !important;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.plg-related__head h2 {
    margin: 0 0 10px;
}

.plg-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.plg-related-card {
    overflow: hidden;
}

.plg-related-card__media {
    position: relative;
    display: block;
    padding: 18px;
    background: #faf3e3;
}

.plg-related-card__media img {
    aspect-ratio: 1;
    width: 100%;
    object-fit: contain;
}

.plg-related-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
}

.plg-related-card__body {
    padding: 20px;
}

.plg-related-card__title {
    margin: 0 0 16px;
    font-size: 1.25rem;
}

.plg-related-card__button {
    width: 100%;
}

.plg-faq {
    padding: 26px;
    border: 1px solid var(--plg-line);
    border-radius: var(--plg-radius);
    background: #fffaf0;
}

.plg-faq > h2:first-child {
    margin-top: 0;
}

@media (max-width: 980px) {
    .plg-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plg-product-hero__grid,
    .plg-content-layout {
        grid-template-columns: 1fr;
    }

    .plg-sidebar {
        position: static;
    }

    .plg-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .plg-wrap {
        width: min(100% - 28px, 1180px);
    }

    .plg-header-grid {
        min-height: 70px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 12px;
    }

    .plg-nav {
        width: 100%;
        gap: 14px;
        font-size: .94rem;
    }

    .plg-hero {
        padding-block: 60px 72px;
    }

    .plg-product-grid,
    .plg-related__grid {
        grid-template-columns: 1fr;
    }

    .plg-product-hero {
        padding-top: 24px;
    }

    .plg-product-hero__grid {
        gap: 30px;
    }

    .plg-product-media {
        padding: 22px;
    }

    .plg-facts > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .plg-content-layout {
        padding-block: 42px 64px;
    }

    .plg-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
