/* MORASKI — monocromático preto, branco e cinzas */
:root {
    --bg: #f4f4f4;
    --surface: #ffffff;
    --elevated: #fafafa;
    --elevated-2: #ebebeb;
    --text: #0a0a0a;
    --muted: #6e6e6e;
    /* aliases de destaque → escala de cinza */
    --gold: #1a1a1a;
    --gold-dim: #0a0a0a;
    --gold-light: #3d3d3d;
    --sky: #525252;
    --line: rgba(0, 0, 0, 0.1);
    --glow: rgba(0, 0, 0, 0.14);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.11);
    --overlay: rgba(0, 0, 0, 0.5);
    --header-bg: rgba(255, 255, 255, 0.96);
    --glass: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(0, 0, 0, 0.18);
    --hero-fade: #f4f4f4;
    --card-scrim: rgba(0, 0, 0, 0.8);
    --on-gold: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --font-display: 'Bodoni Moda', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-weight-text: 400;
    --font-weight-medium: 500;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --header: 88px;
    --logo-h: clamp(72px, 10vw, 96px);
    --max: 1320px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
    --section-y: clamp(4.5rem, 10vw, 7rem);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: var(--font-weight-text);
    line-height: 1.65;
    letter-spacing: 0;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    font-feature-settings: 'kern' 1, 'liga' 1;
}
html.no-scroll,
body.no-scroll {
    overflow: hidden;
    touch-action: none;
}
body.no-scroll {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container {
    width: 100%;
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

/* Ambient */
.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}
.flight-line {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--muted), var(--text), transparent);
    z-index: 2000;
    pointer-events: none;
}
main { position: relative; z-index: 2; }

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Type — Inter (site) · Bodoni só na marca */
.brand-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95em;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.eyebrow {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text);
}
.page-title {
    font-size: clamp(2.15rem, 5vw, 3.15rem);
    line-height: 1.15;
}
.section-title {
    font-size: clamp(1.95rem, 4.5vw, 2.75rem);
    margin-bottom: 0.5rem;
    line-height: 1.15;
}
.product-info h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}
.text-muted { color: var(--muted); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--on-gold);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--glow); }
.btn-ghost {
    border: 1px solid var(--line);
    color: var(--text);
    background: var(--surface);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline {
    border: 1px solid var(--line);
    color: var(--text);
    width: 100%;
}
.btn-outline:hover { border-color: var(--gold); background: var(--glow); }
.btn-sm { padding: 0.65rem 1.15rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 1.85rem; font-size: 0.92rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }

/* Header */
.header {
    position: fixed;
    top: 2px; left: 0; right: 0;
    z-index: 1000;
    overflow: visible;
    transition: background 0.4s, box-shadow 0.4s;
    border-bottom: 1px solid transparent;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, transparent 100%);
}
.header.is-scrolled {
    background: var(--header-bg);
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--line);
}
.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: var(--header);
    gap: 1.5rem;
    overflow: visible;
}
.brand {
    position: relative;
    display: flex;
    align-items: center;
    justify-self: start;
    flex-shrink: 0;
    padding: 0.2rem 0.5rem 0.2rem 0;
    background: none;
    border: none;
    text-decoration: none;
    overflow: visible;
}
/* Halo sutil atrás da logo — cinza, centralizado */
.brand::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    width: 105%;
    height: 125%;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        ellipse 55% 50% at 50% 50%,
        rgba(0, 0, 0, 0.11) 0%,
        rgba(0, 0, 0, 0.05) 42%,
        transparent 72%
    );
    filter: blur(10px);
    animation: brand-halo 5s ease-in-out infinite;
}
@keyframes brand-halo {
    0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.96); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.04); }
}
.brand-logo {
    position: relative;
    z-index: 1;
    display: block;
    height: var(--logo-h);
    width: auto;
    min-width: 0;
    max-width: min(560px, 78vw);
    object-fit: contain;
    object-position: center center;
    background: transparent !important;
    border: none;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
}
.footer-brand .brand {
    padding: 0.35rem 0.5rem 0.35rem 0;
}
.footer-brand .brand::before {
    width: 115%;
    height: 140%;
    filter: blur(8px);
    animation-duration: 6s;
}
.brand-logo--footer {
    height: clamp(56px, 7vw, 76px);
    max-width: 280px;
    margin-bottom: 0.35rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}
@media (prefers-reduced-motion: reduce) {
    .brand::before { animation: none; opacity: 0.7; }
}

/* Header — home (Início · Catálogo · Contato) */
body[data-page="home"] {
    --logo-display-h: clamp(100px, 14vw, 158px);
    --header-home: calc(var(--logo-display-h) + 2.1rem);
}
.header--home {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    overflow: visible;
}
.header--home.is-scrolled {
    background: var(--header-bg);
}
.header-inner--home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: var(--header-home);
    padding: 0.15rem 0 0.3rem;
    gap: 0.05rem;
    position: relative;
    overflow: visible;
}
.header--home .brand-logo {
    height: var(--logo-display-h);
    max-width: min(680px, 94vw);
}
.header--home .brand {
    justify-self: center;
    align-self: center;
    padding: 0;
    margin-bottom: 0;
    line-height: 0;
    z-index: 2;
    position: relative;
}
.header--home .nav--home {
    width: 100%;
    justify-self: center;
    position: relative;
    z-index: 3;
    padding-top: 0;
}
.nav-list--home {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(2.25rem, 8vw, 5.75rem);
    list-style: none;
    flex-wrap: wrap;
}
.nav-link--home {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.6vw, 0.98rem);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--text);
    padding: 0.05rem 0;
    transition: opacity 0.25s ease;
}
.nav-link--home:hover,
.nav-link--home.active {
    color: var(--text);
    opacity: 0.5;
}
.header-actions--home {
    position: absolute;
    right: max(var(--gutter), env(safe-area-inset-right, 0px));
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    gap: 0.25rem;
}
.header--home .menu-btn {
    display: none;
}

/* Video banner — horizontal (16:9) */
.video-banner {
    position: relative;
    margin-top: var(--header-home, var(--header));
    padding: clamp(1rem, 3vw, 1.75rem) 0 clamp(1.25rem, 3vw, 2rem);
    background: var(--bg);
}
.video-banner-inner {
    display: flex;
    justify-content: center;
}
.video-banner-frame,
.moraski-media-frame--horizontal {
    aspect-ratio: 16 / 9;
}
.video-banner-frame.moraski-media-frame--vertical,
.moraski-media-frame--vertical {
    aspect-ratio: 9 / 16;
    max-width: min(420px, 100%);
    margin-left: auto;
    margin-right: auto;
}
.video-banner-frame {
    position: relative;
    width: 100%;
    max-height: min(72vh, 680px);
    background: #1a1a1a;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}
.video-banner-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.video-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 45%, transparent 72%);
    pointer-events: none;
}
.video-banner-copy {
    pointer-events: auto;
    max-width: min(520px, 90%);
}
.video-banner-title {
    font-size: clamp(1.65rem, 5vw, 2.25rem);
    color: #fff;
    margin-bottom: 0.65rem;
    line-height: 1.05;
}
.video-banner-text {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    font-weight: var(--font-weight-text);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.btn-video-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1.85rem;
    background: #fff;
    color: var(--text);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.04em;
    text-transform: none;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-video-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}
.video-banner-toggle {
    position: absolute;
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0));
    right: calc(0.85rem + env(safe-area-inset-right, 0));
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s;
}
.video-banner-toggle:hover {
    transform: scale(1.06);
}
.video-banner--no-video {
    background: #2e2e2e;
}
.video-banner--no-video .video-banner-media {
    opacity: 0;
}

.nav {
    justify-self: center;
}
.nav-list { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-link {
    font-size: 0.78rem;
    font-weight: var(--font-weight-medium);
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.25s;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active { color: var(--gold); }
.nav-dropdown { position: relative; }
.nav-dropdown-btn { display: flex; align-items: center; gap: 0.35rem; }
.nav-dropdown-btn i { font-size: 0.55rem; transition: transform 0.3s; }
.nav-dropdown.is-open .nav-dropdown-btn i { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 170px;
    background: var(--elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.4rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s var(--ease);
    box-shadow: var(--shadow-md);
}
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.82rem;
    color: var(--muted);
    border-radius: 6px;
    text-transform: none;
    letter-spacing: 0;
}
.nav-dropdown-menu a:hover { background: var(--elevated-2); color: var(--gold); }
.header-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 0.35rem;
}
.icon-btn {
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--text);
    font-size: 1rem;
    transition: background 0.25s, color 0.25s;
    position: relative;
}
.icon-btn:hover { background: var(--elevated); color: var(--gold); }
.cart-count {
    position: absolute; top: 4px; right: 4px;
    min-width: 16px; height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--on-gold);
    font-size: 0.6rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.menu-btn { display: none; }
.nav-overlay {
    position: fixed; inset: 0;
    background: var(--overlay);
    z-index: 998;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s;
}
.nav-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* Footer */
.footer {
    margin-top: 5rem;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--line);
    background: var(--surface);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.footer-brand .brand { display: inline-flex; margin-bottom: 0.5rem; }
.footer-brand p { margin-top: 0.75rem; font-size: 0.95rem; color: var(--muted); max-width: 300px; line-height: 1.65; }
.footer h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a { font-size: 0.88rem; color: var(--muted); transition: color 0.25s; }
.footer-links a:hover { color: var(--text); }
.footer-note { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.6rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.5rem; }
.newsletter-form input {
    padding: 0.7rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font: inherit;
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid var(--line); text-align: center; font-size: 0.8rem; color: var(--muted); }

/* Cart — painel central */
.cart-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--gutter);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.cart-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.cart-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}
.cart-panel {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(88vh, 760px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(18px) scale(0.98);
    transition: transform 0.45s var(--ease);
}
.cart-modal.is-open .cart-panel {
    transform: none;
}
.cart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.75rem;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
}
.cart-eyebrow {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.35rem;
}
.cart-header h2 {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 600;
    line-height: 1.15;
    text-transform: none;
    letter-spacing: -0.02em;
}
.cart-count-label {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 400;
}
.cart-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    flex-shrink: 0;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.cart-close:hover {
    border-color: var(--text);
    color: var(--text);
    background: var(--elevated);
}
.cart-body {
    display: grid;
    grid-template-columns: 1fr minmax(220px, 280px);
    flex: 1;
    min-height: 0;
    overflow: hidden;
}
.cart-items {
    overflow-y: auto;
    padding: 1.25rem 1.75rem;
    -webkit-overflow-scrolling: touch;
}
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 220px;
    padding: 2.5rem 1rem;
    gap: 0.75rem;
}
.cart-empty-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
}
.cart-empty-text {
    font-size: 0.9rem;
    color: var(--muted);
    max-width: 28ch;
    margin-bottom: 0.5rem;
}
.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 1rem 1.25rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-media {
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--elevated);
}
.cart-item-media img {
    width: 72px;
    height: 90px;
    object-fit: cover;
    display: block;
}
.cart-item-name {
    font-weight: 500;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.25s;
}
.cart-item-name:hover { color: var(--gold); }
.cart-item-variant {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}
.cart-item-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 0.65rem;
}
.cart-item-qty {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.2rem;
}
.cart-item-qty-val {
    min-width: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
}
.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
}
.qty-btn:hover { background: var(--elevated-2); color: var(--text); }
.cart-item-remove {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
    transition: color 0.25s, border-color 0.25s;
}
.cart-item-remove:hover {
    color: var(--text);
    border-bottom-color: var(--text);
}
.cart-item-price {
    text-align: right;
    padding-top: 0.15rem;
}
.cart-item-line-total {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}
.cart-item-unit {
    display: block;
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 0.2rem;
}
.cart-summary {
    border-left: 1px solid var(--line);
    background: var(--elevated);
    overflow-y: auto;
}
.cart-summary-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-height: 100%;
}
.cart-summary-title {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.25rem;
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    gap: 1rem;
}
.cart-summary-row--muted span:last-child {
    color: var(--muted);
    font-size: 0.82rem;
}
.cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 0;
    margin: 0.25rem 0 0.5rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
}
.cart-summary-total strong {
    font-size: 1.15rem;
    font-weight: 600;
}
.cart-summary .btn-block + .btn-block {
    margin-top: 0.35rem;
}

/* Modal & toast */
.modal-overlay {
    position: fixed; inset: 0;
    background: var(--overlay);
    z-index: 1200;
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
    opacity: 0; visibility: hidden;
    transition: 0.35s;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal {
    background: var(--elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    width: min(400px, 100%);
    transform: translateY(16px);
    transition: transform 0.4s var(--ease);
}
.modal-overlay.is-open .modal { transform: none; }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); }
.modal-close:hover { background: var(--elevated-2); color: var(--text); }
.modal { position: relative; }
.modal h2 { font-size: 1.75rem; margin-bottom: 1.25rem; }
.auth-form .field { display: block; margin-bottom: 1rem; }
.auth-form .field span { display: block; font-size: 0.78rem; color: var(--muted); margin-bottom: 0.35rem; }
.auth-form input {
    width: 100%; padding: 0.7rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font: inherit;
}
.auth-form input:focus { outline: none; border-color: var(--gold); }
.toast {
    position: fixed; bottom: 1.5rem; left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--elevated);
    border: 1px solid var(--line);
    color: var(--text);
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-size: 0.88rem;
    z-index: 1300;
    opacity: 0; pointer-events: none;
    transition: 0.4s var(--ease);
    box-shadow: var(--shadow-md);
}
.toast.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; }
.back-top {
    position: fixed; bottom: 1.5rem; right: 1.5rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--on-gold);
    z-index: 900;
    box-shadow: var(--shadow-sm);
    opacity: 0; visibility: hidden;
    transform: translateY(12px);
    transition: 0.35s;
}
.back-top.is-visible { opacity: 1; visibility: visible; transform: none; }

/* ——— HOME ——— */
.hero-home {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header) + 2rem) 0 clamp(3rem, 8vw, 5rem);
}
.hero-home-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-home-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
}
.hero-home-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, var(--hero-fade) 0%, rgba(244, 244, 244, 0.6) 38%, transparent 72%),
        linear-gradient(105deg, var(--hero-fade) 0%, rgba(244, 244, 244, 0.75) 40%, transparent 65%);
}
.hero-home-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: flex-end;
}
@media (min-width: 900px) {
    .hero-home-wrap {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: end;
    }
}
.hero-home-body {
    max-width: 680px;
}
.boarding-pass {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.25rem;
    padding: 0.65rem 1.15rem;
    margin-bottom: 1.5rem;
    border: 1px dashed var(--glass-border);
    border-radius: 8px;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: var(--glass);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}
.boarding-pass .bp-route {
    color: var(--text);
    font-weight: 700;
}
.hero-home h1 {
    font-size: clamp(3rem, 8.5vw, 5.25rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.05;
}
.hero-home h1 em {
    font-style: italic;
    color: var(--gold);
    display: inline-block;
}
.hero-home-lead {
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: var(--font-weight-text);
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.8;
}
.hero-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.hero-home-aside {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.25rem;
    background: var(--glass);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
@media (max-width: 899px) {
    .hero-home-aside {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
}
.hero-stat {
    text-align: center;
    padding: 0.5rem;
}
.hero-stat strong {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}
.hero-stat span {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.marquee-bar {
    background: var(--surface);
    border-block: 1px solid var(--line);
    padding: 0.75rem 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: marquee var(--marquee-duration, 36s) linear infinite;
}
.marquee-set {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
    padding-right: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}
.marquee-set span.accent { color: var(--gold); }
@keyframes marquee {
    to { transform: translateX(var(--marquee-end, -50%)); }
}

.section {
    padding: var(--section-y) 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}
.section--tight-top { padding-top: clamp(2rem, 5vw, 3rem); }
.section-head { margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head.center {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}
.section-head.center .text-muted {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 0.5rem;
}
.section-cta {
    text-align: center;
    margin-top: clamp(2rem, 5vw, 3rem);
}

/* Product card */
.product-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translate3d(0, -6px, 0);
    border-color: var(--glass-border);
    box-shadow: var(--shadow-md);
}
.product-card-media {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--elevated);
}
.product-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card-media img { transform: scale3d(1.04, 1.04, 1); }
.product-card-badges {
    position: absolute;
    top: 0.65rem; left: 0.65rem;
    display: flex; flex-wrap: wrap; gap: 0.35rem;
}
.badge {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
    background: var(--elevated);
    color: var(--gold);
    border: 1px solid var(--line);
}
.badge--tag-novo { color: #4a4a4a; }
.badge--tag-bestseller { color: var(--text); }
.badge--tag-aerolook { color: var(--muted); }
.badge--tag-limitado { color: #757575; }
.product-card-body {
    padding: 1.35rem 1.35rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.product-card-line {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}
.product-card-name {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    margin: 0.35rem 0 0.5rem;
    font-weight: 600;
    line-height: 1.25;
}
.product-card-name a:hover { color: var(--gold); }
.product-card-price {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}
.product-card-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: clamp(1.25rem, 3vw, 1.75rem);
    contain: layout style;
}
.product-grid--featured {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

/* Category tiles home */
.category-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.category-tile {
    position: relative;
    min-height: clamp(320px, 38vw, 420px);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    display: flex;
    align-items: flex-end;
    background: var(--elevated);
}
.category-tile-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    transition: transform 0.6s var(--ease);
}
.category-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        0deg,
        var(--card-scrim) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.12) 100%
    );
    pointer-events: none;
}
.category-tile:hover .category-tile-img {
    transform: scale(1.05);
}
.category-tile-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    width: 100%;
}
.category-tile-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
    color: #fff;
}
.category-tile-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
    line-height: 1.55;
}
.category-tile-content span {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.perks-section {
    background: var(--surface);
    border-block: 1px solid var(--line);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.perks-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
}
.perk {
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--elevated);
    transition: border-color 0.3s, transform 0.3s;
}
.perk:hover {
    border-color: var(--glass-border);
    transform: translateY(-4px);
}
.perk i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.perk h4 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
}
.perk p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* ——— SHOP PAGE ——— */
.page-hero {
    padding: calc(var(--header) + 2.5rem) 0 clamp(2rem, 5vw, 3rem);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, var(--elevated) 0%, var(--bg) 100%);
}
.page-hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}
.page-hero .page-title { margin-bottom: 0.75rem; }
.page-hero .text-muted { font-size: 1.05rem; max-width: 560px; line-height: 1.7; }
.breadcrumb {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--muted); }

.shop-layout {
    display: grid;
    grid-template-columns: minmax(240px, 280px) 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(2rem, 5vw, 3.5rem) 0 var(--section-y);
    align-items: start;
}
.shop-filters {
    position: sticky;
    top: calc(var(--header) + 1rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
}
.shop-filters h3 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.filter-group { margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.filter-group:last-child { border: none; margin: 0; padding: 0; }
.filter-group label.filter-label {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}
.filter-chips { display: flex; flex-direction: column; gap: 0.35rem; }
.filter-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
    cursor: pointer;
    padding: 0.35rem 0;
    transition: color 0.2s;
}
.filter-chip input { accent-color: var(--gold); }
.filter-chip:hover, .filter-chip:has(input:checked) { color: var(--text); }
.filter-select, .shop-search input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font: inherit;
    font-size: 0.88rem;
}
.filter-select:focus, .shop-search input:focus { outline: none; border-color: var(--gold); }
.filter-clear {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: underline;
}
.filter-clear:hover { color: var(--gold); }

.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.shop-search { flex: 1; min-width: 200px; max-width: 360px; }
.shop-results-count { font-size: 0.85rem; color: var(--muted); }
.shop-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--muted);
    border: 1px dashed var(--line);
    border-radius: var(--radius);
}
.filter-mobile-toggle {
    display: none;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    font-size: 0.85rem;
}

/* ——— PRODUCT PAGE ——— */
.product-page {
    padding: calc(var(--header) + 1.5rem) 0 var(--section-y);
}
.product-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    margin-top: 1rem;
}
.product-gallery-main {
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    margin-bottom: 0.75rem;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.product-thumb {
    width: 72px;
    height: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.25s, border-color 0.25s;
    padding: 0;
}
.product-thumb.is-active, .product-thumb:hover { opacity: 1; border-color: var(--gold); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info .product-line-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.product-info h1 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 0.5rem; }
.product-info .product-price-lg {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 1.25rem;
}
.product-desc { color: var(--muted); margin-bottom: 1.5rem; line-height: 1.7; }
.product-details {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
}
.product-details li {
    font-size: 0.88rem;
    color: var(--muted);
    padding: 0.35rem 0;
    padding-left: 1rem;
    position: relative;
}
.product-details li::before {
    content: '◆';
    position: absolute;
    left: 0;
    font-size: 0.45rem;
    color: var(--gold);
    top: 0.55rem;
}
.size-picker { margin-bottom: 1.25rem; }
.size-picker > span {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.6rem;
}
.size-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.size-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.size-btn:hover { border-color: var(--gold); }
.size-btn.is-selected {
    border-color: var(--gold);
    background: var(--glow);
    color: var(--gold);
}
.product-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.product-actions .btn-primary { flex: 1; min-width: 180px; }
.product-not-found {
    text-align: center;
    padding: 6rem 2rem;
}
.product-not-found h1 { margin-bottom: 1rem; }

.related-section { padding-top: 3rem; border-top: 1px solid var(--line); margin-top: 3rem; }

/* ——— SOBRE ——— */
.compare {
    position: relative;
    height: min(480px, 55vw);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    user-select: none;
}
.compare-after, .compare-before { position: absolute; inset: 0; }
.compare-after img, .compare-before img { width: 100%; height: 100%; object-fit: cover; }
.compare-before { width: 50%; overflow: hidden; z-index: 2; border-right: 2px solid var(--gold); }
.compare-label {
    position: absolute; bottom: 1rem; left: 1rem;
    padding: 0.35rem 0.7rem;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--text);
    box-shadow: var(--shadow-sm);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
}
.compare-after .compare-label { left: auto; right: 1rem; }
.compare-handle {
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 44px; transform: translateX(-50%);
    z-index: 3; cursor: ew-resize;
    display: flex; align-items: center; justify-content: center;
}
.compare-handle i {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--on-gold);
    display: flex; align-items: center; justify-content: center;
}
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 0.6rem;
}
.gallery-mosaic figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); }
.gallery-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-mosaic figure:hover img { transform: scale(1.04); }
.gallery-mosaic .span-2 { grid-column: span 2; }
.gallery-mosaic .span-row-2 { grid-row: span 2; }

.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}
.story-block img { border-radius: var(--radius); border: 1px solid var(--line); }

/* ——— CONTATO ——— */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    padding: 2rem 0 5rem;
}
.contact-info-card {
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.contact-info-card i { color: var(--gold); margin-bottom: 0.5rem; font-size: 1.1rem; }
.contact-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
}
.contact-form .field { display: block; margin-bottom: 1rem; }
.contact-form .field span { display: block; font-size: 0.78rem; color: var(--muted); margin-bottom: 0.35rem; }
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font: inherit;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    outline: none; border-color: var(--gold);
}
.faq-list { margin-top: 2rem; }
.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
}
.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}
.faq-item button i { color: var(--gold); transition: transform 0.3s; }
.faq-item.is-open button i { transform: rotate(180deg); }
.faq-answer {
    display: none;
    padding-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
}
.faq-item.is-open .faq-answer { display: block; }

/* ——— CHECKOUT ——— */
.checkout-page {
    padding: calc(var(--header) + 1.5rem) 0 var(--section-y);
}
.checkout-breadcrumb { margin-bottom: 1.25rem; }
.checkout-head {
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    max-width: 560px;
}
.checkout-head .page-title { margin-bottom: 0.35rem; }

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    flex-wrap: wrap;
}
.checkout-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.3s;
}
.checkout-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 600;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.checkout-step.is-active { color: var(--text); }
.checkout-step.is-active .checkout-step-num,
.checkout-step.is-done .checkout-step-num {
    background: var(--text);
    border-color: var(--text);
    color: var(--surface);
}
.checkout-step.is-done { color: var(--text); }
.checkout-step-line {
    width: clamp(2rem, 6vw, 4rem);
    height: 1px;
    background: var(--line);
    margin: 0 0.75rem;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 380px);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
}
.checkout-main { display: flex; flex-direction: column; gap: 1.25rem; }

.checkout-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.25rem, 3vw, 1.75rem);
}
.checkout-panel-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.checkout-panel-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--elevated);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--muted);
}

.checkout-fields {
    display: grid;
    gap: 1rem;
}
.checkout-fields--2 { grid-template-columns: repeat(2, 1fr); }
.checkout-fields--3 { grid-template-columns: repeat(2, 1fr); }
.checkout-fields .field--wide { grid-column: 1 / -1; }
.checkout-fields .field--cep { max-width: 160px; }
.field-status {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--muted);
    margin-left: 0.35rem;
}
.field-status--ok { color: var(--text); }
.field-status--err { color: var(--muted); }
.field-status--loading { color: var(--muted); }
.field--loading input {
    opacity: 0.65;
    background-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.04) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: field-shimmer 1s ease infinite;
}
@keyframes field-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}
.checkout-fields .field span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.35rem;
}
.checkout-fields input,
.checkout-fields select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    font: inherit;
    font-size: 0.92rem;
    transition: border-color 0.25s;
}
.checkout-fields input:focus,
.checkout-fields select:focus {
    outline: none;
    border-color: var(--text);
}

.checkout-shipping-options {
    margin-top: 1.25rem;
    border: none;
    padding: 0;
}
.checkout-shipping-legend {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.65rem;
}
.shipping-option {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
}
.shipping-option:has(input:checked) {
    border-color: var(--text);
    background: var(--elevated);
}
.shipping-option input { accent-color: var(--text); flex-shrink: 0; }
.shipping-option-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.shipping-option-body strong {
    font-size: 0.88rem;
    font-weight: 600;
}
.shipping-option-body span {
    font-size: 0.8rem;
    color: var(--muted);
}
.shipping-option-price {
    font-size: 1.05rem;
    font-weight: 600;
    white-space: nowrap;
}

.checkout-pay-tabs {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    padding: 0.25rem;
    background: var(--elevated);
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
}
.checkout-pay-tab {
    flex: 1;
    padding: 0.65rem 0.75rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--muted);
    transition: background 0.25s, color 0.25s;
}
.checkout-pay-tab.is-active {
    background: var(--surface);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}
.checkout-pix-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.35rem;
    background: var(--elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    transition: border-color 0.35s, background 0.35s;
}
.checkout-pix-box--idle {
    padding: 1.25rem;
}
.checkout-pix-box--idle .checkout-pix-content {
    width: 100%;
    align-items: flex-start;
}
.checkout-pix-box--loading {
    border-style: dashed;
}
.checkout-pix-box--ready {
    border-color: var(--text);
    background: var(--surface);
}
.checkout-pix-qr-wrap {
    position: relative;
    width: 168px;
    height: 168px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
}
.checkout-pix-qr-wrap[hidden] {
    display: none !important;
}
.checkout-pix-loading,
.checkout-pix-qr-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    box-sizing: border-box;
}
.checkout-pix-qr-img {
    object-fit: contain;
    background: #fff;
}
.checkout-pix-qr-img[hidden] {
    display: none !important;
}
.checkout-pix-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: var(--surface);
    z-index: 2;
}
.checkout-pix-loading[hidden] {
    display: none !important;
}
.checkout-pix-loading-text {
    font-size: 0.75rem;
    color: var(--muted);
}
.checkout-pix-spinner {
    width: 32px;
    height: 32px;
    border: 2px solid var(--line);
    border-top-color: var(--text);
    border-radius: 50%;
    animation: checkout-spin 0.7s linear infinite;
}
@keyframes checkout-spin {
    to { transform: rotate(360deg); }
}
.checkout-pix-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.checkout-pix-lead {
    font-weight: 600;
    font-size: 0.95rem;
}
.checkout-pix-amount {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
}
.checkout-pix-code-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
}
.checkout-pix-copy {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}
.checkout-pix-copy input {
    flex: 1;
    min-width: 0;
    padding: 0.55rem 0.75rem;
    font-size: 0.72rem;
    font-family: ui-monospace, monospace;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
}
.checkout-pix-copy input:focus {
    outline: none;
    border-color: var(--text);
}
.checkout-pix-timer {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
}
.checkout-pix-generate {
    align-self: flex-start;
    margin-top: 0.35rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.checkout-pix-box--ready .checkout-pix-generate,
.checkout-pix-box--loading .checkout-pix-generate {
    display: none;
}
.checkout-pix-box--idle .checkout-pix-note {
    margin-bottom: 0.15rem;
}
.checkout-pix-box--ready .checkout-pix-note {
    display: block;
}
.checkout-pix-note,
.checkout-boleto-note {
    font-size: 0.88rem;
    line-height: 1.6;
}
.checkout-boleto-note i { margin-right: 0.35rem; color: var(--muted); }

.checkout-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.55;
    cursor: pointer;
}
.checkout-consent input { accent-color: var(--text); margin-top: 0.2rem; flex-shrink: 0; }
.checkout-consent a { color: var(--text); text-decoration: underline; }
.checkout-submit { margin-top: 0.25rem; }

.checkout-summary-inner {
    position: sticky;
    top: calc(var(--header) + 1rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.checkout-summary-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}
.checkout-items {
    list-style: none;
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding-right: 0.25rem;
}
.checkout-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
}
.checkout-item:last-child { border-bottom: none; }
.checkout-item-thumb {
    width: 52px;
    height: 66px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    border: 1px solid var(--line);
}
.checkout-item-info { flex: 1; min-width: 0; }
.checkout-item-name {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.15rem;
    line-height: 1.3;
}
.checkout-item-meta {
    font-size: 0.75rem;
    color: var(--muted);
}
.checkout-item-price {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}
.checkout-coupon {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}
.checkout-coupon input {
    flex: 1;
    padding: 0.6rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg);
    font: inherit;
    font-size: 0.85rem;
}
.checkout-coupon input:focus { outline: none; border-color: var(--text); }
.checkout-coupon-msg {
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
}
.checkout-coupon-msg--ok { color: var(--text); }
.checkout-coupon-msg--err { color: var(--muted); }

.checkout-totals { margin-bottom: 1.25rem; }
.checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.4rem 0;
    font-size: 0.88rem;
}
.checkout-total-row dt { color: var(--muted); font-weight: 400; }
.checkout-total-row dd { font-weight: 500; margin: 0; }
.checkout-total-row--discount dd { color: var(--muted); }
.checkout-total-row--grand {
    margin-top: 0.5rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--line);
    font-size: 1.05rem;
}
.checkout-total-row--grand dt {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}
.checkout-total-row--grand dd {
    font-size: 1.25rem;
    font-weight: 600;
}

.checkout-trust {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.checkout-trust li {
    font-size: 0.78rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.checkout-trust i { color: var(--text); width: 1rem; text-align: center; }

.checkout-empty,
.checkout-success {
    text-align: center;
    padding: clamp(3rem, 8vw, 5rem) 1.5rem;
    max-width: 520px;
    margin-inline: auto;
}
.checkout-empty i {
    font-size: 2.5rem;
    color: var(--muted);
    margin-bottom: 1rem;
}
.checkout-empty h2,
.checkout-success .section-title {
    margin-bottom: 0.75rem;
}
.checkout-empty .btn { margin-top: 1.25rem; }

.checkout-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--text);
    color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
}
.checkout-success-id { margin-bottom: 0.75rem; }
.checkout-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid--featured { grid-template-columns: repeat(2, 1fr); }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-filters {
        position: fixed;
        top: 0; left: 0;
        width: min(300px, 90vw);
        height: 100%;
        z-index: 1050;
        transform: translateX(-100%);
        transition: transform 0.4s var(--ease);
        border-radius: 0;
        overflow-y: auto;
    }
    .shop-filters.is-open { transform: translateX(0); }
    .filter-mobile-toggle { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
    .product-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .category-tiles { grid-template-columns: 1fr; }
    .perks-row { grid-template-columns: repeat(2, 1fr); }
    .story-block { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-summary-inner { position: static; }
    .checkout-fields--2,
    .checkout-fields--3 { grid-template-columns: 1fr; }
    .checkout-fields .field--cep { max-width: none; }
    .checkout-steps { gap: 0.35rem; }
    .checkout-step-line { width: 1.5rem; margin: 0 0.35rem; }
    .checkout-step span:not(.checkout-step-num) { display: none; }
}
@media (max-width: 768px) {
    :root {
        --header: 80px;
        --logo-h: clamp(56px, 14vw, 72px);
    }
    .header-inner {
        grid-template-columns: 1fr auto;
        gap: 0.75rem;
    }
    .header .brand {
        padding-right: 0.25rem;
    }
    .brand-logo {
        min-width: 120px;
        max-width: min(280px, 72vw);
    }
    .nav {
        justify-self: auto;
        position: fixed;
        top: calc(var(--header) + 2px);
        right: 0;
        width: min(300px, 88vw);
        height: calc(100dvh - var(--header));
        background: var(--surface);
        border-left: 1px solid var(--line);
        padding: 1.25rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 999;
    }
    .nav.is-open { transform: translateX(0); }
    .menu-btn { display: flex; }
    .hero-home-aside {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .hero-stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--line);
    }
    .hero-stat:last-child { border-bottom: none; }
    .hero-stat strong { margin-bottom: 0; font-size: 1.5rem; }
    .product-card-actions {
        grid-template-columns: 1fr;
    }
    .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-list > li { border-bottom: 1px solid var(--line); }
    .nav-link { display: block; padding: 1rem 0; }
    .nav-dropdown-menu {
        position: static; transform: none;
        opacity: 1; visibility: visible; pointer-events: auto;
        box-shadow: none; border: none; background: transparent;
        display: none; padding-left: 0.5rem;
    }
    .nav-dropdown.is-open .nav-dropdown-menu { display: block; }
    .product-grid--featured { grid-template-columns: 1fr; }
    .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
    .perks-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    .reveal, .marquee-track { animation: none; transition: none; }
    .reveal { opacity: 1; transform: none; }
}
