.bd-pendants-page .site-content,
.bd-pendants-page .content-area,
.bd-pendants-page .site-main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.bd-pendants {
    overflow: clip;
    color: var(--bd-text);
    background: var(--bd-surface);
    font-family: var(--bd-sans);
}

.bd-pendants-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    min-height: 720px;
    background: #f3ede3;
}

.bd-pendants-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 780px;
    padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 7vw, 7rem);
}

.bd-pendants-hero h1 {
    max-width: 13ch;
    margin: 0.7rem 0 1.5rem;
    font-family: var(--bd-serif);
    font-size: clamp(2.8rem, 5.4vw, 5.9rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.bd-pendants-hero__lead {
    max-width: 64ch;
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
    line-height: 1.75;
}

.bd-pendants-hero__note {
    margin-top: 2rem;
    color: var(--bd-muted);
    font-size: 0.78rem;
}

.bd-pendants-hero__media {
    min-height: 620px;
    margin: 0;
    overflow: hidden;
    background: #d8cdbc;
}

.bd-pendants-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-pendants-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--bd-border);
    background: #fff;
}

.bd-pendants-benefits p {
    display: grid;
    gap: 0.4rem;
    margin: 0;
    padding: 1.6rem clamp(1.25rem, 4vw, 4rem);
    border-right: 1px solid var(--bd-border);
}

.bd-pendants-benefits p:last-child {
    border-right: 0;
}

.bd-pendants-benefits strong {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bd-pendants-benefits span {
    color: var(--bd-muted);
    font-size: 0.88rem;
}

.bd-pendants-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    margin-top: 3rem;
    background: var(--bd-border);
    border: 1px solid var(--bd-border);
}

.bd-pendants-card-grid article {
    min-height: 300px;
    padding: clamp(1.5rem, 2.5vw, 2.5rem);
    background: #fff;
}

.bd-pendants-card-grid article > span {
    display: block;
    margin-bottom: 3.5rem;
    color: var(--bd-gold-ink);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}

.bd-pendants-card-grid h3 {
    font-family: var(--bd-serif);
    font-size: 1.55rem;
    font-weight: 400;
}

.bd-pendants-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.bd-pendants-product {
    background: #fff;
    border: 1px solid var(--bd-border);
}

.bd-pendants-product__image {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f1ece4;
}

.bd-pendants-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--bd-duration) var(--bd-ease);
}

.bd-pendants-product:hover .bd-pendants-product__image img {
    transform: scale(1.02);
}

.bd-pendants-product__body {
    padding: 1.4rem;
}

.bd-pendants-product h3 {
    min-height: 4.8em;
    margin: 0.5rem 0 1rem;
    font-size: 1rem;
    line-height: 1.45;
}

.bd-pendants-product h3 a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.bd-pendants-product__price {
    font-size: 1.05rem;
    font-weight: 700;
}

.bd-pendants-products__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.bd-pendants-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 3rem 0 0;
    padding: 0;
    background: var(--bd-border);
    border: 1px solid var(--bd-border);
    list-style: none;
    counter-reset: pendant-step;
}

.bd-pendants-steps li {
    display: grid;
    align-content: start;
    gap: 0.8rem;
    min-height: 220px;
    padding: 2rem;
    background: #fff;
    counter-increment: pendant-step;
}

.bd-pendants-steps li::before {
    content: "0" counter(pendant-step);
    color: var(--bd-gold-ink);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
}

.bd-pendants-steps span,
.bd-pendants-occasion-grid p,
.bd-pendants-process span,
.bd-pendants-care-grid p {
    color: var(--bd-muted);
}

.bd-section--dark.bd-pendants-compare {
    color: #f8f3eb;
    background: #102c22;
}

.bd-pendants-table-wrap {
    margin-top: 3rem;
    overflow-x: auto;
}

.bd-pendants-compare table {
    width: 100%;
    border-collapse: collapse;
    color: inherit;
}

.bd-pendants-compare th,
.bd-pendants-compare td {
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: left;
    vertical-align: top;
}

.bd-pendants-compare thead th {
    color: #d8c28d;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bd-pendants-occasion-grid,
.bd-pendants-care-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--bd-border);
    border: 1px solid var(--bd-border);
}

.bd-pendants-occasion-grid article,
.bd-pendants-care-grid article {
    min-height: 190px;
    padding: 2rem;
    background: #fff;
}

.bd-pendants-care-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3rem;
}

.bd-pendants-process {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: pendant-process;
}

.bd-pendants-process li {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.3rem 1rem;
    padding: 1.35rem;
    background: #fff;
    border: 1px solid var(--bd-border);
    counter-increment: pendant-process;
}

.bd-pendants-process li::before {
    content: counter(pendant-process);
    grid-row: span 2;
    color: var(--bd-gold-ink);
}

.bd-pendants-location__data {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.bd-pendants-location__data div {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 1rem;
}

.bd-pendants-location__data dt {
    color: var(--bd-muted);
}

.bd-pendants-location__data dd {
    margin: 0;
}

.bd-pendants-location__actions {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: clamp(2rem, 5vw, 5rem);
    color: #f8f3eb;
    background: #102c22;
}

.bd-pendants-faq__items {
    max-width: 920px;
    margin: 3rem auto 0;
    border-top: 1px solid var(--bd-border);
}

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

.bd-pendants-faq summary {
    padding: 1.4rem 3rem 1.4rem 0;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
}

.bd-pendants-faq details p {
    max-width: 72ch;
    padding: 0 0 1.5rem;
    color: var(--bd-muted);
}

.bd-pendants-link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 2.5rem;
    background: var(--bd-border);
    border: 1px solid var(--bd-border);
}

.bd-pendants-link-grid a {
    display: grid;
    gap: 0.75rem;
    min-height: 170px;
    padding: 2rem;
    color: inherit;
    background: #fff;
    text-decoration: none;
}

.bd-pendants-link-grid span {
    color: var(--bd-muted);
}

.bd-pendants-final {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 3rem;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 8vw, 8rem);
    color: #f8f3eb;
    background: #102c22;
}

.bd-pendants-final h2 {
    max-width: 17ch;
    margin: 0.5rem 0 1rem;
    color: inherit;
    font-family: var(--bd-serif);
    font-size: clamp(2.3rem, 4vw, 4.8rem);
    font-weight: 500;
    line-height: 1.05;
}

.bd-pendants-final p {
    max-width: 62ch;
}

@media (max-width: 1100px) {
    .bd-pendants-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bd-pendants-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bd-pendants-link-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .bd-pendants-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .bd-pendants-hero__content {
        order: 2;
        padding: 3.5rem 1.25rem;
    }

    .bd-pendants-hero h1 {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    .bd-pendants-hero__media {
        min-height: 310px;
        max-height: 430px;
    }

    .bd-pendants-benefits,
    .bd-pendants-steps,
    .bd-pendants-card-grid,
    .bd-pendants-product-grid,
    .bd-pendants-occasion-grid,
    .bd-pendants-care-grid,
    .bd-pendants-link-grid,
    .bd-pendants-final {
        grid-template-columns: 1fr;
    }

    .bd-pendants-benefits p {
        border-right: 0;
        border-bottom: 1px solid var(--bd-border);
    }

    .bd-pendants-card-grid article {
        min-height: 210px;
    }

    .bd-pendants-card-grid article > span {
        margin-bottom: 2rem;
    }

    .bd-pendants-product {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .bd-pendants-product__image {
        height: 100%;
        min-height: 190px;
        aspect-ratio: auto;
    }

    .bd-pendants-product__body {
        padding: 1.1rem;
    }

    .bd-pendants-product h3 {
        min-height: 0;
    }

    .bd-pendants-products__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .bd-pendants-final {
        align-items: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bd-pendants-product__image img {
        transition: none;
    }
}
