/* ==========================================================================
   Luba Semijoias — Storefront (referência: home layout aprovado)
   ========================================================================== */

:root {
    --page-bg: #fbf5ee;
    --soft-bg: #f4e7dc;
    --cream: #fffaf5;
    --brown: #4b2418;
    --brown-dark: #24110c;
    --gold: #c9823a;
    --gold-dark: #9d5c25;
    --line: rgba(90, 45, 25, .22);
    --shadow: 0 18px 42px rgba(86, 45, 26, .14);
    --radius: 14px;
    --container: 1380px;
    --image-gray: #c9c9c9;
    --color-success: #2d6a4f;
    --color-error: #9b2226;
    --transition: 0.25s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--brown-dark);
    font-family: Montserrat, Arial, sans-serif;
    font-size: 14px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ---- Barra administrativa (somente com sessão admin no servidor) ---- */
.admin-storefront-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    min-height: 34px;
    background: #2c211c;
    color: #f7f1ea;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-storefront-bar__inner {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 6px 0;
}

.admin-storefront-bar__label {
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.72;
    font-size: 10px;
}

.admin-storefront-bar__actions {
    display: flex;
    align-items: center;
    gap: 12px 18px;
    flex-wrap: wrap;
}

.admin-storefront-bar__link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding: 2px 0;
    border-bottom: 1px solid transparent;
}

.admin-storefront-bar__link:hover,
.admin-storefront-bar__link:focus-visible {
    border-bottom-color: rgba(255, 255, 255, 0.55);
    outline: none;
}

.admin-storefront-bar__devices {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.admin-storefront-bar__device {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.admin-storefront-bar__device:hover,
.admin-storefront-bar__device:focus-visible {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

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

body.has-admin-toolbar {
    padding-top: 34px;
}

/* ---- Prévia responsiva no front (admin) ---- */
.admin-device-preview {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex;
    flex-direction: column;
    background: #d9d3cd;
}

.admin-device-preview[hidden] {
    display: none !important;
}

.admin-device-preview__chrome {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding: 8px 14px;
    background: #2c211c;
    color: #f7f1ea;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-device-preview__devices,
.admin-device-preview__tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.admin-device-preview__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 7px;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.admin-device-preview__btn:hover,
.admin-device-preview__btn:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.admin-device-preview__btn.is-active {
    background: #fff;
    color: #2c211c;
    border-color: #fff;
}

.admin-device-preview__btn--close {
    border-color: rgba(255, 255, 255, 0.4);
}

.admin-device-preview__meta {
    margin: 0;
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.75;
}

.admin-device-preview__stage {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: auto;
    padding: 1rem;
}

.admin-device-preview__fit {
    flex-shrink: 0;
    overflow: hidden;
}

.admin-device-preview__scaler {
    transform-origin: top left;
}

.admin-device-preview__frame {
    background: #fff;
    border: 1px solid rgba(75, 36, 24, 0.14);
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(44, 33, 28, 0.18);
    overflow: hidden;
}

.admin-device-preview__frame iframe {
    display: block;
    border: 0;
    background: #fff;
    max-width: none;
}

html.admin-preview-open,
body.admin-preview-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .admin-storefront-bar__inner {
        width: min(100% - 24px, var(--container));
        gap: 8px;
    }

    .admin-storefront-bar__label {
        width: 100%;
    }

    body.has-admin-toolbar {
        padding-top: 52px;
    }

    .admin-device-preview__btn-text {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .admin-device-preview__meta {
        width: 100%;
        margin-left: 0;
    }
}

.site-main {
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

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

.container {
    width: min(var(--container), calc(100% - 52px));
    margin-inline: auto;
}

/* ---- Topbar ---- */

.topbar {
    height: 46px;
    background: #ead7c6;
    border-bottom: 1px solid rgba(75, 36, 24, .08);
    color: var(--brown);
    font-size: 12px;
    font-weight: 600;
}

.topbar-inner {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 20px;
}

.topbar-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.topbar-icon {
    width: 24px;
    height: 24px;
    color: #7a3d27;
}

/* ---- Header ---- */

.site-header {
    background: linear-gradient(180deg, #fffaf6 0%, #fbf1e8 100%);
}

.header-main {
    height: 142px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.menu-btn,
.icon-btn {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--brown-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-btn svg,
.icon-btn svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.55;
}

.logo {
    text-align: center;
    color: var(--brown);
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: .18em;
}

.logo:has(> .logo-img) {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 92px;
    letter-spacing: 0;
    line-height: normal;
    padding: 10px 12px;
}

.logo-diamond {
    width: 58px;
    height: 42px;
    margin-bottom: 12px;
    color: #7a3d27;
}

.logo-main {
    font-size: 49px;
    font-weight: 400;
    letter-spacing: .15em;
}

.logo-sub {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .47em;
}

.logo-img {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 96px;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 22px;
}

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: 3px;
    right: 1px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brown);
    color: #fff;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.nav {
    height: 50px;
    border-top: 1px solid rgba(75, 36, 24, .06);
    border-bottom: 1px solid rgba(75, 36, 24, .12);
}

.nav-inner {
    height: 100%;
    display: flex;
    justify-content: center;
    gap: clamp(26px, 3.2vw, 58px);
    align-items: center;
    font-size: 12px;
    font-weight: 500;
}

.nav a {
    height: 100%;
    display: inline-flex;
    align-items: center;
    position: relative;
    font-weight: 500;
}

.nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--gold);
}

/* ---- Hero ---- */

.hero {
    min-height: 580px;
    position: relative;
    overflow: hidden;
    background: #f1dfd2;
}

.hero-grid {
    min-height: 580px;
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    padding-top: clamp(44px, 7.5vh, 80px);
    padding-bottom: clamp(56px, 8vh, 88px);
    box-sizing: border-box;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 clamp(24px, 4vw, 48px) 0 clamp(76px, 9vw, 156px);
}

.eyebrow {
    display: block;
    color: var(--brown);
    letter-spacing: .35em;
    font-size: 17px;
    font-weight: 600;
    line-height: 2;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero h1 {
    margin: 0;
    color: #2a1510;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
    font-size: clamp(62px, 6.1vw, 104px);
    line-height: .98;
    letter-spacing: -.045em;
}

.divider {
    width: 390px;
    margin: 36px 0 30px;
    display: flex;
    align-items: center;
    gap: 17px;
    color: var(--gold);
}

.divider::before,
.divider::after {
    content: "";
    height: 2px;
    background: var(--gold);
    flex: 1;
}

.divider svg {
    width: 27px;
    height: 27px;
}

.hero p {
    max-width: 390px;
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.72;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(16px, 2vw, 30px);
    margin-bottom: clamp(4px, 1vh, 12px);
}

/* ---- Buttons ---- */

.btn {
    height: 48px;
    min-width: 178px;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 31px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: #fff;
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #fff;
}

.btn-outline {
    color: var(--brown);
    border: 1px solid #b98765;
    background: rgba(255, 255, 255, .22);
}

.btn-outline:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #f1dfd2;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(251, 245, 238, .96) 0%,
            rgba(251, 245, 238, .84) 28%,
            rgba(251, 245, 238, .52) 50%,
            rgba(36, 17, 12, .08) 78%,
            rgba(36, 17, 12, .04) 100%
        );
}

.hero-image:not(.has-real-image)::after {
    background:
        linear-gradient(
            90deg,
            rgba(251, 245, 238, .98) 0%,
            rgba(241, 223, 210, .72) 55%,
            rgba(241, 223, 210, .35) 100%
        );
}

.placeholder-label {
    position: absolute;
    inset: auto 22px 22px auto;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .55);
    color: rgba(36, 17, 12, .45);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* ---- Benefits ---- */

.benefits,
.benefits-bar {
    position: relative;
    z-index: 4;
    margin-top: -36px;
}

.benefits--page {
    margin-top: 0;
    z-index: 1;
}

.hero + .benefits {
    margin-top: -10px;
}

.benefits-inner {
    background: rgba(255, 250, 245, .92);
    border: 1px solid rgba(75, 36, 24, .13);
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 126px;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--brown);
    text-align: center;
    font-weight: 800;
    font-size: 13px;
    line-height: 1.35;
    padding: 18px;
}

.benefit + .benefit {
    border-left: 1px solid var(--line);
}

.benefit svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.25;
}

.benefits:not(.benefits--page):not(.benefits--pdp) .benefit {
    font-weight: 500;
}

/* ---- Sections ---- */

.section {
    padding: 74px 0;
}

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
    color: var(--brown);
    letter-spacing: .36em;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
}

.section-title::before,
.section-title::after {
    content: "";
    width: 48px;
    height: 2px;
    background: var(--gold);
}

.categories {
    padding-top: 80px;
    padding-bottom: 58px;
}

.category-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 200px));
    justify-content: center;
    gap: 16px;
}

.home-categories--mobile,
.home-categories--tablet {
    display: none;
}

.home-categories--desktop {
    display: grid;
}

.category-card {
    text-align: center;
    min-width: 0;
    overflow: visible;
}

.category-media {
    height: 260px;
    border-radius: 13px;
    background-color: var(--image-gray);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(75, 36, 24, .12);
}

.category-icon {
    width: 54px;
    height: 54px;
    position: relative;
    z-index: 2;
    margin: -30px auto 10px;
    background: #fff7f1;
    border: 4px solid #f1e1d3;
    border-radius: 50%;
    box-shadow: 0 7px 16px rgba(75, 36, 24, .14);
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon svg {
    width: 30px;
    height: 30px;
}

.category-name {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.35;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
    hyphens: auto;
    padding-inline: 2px;
}

/* ---- Featured ---- */

.featured {
    background: linear-gradient(90deg, #f7ebe1 0%, #fff8f1 100%);
    padding: 56px 0 65px;
}

.featured-layout {
    display: grid;
    grid-template-columns: 295px 1fr;
    gap: 42px;
    align-items: start;
}

.tag {
    color: var(--gold);
    letter-spacing: .28em;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
}

.featured-intro h2 {
    margin: 18px 0 26px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 45px;
    line-height: 1.03;
    font-weight: 500;
    letter-spacing: -.035em;
}

.small-line {
    width: 64px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 22px;
}

.featured-intro p {
    font-size: 14px;
    line-height: 1.65;
    font-weight: 600;
    margin-bottom: 32px;
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.product-card {
    background: #fff8f2;
    border: 1px solid rgba(75, 36, 24, .14);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(75, 36, 24, .1);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
}

.product-media {
    height: 260px;
    background-color: var(--image-gray);
    position: relative;
    overflow: hidden;
}

.product-card--home .product-card-media-link {
    color: inherit;
    text-decoration: none;
    display: block;
}

.product-card--home .product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 16px 12px 18px;
    font-size: 13px;
    font-weight: 500;
}

.product-card--home .product-card-title-link {
    color: inherit;
    text-decoration: none;
}

.product-card--home .product-info h3 {
    margin: 0 0 9px;
    font-size: 13px;
    font-weight: 500;
}

.product-card--home .product-prices {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
}

.product-card--home .price-old {
    font-size: 11px;
    font-weight: 400;
    color: #8a7b72;
    text-decoration: line-through;
}

.product-card--home .price {
    font-weight: 500;
    color: #2d1510;
}

.product-card--home .product-wishlist,
.product-card--home .product-quick-add {
    display: none;
}

/* Botão Comprar — cards públicos */
.product-card-buy-form {
    margin-top: auto;
    align-self: flex-start;
    width: auto;
    max-width: 100%;
}

.product-card-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 36px;
    height: 36px;
    padding: 0 18px;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--gold);
    border-radius: 2px;
    background: transparent;
    color: var(--brown);
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.product-card-buy:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.product-card-buy:focus-visible {
    outline: 2px solid var(--brown);
    outline-offset: 2px;
}

.product-card-buy--disabled,
.product-card-buy--disabled:hover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    align-self: flex-start;
    width: auto;
    min-height: 36px;
    height: 36px;
    padding: 0 18px;
    border-color: rgba(75, 36, 24, .28);
    background: transparent;
    color: #9a8173;
    cursor: not-allowed;
    pointer-events: none;
}

.view-all {
    text-align: center;
    margin-top: 32px;
    font-size: 13px;
    font-weight: 500;
    color: var(--brown);
    text-decoration: underline;
    text-underline-offset: 6px;
}

/* ---- Info banners ---- */

.info-banners {
    padding: 48px 0 60px;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.15fr 1.35fr;
    gap: 14px;
}

.info-banner {
    min-height: 265px;
    border-radius: 10px;
    overflow: hidden;
    background: #efdccc;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.info-banner:nth-child(2) {
    grid-template-columns: 1.08fr 1fr;
}

.info-banner:nth-child(3) {
    grid-template-columns: .95fr 1.05fr;
}

.banner-image {
    position: relative;
    background-color: var(--image-gray);
    overflow: hidden;
}

.banner-text {
    padding: 46px 28px;
    color: var(--brown-dark);
}

.banner-text .tag {
    display: block;
    color: var(--brown);
    font-size: 12px;
    letter-spacing: .27em;
    margin-bottom: 8px;
}

.banner-text h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
    line-height: 1.02;
    font-weight: 500;
    margin: 0 0 20px;
}

.banner-text p {
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* ---- Trust & social ---- */

.social-title {
    margin-top: 0;
    margin-bottom: 34px;
}

.trust-social {
    padding: 10px 0 62px;
}

.trust-social-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 180px));
    justify-content: center;
    border-right: 1px solid var(--line);
    flex: 0 1 auto;
}

.trust-item {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 11px;
    align-items: center;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
    padding: 10px 18px;
}

.trust-item + .trust-item {
    border-left: 1px solid var(--line);
}

.trust-item svg {
    width: 42px;
    height: 42px;
    color: var(--brown);
}

.trust-social:not(.pdp-trust) .trust-item {
    font-weight: 500;
}

.follow-card {
    min-height: 120px;
    width: 100%;
    max-width: 235px;
    flex: 0 1 235px;
    background: rgba(255, 250, 245, .82);
    border: 1px solid rgba(75, 36, 24, .10);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(75, 36, 24, .08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    font-weight: 800;
    font-size: 11px;
    padding: 22px 18px;
}

.follow-card svg {
    width: 30px;
    height: 30px;
}

.follow-card strong {
    display: block;
    margin: 2px 0;
}

.trust-social:not(.pdp-trust) .follow-card,
.trust-social:not(.pdp-trust) .follow-card strong {
    font-weight: 500;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    width: 100%;
    max-width: 386px;
    flex: 0 1 386px;
}

.insta-thumb {
    aspect-ratio: 1 / 1;
    border-radius: 7px;
    background-color: var(--image-gray);
    position: relative;
    overflow: hidden;
    display: block;
}

/* ---- Footer ---- */

.footer {
    background: #f3e4d6;
    border-top: 1px solid rgba(75, 36, 24, .12);
    padding-top: 45px;
    color: var(--brown-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1fr 1.5fr;
    gap: 28px;
    padding-bottom: 38px;
}

.footer-brand {
    border-right: 1px solid var(--line);
    padding-right: 30px;
}

.footer-logo .logo-diamond {
    width: 42px;
    height: 30px;
    margin-bottom: 8px;
}

.footer-logo .logo-main {
    font-size: 37px;
}

.footer-logo .logo-sub {
    font-size: 10px;
}

.footer-logo-img {
    max-height: 64px;
    width: auto;
}

.footer-brand p {
    max-width: 170px;
    font-size: 13px;
    line-height: 1.45;
}

.footer h4,
.footer-col h4 {
    margin: 0 0 18px;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer a,
.footer-col a {
    display: block;
    margin: 10px 0;
    font-size: 12px;
    font-weight: 400;
}

.footer-col a:hover {
    color: var(--gold);
}

.payments,
.footer-payment-icons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 18px;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 240px;
}

.pay,
.footer-payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: 100%;
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: var(--brown-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    line-height: 1;
    opacity: .92;
}

.footer-payment-icon img {
    display: block;
    width: auto;
    height: 18px;
    max-width: 100%;
    object-fit: contain;
}

.footer-payment-icon--text {
    font-size: 11px;
    text-transform: none;
    opacity: .75;
    text-align: center;
}

.footer-bottom {
    height: 42px;
    border-top: 1px solid rgba(75, 36, 24, .10);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-size: 11px;
    font-weight: 600;
}

.footer-bottom svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

/* ---- WhatsApp ---- */

.whatsapp,
.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #c9823a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(95, 53, 36, .28);
    z-index: 20;
    transition: transform var(--transition), background var(--transition);
}

.whatsapp:hover,
.whatsapp-float:hover {
    transform: scale(1.05);
    background: var(--gold-dark);
    color: #fff;
}

.whatsapp svg,
.whatsapp-float svg {
    width: 31px;
    height: 31px;
}

/* ---- Image placeholders & fill ---- */

.hero-image:not(.has-real-image),
.category-media,
.product-media,
.banner-image,
.insta-thumb {
    background: #c9c9c9 !important;
    background-image: none !important;
}

.hero-image.has-real-image {
    background-color: #f1dfd2 !important;
    background-image: none !important;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 100%;
}

.hero-image.has-real-image::after {
    background:
        linear-gradient(
            90deg,
            rgba(251, 245, 238, .96) 0%,
            rgba(251, 245, 238, .82) 30%,
            rgba(251, 245, 238, .46) 54%,
            rgba(36, 17, 12, .10) 80%,
            rgba(36, 17, 12, .05) 100%
        );
    pointer-events: none;
}

.hero-content {
    max-width: 560px;
}

.category-media,
.product-media,
.banner-image,
.insta-thumb {
    display: block;
    width: 100%;
    min-width: 100%;
}

.category-media {
    aspect-ratio: 3 / 4;
    height: auto;
}

.product-media {
    aspect-ratio: 1.06 / 1;
    height: auto;
}

.banner-image {
    min-height: 265px;
}

.insta-thumb {
    aspect-ratio: 1 / 1;
}

.placeholder-label {
    display: none;
}

.hero-image.has-real-image img,
.category-media.has-real-image img,
.product-media.has-real-image img,
.banner-image.has-real-image img,
.insta-thumb.has-real-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-image.has-real-image img {
    object-position: 68% 30%;
    transform: scale(0.94);
    transform-origin: 68% 32%;
}

/* ---- Responsive ---- */

@media (max-width: 860px) {
    .hero-image.has-real-image::after {
        background:
            linear-gradient(
                180deg,
                rgba(251, 245, 238, .97) 0%,
                rgba(251, 245, 238, .84) 34%,
                rgba(251, 245, 238, .42) 62%,
                rgba(36, 17, 12, .07) 100%
            );
    }

    .hero-image.has-real-image img {
        object-position: 58% 22%;
        transform: scale(0.97);
        transform-origin: 58% 24%;
    }

    .category-media {
        height: auto;
        aspect-ratio: 3 / 4;
    }

    .product-media {
        height: auto;
        aspect-ratio: 1.06 / 1;
    }

    .banner-image {
        min-height: 240px;
    }
}

@media (max-width: 1180px) {
    .category-row {
        grid-template-columns: repeat(auto-fit, minmax(140px, 180px));
        justify-content: center;
    }

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

    .banner-grid {
        grid-template-columns: 1fr;
    }

    .trust-social-inner {
        justify-content: center;
    }

    .trust-grid {
        border-right: 0;
        grid-template-columns: repeat(2, minmax(130px, 180px));
        justify-content: center;
    }
}

/* Tablet: 3 categorias fixas em grade */
@media (min-width: 576px) and (max-width: 1024px) {
    .categories {
        overflow-x: hidden;
    }

    .home-categories--tablet {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: stretch;
        gap: 16px;
        overflow: visible;
    }

    .home-categories--mobile,
    .home-categories--desktop {
        display: none;
    }

    .home-categories--tablet .category-media {
        height: auto;
        aspect-ratio: 3 / 4;
    }

    .home-categories--tablet .category-name {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .topbar {
        overflow-x: auto;
    }

    .topbar-inner {
        width: max-content;
        grid-template-columns: repeat(3, auto);
        gap: 32px;
    }

    .header-main {
        height: 104px;
    }

    .logo:has(> .logo-img) {
        min-height: 72px;
        padding: 6px 8px;
    }

    .logo-img {
        max-width: 140px;
        max-height: 72px;
    }

    .logo-main {
        font-size: 34px;
    }

    .logo-sub {
        font-size: 10px;
    }

    .logo-diamond {
        width: 42px;
        height: 30px;
    }

    .header-actions {
        gap: 7px;
    }

    .icon-btn.account,
    .header-icon-btn--account {
        display: none;
    }

    .hero,
    .hero-grid {
        min-height: clamp(420px, 72vh, 520px);
    }

    .hero-grid {
        display: flex;
        align-items: flex-start;
        padding-top: 48px;
        padding-bottom: clamp(48px, 8vh, 72px);
    }

    .hero-content {
        padding: 0 24px 0;
        max-width: 100%;
    }

    .hero + .benefits {
        margin-top: 0;
    }

    .hero-image {
        inset: 0;
        height: 100%;
        min-height: 100%;
    }

    .eyebrow {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .divider {
        width: min(330px, 100%);
    }

    .hero-actions {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 8px;
    }

    .benefits-inner {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .benefit {
        min-width: 210px;
        scroll-snap-align: start;
    }

    .featured-layout {
        grid-template-columns: 1fr;
    }

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

    .product-media {
        height: 190px;
    }

    .banner-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .info-banner,
    .info-banner:nth-child(2),
    .info-banner:nth-child(3) {
        grid-template-columns: 1fr;
    }

    .banner-image {
        min-height: 210px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(130px, 180px));
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        border-right: 0;
    }

    .footer-payment-icons {
        max-width: 220px;
        gap: 12px 14px;
    }
}

@media (max-width: 575px) {
    .categories {
        overflow-x: hidden;
        padding-top: 52px;
        padding-bottom: 40px;
    }

    .home-categories--mobile {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
        gap: 12px;
        overflow: visible;
    }

    .home-categories--tablet,
    .home-categories--desktop {
        display: none;
    }

    .home-categories--mobile .category-media {
        height: auto;
        aspect-ratio: 3 / 4;
        border-radius: 12px;
    }

    .home-categories--mobile .category-icon {
        width: 48px;
        height: 48px;
        margin: -26px auto 10px;
        border-width: 3px;
    }

    .home-categories--mobile .category-icon svg {
        width: 26px;
        height: 26px;
    }

    .home-categories--mobile .category-name {
        font-size: 11px;
        letter-spacing: .04em;
        line-height: 1.4;
        padding-inline: 4px;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
}

@media (max-width: 520px) {
    .topbar {
        height: 40px;
    }

    .menu-btn svg,
    .icon-btn svg {
        width: 23px;
        height: 23px;
    }

    .logo-main {
        font-size: 27px;
    }

    .hero-content {
        padding-inline: 18px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-grid {
        padding-top: 44px;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 50px;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 13px;
        letter-spacing: .22em;
    }

    .products,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-payment-icons {
        max-width: 260px;
        gap: 14px 16px;
    }

    .trust-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        grid-template-columns: none;
        width: 100%;
    }

    .trust-grid .trust-item {
        flex: 0 1 min(180px, 100%);
        max-width: 180px;
        border-left: 0;
    }
}

@media (max-width: 1024px) {
    /* Menu horizontal do desktop: só hambúrguer + drawer em tablet/celular */
    .site-header > nav.nav.header-nav {
        display: none;
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        overflow: hidden;
        visibility: hidden;
        pointer-events: none;
    }

    .menu-btn.menu-toggle {
        visibility: visible;
        pointer-events: auto;
    }
}

@media (min-width: 1025px) {
    .menu-btn,
    .menu-toggle {
        visibility: hidden;
        pointer-events: none;
    }

    .hero-actions {
        flex-wrap: nowrap;
    }
}

/* ---- Site extras ---- */

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
}

.mobile-menu.is-open {
    pointer-events: auto;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(36, 17, 12, .45);
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-menu.is-open .mobile-menu-backdrop {
    opacity: 1;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--cream);
    transform: translateX(-100%);
    transition: transform var(--transition);
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

.mobile-menu.is-open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.mobile-menu-close {
    border: none;
    background: none;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    color: var(--brown-dark);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.mobile-nav a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.88rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brown);
}

.mobile-nav a:hover {
    color: var(--gold);
}

/* Toast */
.toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 150;
    padding: 0.85rem 1.25rem;
    border-radius: 4px;
    font-size: 0.85rem;
    box-shadow: var(--shadow);
}

.toast-success {
    background: #d8f3dc;
    color: var(--color-success);
}

.toast-error {
    background: #fde8e8;
    color: var(--color-error);
}

/* Breadcrumb */
.breadcrumb {
    background: var(--cream);
    font-size: 0.75rem;
    color: var(--brown);
    border-bottom: 1px solid rgba(75, 36, 24, .08);
}

.breadcrumb .container {
    padding-block: 0.75rem;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb-sep {
    margin: 0 0.4rem;
    opacity: 0.5;
}

/* Page hero (cart, auth) */
.page-hero {
    background: var(--soft-bg);
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(75, 36, 24, .08);
}

.page-hero-compact {
    padding: 2rem 0;
}

.section-eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.page-title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 500;
    color: var(--brown-dark);
}

/* ---- Category page (referência: categorias.html) ---- */

.category-hero {
    height: var(--catalog-hero-height, 300px);
    display: flex;
    align-items: center;
    width: 100%;
}

.category-hero--has-image {
    background:
        linear-gradient(
            90deg,
            rgba(var(--catalog-hero-overlay-rgb, 255, 247, 241), var(--catalog-hero-overlay-opacity, 0.78)) 0%,
            rgba(var(--catalog-hero-overlay-rgb, 255, 247, 241), calc(var(--catalog-hero-overlay-opacity, 0.78) * 0.75)) 38%,
            rgba(var(--catalog-hero-overlay-rgb, 255, 247, 241), calc(var(--catalog-hero-overlay-opacity, 0.78) * 0.1)) 68%
        ),
        var(--category-hero-image) center center / cover no-repeat;
}

.category-hero--beige {
    background: linear-gradient(90deg, #fff7f1 0%, #f3e8de 55%, #ead7c8 100%);
}

.category-hero-inner {
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
    padding: 0 70px;
}

.category-hero-inner h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.8rem, 6vw, 4.25rem);
    margin: 0 0 20px;
    font-weight: 600;
    color: var(--catalog-hero-title-color, #20130f);
    line-height: 1;
}

.category-hero-inner p {
    max-width: var(--catalog-hero-text-max, 390px);
    margin: 0;
    color: var(--catalog-hero-subtitle-color, #3f3029);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}

.category-hero--align-center .category-hero-inner {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.category-hero--align-center .category-hero-inner p {
    margin-left: auto;
    margin-right: auto;
}

.category-hero--align-right .category-hero-inner {
    text-align: right;
    margin-left: auto;
}

.category-hero--align-right .category-hero-inner p {
    margin-left: auto;
}

.catalog-hero-btn {
    margin-top: 18px;
    display: inline-block;
}

.catalog-page {
    max-width: 1260px;
    margin: 0 auto;
    padding: 28px 26px 70px;
}

.catalog-breadcrumb {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #9a8173;
    font-size: 12px;
    margin-bottom: 34px;
}

.catalog-breadcrumb a:hover {
    color: var(--gold);
}

.catalog-breadcrumb-sep {
    opacity: .8;
}

.catalog-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

.catalog-sidebar {
    background: var(--catalog-sidebar-bg, #fffaf6);
    border-radius: 4px;
    padding: 30px 24px;
    align-self: start;
}

.catalog-sidebar-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--brown);
    margin: 0 0 24px;
}

.catalog-search-box {
    position: relative;
    margin-bottom: 30px;
}

.catalog-search-box input {
    width: 100%;
    height: 44px;
    border: 1px solid #decfc5;
    border-radius: 4px;
    background: #fff;
    padding: 0 42px 0 16px;
    color: var(--brown-dark);
    font-size: 13px;
}

.catalog-search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b4a38;
    pointer-events: none;
    display: flex;
}

.catalog-search-icon svg {
    width: 18px;
    height: 18px;
}

.catalog-filter-block {
    border-top: 1px solid #e2d5cb;
    padding-top: 24px;
    margin-top: 24px;
}

.catalog-filter-block h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 0 18px;
    color: var(--brown);
}

.catalog-filter-subtitle {
    margin-top: 0 !important;
}

.catalog-filter-row {
    display: flex;
    justify-content: space-between;
    color: #634d43;
    font-size: 13px;
    margin-bottom: 17px;
    gap: 12px;
}

.catalog-filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-filter-box {
    width: 16px;
    height: 16px;
    border: 1px solid #c9b8ae;
    background: #fff;
    border-radius: 2px;
    flex-shrink: 0;
    font-style: normal;
}

.catalog-filter-range {
    height: 4px;
    background: #6b3e22;
    border-radius: 999px;
    margin: 8px 0 18px;
    position: relative;
}

.catalog-filter-range::before,
.catalog-filter-range::after {
    content: "";
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #6b3e22;
    position: absolute;
    top: -5px;
}

.catalog-filter-range::before { left: 0; }
.catalog-filter-range::after { right: 0; }

.catalog-filter-clear {
    width: 100%;
    height: 42px;
    border: 1px solid #c9b8ae;
    background: transparent;
    border-radius: 4px;
    color: var(--brown);
    font-weight: 700;
    margin-top: 10px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: .04em;
}

.catalog-filter-clear:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.catalog-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    gap: 16px;
}

.catalog-head p {
    margin: 0;
    color: #4e3b32;
    font-weight: 500;
    font-size: 14px;
}

.catalog-sort {
    height: 42px;
    border: 1px solid #ded0c7;
    border-radius: 4px;
    background: #fffaf6;
    padding: 0 18px;
    color: #5a443a;
    font-size: 13px;
    min-width: 220px;
}

.catalog-product-grid {
    display: grid;
    grid-template-columns: repeat(var(--catalog-grid-tablet, 2), 1fr);
    gap: var(--catalog-grid-gap-y, 28px) var(--catalog-grid-gap-x, 24px);
    align-items: stretch;
}

.catalog-content--no-sidebar {
    grid-template-columns: 1fr !important;
}

.catalog-sidebar-empty {
    color: #9a8173;
    font-size: 13px;
    margin: 0;
}

.catalog-empty {
    text-align: center;
    color: #634d43;
    padding: 3rem 1rem;
    font-size: 14px;
}

/* Product card — catalog */
.product-card--catalog {
    text-align: left;
    background: #fffaf6;
    border-radius: var(--catalog-card-radius, 4px);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card--catalog .product-card-media {
    position: relative;
    aspect-ratio: 1 / var(--catalog-card-aspect, 0.86);
    background: #ded8d2;
    overflow: hidden;
}

.product-card-sku {
    display: block;
    font-size: 11px;
    color: #9a8173;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.product-card--catalog .product-card-media:not(.has-real-image)::after {
    content: var(--product-placeholder-text, "Imagem do produto");
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #9a8f87;
    font-size: 13px;
    font-weight: 500;
    pointer-events: none;
}

.product-card--catalog .product-card-image-link {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 1;
}

.product-card--catalog .product-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 6px 9px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.badge-sale {
    background: #111;
    color: #fff;
}

.badge-new,
.badge-launch {
    background: #c78342;
    color: #fff;
}

.product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8e6f5d;
    padding: 0;
    transition: color var(--transition);
}

.product-wishlist.is-active {
    color: var(--gold);
}

.product-wishlist.is-active svg {
    fill: var(--gold);
    stroke: var(--gold);
}

.product-wishlist svg {
    width: 22px;
    height: 22px;
}

.product-quick-add {
    position: absolute;
    right: 14px;
    bottom: 18px;
    z-index: 3;
    margin: 0;
}

.product-cart-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--gold);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background var(--transition);
    box-shadow: 0 4px 12px rgba(95, 54, 28, .2);
}

.product-cart-btn:hover {
    background: var(--gold-dark);
}

.product-cart-btn svg {
    width: 18px;
    height: 18px;
}

.product-card--catalog .product-card-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
    padding: 16px 14px 20px;
    position: relative;
}

.product-card--catalog .product-card-title-link {
    color: inherit;
    text-decoration: none;
}

.product-card--catalog .product-card-title {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 10px;
    line-height: 1.4;
    color: #33221a;
}

.product-card--catalog .product-card-title-link:hover .product-card-title {
    color: var(--gold);
}

.product-card-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    margin-bottom: 14px;
}

.product-card-price {
    font-weight: 500;
    font-size: 18px;
    color: #1d120e;
}

.product-card-price-old {
    font-size: 13px;
    color: #8a7b72;
    text-decoration: line-through;
    font-weight: 400;
}

.product-card-installment {
    display: block;
    font-size: 13px;
    color: #4f3b32;
}

.catalog-pagination {
    display: flex;
    justify-content: center;
    gap: 22px;
    align-items: center;
    margin: 44px 0 0;
    color: #3d2b23;
    font-size: 14px;
}

.catalog-pagination-link,
.catalog-pagination-ellipsis,
.catalog-pagination-next {
    min-width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #3d2b23;
    font-size: 14px;
}

.catalog-pagination-link.is-active,
.catalog-pagination-link:hover {
    background: var(--brown);
    color: #fff;
}

.catalog-pagination-next.is-disabled {
    opacity: .35;
    pointer-events: none;
}

.benefits--catalog {
    background: #fffaf6;
    border-top: 1px solid #f0e5dd;
    border-bottom: 1px solid #f0e5dd;
    padding: 46px 0;
}

.benefits--catalog .benefits-inner {
    max-width: 1160px;
    margin: 0 auto;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    gap: 20px;
    min-height: 0;
}

.benefits--catalog .benefit {
    font-size: 12px;
    font-weight: 500;
    padding: 0 12px;
    gap: 10px;
}

.benefits--catalog .benefit + .benefit {
    border-left: none;
}

.benefits--catalog .benefit svg {
    width: 34px;
    height: 34px;
    color: #b98559;
    stroke-width: 1.2;
}

/* Listagem geral /produtos (layout legado) */
.catalog-layout {
    padding: 2rem 0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.catalog-count {
    margin: 0;
    font-size: 0.85rem;
    color: var(--brown);
}

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

.category-hero--compact {
    height: 200px;
    background: linear-gradient(90deg, #fff7f1 0%, #ead7c8 100%);
    align-items: center;
}

.category-hero-overlay {
    display: none;
}

.category-hero-content {
    position: relative;
    z-index: 2;
    color: #20130f;
    padding: 2rem 0;
}

.category-hero-content h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.category-hero-content p {
    margin: 0;
    font-size: 0.92rem;
    color: #3f3029;
    max-width: 480px;
}

@media (min-width: 901px) {
    .catalog-grid {
        grid-template-columns: 270px 1fr;
        gap: 36px;
    }

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

/* Form controls (outras páginas) */
.form-control {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(75, 36, 24, .18);
    border-radius: 4px;
    background: #fff;
    font-size: 0.82rem;
    color: var(--brown-dark);
}

.form-control-sm {
    padding: 0.4rem 0.6rem;
    font-size: 0.78rem;
    width: auto;
}

/* Pagination genérica (outras páginas) */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.pagination-link {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.82rem;
    color: var(--brown);
    transition: all var(--transition);
}

.pagination-link.is-active,
.pagination-link:hover {
    background: var(--brown-dark);
    color: #fff;
}

/* Product detail page (PDP) */
.pdp {
    background: #fffaf7;
}

.pdp-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 26px 32px 0;
}

.pdp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    font-size: 12px;
    color: #92786a;
    margin-bottom: 24px;
}

.pdp-breadcrumb a {
    color: inherit;
}

.pdp-breadcrumb a:hover {
    color: var(--gold);
}

.pdp-breadcrumb strong {
    color: var(--brown-dark);
    font-weight: 600;
}

.pdp-layout {
    display: grid;
    grid-template-columns: 704px 1fr;
    gap: 38px;
    align-items: start;
}

.pdp-gallery {
    display: grid;
    grid-template-columns: 124px 1fr;
    gap: 14px;
}

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

.pdp-gallery--top .pdp-thumbs {
    order: -1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-self: stretch;
}

.pdp-gallery--top .pdp-thumb,
.pdp-gallery--top .product-thumb.pdp-thumb {
    height: 70px;
}

.pdp-thumbs {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    align-self: start;
    gap: 12px;
}

.pdp-thumb,
.product-thumb.pdp-thumb {
    height: 112px;
    padding: 0;
    border: 1px solid #f0ded1;
    border-radius: 7px;
    overflow: hidden;
    cursor: pointer;
    background: #f1dfd4;
    display: block;
    width: 100%;
}

.pdp-thumb.is-active,
.product-thumb.pdp-thumb.is-active {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}

.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdp-thumb-placeholder {
    display: grid;
    place-items: center;
    height: 100%;
    font-size: 11px;
    font-weight: 600;
    color: #7b6254;
}

.pdp-main-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 580px;
    border-radius: 7px;
    overflow: hidden;
    background: #f8f1ea;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-main-photo img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.pdp-main-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: #e8ddd4;
    color: #7b6254;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.pdp-main-discount {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 2;
    background: #080808;
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 800;
    padding: 8px 13px;
}

.pdp-zoom {
    position: absolute;
    right: 17px;
    bottom: 17px;
    z-index: 2;
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 6px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #7a5a46;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(71, 36, 22, .12);
}

.pdp-zoom svg {
    width: 18px;
    height: 18px;
}

.pdp-summary {
    padding-top: 2px;
}

.pdp-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.pdp-badge {
    height: 25px;
    padding: 0 13px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
}

.pdp-badge--dark {
    background: #111;
    color: #fff;
}

.pdp-badge--outline {
    border: 1px solid #cba17f;
    color: #a06b46;
    background: transparent;
}

.pdp-summary h1 {
    margin: 0 0 14px;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    font-size: 45px;
    font-weight: 600;
    line-height: 1;
    color: var(--brown-dark);
}

.pdp-code-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    color: #6e5a4f;
    font-size: 13px;
    margin-bottom: 25px;
}

.pdp-stars {
    color: #c78d54;
    letter-spacing: 3px;
    font-size: 16px;
}

.pdp-stars span {
    color: #5a4034;
    letter-spacing: 0;
    font-size: 13px;
    margin-left: 8px;
}

.pdp-price {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 8px;
}

.pdp-price strong {
    font-size: 32px;
    font-weight: 800;
    color: var(--brown-dark);
}

.pdp-price del {
    color: #917a70;
    font-size: 20px;
    font-weight: 700;
}

.pdp-installment {
    font-size: 13px;
    color: #4b372d;
    font-weight: 600;
    margin-bottom: 28px;
}

.pdp-desc {
    max-width: 500px;
    color: #3f2d25;
    line-height: 1.8;
    margin: 0 0 26px;
}

.pdp-option-block {
    margin-bottom: 24px;
}

.pdp-option-title {
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    color: var(--brown-dark);
}

.pdp-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pdp-option,
.pdp-options .option-btn {
    min-width: 102px;
    height: 45px;
    padding: 0 14px;
    border: 1px solid #e3cfc0;
    border-radius: 5px;
    background: #fffaf6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5b4034;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.pdp-option.is-active,
.pdp-options .option-btn.is-active {
    border-color: var(--gold);
    background: #fff8f2;
    color: #5b4034;
    font-weight: 600;
}

.pdp-extender {
    margin-top: 10px;
    color: #c28a54;
    font-size: 13px;
    font-weight: 600;
}

.pdp-qty-wrap {
    margin-top: 22px;
    max-width: 485px;
}

.pdp-qty-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #7a5a48;
    margin-bottom: 8px;
}

.pdp-qty {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #dcc9b8;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.pdp-qty-btn {
    width: 42px;
    border: none;
    background: #faf6f1;
    color: #5c3928;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s ease;
}

.pdp-qty-btn:hover:not(:disabled) {
    background: #f3ebe1;
}

.pdp-qty-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.pdp-qty-input {
    width: 56px;
    border: none;
    border-left: 1px solid #dcc9b8;
    border-right: 1px solid #dcc9b8;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #50372d;
    font-family: inherit;
    -moz-appearance: textfield;
    appearance: textfield;
    background: #fff;
}

.pdp-qty-input::-webkit-outer-spin-button,
.pdp-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pdp-qty-input:disabled {
    background: #f7f3ef;
    color: #9a8778;
}

.pdp-stock-msg {
    margin: 10px 0 0;
    font-size: 13px;
    color: #9a6b4f;
    font-weight: 600;
}

.pdp-actions {
    margin-top: 18px;
    max-width: 485px;
}

.pdp-btn {
    height: 51px;
    border-radius: 5px;
    width: 100%;
    border: 1px solid #b9824f;
    font-weight: 800;
    letter-spacing: .04em;
    cursor: pointer;
    font-size: 13px;
    background: transparent;
    color: #5c3928;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: inherit;
}

.pdp-btn--primary {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    margin-bottom: 13px;
    position: relative;
    padding-right: 52px;
}

.pdp-btn--primary span {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
}

.pdp-btn--primary svg {
    width: 20px;
    height: 20px;
}

.pdp-favorite {
    display: flex;
    gap: 9px;
    margin-top: 18px;
    color: #50372d;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
    padding: 0;
}

.pdp-favorite:hover {
    color: var(--gold);
}

.benefits--pdp {
    margin: 66px auto 34px;
    max-width: 1090px;
    padding: 0 32px;
    z-index: 1;
}

.benefits--pdp .benefits-inner {
    grid-template-columns: repeat(6, 1fr);
    min-height: 118px;
    border-radius: 9px;
    box-shadow: 0 12px 35px rgba(84, 46, 27, .06);
}

.benefits--pdp .benefit {
    font-size: 12px;
    padding: 20px 12px;
}

.pdp-details {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px 56px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 34px;
}

.pdp-accordion {
    background: #fffaf6;
    border: 1px solid #eaded4;
    border-radius: 6px;
    overflow: hidden;
}

.pdp-acc-item {
    border-bottom: 1px solid #eaded4;
}

.pdp-acc-item:last-child {
    border-bottom: 0;
}

.pdp-acc-title {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    color: var(--brown-dark);
    text-align: left;
}

.pdp-acc-text {
    display: none;
    padding: 0 18px 20px;
    line-height: 1.7;
    font-size: 13px;
    color: #4e3b32;
}

.pdp-acc-item.is-open .pdp-acc-text {
    display: block;
}

.pdp-specs {
    display: grid;
    gap: 8px;
    margin: 0;
}

.pdp-specs div {
    display: flex;
    gap: 8px;
}

.pdp-specs dt {
    min-width: 72px;
    color: #7b6254;
}

.pdp-specs dd {
    margin: 0;
    font-weight: 600;
}

.pdp-related h2,
.pdp-recommend h2 {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 800;
    color: var(--brown-dark);
}

.pdp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pdp-recommend {
    max-width: 1180px;
    margin: 0 auto 56px;
    padding: 0 32px;
}

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

.pdp-mini-card {
    position: relative;
}

.pdp-mini-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.pdp-mini-heart {
    position: absolute;
    top: 8px;
    right: 9px;
    z-index: 2;
    border: none;
    background: none;
    color: #7b5a4a;
    font-size: 21px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.pdp-mini-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 7px;
    border-radius: 3px;
}

.pdp-mini-badge--new {
    background: #c78342;
}

.pdp-mini-img {
    height: 145px;
    border-radius: 5px;
    background: #f1dfd4;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}

.pdp-recommend .pdp-mini-img {
    height: 152px;
}

.pdp-mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdp-mini-placeholder {
    display: grid;
    place-items: center;
    height: 100%;
    font-size: 11px;
    font-weight: 600;
    color: #7b6254;
    text-align: center;
    padding: 8px;
}

.pdp-mini-title {
    font-size: 13px;
    margin: 0 0 8px;
    font-weight: 600;
    line-height: 1.35;
}

.pdp-mini-price {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 5px;
}

.pdp-mini-price del {
    font-size: 11px;
    color: #8a7b72;
    margin-left: 6px;
    font-weight: 700;
}

.pdp-mini-install {
    font-size: 11px;
    color: #4b372d;
}

.pdp-trust {
    background: #fff4ed;
    padding: 32px 0;
    border-top: 1px solid #f0e5dd;
    border-bottom: 1px solid #f0e5dd;
}

.pdp-trust-inner {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.pdp-trust .trust-item {
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    min-height: auto;
    border: 0;
    padding: 0;
    flex: 0 1 160px;
    max-width: 180px;
    min-width: 130px;
}

.pdp-trust .trust-grid {
    display: contents;
    border: 0;
}

.pdp-trust .trust-item + .trust-item {
    border-left: 0;
}

.pdp-trust .follow-card {
    flex: 0 1 200px;
    max-width: 220px;
    margin-left: 0;
    margin-right: 0;
}

.pdp-trust .insta-grid {
    flex: 0 1 320px;
    max-width: 360px;
}

.pdp-trust .trust-item svg {
    width: 34px;
    height: 34px;
    color: #b98559;
    margin-bottom: 8px;
}

.pdp-insta-box {
    border-radius: 10px;
    min-height: 120px;
}

.pdp-insta-placeholder {
    background: #e8ddd4;
}

/* Cart & Checkout */
.cart-page,
.checkout-page {
    padding-bottom: 3rem;
}

.page-hero-compact + .cart-page,
.page-hero-compact + .checkout-page {
    padding-top: 2.25rem;
}

.page-hero-compact:has(+ .cart-page),
.page-hero-compact:has(+ .checkout-page) {
    padding-bottom: 0;
    border-bottom: none;
}

.checkout-shell {
    max-width: 1280px;
    margin: 0 auto;
}

.checkout-layout,
.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2.5rem;
    align-items: start;
}

.checkout-main {
    min-width: 0;
}

.checkout-panel {
    background: #fff;
    border: 1px solid rgba(75, 36, 24, .1);
    border-radius: 8px;
    padding: 1.75rem;
}

.checkout-panel-head {
    margin-bottom: 1.5rem;
}

.checkout-panel-title {
    margin: 0 0 .5rem;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--brown-dark);
}

.checkout-panel-lead {
    margin: 0;
    font-size: .92rem;
    line-height: 1.6;
    color: rgba(74, 55, 40, .72);
}

/* Steps */
.checkout-page .checkout-steps,
.cart-page .checkout-steps {
    margin-top: 0;
    margin-bottom: 2.75rem;
    padding: 0.625rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.checkout-steps {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.checkout-steps-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: min(100%, 720px);
}

.checkout-step {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .45rem;
    position: relative;
    padding: 0 .35rem .25rem;
    text-align: center;
    min-width: 72px;
}

.checkout-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1rem;
    left: calc(50% + 1rem);
    width: calc(100% - 2rem);
    height: 1px;
    background: rgba(75, 36, 24, .14);
    pointer-events: none;
}

.checkout-step.is-done:not(:last-child)::after {
    background: rgba(201, 130, 58, .45);
}

.checkout-step-marker {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(75, 36, 24, .18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 700;
    color: rgba(74, 55, 40, .45);
    background: #fff;
    position: relative;
    z-index: 1;
}

.checkout-step-label {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: rgba(74, 55, 40, .45);
    line-height: 1.25;
}

.checkout-step.is-active .checkout-step-marker {
    border-color: var(--brown-dark);
    color: #fff;
    background: var(--brown-dark);
}

.checkout-step.is-active .checkout-step-label {
    color: var(--brown-dark);
}

.checkout-step.is-done .checkout-step-marker {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: #fff8f2;
}

.checkout-step.is-done .checkout-step-label {
    color: var(--gold-dark);
}

/* Forms */
.form-grid {
    display: grid;
    gap: 1.1rem;
}

.form-field {
    display: grid;
    gap: .4rem;
}

.form-field--full {
    grid-column: 1 / -1;
}

.checkout-form.form-grid .checkout-actions,
.checkout-form .checkout-actions {
    grid-column: 1 / -1;
}

.form-field-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--brown);
}

.form-field-hint {
    font-size: .78rem;
    color: rgba(74, 55, 40, .58);
    line-height: 1.45;
}

.form-field-status {
    display: block;
    min-height: 1.2em;
    font-size: .78rem;
    line-height: 1.45;
    color: rgba(74, 55, 40, .62);
}

.form-field-status--loading {
    color: rgba(74, 55, 40, .55);
}

.form-field-status--error {
    color: #9b3d3d;
}

.form-field input,
.checkout-form input,
.checkout-form select {
    width: 100%;
    font: inherit;
    padding: .72rem .85rem;
    border: 1px solid rgba(75, 36, 24, .16);
    border-radius: 4px;
    background: #fff;
    color: var(--brown-dark);
    transition: border-color .15s ease, box-shadow .15s ease;
}

.form-field input:focus,
.checkout-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 130, 58, .12);
}

.checkout-form .form-field--cep input {
    max-width: 12rem;
    font-weight: 600;
    letter-spacing: .04em;
}

/* Address form grid */
.form-grid-address {
    display: grid;
    gap: 1rem 1.1rem;
    align-items: start;
}

.form-grid-address .form-field {
    align-self: start;
    min-width: 0;
}

.form-grid-address .form-field input {
    width: 100%;
    min-height: 2.75rem;
    box-sizing: border-box;
}

.form-grid-address .field-cep input {
    max-width: none;
}

.form-grid-address .field-state .input-state {
    max-width: none;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-align: center;
    padding-left: .5rem;
    padding-right: .5rem;
}

.form-grid-address .checkout-actions {
    grid-column: 1 / -1;
    margin-top: .25rem;
}

@media (min-width: 768px) {
    .form-grid-address {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .form-grid-address .field-cep {
        grid-column: span 3;
    }

    .form-grid-address .field-state {
        grid-column: span 2;
    }

    .form-grid-address .field-city {
        grid-column: span 7;
    }

    .form-grid-address .field-street {
        grid-column: span 9;
    }

    .form-grid-address .field-number {
        grid-column: span 3;
    }

    .form-grid-address .field-neighborhood {
        grid-column: span 5;
    }

    .form-grid-address .field-complement {
        grid-column: span 7;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .form-grid-address {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .form-grid-address .field-cep {
        grid-column: span 5;
    }

    .form-grid-address .field-state {
        grid-column: span 3;
    }

    .form-grid-address .field-city,
    .form-grid-address .field-street,
    .form-grid-address .field-neighborhood,
    .form-grid-address .field-complement,
    .form-grid-address .checkout-actions {
        grid-column: 1 / -1;
    }

    .form-grid-address .field-number {
        grid-column: span 4;
    }
}

@media (min-width: 640px) {
    .checkout-form.form-grid:not(.form-grid-address) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Cart items */
.cart-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto;
    grid-template-areas:
        'media details details'
        'media qty subtotal'
        'media remove remove';
    gap: .75rem 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(75, 36, 24, .08);
}

.cart-item:first-child {
    padding-top: 0;
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item-media {
    grid-area: media;
    display: block;
    width: 88px;
    height: 88px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--soft-bg, #f7f0ea);
    border: 1px solid rgba(75, 36, 24, .08);
}

.cart-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-media-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: #e8ddd4;
}

.cart-item-details {
    grid-area: details;
}

.cart-item-name {
    font-weight: 600;
    color: var(--brown-dark);
    text-decoration: none;
    font-size: .95rem;
    line-height: 1.35;
}

.cart-item-name:hover {
    color: var(--gold-dark);
}

.cart-item-variation,
.cart-item-flag {
    margin: .25rem 0 0;
    font-size: .8rem;
    color: rgba(74, 55, 40, .65);
}

.cart-item-flag {
    color: #9a6700;
    font-weight: 600;
}

.cart-item-unit {
    margin: .35rem 0 0;
    font-size: .85rem;
    color: var(--brown);
}

.cart-item-unit span {
    color: rgba(74, 55, 40, .55);
    font-size: .78rem;
}

.cart-item-qty {
    grid-area: qty;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(75, 36, 24, .18);
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.cart-qty-btn {
    width: 34px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--brown);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.cart-qty-btn:hover:not(:disabled) {
    background: rgba(201, 130, 58, .12);
}

.cart-qty-btn:disabled,
.cart-qty-input:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.cart-qty-input,
.form-field--qty input {
    width: 3.2rem;
    height: 36px;
    border: 0;
    border-left: 1px solid rgba(75, 36, 24, .12);
    border-right: 1px solid rgba(75, 36, 24, .12);
    text-align: center;
    font: inherit;
    color: var(--brown-dark);
    background: #fff;
    -moz-appearance: textfield;
}

.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item.is-updating {
    opacity: .72;
}

.cart-status {
    min-height: 1.25rem;
    margin: 0 0 1rem;
    font-size: .86rem;
    color: var(--brown);
}

.cart-status.is-busy {
    color: rgba(74, 55, 40, .7);
}

.cart-status.is-error {
    color: var(--color-error, #9b2226);
}

.cart-item-subtotal {
    grid-area: subtotal;
    text-align: right;
}

.cart-item-subtotal-label {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: rgba(74, 55, 40, .5);
    margin-bottom: .15rem;
}

.cart-item-subtotal strong {
    font-size: 1rem;
    color: var(--brown-dark);
}

.cart-item-remove {
    grid-area: remove;
}

.cart-item-remove-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: .82rem;
    color: rgba(74, 55, 40, .55);
    text-decoration: underline;
    cursor: pointer;
}

.cart-item-remove-btn:hover {
    color: var(--brown-dark);
}

@media (min-width: 768px) {
    .cart-item {
        grid-template-columns: 88px minmax(0, 1fr) 5rem 6.5rem auto;
        grid-template-areas: 'media details qty subtotal remove';
        align-items: center;
    }

    .cart-item-subtotal {
        text-align: right;
    }

    .cart-item-subtotal-label {
        display: none;
    }
}

/* Summary sidebar */
.checkout-sidebar {
    position: relative;
}

.checkout-summary {
    background: #fffaf6;
    border: 1px solid rgba(75, 36, 24, .1);
    border-radius: 8px;
    padding: 1.35rem;
    position: sticky;
    top: 1.25rem;
}

.checkout-summary-title {
    margin: 0 0 1rem;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brown-dark);
}

.checkout-summary-items {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    max-height: 280px;
    overflow-y: auto;
}

.checkout-summary-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: .65rem;
    align-items: start;
    padding: .65rem 0;
    border-bottom: 1px solid rgba(75, 36, 24, .07);
}

.checkout-summary-item:last-child {
    border-bottom: none;
}

.checkout-summary-thumb {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    object-fit: cover;
    background: #f0e6dc;
    border: 1px solid rgba(75, 36, 24, .08);
}

.checkout-summary-thumb--placeholder {
    display: block;
}

.checkout-summary-item-name {
    display: block;
    font-size: .84rem;
    font-weight: 600;
    color: var(--brown-dark);
    line-height: 1.35;
}

.checkout-summary-item-name small {
    display: block;
    font-weight: 500;
    color: rgba(74, 55, 40, .6);
    margin-top: .1rem;
}

.checkout-summary-item-meta {
    display: block;
    font-size: .76rem;
    color: rgba(74, 55, 40, .55);
    margin-top: .2rem;
}

.checkout-summary-item-price {
    font-size: .84rem;
    color: var(--brown);
    white-space: nowrap;
}

.checkout-summary-empty {
    margin: 0 0 1rem;
    font-size: .88rem;
    color: rgba(74, 55, 40, .6);
}

.checkout-summary-totals {
    margin: 0;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: .4rem 0;
    font-size: .88rem;
}

.checkout-summary-row dt {
    margin: 0;
    font-weight: 500;
    color: rgba(74, 55, 40, .75);
}

.checkout-summary-row dd {
    margin: 0;
    font-weight: 600;
    color: var(--brown-dark);
    text-align: right;
}

.checkout-summary-row--muted dd {
    font-weight: 500;
    font-size: .82rem;
    color: rgba(74, 55, 40, .5);
}

.checkout-summary-row--discount dd {
    color: #2d6a4f;
}

.checkout-summary-frete-label {
    display: block;
    font-size: .75rem;
    font-weight: 500;
    color: rgba(74, 55, 40, .5);
}

.checkout-total {
    margin-top: .65rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(75, 36, 24, .12);
    font-size: 1rem;
}

.checkout-total dt,
.checkout-total dd {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brown-dark);
}

.checkout-summary-note {
    margin: 1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(75, 36, 24, .08);
    font-size: .78rem;
    line-height: 1.55;
    color: rgba(74, 55, 40, .62);
}

/* Shipping options */
.shipping-options {
    border: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    gap: .85rem;
}

.shipping-option {
    display: block;
    cursor: pointer;
}

.shipping-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.shipping-option-content {
    display: block;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(75, 36, 24, .14);
    border-radius: 6px;
    background: #fff;
    transition: border-color .15s ease, background .15s ease;
}

.shipping-option:hover .shipping-option-content {
    border-color: rgba(201, 130, 58, .45);
}

.shipping-option input:focus-visible + .shipping-option-content {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.shipping-option input:checked + .shipping-option-content,
.shipping-option.is-selected .shipping-option-content {
    border-color: var(--gold);
    background: #fff8f2;
}

.shipping-option-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: .35rem;
}

.shipping-option-name {
    font-size: .95rem;
    color: var(--brown-dark);
}

.shipping-option-price {
    font-size: .92rem;
    font-weight: 700;
    color: var(--brown);
    white-space: nowrap;
}

.shipping-option-desc {
    display: block;
    font-size: .82rem;
    line-height: 1.5;
    color: rgba(74, 55, 40, .62);
}

/* Order review */
.order-review {
    margin-bottom: 1.5rem;
}

.order-review-block {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(75, 36, 24, .08);
}

.order-review-block:last-child {
    border-bottom: none;
}

.order-review-block-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
    margin-bottom: .5rem;
}

.order-review-block h3 {
    margin: 0;
    font-size: .88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--brown);
}

.order-review-block p {
    margin: 0 0 .2rem;
    font-size: .92rem;
    color: var(--brown-dark);
}

.order-review-muted {
    color: rgba(74, 55, 40, .62) !important;
    font-size: .86rem !important;
}

.checkout-edit-link {
    font-size: .82rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-decoration: none;
}

.checkout-edit-link:hover {
    text-decoration: underline;
}

.checkout-mp-note {
    margin: .35rem 0 0;
    font-size: .88rem;
    line-height: 1.6;
    color: rgba(74, 55, 40, .72);
}

/* Secure note */
.secure-note {
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(75, 36, 24, .08);
}

.secure-note--inline {
    margin: 0 0 1.25rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(75, 36, 24, .08);
    border-radius: 6px;
    background: #fffaf6;
}

.secure-note-title {
    margin: 0 0 .5rem;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--brown);
}

.secure-note-list {
    margin: 0;
    padding: 0 0 0 1rem;
    font-size: .78rem;
    line-height: 1.55;
    color: rgba(74, 55, 40, .62);
}

.secure-note-list li + li {
    margin-top: .25rem;
}

/* Alerts & actions */
.checkout-alert {
    margin-bottom: 1.25rem;
    padding: .9rem 1rem;
    border-radius: 6px;
    font-size: .88rem;
    line-height: 1.55;
}

.checkout-alert p {
    margin: 0 0 .4rem;
}

.checkout-alert p:last-child {
    margin-bottom: 0;
}

.checkout-alert--warning {
    background: rgba(255, 248, 230, .9);
    border: 1px solid rgba(184, 134, 11, .22);
    color: rgba(74, 55, 40, .88);
}

.checkout-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
    width: 100%;
}

.checkout-actions--split {
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(75, 36, 24, .08);
}

@media (min-width: 768px) {
    .checkout-actions--split {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 1.25rem;
    }

    .checkout-actions--split .btn {
        flex: 0 0 auto;
        width: auto;
    }

    .checkout-actions--split .btn-primary {
        min-width: 12rem;
    }

    .checkout-actions--split:not(:has(.btn-outline)):not(:has(.btn-secondary)) {
        justify-content: flex-end;
    }
}

.checkout-actions--stack {
    flex-direction: column;
    margin-top: 1.25rem;
}

.checkout-actions--stack .btn {
    width: 100%;
    justify-content: center;
}

.checkout-actions--center {
    justify-content: center;
    margin-top: 1.5rem;
}

.checkout-actions--cart {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(75, 36, 24, .08);
}

.btn-block,
.btn-block-mobile {
    text-align: center;
}

.checkout-empty {
    text-align: center;
    padding: 3rem 1.5rem;
}

.checkout-empty-text {
    margin: 0 0 .5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brown-dark);
}

.checkout-empty-hint {
    margin: 0 0 1.5rem;
    color: rgba(74, 55, 40, .65);
}

/* Result pages */
.checkout-result-page .checkout-panel {
    max-width: 640px;
    margin: 0 auto;
}

.checkout-result {
    text-align: center;
    padding: 2.5rem 1.75rem;
}

.checkout-result-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.checkout-result-icon--success {
    background: #edf7f1;
    color: #2d6a4f;
    border: 1px solid rgba(45, 106, 79, .2);
}

.checkout-result-icon--pending {
    background: #fff8f2;
    color: var(--gold-dark);
    border: 1px solid rgba(201, 130, 58, .25);
}

.checkout-result-icon--failure {
    background: #fdf5f5;
    color: #9b3d3d;
    border: 1px solid rgba(155, 61, 61, .18);
}

.checkout-result-title {
    margin: 0 0 .75rem;
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.45rem;
    color: var(--brown-dark);
}

.checkout-result-order {
    margin: 0 0 1rem;
    font-size: .95rem;
}

.checkout-result-text {
    margin: 0 0 .75rem;
    font-size: .92rem;
    line-height: 1.65;
    color: rgba(74, 55, 40, .78);
}

.checkout-result-text--spaced {
    margin-top: 1.25rem;
}

.checkout-result-pending {
    margin: 0;
    font-size: .88rem;
    line-height: 1.6;
    color: rgba(74, 55, 40, .62);
}

.cart-notices {
    margin: 0 0 1.5rem;
    padding: 1rem 1.15rem;
    border-radius: .65rem;
    border: 1px solid rgba(184, 134, 11, .25);
    background: rgba(255, 248, 230, .85);
}

.cart-notice {
    margin: 0 0 .65rem;
    font-size: .95rem;
    line-height: 1.55;
    color: rgba(74, 55, 40, .92);
}

.cart-notice:last-child {
    margin-bottom: 0;
}

.cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.cart-total {
    font-size: 1.05rem;
    margin: 0;
    color: var(--brown-dark);
}

.cart-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: .75rem;
}

.btn-link {
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    font-size: 0.82rem;
    text-decoration: underline;
    padding: 0;
}

/* Legacy table fallback (hidden if unused) */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.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;
}

@media (max-width: 767px) {
    .page-hero-compact + .cart-page,
    .page-hero-compact + .checkout-page {
        padding-top: 1.75rem;
    }

    .checkout-page .checkout-steps,
    .cart-page .checkout-steps {
        margin-bottom: 1.5rem;
        padding: 0.375rem 0;
    }

    .checkout-layout,
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }

    .checkout-sidebar {
        order: -1;
    }

    .checkout-sidebar--compact .checkout-summary-items {
        max-height: 160px;
    }

    .checkout-actions--split {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .checkout-actions--split .btn {
        width: 100%;
        justify-content: center;
        min-height: 2.85rem;
        margin-left: 0;
        margin-right: 0;
    }

    .checkout-actions--split .btn-primary {
        order: -1;
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .checkout-panel {
        padding: 1.25rem;
    }

    .checkout-step-label {
        font-size: .65rem;
    }
}

/* Legacy checkout aliases */
.checkout-label { display: grid; gap: .35rem; font-size: .85rem; font-weight: 600; color: #5c3928; }
.checkout-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkout-form-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .5rem; }
.checkout-review-block { margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid #f0e6dc; }
.checkout-result-box { max-width: 560px; text-align: center; margin: 0 auto; }
.checkout-result-success { color: #2d6a4f; font-weight: 600; }
@media (max-width: 768px) {
    .checkout-grid-2 { grid-template-columns: 1fr; }
}

/* Auth forms */
.auth-form {
    max-width: 420px;
    margin: 0 auto;
    background: var(--cream);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(75, 36, 24, .12);
}

.auth-form label {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brown-dark);
}

.auth-form input {
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.7rem;
    border: 1px solid rgba(75, 36, 24, .18);
    border-radius: 4px;
    background: #fff;
}

.auth-switch {
    text-align: center;
    color: var(--brown);
    opacity: 0.75;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.auth-switch a:hover {
    color: var(--gold);
}

/* Error pages */
.error-page {
    text-align: center;
    padding: 5rem 1rem;
}

.error-page h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 5rem;
    color: var(--gold);
    margin: 0;
}

.error-page p {
    color: var(--brown);
    opacity: 0.75;
    margin: 1rem 0 2rem;
}

.empty-state {
    text-align: center;
    color: var(--brown);
    opacity: 0.7;
    padding: 3rem 1rem;
}

/* Catalog / product page responsive extras */
@media (min-width: 901px) {
    .catalog-content {
        grid-template-columns: var(--catalog-sidebar-width, 270px) 1fr;
    }

    .catalog-content--sidebar-right {
        grid-template-columns: 1fr var(--catalog-sidebar-width, 270px);
    }

    .catalog-content--sidebar-right .catalog-sidebar {
        order: 2;
    }

    .catalog-product-grid {
        grid-template-columns: repeat(var(--catalog-grid-desktop, 3), 1fr);
    }

}

@media (max-width: 900px) {
    .category-hero {
        height: min(var(--catalog-hero-height, 300px), 230px);
    }

    .category-hero-inner {
        padding: 0 28px;
    }

    .catalog-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .benefits--catalog .benefits-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 24px;
    }
}

@media (max-width: 560px) {
    .catalog-product-grid {
        grid-template-columns: repeat(var(--catalog-grid-mobile, 1), 1fr);
    }

    .benefits--catalog .benefits-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .pdp-layout,
    .pdp-details {
        grid-template-columns: 1fr;
    }

    .pdp-gallery {
        grid-template-columns: 86px 1fr;
    }

    .pdp-main-photo {
        max-height: 470px;
    }

    .benefits--pdp .benefits-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .pdp-related-grid,
    .pdp-recommend-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pdp-trust-inner {
        justify-content: center;
    }

    .pdp-trust .trust-item {
        flex: 0 1 calc(50% - 20px);
        max-width: 180px;
    }
}

@media (max-width: 640px) {
    .pdp-page {
        padding: 20px 18px 0;
    }

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

    .pdp-thumbs {
        order: 2;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-self: stretch;
    }

    .pdp-thumb,
    .product-thumb.pdp-thumb {
        height: 70px;
    }

    .pdp-main-photo {
        max-height: min(390px, 92vw);
    }

    .pdp-summary h1 {
        font-size: 36px;
    }

    .benefits--pdp {
        margin-top: 36px;
        padding: 0 18px;
    }

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

    .pdp-details,
    .pdp-recommend {
        padding: 0 18px 44px;
    }

    .pdp-related-grid,
    .pdp-recommend-grid {
        grid-template-columns: 1fr;
    }

    .pdp-trust-inner {
        padding: 0 18px;
        justify-content: center;
    }

    .pdp-trust .trust-item {
        flex: 0 1 100%;
        max-width: 220px;
    }
}

/* ---- About page ---- */

.about-page {
    background: var(--page-bg);
}

.about-hero {
    background: linear-gradient(135deg, var(--soft-bg) 0%, var(--cream) 55%, var(--page-bg) 100%);
    border-bottom: 1px solid rgba(75, 36, 24, .08);
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.about-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(1.75rem, 4vw, 3.5rem);
    align-items: center;
}

.about-hero-copy {
    max-width: 34rem;
}

.about-hero-title {
    margin: 0 0 .85rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4.8vw, 3rem);
    font-weight: 500;
    line-height: 1.12;
    color: var(--brown-dark);
}

.about-hero-subtitle {
    margin: 0;
    font-size: clamp(.95rem, 1.6vw, 1.08rem);
    line-height: 1.75;
    color: rgba(36, 17, 12, .78);
    max-width: 32rem;
}

.about-hero-media,
.about-hero-placeholder {
    margin: 0;
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
    background: var(--soft-bg);
}

.about-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-placeholder {
    display: grid;
    place-items: center;
    color: rgba(75, 36, 24, .22);
}

.about-hero-placeholder svg {
    width: 4.5rem;
    height: auto;
}

.about-hero--has-image .about-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.about-story {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.about-story-inner {
    max-width: 46rem;
}

.about-story-text p {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(36, 17, 12, .82);
}

.about-story-text p:last-child {
    margin-bottom: 0;
}

.about-blocks {
    padding: 0 0 clamp(2.75rem, 5vw, 4.25rem);
}

.about-blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

.about-block {
    padding: clamp(1.35rem, 2.5vw, 1.85rem) 0;
    border-top: 1px solid rgba(75, 36, 24, .12);
}

.about-block-label {
    display: block;
    margin-bottom: .55rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
}

.about-block-title {
    margin: 0 0 .65rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--brown-dark);
}

.about-block-text {
    margin: 0;
    font-size: .95rem;
    line-height: 1.75;
    color: rgba(36, 17, 12, .76);
}

.about-cta {
    background: var(--soft-bg);
    border-top: 1px solid rgba(75, 36, 24, .08);
    padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.about-cta-inner {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}

.about-cta-text {
    margin: 0 0 1.35rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    line-height: 1.45;
    color: var(--brown-dark);
}

.about-cta-btn {
    min-width: 11rem;
}

@media (max-width: 960px) {
    .about-hero-inner,
    .about-hero--has-image .about-hero-inner {
        grid-template-columns: 1fr;
    }

    .about-hero-media,
    .about-hero-placeholder {
        order: -1;
        max-width: 34rem;
        margin-inline: auto;
        width: 100%;
    }

    .about-blocks-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-block {
        padding-inline: 0;
    }
}

@media (max-width: 390px) {
    .about-hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .about-hero-title {
        font-size: 1.85rem;
    }

    .about-cta-text {
        font-size: 1.25rem;
    }
}

/* ---- Exchanges page ---- */

.exchanges-page {
    background: var(--page-bg);
}

.exchanges-hero {
    background: linear-gradient(135deg, var(--soft-bg) 0%, var(--cream) 55%, var(--page-bg) 100%);
    border-bottom: 1px solid rgba(75, 36, 24, .08);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.exchanges-hero-inner {
    max-width: 42rem;
}

.exchanges-hero-title {
    margin: 0 0 .85rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4.8vw, 2.85rem);
    font-weight: 500;
    line-height: 1.12;
    color: var(--brown-dark);
}

.exchanges-hero-subtitle {
    margin: 0;
    font-size: clamp(.95rem, 1.6vw, 1.08rem);
    line-height: 1.75;
    color: rgba(36, 17, 12, .78);
    max-width: 36rem;
}

.exchanges-intro {
    padding: clamp(2rem, 4vw, 3rem) 0 0;
}

.exchanges-intro-inner {
    max-width: 46rem;
}

.exchanges-intro-inner p {
    margin: 0 0 1.15rem;
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(36, 17, 12, .82);
}

.exchanges-intro-inner p:last-child {
    margin-bottom: 0;
}

.exchanges-sections {
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.exchanges-sections-list {
    max-width: 46rem;
    display: grid;
    gap: 0;
}

.exchanges-section {
    padding: clamp(1.35rem, 2.5vw, 1.85rem) 0;
    border-top: 1px solid rgba(75, 36, 24, .12);
}

.exchanges-section:first-child {
    border-top: none;
    padding-top: 0;
}

.exchanges-section-title {
    margin: 0 0 .65rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--brown-dark);
}

.exchanges-section-text {
    margin: 0;
    font-size: .96rem;
    line-height: 1.78;
    color: rgba(36, 17, 12, .76);
}

.exchanges-cta {
    background: var(--soft-bg);
    border-top: 1px solid rgba(75, 36, 24, .08);
    padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.exchanges-cta-inner {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}

.exchanges-cta-text {
    margin: 0 0 1.35rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.25rem, 2.6vw, 1.75rem);
    line-height: 1.45;
    color: var(--brown-dark);
}

.exchanges-cta-btn {
    min-width: 11rem;
}

.exchanges-cta-btn.is-disabled {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 390px) {
    .exchanges-hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .exchanges-hero-title {
        font-size: 1.85rem;
    }

    .exchanges-cta-text {
        font-size: 1.2rem;
    }
}

/* ---- FAQ page ---- */

.faq-page {
    background: var(--page-bg);
}

.faq-hero {
    background: linear-gradient(135deg, var(--soft-bg) 0%, var(--cream) 55%, var(--page-bg) 100%);
    border-bottom: 1px solid rgba(75, 36, 24, .08);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.faq-hero-inner {
    max-width: 42rem;
}

.faq-hero-title {
    margin: 0 0 .85rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4.8vw, 2.85rem);
    font-weight: 500;
    line-height: 1.12;
    color: var(--brown-dark);
}

.faq-hero-subtitle {
    margin: 0;
    font-size: clamp(.95rem, 1.6vw, 1.08rem);
    line-height: 1.75;
    color: rgba(36, 17, 12, .78);
    max-width: 36rem;
}

.faq-intro {
    padding: clamp(2rem, 4vw, 3rem) 0 0;
}

.faq-intro-inner {
    max-width: 46rem;
}

.faq-intro-inner p {
    margin: 0 0 1.15rem;
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(36, 17, 12, .82);
}

.faq-intro-inner p:last-child {
    margin-bottom: 0;
}

.faq-list-section {
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.faq-list-inner {
    max-width: 46rem;
}

.faq-accordion {
    display: grid;
    gap: .65rem;
}

.faq-item {
    border: 1px solid rgba(75, 36, 24, .12);
    border-radius: .65rem;
    background: #fff;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item[open] {
    border-color: rgba(75, 36, 24, .22);
    box-shadow: 0 4px 18px rgba(75, 36, 24, .06);
}

.faq-item-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1rem, 2.2vw, 1.25rem) clamp(1.1rem, 2.5vw, 1.35rem);
    cursor: pointer;
    list-style: none;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--brown-dark);
}

.faq-item-question::-webkit-details-marker {
    display: none;
}

.faq-item-icon {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--soft-bg);
    color: var(--brown-dark);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1;
}

.faq-item-answer {
    padding: 0 clamp(1.1rem, 2.5vw, 1.35rem) clamp(1.1rem, 2.5vw, 1.35rem);
    border-top: 1px solid rgba(75, 36, 24, .08);
}

.faq-item-answer p {
    margin: .85rem 0 0;
    font-size: .96rem;
    line-height: 1.78;
    color: rgba(36, 17, 12, .76);
}

.faq-item-answer p:first-child {
    margin-top: 1rem;
}

.faq-empty {
    padding: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    border: 1px dashed rgba(75, 36, 24, .18);
    border-radius: .75rem;
    background: rgba(255, 255, 255, .65);
}

.faq-empty p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(36, 17, 12, .72);
    max-width: 28rem;
    margin-inline: auto;
}

.faq-cta {
    background: var(--soft-bg);
    border-top: 1px solid rgba(75, 36, 24, .08);
    padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.faq-cta-inner {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}

.faq-cta-text {
    margin: 0 0 1.35rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.25rem, 2.6vw, 1.75rem);
    line-height: 1.45;
    color: var(--brown-dark);
}

.faq-cta-btn {
    min-width: 11rem;
}

.faq-cta-btn.is-disabled {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 390px) {
    .faq-hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .faq-hero-title {
        font-size: 1.85rem;
    }

    .faq-item-question {
        font-size: .98rem;
        padding: .95rem 1rem;
    }

    .faq-item-answer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .faq-cta-text {
        font-size: 1.2rem;
    }
}

/* ---- Privacy policy page ---- */

.privacy-policy-page {
    background: var(--page-bg);
}

.privacy-policy-hero {
    background: linear-gradient(135deg, var(--soft-bg) 0%, var(--cream) 55%, var(--page-bg) 100%);
    border-bottom: 1px solid rgba(75, 36, 24, .08);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.privacy-policy-hero-inner {
    max-width: 42rem;
}

.privacy-policy-hero-title {
    margin: 0 0 .85rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4.8vw, 2.85rem);
    font-weight: 500;
    line-height: 1.12;
    color: var(--brown-dark);
}

.privacy-policy-hero-subtitle {
    margin: 0;
    font-size: clamp(.95rem, 1.6vw, 1.08rem);
    line-height: 1.75;
    color: rgba(36, 17, 12, .78);
    max-width: 36rem;
}

.privacy-policy-intro {
    padding: clamp(2rem, 4vw, 3rem) 0 0;
}

.privacy-policy-intro-inner {
    max-width: 46rem;
}

.privacy-policy-intro-inner p {
    margin: 0 0 1.15rem;
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(36, 17, 12, .82);
}

.privacy-policy-intro-inner p:last-child {
    margin-bottom: 0;
}

.privacy-policy-sections {
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.privacy-policy-sections-list {
    max-width: 46rem;
    display: grid;
    gap: 0;
}

.privacy-policy-section {
    padding: clamp(1.35rem, 2.5vw, 1.85rem) 0;
    border-top: 1px solid rgba(75, 36, 24, .12);
}

.privacy-policy-section:first-child {
    border-top: none;
    padding-top: 0;
}

.privacy-policy-section-title {
    margin: 0 0 .65rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--brown-dark);
}

.privacy-policy-section-text {
    margin: 0;
    font-size: .96rem;
    line-height: 1.78;
    color: rgba(36, 17, 12, .76);
}

.privacy-policy-cta {
    background: var(--soft-bg);
    border-top: 1px solid rgba(75, 36, 24, .08);
    padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.privacy-policy-cta-inner {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}

.privacy-policy-cta-text {
    margin: 0 0 1.35rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.25rem, 2.6vw, 1.75rem);
    line-height: 1.45;
    color: var(--brown-dark);
}

.privacy-policy-cta-btn {
    min-width: 11rem;
}

.privacy-policy-cta-btn.is-disabled {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 390px) {
    .privacy-policy-hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .privacy-policy-hero-title {
        font-size: 1.85rem;
    }

    .privacy-policy-cta-text {
        font-size: 1.2rem;
    }
}

/* ===== Minha conta ===== */
.account-greeting {
    margin: .65rem 0 0;
    font-size: 1.05rem;
    color: rgba(74, 55, 40, .78);
}

.account-section {
    padding-top: 0;
}

.page-hero-compact + .account-section {
    padding-top: 2.25rem;
}

.page-hero-compact:has(+ .account-section) {
    padding-bottom: 0;
    border-bottom: none;
}

.account-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 2.25rem;
    align-items: start;
}

.account-nav {
    position: sticky;
    top: 6.5rem;
    background: #fff;
    border: 1px solid rgba(75, 36, 24, .1);
    border-radius: 8px;
    padding: 1.25rem 1.1rem;
}

.account-nav-title {
    margin: 0 0 .85rem;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(74, 55, 40, .55);
}

.account-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .35rem;
}

.account-nav-list a {
    display: block;
    padding: .65rem .8rem;
    border-radius: 6px;
    color: var(--brown-dark);
    text-decoration: none;
    font-size: .92rem;
    font-weight: 600;
    transition: background .15s ease, color .15s ease;
}

.account-nav-list a:hover {
    background: #fff8f2;
    color: var(--brown-dark);
}

.account-nav-list a.is-active {
    background: #fff8f2;
    color: var(--brown-dark);
    box-shadow: inset 2px 0 0 var(--gold);
}

.account-main {
    min-width: 0;
    display: grid;
    gap: 1.5rem;
}

.account-panel {
    background: #fff;
    border: 1px solid rgba(75, 36, 24, .1);
    border-radius: 8px;
    padding: 1.75rem;
}

.account-panel-title {
    margin: 0 0 .5rem;
    font-family: var(--font-display, "Playfair Display", serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--brown-dark);
}

.account-panel-hint {
    margin: 0 0 1.35rem;
    font-size: .92rem;
    line-height: 1.6;
    color: rgba(74, 55, 40, .72);
}

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

.account-form-actions {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

@media (max-width: 900px) {
    .account-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .account-nav {
        position: static;
    }

    .account-nav-list {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem;
    }

    .account-nav-list a.is-active {
        box-shadow: none;
        border: 1px solid rgba(201, 130, 58, .45);
    }
}

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

    .account-panel {
        padding: 1.25rem;
    }
}
