/* Loja ROTA — catálogo, produto e carrinho */

.loja-body {
    --loja-ink: #1b211d;
    --loja-muted: #647068;
    --loja-paper: #f7f5ef;
    --loja-surface: #fffef9;
    --loja-line: rgba(27, 33, 29, 0.14);
    --loja-green: #234f3c;
    --loja-green-deep: #163729;
    --loja-sage: #dfe7d8;
    --loja-radius: 22px;
    background: var(--loja-paper);
    color: var(--loja-ink);
    font-family: "DM Sans", sans-serif;
    line-height: 1.5;
}

[data-theme="dark"] .loja-body,
.loja-body[data-theme="dark"] {
    --loja-ink: #eef2ed;
    --loja-muted: #aeb9b1;
    --loja-paper: #111713;
    --loja-surface: #172019;
    --loja-line: rgba(238, 242, 237, 0.14);
    --loja-green: #9fc5a8;
    --loja-green-deep: #0c281b;
    --loja-sage: #243c2d;
}

.loja-body .container {
    width: min(1180px, calc(100% - 40px));
    max-width: none;
    padding: 0;
}

.loja-body h1,
.loja-body h2,
.loja-body h3,
.loja-body p {
    margin-top: 0;
}

.loja-body h1,
.loja-body h2,
.loja-body h3 {
    font-family: "Newsreader", Georgia, serif;
    color: var(--loja-ink);
    letter-spacing: -0.035em;
}

.loja-skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 1000;
    background: var(--loja-green-deep);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
}

.loja-skip-link:focus { top: 12px; }

.loja-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--loja-paper) 88%, transparent);
    border-bottom: 1px solid var(--loja-line);
    backdrop-filter: blur(18px);
}

.loja-header-inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.loja-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--loja-ink);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-decoration: none;
}

.loja-brand-mark {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    overflow: hidden;
    border: 0;
    border-radius: 50%;
    background: #173d30;
}

.loja-brand-mark img {
    width: 78%;
    height: 82%;
    display: block;
    object-fit: contain;
}

.loja-nav { display: flex; align-items: center; gap: 32px; }
.loja-nav a,
.loja-back-link {
    position: relative;
    color: var(--loja-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.loja-nav a:hover,
.loja-nav a[aria-current="page"],
.loja-back-link:hover { color: var(--loja-ink); }

.loja-nav a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    background: var(--loja-green);
}

.loja-header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.loja-icon-button,
.loja-account-button,
.loja-cart-button {
    min-height: 42px;
    border: 1px solid var(--loja-line);
    background: var(--loja-surface);
    color: var(--loja-ink);
    border-radius: 999px;
}

.loja-account-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 13px;
    color: var(--loja-ink);
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
}

.loja-account-button:hover {
    border-color: var(--loja-green);
    color: var(--loja-green);
}

.loja-icon-button {
    position: static;
    width: 42px;
    padding: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: none;
}

.loja-cart-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 15px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-cart-badge {
    min-width: 21px;
    height: 21px;
    display: inline-grid;
    place-items: center;
    padding: 0 5px;
    border-radius: 99px;
    background: var(--loja-green-deep);
    color: #fff;
    font-size: 0.7rem;
}

.loja-hero {
    position: relative;
    overflow: hidden;
    background: var(--loja-paper);
    color: var(--loja-ink);
    padding: clamp(68px, 8vw, 112px) 0 76px;
    text-align: left;
}

.loja-hero::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -170px;
    top: -260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(135, 165, 121, 0.2), transparent 68%);
}

.loja-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: center;
}

.loja-eyebrow,
.loja-section-number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--loja-green);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.loja-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.loja-hero h1 {
    max-width: 760px;
    margin: 18px 0 24px;
    color: var(--loja-ink);
    font-size: clamp(3.5rem, 7vw, 6.4rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.loja-hero h1 em { color: var(--loja-green); font-weight: 400; }

.loja-hero-copy > p {
    max-width: 630px;
    margin-bottom: 30px;
    color: var(--loja-muted);
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    line-height: 1.75;
}

.loja-hero-actions { display: flex; align-items: center; gap: 24px; }
.loja-hero-actions > span { color: var(--loja-muted); font-size: 0.78rem; }
.loja-hero-actions > span i { color: var(--loja-green); margin-right: 5px; }

.loja-button {
    min-height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.loja-button:hover { transform: translateY(-2px); }
.loja-button--primary { background: var(--loja-green-deep); color: #fff; box-shadow: 0 12px 28px rgba(22, 55, 41, .15); }
.loja-button--light { background: #f8f3e8; color: #183829; }

.loja-hero-art {
    position: relative;
    min-height: 440px;
    display: grid;
    place-items: center;
}

.loja-orbit { position: absolute; border: 1px solid rgba(57, 87, 67, .18); border-radius: 50%; }
.loja-orbit--one { width: 380px; height: 380px; }
.loja-orbit--two { width: 270px; height: 270px; }

.loja-hero-bottle {
    position: relative;
    width: 158px;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 52px 52px 34px 34px;
    background: linear-gradient(145deg, #395d4c, #1b3e2e);
    box-shadow: 0 40px 70px rgba(29, 61, 44, .28), inset 10px 10px 22px rgba(255,255,255,.08);
    color: #e5eee4;
    transform: rotate(3deg);
}

.loja-hero-bottle::before {
    content: "";
    position: absolute;
    top: -34px;
    width: 86px;
    height: 48px;
    border-radius: 8px 8px 4px 4px;
    background: #19392b;
    box-shadow: inset 0 5px rgba(255,255,255,.08);
}

.loja-hero-bottle span { letter-spacing: .28em; font-size: .8rem; font-weight: 700; }
.loja-hero-bottle i { font-size: 2.2rem; }

.loja-hero-note {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(41, 73, 53, .13);
    border-radius: 14px;
    background: color-mix(in srgb, var(--loja-surface) 90%, transparent);
    box-shadow: 0 16px 40px rgba(35, 61, 45, .1);
    color: var(--loja-muted);
    font-size: .7rem;
    line-height: 1.2;
    backdrop-filter: blur(8px);
}

.loja-hero-note i { color: var(--loja-green); font-size: 1.2rem; }
.loja-hero-note strong { color: var(--loja-ink); font-size: .8rem; }
.loja-hero-note--top { right: 12px; top: 68px; }
.loja-hero-note--bottom { left: 5px; bottom: 70px; }

.loja-manifesto { border-top: 1px solid var(--loja-line); border-bottom: 1px solid var(--loja-line); background: var(--loja-surface); }
.loja-manifesto-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.loja-manifesto p {
    position: relative;
    min-height: 116px;
    margin: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-content: center;
    padding: 24px 34px;
    color: var(--loja-muted);
    font-size: .75rem;
}
.loja-manifesto p + p { border-left: 1px solid var(--loja-line); }
.loja-manifesto p span { grid-row: 1 / 3; color: var(--loja-green); font-family: "Newsreader", serif; font-size: 1rem; }
.loja-manifesto p strong { color: var(--loja-ink); font-size: .86rem; }

.loja-catalog-intro { padding: 100px 0 64px; background: var(--loja-paper); }
.loja-section-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-top: 20px; }
.loja-section-heading h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 4.4rem); font-weight: 500; }
.loja-section-heading p { max-width: 440px; margin: 0 0 8px; color: var(--loja-muted); line-height: 1.75; }

.loja-category-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 38px; }
.loja-category-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid var(--loja-line);
    border-radius: 999px;
    color: var(--loja-muted);
    background: var(--loja-surface);
    font-size: .74rem;
    font-weight: 600;
    text-decoration: none;
}
.loja-category-nav a:hover { color: var(--loja-ink); border-color: var(--loja-green); }

.loja-collection {
    --collection-accent: #315c49;
    --collection-bg: #e8eee3;
    padding: 88px 0 104px;
    background: var(--collection-bg);
    scroll-margin-top: 76px;
}

.loja-collection + .loja-collection { border-top: 1px solid rgba(27,33,29,.08); }
.loja-collection--roupas { --collection-accent: #815a3f; --collection-bg: #eee5d8; }
.loja-collection--suplementos { --collection-accent: #345f78; --collection-bg: #e1eaec; }
.loja-collection--higiene { --collection-accent: #39766e; --collection-bg: #dfede9; }
.loja-collection--perfumes { --collection-accent: #8e5368; --collection-bg: #efe2e5; }

[data-theme="dark"] .loja-collection { --collection-bg: #17251c; }
[data-theme="dark"] .loja-collection--roupas { --collection-bg: #271e18; }
[data-theme="dark"] .loja-collection--suplementos { --collection-bg: #172328; }
[data-theme="dark"] .loja-collection--higiene { --collection-bg: #142724; }
[data-theme="dark"] .loja-collection--perfumes { --collection-bg: #291c21; }
[data-theme="dark"] .loja-collection { --collection-accent: #b8d1bd; }

.loja-collection-header {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) minmax(240px, 370px);
    gap: 28px;
    align-items: end;
    margin-bottom: 42px;
}

.loja-collection-index { color: var(--collection-accent); font-family: "Newsreader", serif; font-size: 1rem; }
.loja-collection-heading span { color: var(--collection-accent); font-size: .69rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.loja-collection-heading h2 { margin: 8px 0 0; font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 500; line-height: 1; }
.loja-collection-header > p { margin: 0 0 4px; color: var(--loja-muted); font-size: .88rem; line-height: 1.7; }

.loja-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.loja-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(27,33,29,.1);
    border-radius: var(--loja-radius);
    background: color-mix(in srgb, var(--loja-surface) 94%, transparent);
    box-shadow: 0 12px 34px rgba(27,33,29,.04);
    transition: transform .25s ease, box-shadow .25s ease;
}
.loja-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(27,33,29,.1); }
.loja-card--featured { grid-column: span 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); }

.loja-card-image {
    position: relative;
    min-height: 270px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 30px;
    background: color-mix(in srgb, var(--card-color, var(--collection-accent)) 13%, var(--loja-surface));
}
.loja-card--featured .loja-card-image { min-height: 410px; }
.loja-card-image::before,
.loja-product-visual::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid color-mix(in srgb, var(--card-color, var(--collection-accent)) 32%, transparent);
    border-radius: 50%;
}
.loja-card-image img { position: relative; z-index: 1; width: 100%; max-width: 240px; max-height: 250px; object-fit: contain; filter: drop-shadow(0 22px 20px rgba(27,33,29,.14)); }
.loja-card--featured .loja-card-image img { max-width: 330px; max-height: 340px; }

.loja-product-placeholder {
    position: relative;
    z-index: 1;
    width: 128px;
    height: 178px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 17px;
    border: 1px solid rgba(255,255,255,.36);
    border-radius: 42px 42px 28px 28px;
    color: #fff;
    background: linear-gradient(145deg, color-mix(in srgb, var(--card-color) 86%, white), color-mix(in srgb, var(--card-color) 86%, black));
    box-shadow: 0 22px 38px color-mix(in srgb, var(--card-color) 24%, transparent), inset 8px 8px 18px rgba(255,255,255,.1);
}
.loja-product-placeholder::before { content: ""; position: absolute; top: -22px; width: 62px; height: 34px; border-radius: 8px 8px 4px 4px; background: color-mix(in srgb, var(--card-color) 82%, black); }
.loja-product-placeholder i { font-size: 2rem; }
.loja-product-placeholder span { font-size: .62rem; font-weight: 700; letter-spacing: .2em; }
.loja-card--featured .loja-product-placeholder { width: 166px; height: 230px; }

.loja-card-badge {
    position: absolute;
    z-index: 3;
    left: 18px;
    top: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--loja-green-deep);
    color: #fff;
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.loja-card-body { min-width: 0; display: flex; flex: 1; flex-direction: column; padding: 24px; }
.loja-card-category { margin-bottom: 11px; color: var(--collection-accent); font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.loja-card-title { margin: 0 0 7px; color: var(--loja-ink); font-size: 1.48rem; font-weight: 500; line-height: 1.05; }
.loja-card--featured .loja-card-title { font-size: 2rem; }
.loja-card-subtitle { min-height: 44px; margin: 0 0 20px; color: var(--loja-muted); font-size: .82rem; line-height: 1.5; }
.loja-card-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.loja-card-price { margin: 0; color: var(--loja-ink); font-family: "Newsreader", serif; font-size: 1.45rem; font-weight: 600; }
.loja-card-unit { color: var(--loja-muted); font-size: .66rem; }
.loja-card-savings { margin: 5px 0 0; color: var(--collection-accent); font-size: .7rem; font-weight: 700; }
.loja-card-actions { display: grid; grid-template-columns: 1fr auto; gap: 9px; margin-top: 18px; }
.loja-card-actions a,
.loja-card-actions button {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--loja-line);
    border-radius: 999px;
    background: transparent;
    color: var(--loja-ink);
    font-family: "DM Sans", sans-serif;
    font-size: .72rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}
.loja-card-actions button { width: 43px; border-color: var(--loja-green-deep); background: var(--loja-green-deep); color: #fff; }
.loja-card-actions button:hover { transform: scale(1.04); }
.loja-card-actions button.is-added,
.loja-product-add.is-added {
    background: #3c7658;
    border-color: #3c7658;
    color: #fff;
}

.loja-cart-flyer {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255,255,255,.75);
    border-radius: 50%;
    background: var(--flyer-color, var(--loja-green-deep));
    box-shadow: 0 12px 28px rgba(22, 55, 41, .28);
    color: #fff;
    font-size: 1.15rem;
    pointer-events: none;
    will-change: transform, opacity;
}

.loja-cart-button.is-cart-receiving {
    animation: loja-cart-receive .65s cubic-bezier(.2,.8,.2,1);
}

.loja-cart-button.is-cart-receiving .nav-cart-badge {
    background: #3c7658;
}

.loja-add-toast {
    position: fixed;
    z-index: 990;
    left: 50%;
    bottom: 24px;
    width: min(430px, calc(100% - 28px));
    min-height: 70px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 13px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: #17382a;
    box-shadow: 0 20px 52px rgba(10, 28, 19, .28);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 22px) scale(.97);
    transition: opacity .24s ease, transform .32s cubic-bezier(.2,.8,.2,1);
}

.loja-add-toast.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
}

.loja-add-toast-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #d9ecd9;
}

.loja-add-toast-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.loja-add-toast-copy strong { color: #fff; font-size: .78rem; }
.loja-add-toast-copy small { overflow: hidden; color: #b8cdbd; font-size: .68rem; text-overflow: ellipsis; white-space: nowrap; }
.loja-add-toast-link { color: #fff; font-size: .7rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

@keyframes loja-cart-receive {
    0%, 100% { transform: scale(1); }
    35% { transform: scale(1.16) rotate(-4deg); box-shadow: 0 10px 24px rgba(35,79,60,.22); }
    65% { transform: scale(.96) rotate(2deg); }
}

.loja-validation { padding: 90px 0; background: var(--loja-green-deep); color: #dfe9e1; }
.loja-validation-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.loja-validation-icon { width: 72px; height: 72px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; font-size: 1.6rem; }
.loja-validation .loja-eyebrow { color: #b8cdbd; }
.loja-validation h2 { margin: 8px 0 4px; color: #fff; font-size: 2.2rem; font-weight: 500; }
.loja-validation p { max-width: 680px; margin: 0; color: #b8c8bd; font-size: .84rem; line-height: 1.7; }

.loja-footer { padding: 70px 0 22px; background: #101a14; color: #aebdb3; }
.loja-footer-grid { display: grid; grid-template-columns: 1.4fr .6fr 1fr; gap: 70px; padding-bottom: 50px; }
.loja-brand--footer { color: #eef4ef; }
.loja-footer p { max-width: 300px; margin: 20px 0 0; font-size: .8rem; line-height: 1.7; }
.loja-footer-grid > div { display: flex; flex-direction: column; gap: 10px; }
.loja-footer-grid strong { margin-bottom: 7px; color: #eef4ef; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.loja-footer a,
.loja-footer span { color: #aebdb3; font-size: .76rem; text-decoration: none; }
.loja-footer a:hover { color: #fff; }
.loja-footer i { margin-right: 6px; }
.loja-footer-bottom { display: flex; justify-content: space-between; padding-top: 20px !important; border-top: 1px solid rgba(255,255,255,.1); }
.loja-footer--compact { padding-top: 24px; }

/* Página de produto */
.loja-inner-page { min-height: 100vh; }
.loja-product-main { min-height: 70vh; padding: 64px 0 100px; }
.loja-product-hero { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(50px, 8vw, 100px); align-items: start; }
.loja-product-media {
    position: sticky;
    top: 112px;
}
.loja-product-visual {
    --card-color: #315c49;
    position: relative;
    min-height: 610px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 30px;
    background: color-mix(in srgb, var(--card-color) 14%, var(--loja-surface));
}
.loja-product-visual.is-zoomable { cursor: zoom-in; }
.loja-product-visual.is-zoomable:focus-visible { outline: 3px solid var(--loja-green); outline-offset: 4px; }
.loja-product-visual::before { width: 410px; height: 410px; }
.loja-product-visual img { position: relative; z-index: 1; width: 82%; max-height: 520px; object-fit: contain; filter: drop-shadow(0 30px 28px rgba(27,33,29,.18)); }
.loja-product-visual .loja-product-placeholder { width: 210px; height: 310px; }
.loja-media-status {
    margin: 12px 4px 0;
    color: var(--loja-muted);
    font-size: .68rem;
    line-height: 1.45;
}
.loja-media-status::before { content: "◌"; margin-right: 7px; color: #9a6943; }
.loja-media-status.is-official::before { content: "✓"; color: var(--loja-green); }
.loja-media-thumbs { display: flex; gap: 9px; margin-top: 13px; overflow-x: auto; }
.loja-media-thumb {
    width: 72px; height: 72px; flex: 0 0 72px; padding: 4px;
    border: 1px solid var(--loja-line); border-radius: 10px; background: var(--loja-surface); cursor: pointer;
}
.loja-media-thumb.is-active { outline: 2px solid var(--loja-green); outline-offset: 2px; }
.loja-media-thumb img { width: 100%; height: 100%; object-fit: contain; }
.loja-media-dialog {
    width: min(920px, calc(100% - 30px)); max-height: 90vh; padding: 25px;
    border: 0; border-radius: 20px; background: var(--loja-surface); box-shadow: 0 35px 100px rgba(0,0,0,.35);
}
.loja-media-dialog::backdrop { background: rgba(8, 13, 10, .78); backdrop-filter: blur(4px); }
.loja-media-dialog img { width: 100%; max-height: calc(90vh - 50px); object-fit: contain; }
.loja-media-dialog-close {
    position: absolute; right: 13px; top: 13px; z-index: 2; width: 40px; height: 40px;
    border: 0; border-radius: 50%; color: var(--loja-ink); background: var(--loja-surface); font-size: 1.5rem; cursor: pointer;
}
.loja-product-info { padding-top: 14px; }
.loja-product-info .loja-eyebrow { margin-bottom: 18px; }
.loja-product-info h1 { margin: 0 0 10px; font-size: clamp(3rem, 5vw, 5rem); font-weight: 500; line-height: .95; }
.loja-product-subtitle { color: var(--loja-muted); font-size: 1rem; }
.loja-product-price { margin: 28px 0 0; color: var(--loja-ink); font-family: "Newsreader", serif; font-size: 2.2rem; font-weight: 600; }
.loja-product-compare { margin: -4px 0 0; color: var(--loja-muted); font-size: .78rem; text-decoration: line-through; }
.loja-product-unit { margin: 4px 0 24px; color: var(--loja-muted); font-size: .75rem; }
.loja-product-description { color: var(--loja-muted); font-size: .96rem; line-height: 1.8; }
.loja-product-purchase { display: grid; grid-template-columns: auto 1fr; gap: 12px; margin: 30px 0; }
.loja-qty-control { min-height: 50px; display: inline-flex; align-items: center; overflow: hidden; border: 1px solid var(--loja-line); border-radius: 999px; background: var(--loja-surface); }
.loja-qty-btn { width: 42px; height: 48px; border: 0; background: transparent; color: var(--loja-ink); font-size: 1.1rem; cursor: pointer; }
.loja-qty-value { width: 32px; text-align: center; color: var(--loja-ink); font-size: .85rem; font-weight: 700; }
.loja-product-add { width: 100%; }
.loja-kit-includes,
.loja-benefits,
.loja-usage,
.loja-photo-plan { margin-top: 20px; padding: 24px; border: 1px solid var(--loja-line); border-radius: 18px; background: color-mix(in srgb, var(--loja-surface) 85%, transparent); }
.loja-kit-includes h3,
.loja-benefits h3,
.loja-usage h3,
.loja-photo-plan h3 { margin: 0 0 14px; font-size: 1.15rem; font-weight: 600; }
.loja-kit-list,
.loja-benefits ul { list-style: none; padding: 0; margin: 0; }
.loja-kit-list { display: grid; gap: 10px; }
.loja-kit-list li { display: flex; align-items: center; gap: 12px; color: var(--loja-muted); font-size: .82rem; }
.loja-kit-list .loja-mini-visual { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; color: #fff; }
.loja-benefits li { position: relative; padding: 7px 0 7px 24px; color: var(--loja-muted); font-size: .84rem; }
.loja-benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--loja-green); font-weight: 700; }
.loja-usage p { margin: 0; color: var(--loja-muted); font-size: .82rem; line-height: 1.7; }
.loja-photo-plan { background: color-mix(in srgb, #9a6943 6%, var(--loja-surface)); }
.loja-photo-plan ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 0; padding: 0; list-style: none; }
.loja-photo-plan li { position: relative; padding-left: 19px; color: var(--loja-muted); font-size: .75rem; }
.loja-photo-plan li::before { position: absolute; left: 0; content: "○"; color: #9a6943; }
.loja-disclaimer { margin-top: 22px; color: var(--loja-muted); font-size: .72rem; line-height: 1.65; }

/* Carrinho */
.loja-cart-main { min-height: 72vh; padding: 70px 0 110px; }
.loja-cart-heading { display: flex; justify-content: space-between; align-items: end; padding-bottom: 28px; border-bottom: 1px solid var(--loja-line); }
.loja-cart-heading h1 { margin: 8px 0 0; font-size: clamp(3.6rem, 7vw, 5.5rem); font-weight: 500; line-height: .9; }
.loja-cart-heading > span { color: var(--loja-muted); font-size: .78rem; }
.loja-cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 50px; align-items: start; padding-top: 36px; }
.loja-cart-items { display: flex; flex-direction: column; }
.loja-cart-item { display: grid; grid-template-columns: 116px 1fr auto; gap: 22px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--loja-line); }
.loja-cart-item-visual { --card-color: #315c49; width: 116px; height: 126px; display: grid; place-items: center; overflow: hidden; border-radius: 17px; background: color-mix(in srgb, var(--card-color) 14%, var(--loja-surface)); }
.loja-cart-item-visual img { width: 85%; height: 85%; object-fit: contain; }
.loja-cart-item-visual .loja-product-placeholder { width: 54px; height: 76px; gap: 7px; border-radius: 16px 16px 11px 11px; }
.loja-cart-item-visual .loja-product-placeholder::before { top: -10px; width: 27px; height: 15px; border-radius: 3px; }
.loja-cart-item-visual .loja-product-placeholder i { font-size: 1rem; }
.loja-cart-item-visual .loja-product-placeholder span { display: none; }
.loja-cart-item-category { color: var(--loja-green); font-size: .61rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.loja-cart-item-title { margin: 5px 0 4px; color: var(--loja-ink); font-family: "Newsreader", serif; font-size: 1.35rem; font-weight: 600; }
.loja-cart-item-price { margin: 0 0 10px; color: var(--loja-muted); font-size: .77rem; }
.loja-cart-item .loja-qty-control { min-height: 36px; }
.loja-cart-item .loja-qty-btn { width: 33px; height: 34px; font-size: .9rem; }
.loja-cart-item .loja-qty-value { width: 24px; font-size: .74rem; }
.loja-cart-item-end { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.loja-cart-remove {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 13px;
    border: 1px solid rgba(154, 76, 76, .28);
    border-radius: 999px;
    background: rgba(154, 76, 76, .06);
    color: #8b3e3e;
    font-family: "DM Sans", sans-serif;
    font-size: .7rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.loja-cart-remove:hover {
    border-color: #9a4c4c;
    background: #9a4c4c;
    color: #fff;
    transform: translateY(-1px);
}
.loja-cart-remove:focus-visible { outline: 2px solid #9a4c4c; outline-offset: 3px; }
[data-theme="dark"] .loja-cart-remove { border-color: rgba(232, 151, 151, .32); background: rgba(232, 151, 151, .08); color: #efa7a7; }
[data-theme="dark"] .loja-cart-remove:hover { border-color: #b85e5e; background: #9a4c4c; color: #fff; }
.loja-cart-line { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; color: var(--loja-muted); font-size: .81rem; }
.loja-cart-summary { position: sticky; top: 108px; padding: 28px; border: 1px solid var(--loja-line); border-radius: 22px; background: var(--loja-surface); box-shadow: 0 18px 45px rgba(27,33,29,.06); }
.loja-cart-summary .loja-eyebrow { margin-bottom: 12px; }
.loja-shipping-note { margin: 6px 0 18px; color: var(--loja-muted); font-size: .69rem; line-height: 1.55; }
.loja-shipping-note a { color: var(--loja-green); text-decoration: underline; text-underline-offset: 2px; }
.loja-cart-total { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-top: 1px solid var(--loja-line); color: var(--loja-ink); font-family: "Newsreader", serif; font-size: 1.25rem; font-weight: 600; }
.loja-checkout-button { width: 100%; margin-top: 8px; }
.loja-secure-note { display: flex; justify-content: center; align-items: center; gap: 9px; margin-top: 18px; color: var(--loja-muted); font-size: .65rem; }
.loja-checkout-error { display: none; margin-top: 14px; padding: 11px; border-radius: 9px; background: rgba(180,45,45,.1); color: #a63636; font-size: .72rem; }
.loja-checkout-error.is-visible { display: block; }
.loja-cart-empty { max-width: 560px; margin: 60px auto 0; padding: 55px; border: 1px solid var(--loja-line); border-radius: 28px; background: var(--loja-surface); text-align: center; }
.loja-cart-empty > span { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: var(--loja-sage); color: var(--loja-green); font-size: 1.4rem; }
.loja-cart-empty h2 { margin: 0 0 8px; font-size: 2rem; }
.loja-cart-empty p { margin-bottom: 24px; color: var(--loja-muted); font-size: .84rem; }

@media (max-width: 980px) {
    .loja-hero-grid { grid-template-columns: 1fr .7fr; gap: 30px; }
    .loja-hero-art { min-height: 350px; transform: scale(.86); }
    .loja-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .loja-card--featured { grid-column: span 2; }
    .loja-collection-header { grid-template-columns: 50px 1fr; }
    .loja-collection-header > p { grid-column: 2; }
    .loja-product-hero { gap: 45px; }
    .loja-product-visual { min-height: 500px; }
    .loja-cart-layout { grid-template-columns: 1fr 330px; gap: 28px; }
}

@media (max-width: 760px) {
    .loja-body .container { width: min(100% - 28px, 1180px); }
    .loja-header-inner { grid-template-columns: 1fr auto; min-height: 68px; }
    .loja-nav { display: none; }
    .loja-back-link { grid-column: 1 / -1; grid-row: 2; padding-bottom: 12px; }
    .loja-inner-page .loja-header-inner { padding-top: 10px; }
    .loja-cart-label { display: none; }
    .loja-hero { padding: 46px 0 34px; }
    .loja-hero-grid { grid-template-columns: 1fr; }
    .loja-hero h1 { font-size: clamp(3.05rem, 14vw, 4.5rem); }
    .loja-hero-art { min-height: 185px; margin-top: 4px; }
    .loja-hero-bottle { width: 88px; height: 145px; }
    .loja-hero-bottle::before { width: 44px; height: 22px; top: -15px; }
    .loja-hero-bottle i { font-size: 1.5rem; }
    .loja-orbit--one { width: 185px; height: 185px; }
    .loja-orbit--two { width: 132px; height: 132px; }
    .loja-hero-note { display: none; }
    .loja-hero-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 15px; }
    .loja-manifesto-grid { grid-template-columns: 1fr; }
    .loja-manifesto p { min-height: 92px; padding: 18px 4px; }
    .loja-manifesto p + p { border-left: 0; border-top: 1px solid var(--loja-line); }
    .loja-catalog-intro { padding: 70px 0 48px; }
    .loja-section-heading { display: block; }
    .loja-section-heading p { margin-top: 16px; }
    .loja-category-nav { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
    .loja-category-nav a { flex: 0 0 auto; }
    .loja-collection { padding: 62px 0 72px; }
    .loja-collection-header { grid-template-columns: 36px 1fr; gap: 12px; margin-bottom: 30px; }
    .loja-grid { grid-template-columns: 1fr; }
    .loja-card--featured { grid-column: auto; display: flex; }
    .loja-card--featured .loja-card-image { min-height: 300px; }
    .loja-card--featured .loja-card-title { font-size: 1.55rem; }
    .loja-card-image { min-height: 290px; }
    .loja-validation { padding: 62px 0; }
    .loja-validation-inner { grid-template-columns: 1fr; }
    .loja-validation-icon { width: 58px; height: 58px; }
    .loja-footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .loja-product-main { padding: 30px 0 70px; }
    .loja-product-hero { grid-template-columns: 1fr; gap: 35px; }
    .loja-product-media { position: relative; top: auto; }
    .loja-product-visual { min-height: 420px; }
    .loja-product-info h1 { font-size: 3.5rem; }
    .loja-cart-main { padding: 48px 0 70px; }
    .loja-cart-layout { grid-template-columns: 1fr; }
    .loja-cart-summary { position: relative; top: auto; }
    .loja-cart-item { grid-template-columns: 88px 1fr; gap: 14px; }
    .loja-cart-item-visual { width: 88px; height: 100px; }
    .loja-cart-item-end { grid-column: 2; flex-direction: row; justify-content: space-between; align-items: center; }
    .loja-footer-bottom { gap: 15px; flex-wrap: wrap; }
    .loja-add-toast { bottom: 14px; }
}

@media (max-width: 520px) {
    .loja-hero-copy > p { font-size: .86rem; line-height: 1.6; }
    .loja-hero-actions > span { display: none; }
    .loja-hero-art { min-height: 160px; margin-top: -8px; }
    .loja-catalog-intro { padding-top: 55px; }
    .loja-product-visual { min-height: 330px; border-radius: 22px; }
    .loja-product-visual::before { width: 260px; height: 260px; }
    .loja-product-visual .loja-product-placeholder { width: 150px; height: 230px; }
    .loja-photo-plan ul { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .loja-card,
    .loja-button,
    .loja-cart-remove,
    .loja-add-toast { transition: none; }
    .loja-cart-button.is-cart-receiving { animation: none; }
    .loja-cart-flyer { display: none; }
}
