/* ============================================
   JBN CLUB — Design System
   Inspiração: Hermès, Loro Piana
   Paleta: off-white + preto + accent laranja queimado
   ============================================ */

:root {
    /* Cores */
    --bg: #fafaf7;
    --bg-alt: #f4f2ec;
    --bg-warm: #f0ece4;
    --ink: #0a0a0a;
    --ink-soft: #1a1a1a;
    --ink-muted: #4a4744;
    --line: #e8e4dc;
    --line-strong: #c9c3b6;
    --accent: #d4541e;
    --accent-dark: #b04415;
    --accent-soft: #f5e8e0;
    --white: #ffffff;
    --success: #4a6741;
    --danger: #a83232;

    /* Tipografia */
    --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --sans: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', 'Space Mono', monospace;

    /* Espaçamento */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 96px;
    --space-4xl: 128px;

    /* Outros */
    --maxw: 1320px;
    --maxw-narrow: 960px;
    --radius: 0px;
    --radius-sm: 2px;
    --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* ============================================
   TIPOGRAFIA
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.display {
    font-family: var(--serif);
    font-size: clamp(48px, 8vw, 128px);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 0.95;
}

.display em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.h1 em {
    font-style: italic;
    color: var(--accent);
}

.h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.h3 {
    font-family: var(--serif);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 400;
    line-height: 1.25;
}

.eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-muted);
    font-weight: 500;
}

.lead {
    font-family: var(--serif);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.5;
    color: var(--ink-muted);
    font-weight: 300;
}

.text-muted { color: var(--ink-muted); }
.text-accent { color: var(--accent); }
.italic { font-style: italic; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-narrow {
    max-width: var(--maxw-narrow);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-sm {
    padding: var(--space-2xl) 0;
}

.divider {
    height: 1px;
    background: var(--line);
    margin: 0;
}

.divider-thick {
    height: 1px;
    background: var(--ink);
    margin: 0;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement {
    background: var(--ink);
    color: var(--bg);
    padding: 10px var(--space-xl);
    text-align: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.announcement strong {
    color: var(--accent);
    font-weight: 500;
}

/* ============================================
   NAV (DESKTOP + MOBILE)
   ============================================ */
.nav {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all var(--transition);
}

.nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: var(--space-md) var(--space-xl);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-md);
    min-height: 72px;
}

.nav-side {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-side-left {
    justify-content: flex-start;
}

.nav-side-right {
    justify-content: flex-end;
    gap: 14px;
}

.nav-links-desktop {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.nav-burger {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-burger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--ink);
    transition: all var(--transition);
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
    opacity: 0;
}
.nav-burger.open span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

.nav-logo-wrap {
    text-decoration: none;
    display: block;
    line-height: 1;
}

.nav-logo {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--ink);
    text-align: center;
    line-height: 1;
    white-space: nowrap;
}

.nav-logo em {
    font-style: italic;
    color: var(--accent);
}

.nav-logo-sub {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--ink-muted);
    text-transform: uppercase;
    margin-top: 4px;
    text-align: center;
    white-space: nowrap;
}

.nav-link {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--ink);
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    text-decoration: none;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: color var(--transition);
    position: relative;
    flex-shrink: 0;
}

.nav-icon:hover {
    color: var(--accent);
}

.nav-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.4;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--accent);
    color: var(--white);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ============================================
   MOBILE DRAWER
   ============================================ */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0s linear 300ms;
}

.mobile-drawer.open {
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
}

.mobile-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-drawer.open .mobile-drawer-overlay {
    opacity: 1;
}

.mobile-drawer-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 86%;
    max-width: 360px;
    background: var(--bg);
    transform: translateX(-100%);
    transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: var(--space-xl) var(--space-lg);
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.08);
}

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

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--line);
    margin-bottom: var(--space-lg);
}

.mobile-drawer-close {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: var(--ink);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
}

.mobile-drawer-link {
    padding: 14px 0;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    transition: color var(--transition);
}

.mobile-drawer-link:hover,
.mobile-drawer-link:active {
    color: var(--accent);
}

.mobile-drawer-link-muted {
    font-size: 14px;
    font-family: var(--mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.mobile-drawer-divider {
    height: 1px;
    background: var(--line);
    margin: var(--space-lg) 0;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 16px 32px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--bg);
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
}

.btn-outline:hover {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--line-strong);
    color: var(--ink);
}

.btn-ghost:hover {
    border-color: var(--ink);
    background: transparent;
    color: var(--accent);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 11px;
}

.btn-lg {
    padding: 20px 48px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: all var(--transition);
}

.link-arrow:hover {
    color: var(--accent);
    border-color: var(--accent);
    gap: 12px;
}

.link-arrow::after {
    content: '→';
    transition: transform var(--transition);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-text .eyebrow {
    margin-bottom: var(--space-lg);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-desc {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.5;
    color: var(--ink-muted);
    margin-bottom: var(--space-xl);
    max-width: 460px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-image {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #2a2520 0%, #1a1814 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 84, 30, 0.15) 0%, transparent 60%);
}

.hero-image-label {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    color: var(--bg);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    z-index: 2;
}

.hero-image-label strong {
    display: block;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    margin-top: 4px;
    color: var(--white);
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-2xl);
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.section-header-text {
    max-width: 600px;
}

.section-header .eyebrow {
    margin-bottom: var(--space-md);
    display: block;
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header-center {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header-center .eyebrow {
    margin-bottom: var(--space-md);
}

/* ============================================
   GRID DE CATEGORIAS
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-lg);
}

/* Limita o máximo de colunas a 4 visualmente */
.categories-grid[data-cats="1"] { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
.categories-grid[data-cats="2"] { grid-template-columns: repeat(2, 1fr); }
.categories-grid[data-cats="3"] { grid-template-columns: repeat(3, 1fr); }
.categories-grid[data-cats="4"] { grid-template-columns: repeat(4, 1fr); }

.category-card {
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    background: var(--bg-warm);
    cursor: pointer;
    transition: all var(--transition-slow);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.category-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d4c4a8 0%, #b8a584 100%);
    transition: transform var(--transition-slow);
}

.category-card:nth-child(3n+2) .category-card-bg {
    background: linear-gradient(135deg, #2a2520 0%, #1a1814 100%);
}

.category-card:nth-child(3n+3) .category-card-bg {
    background: linear-gradient(135deg, #d4541e 0%, #a8421a 100%);
}

.category-card:hover .category-card-bg {
    transform: scale(1.05);
}

.category-card-content {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    right: var(--space-xl);
    color: var(--white);
    z-index: 2;
}

.category-card-content .eyebrow {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-sm);
}

.category-card h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: var(--space-sm);
}

.category-card-arrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-flex;
    gap: var(--space-sm);
    align-items: center;
}

/* ============================================
   PRODUCT CARD
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg) var(--space-md);
}

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

.product-card {
    position: relative;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
}

.product-card-image {
    aspect-ratio: 4/5;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.product-card-image-inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-warm) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-slow);
}

.product-card-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image-inner {
    transform: scale(1.03);
}

.product-card:hover .product-card-image-inner img {
    transform: scale(1.03);
}

.product-card-placeholder {
    font-family: var(--serif);
    font-size: 64px;
    font-style: italic;
    color: var(--line-strong);
    opacity: 0.4;
}

.product-card-condition {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    padding: 5px 10px;
    background: var(--bg);
    color: var(--ink);
    text-transform: uppercase;
    z-index: 2;
}

.product-card-condition.usado {
    background: var(--ink);
    color: var(--bg);
}

.product-card-condition.deadstock {
    background: var(--accent);
    color: var(--white);
}

.product-card-fav {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    background: var(--bg);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: all var(--transition);
}

.product-card:hover .product-card-fav {
    opacity: 1;
}

.product-card-fav:hover {
    background: var(--accent);
    color: var(--white);
}

.product-card-fav.active {
    opacity: 1;
    background: var(--accent);
    color: var(--white);
}

.product-card-fav svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.5;
}

.product-card-info {
    padding: 0 var(--space-xs);
}

.product-card-brand {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 6px;
}

.product-card-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: var(--space-sm);
    transition: color var(--transition);
}

.product-card:hover .product-card-name {
    color: var(--accent);
}

.product-card-price-block {
    margin-top: 8px;
}

.product-card-price {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    display: flex;
    gap: 8px;
    align-items: baseline;
    line-height: 1.1;
}

.product-card-price-tag {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
}

.product-card-price-parc {
    font-size: 12px;
    color: var(--ink-muted);
    margin-top: 4px;
    font-family: var(--sans);
}

.product-card-price-old {
    font-size: 12px;
    font-weight: 400;
    color: var(--ink-muted);
    text-decoration: line-through;
    margin-top: 4px;
}

/* ============================================
   DROP STRIP
   ============================================ */
.drop-strip {
    background: var(--ink);
    color: var(--bg);
    padding: var(--space-2xl) 0;
}

.drop-strip-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-2xl);
    align-items: center;
}

.drop-strip h2 {
    color: var(--bg);
    font-style: italic;
}

.drop-strip h2 em {
    color: var(--accent);
}

.drop-strip p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-md);
    max-width: 500px;
}

.drop-timer {
    display: flex;
    gap: var(--space-md);
}

.drop-timer-unit {
    text-align: center;
    min-width: 70px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-md);
}

.drop-timer-num {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 4px;
    display: block;
}

.drop-timer-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   AUTENTICIDADE / FEATURES
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    color: var(--accent);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1;
}

.feature h4 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: var(--space-sm);
}

.feature p {
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.6;
}

/* ============================================
   CLUB CTA
   ============================================ */
.club-cta {
    background: var(--ink);
    color: var(--bg);
    padding: var(--space-4xl) 0;
    text-align: center;
}

.club-cta-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.club-cta .eyebrow {
    color: var(--accent);
    margin-bottom: var(--space-lg);
}

.club-cta h2 {
    color: var(--bg);
    margin-bottom: var(--space-lg);
}

.club-cta h2 em {
    color: var(--accent);
}

.club-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
}

/* ============================================
   FILTROS / LOJA
   ============================================ */
.shop-header {
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--line);
}

.shop-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.breadcrumb {
    display: flex;
    gap: var(--space-sm);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: var(--space-md);
}

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

.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--space-2xl);
    padding: var(--space-2xl) 0;
}

.shop-sidebar h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--ink);
}

.filter-group {
    margin-bottom: var(--space-xl);
}

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-list a {
    font-size: 14px;
    color: var(--ink-muted);
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    transition: color var(--transition);
}

.filter-list a:hover {
    color: var(--accent);
}

.filter-list a.active {
    color: var(--ink);
    font-weight: 500;
}

.filter-list .count {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-muted);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--line);
}

.shop-toolbar-info {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.shop-toolbar select {
    background: transparent;
    border: 1px solid var(--line-strong);
    padding: 8px 32px 8px 12px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%230a0a0a' stroke-width='1.2' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.filter-toggle-mobile {
    display: none;
}

/* ============================================
   PÁGINA PRODUTO
   ============================================ */
.product-detail {
    padding: var(--space-2xl) 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: flex-start;
}

.product-gallery {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-md);
}

.product-thumbs {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.product-thumb {
    aspect-ratio: 1;
    background: var(--bg-alt);
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.product-thumb.active {
    border-color: var(--ink);
}

.product-thumb:hover {
    opacity: 0.8;
}

.product-main-image {
    aspect-ratio: 1;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.product-main-image-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-warm) 100%);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 200ms;
}

.product-info-side {
    position: sticky;
    top: 100px;
    padding-left: var(--space-xl);
}

.product-info-brand {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: var(--space-md);
}

.product-info-name {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.product-info-price {
    display: flex;
    gap: var(--space-md);
    align-items: baseline;
    margin-bottom: var(--space-xs);
}

.product-info-price-current {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--ink);
}

.product-info-price-old {
    font-size: 18px;
    color: var(--ink-muted);
    text-decoration: line-through;
}

.product-info-price-installments {
    font-size: 12px;
    color: var(--ink-muted);
    font-family: var(--mono);
    margin-bottom: var(--space-xl);
}

/* Bloco de preços do detalhe (Pix + Cartão) */
.product-prices {
    margin-bottom: var(--space-xl);
}

.product-price-pix {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.product-price-pix-value {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
}

.product-price-pix-tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--white);
    padding: 5px 10px;
    font-weight: 500;
}

.product-price-cartao {
    margin-top: 10px;
    font-size: 14px;
    color: var(--ink-muted);
}

.product-price-cartao strong {
    color: var(--ink);
    font-weight: 500;
}

.product-price-old-row {
    margin-top: 8px;
    font-size: 12px;
    color: var(--ink-muted);
    font-family: var(--mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-divider {
    height: 1px;
    background: var(--line);
    margin: var(--space-xl) 0;
}

.product-section-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    color: var(--ink);
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: var(--space-xl);
}

.size-option {
    padding: 14px 8px;
    border: 1px solid var(--line-strong);
    background: transparent;
    text-align: center;
    cursor: pointer;
    font-family: var(--mono);
    font-size: 12px;
    transition: all var(--transition);
}

.size-option:hover {
    border-color: var(--ink);
}

.size-option.active {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

.size-option.disabled {
    color: var(--line-strong);
    cursor: not-allowed;
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.accordion {
    border-top: 1px solid var(--line);
}

.accordion-item {
    border-bottom: 1px solid var(--line);
}

.accordion-header {
    width: 100%;
    padding: var(--space-md) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    cursor: pointer;
    background: transparent;
    text-align: left;
}

.accordion-header::after {
    content: '+';
    font-family: var(--serif);
    font-size: 24px;
    transition: transform var(--transition);
}

.accordion-item.open .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.accordion-item.open .accordion-body {
    max-height: 600px;
    padding-bottom: var(--space-md);
}

.accordion-body p {
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   CARRINHO / CHECKOUT
   ============================================ */
.checkout-header {
    padding: var(--space-2xl) 0 var(--space-xl);
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--ink-muted);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
}

.checkout-step-num {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 400;
}

.checkout-step.active {
    color: var(--ink);
}

.checkout-step.active .checkout-step-num {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

.checkout-step.done .checkout-step-num {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-2xl);
    padding: var(--space-2xl) 0;
}

.checkout-summary {
    background: var(--bg-alt);
    padding: var(--space-xl);
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.checkout-summary h3 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--line-strong);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    font-size: 14px;
    color: var(--ink-muted);
}

.summary-line.total {
    border-top: 1px solid var(--line-strong);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
}

.cart-item-image {
    width: 100px;
    aspect-ratio: 1;
    background: var(--bg-alt);
}

.cart-item-image-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-warm) 100%);
}

.cart-item-info h4 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 4px;
}

.cart-item-info .meta {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.qty-control {
    display: inline-flex;
    border: 1px solid var(--line-strong);
}

.qty-control button {
    width: 32px;
    height: 32px;
    background: transparent;
    color: var(--ink);
    transition: all var(--transition);
}

.qty-control button:hover {
    background: var(--ink);
    color: var(--bg);
}

.qty-control input {
    width: 40px;
    height: 32px;
    border: none;
    border-left: 1px solid var(--line-strong);
    border-right: 1px solid var(--line-strong);
    text-align: center;
    background: transparent;
    font-family: var(--mono);
    font-size: 13px;
    color: var(--ink);
}

.cart-item-price {
    text-align: right;
    font-family: var(--serif);
    font-size: 18px;
}

.cart-item-remove {
    color: var(--ink-muted);
    font-size: 12px;
    text-decoration: underline;
    margin-top: var(--space-xs);
    display: inline-block;
}

.cart-item-remove:hover {
    color: var(--danger);
}

/* ============================================
   FORMULÁRIOS
   ============================================ */
.form-group {
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-label {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: var(--space-xs);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--line-strong);
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink);
    transition: border-color var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--ink);
}

.form-control:disabled {
    background: var(--bg-alt);
    color: var(--ink-muted);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.form-error {
    color: var(--danger);
    font-size: 12px;
    margin-top: 4px;
    font-family: var(--mono);
}

.form-success {
    color: var(--success);
    font-size: 13px;
    padding: var(--space-md);
    background: rgba(74, 103, 65, 0.08);
    border-left: 2px solid var(--success);
}

/* Payment methods */
.payment-method {
    display: block;
    border: 1px solid var(--line-strong);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.payment-method:hover {
    border-color: var(--ink);
}

.payment-method input[type="radio"] {
    display: none;
}

.payment-method.selected {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.payment-method-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.payment-method-info {
    font-size: 13px;
    color: var(--ink-muted);
    margin-top: 4px;
}

/* ============================================
   AUTH (login/cadastro)
   ============================================ */
.auth-page {
    padding: var(--space-3xl) 0;
    min-height: 70vh;
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    max-width: 960px;
    margin: 0 auto;
}

.auth-card {
    border: 1px solid var(--line);
    padding: var(--space-2xl);
    background: var(--bg);
}

.auth-card h2 {
    margin-bottom: var(--space-sm);
}

.auth-card .lead {
    margin-bottom: var(--space-xl);
    font-size: 16px;
}

.auth-divider {
    text-align: center;
    margin: var(--space-md) 0;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.auth-link {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-decoration: underline;
    text-transform: uppercase;
}

.auth-form .btn {
    margin-top: var(--space-md);
}

.auth-single {
    max-width: 480px;
    margin: 0 auto;
}

/* ============================================
   CONTA DO CLIENTE
   ============================================ */
.account-page {
    padding: var(--space-2xl) 0;
}

.account-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--space-2xl);
}

.account-sidebar {
    border-right: 1px solid var(--line);
    padding-right: var(--space-xl);
}

.account-sidebar-header {
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--line);
    margin-bottom: var(--space-md);
}

.account-sidebar-header .nome {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
}

.account-sidebar-header .email {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-muted);
    margin-top: 4px;
}

.account-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.account-menu li a {
    padding: 10px 0;
    font-size: 13px;
    color: var(--ink);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
    display: block;
}

.account-menu li a:hover,
.account-menu li a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.account-content h2 {
    margin-bottom: var(--space-xl);
}

.order-list {
    list-style: none;
    border-top: 1px solid var(--line);
}

.order-item {
    border-bottom: 1px solid var(--line);
    padding: var(--space-lg) 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-md);
    align-items: center;
}

.order-item-number {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--ink-muted);
    margin-bottom: 4px;
}

.order-item-title {
    font-family: var(--serif);
    font-size: 18px;
    margin-bottom: 4px;
}

.order-item-date {
    font-size: 13px;
    color: var(--ink-muted);
}

.order-status {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 10px;
    border: 1px solid currentColor;
}

.order-status.pendente { color: var(--ink-muted); }
.order-status.pago { color: var(--accent); }
.order-status.enviado { color: #2563eb; }
.order-status.entregue { color: var(--success); }
.order-status.cancelado { color: var(--danger); }

/* ============================================
   ADMIN PANEL
   ============================================ */
body.admin {
    background: #f7f7f4;
}

.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--ink);
    color: var(--bg);
    padding: var(--space-xl);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar-logo {
    font-family: var(--serif);
    font-size: 24px;
    margin-bottom: 4px;
}

.admin-sidebar-logo em {
    color: var(--accent);
    font-style: italic;
}

.admin-sidebar-sub {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: var(--space-2xl);
}

.admin-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-menu li a {
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: all var(--transition);
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.admin-menu li a:hover,
.admin-menu li a.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.admin-menu li a.active {
    border-left: 2px solid var(--accent);
    padding-left: 14px;
}

.admin-menu-section {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    padding: var(--space-md) var(--space-md) var(--space-sm);
    margin-top: var(--space-md);
}

.admin-content {
    padding: var(--space-xl);
    max-width: 100%;
    overflow-x: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--line);
}

.admin-header h1 {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.admin-stat {
    background: var(--white);
    padding: var(--space-lg);
    border: 1px solid var(--line);
}

.admin-stat-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: var(--space-sm);
}

.admin-stat-value {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
}

.admin-stat-trend {
    font-size: 12px;
    color: var(--success);
    margin-top: var(--space-xs);
}

.admin-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
}

.admin-card h3 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--line);
}

.admin-table {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: var(--space-md);
    background: var(--bg-alt);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 500;
    border-bottom: 1px solid var(--line);
}

.admin-table td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.admin-table tr:hover {
    background: var(--bg);
}

.admin-table .actions {
    display: flex;
    gap: var(--space-sm);
}

.admin-table .actions a {
    padding: 4px 10px;
    border: 1px solid var(--line-strong);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all var(--transition);
}

.admin-table .actions a:hover {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

.admin-table .actions a.danger:hover {
    background: var(--danger);
    border-color: var(--danger);
    color: var(--white);
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    gap: var(--space-md);
    flex-wrap: wrap;
}

.admin-search {
    flex: 1;
    max-width: 400px;
}

/* Login admin */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    padding: var(--space-xl);
}

.admin-login-card {
    background: var(--bg);
    padding: var(--space-2xl);
    max-width: 420px;
    width: 100%;
}

.admin-login-card .nav-logo {
    text-align: center;
    margin-bottom: var(--space-xs);
}

.admin-login-card .nav-logo-sub {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--ink);
    color: var(--bg);
    padding: var(--space-3xl) 0 var(--space-xl);
    margin-top: var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .nav-logo {
    color: var(--bg);
    text-align: left;
    margin-bottom: var(--space-md);
}

.footer-brand .nav-logo em {
    color: var(--accent);
}

.footer-brand .nav-logo-sub {
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
    font-weight: 300;
    font-style: italic;
}

.footer-col h5 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-xl);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

/* ============================================
   TOAST
   ============================================ */
.toast {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    background: var(--ink);
    color: var(--bg);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition);
    max-width: 400px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success { border-left: 3px solid var(--accent); }
.toast.error { border-left: 3px solid var(--danger); }

/* ============================================
   SOBRE / BRAND STORY
   ============================================ */
.about-hero {
    padding: var(--space-4xl) 0;
    text-align: center;
}

.about-hero .display {
    margin-bottom: var(--space-xl);
}

.about-hero p {
    max-width: 700px;
    margin: 0 auto;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-stat {
    text-align: center;
}

.about-stat-num {
    font-family: var(--serif);
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.about-stat-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.process-step {
    border-top: 1px solid var(--ink);
    padding-top: var(--space-md);
}

.process-step-num {
    font-family: var(--serif);
    font-size: 14px;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.process-step h4 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: var(--space-sm);
}

.process-step p {
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.6;
}

/* ============================================
   ESTADOS / EMPTY
   ============================================ */
.empty-state {
    text-align: center;
    padding: var(--space-3xl) 0;
}

.empty-state h3 {
    margin-bottom: var(--space-md);
}

.empty-state p {
    color: var(--ink-muted);
    margin-bottom: var(--space-lg);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: 13px;
    border-left: 3px solid;
}

.alert-success {
    background: rgba(74, 103, 65, 0.08);
    border-color: var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(168, 50, 50, 0.08);
    border-color: var(--danger);
    color: var(--danger);
}

.alert-info {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent-dark);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 800ms cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
    .container, .container-narrow { padding: 0 var(--space-lg); }
    .section { padding: var(--space-3xl) 0; }
    .hero { padding: var(--space-2xl) 0 var(--space-3xl); }
    .hero-content { gap: var(--space-2xl); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-info-side { padding-left: 0; position: static; }
    .auth-grid { grid-template-columns: 1fr; }
    .admin-layout { grid-template-columns: 200px 1fr; }
    .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .nav-inner {
        grid-template-columns: 1fr auto 1fr;
        padding: 12px var(--space-md);
        gap: 8px;
        min-height: 64px;
    }
    .nav-links-desktop { display: none; }
    .nav-burger { display: flex; }
    .nav-logo { font-size: 22px; letter-spacing: 0.03em; }
    .nav-logo-sub { font-size: 8px; margin-top: 3px; }
    .nav-side-right { gap: 14px; }
    .nav-icon-account { display: none; } /* Conta vai pro drawer no mobile */
    .nav-icon { width: 20px; height: 20px; }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    .hero-image { aspect-ratio: 3/4; max-height: 500px; }

    .products-grid,
    .products-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; gap: var(--space-md); }

    .drop-strip-inner {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    .drop-timer { justify-content: flex-start; }

    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { display: none; }
    .filter-toggle-mobile { display: inline-flex; }

    .account-grid { grid-template-columns: 1fr; }
    .account-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding-right: 0;
        padding-bottom: var(--space-lg);
        margin-bottom: var(--space-lg);
    }

    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { position: static; height: auto; }

    .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
    .footer-bottom { flex-direction: column; gap: var(--space-sm); }

    .checkout-steps { gap: var(--space-md); }
    .checkout-step { font-size: 9px; }

    .form-row { grid-template-columns: 1fr; }
    .form-row-3 { grid-template-columns: 1fr; }

    .display { font-size: 56px; }
    .h1 { font-size: 36px; }

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

    .admin-stat-grid { grid-template-columns: 1fr; }
    .admin-content { padding: var(--space-md); }
}

@media (max-width: 480px) {
    .container, .container-narrow { padding: 0 var(--space-md); }
    .products-grid,
    .products-grid-3 { grid-template-columns: 1fr; gap: var(--space-xl); }
    .size-grid { grid-template-columns: repeat(4, 1fr); }
    .display { font-size: 44px; }
    .nav-inner { padding: 10px 12px; gap: 4px; min-height: 60px; }
    .nav-logo { font-size: 19px; }
    .nav-logo-sub { font-size: 7.5px; letter-spacing: 0.18em; }
    .nav-side-right { gap: 10px; }
    .nav-icon { width: 19px; height: 19px; }
    .nav-burger { width: 32px; height: 32px; }
}

/* ============================================
   UTILS
   ============================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.hidden { display: none; }

/* ============================================
   CHECKOUT v2 — uma página + Pix inline
   ============================================ */

/* Loader genérico */
.loader {
    width: 32px;
    height: 32px;
    border: 2px solid var(--line);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 600ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Layout 1 coluna */
.checkout-grid-1col {
    max-width: 760px;
    margin: 0 auto;
}
.checkout-section {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 24px 28px;
    margin-bottom: 14px;
}
.checkout-section h2 { margin-bottom: 18px; }

/* Itens do carrinho */
.cart-items { display: flex; flex-direction: column; gap: 12px; }
.cart-row {
    display: grid;
    grid-template-columns: 72px 1fr auto auto auto;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.cart-row:last-child { border-bottom: 0; padding-bottom: 0; }
.cart-row-thumb {
    width: 72px; height: 72px;
    background: var(--bg-alt);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-row-thumb img {
    width: 100%; height: 100%; object-fit: cover;
}
.cart-row-thumb span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 28px;
    color: var(--line-strong);
}
.cart-row-info { min-width: 0; }
.cart-row-brand {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
}
.cart-row-name {
    font-family: var(--serif);
    font-size: 16px;
    margin-top: 2px;
    line-height: 1.2;
}
.cart-row-tamanho {
    font-size: 11px;
    color: var(--ink-muted);
    margin-top: 4px;
    font-family: var(--mono);
    letter-spacing: 0.05em;
}
.cart-row-qty { display: flex; align-items: center; gap: 0; }
.qty-btn {
    width: 28px; height: 28px;
    border: 1px solid var(--line-strong);
    background: var(--white);
    cursor: pointer;
    font-size: 14px;
    font-family: var(--mono);
    transition: all 150ms;
}
.qty-btn:hover:not(:disabled) { background: var(--ink); color: white; border-color: var(--ink); }
.qty-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.qty-num {
    width: 32px;
    text-align: center;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
}
.cart-row-price {
    font-family: var(--serif);
    font-size: 16px;
    text-align: right;
    min-width: 90px;
}
.cart-row-unit {
    font-size: 10px;
    color: var(--ink-muted);
    font-family: var(--mono);
    letter-spacing: 0.05em;
    margin-top: 2px;
}
.cart-row-remove {
    width: 28px; height: 28px;
    background: transparent;
    border: 0;
    color: var(--ink-muted);
    font-size: 18px;
    cursor: pointer;
    transition: color 150ms;
}
.cart-row-remove:hover { color: var(--danger); }

/* Métodos de pagamento — versão limpa */
.payment-method-clean {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    cursor: pointer;
    margin-bottom: 8px;
    transition: all 150ms;
    align-items: center;
}
.payment-method-clean:hover { border-color: var(--ink); }
.payment-method-clean.selected {
    border-color: var(--accent);
    background: var(--accent-soft);
}
.payment-method-clean input { display: none; }
.payment-method-clean .pm-icon {
    font-size: 24px;
    text-align: center;
}
.payment-method-clean .pm-title {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.2;
}
.payment-method-clean .pm-info {
    font-size: 12px;
    color: var(--ink-muted);
    margin-top: 4px;
    font-family: var(--mono);
    letter-spacing: 0.03em;
}

/* Totais e ação final */
.checkout-action {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}
.checkout-action h2,
.checkout-action .h3 { color: var(--white); }
.checkout-action-totals {
    margin-bottom: 18px;
}
.ct-line {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.ct-line.ct-total {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--white);
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 14px;
    margin-top: 8px;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

/* ============================================
   CHECKOUT — Página de pagamento (Pix QR / Cartão)
   ============================================ */
.checkout-pay-wrap {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: flex-start;
}
@media (max-width: 768px) {
    .checkout-pay-wrap { grid-template-columns: 1fr; }
}

.checkout-side {
    background: var(--bg-alt);
    padding: 24px;
    border-left: 3px solid var(--accent);
    position: sticky;
    top: 90px;
}
.checkout-side h3 { margin-bottom: 16px; }
.checkout-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}
.checkout-item:last-of-type { border-bottom: 0; }
.checkout-item-thumb {
    width: 56px; height: 56px;
    background: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkout-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.checkout-item-thumb span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--line-strong);
}
.checkout-item-name {
    font-family: var(--serif);
    font-size: 14px;
    line-height: 1.2;
}
.checkout-item-meta {
    font-size: 10px;
    color: var(--ink-muted);
    font-family: var(--mono);
    letter-spacing: 0.05em;
    margin-top: 3px;
}
.checkout-item-price {
    font-family: var(--serif);
    font-size: 14px;
}
.checkout-side-totals { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line-strong); }
.checkout-side-totals .line {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 13px;
    color: var(--ink-muted);
}
.checkout-side-totals .line.accent { color: var(--accent); }
.checkout-side-totals .line.total {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    border-top: 1px solid var(--line-strong);
    padding-top: 12px;
    margin-top: 8px;
}

/* PIX QR Card */
.pix-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 32px;
    margin-top: 24px;
}
.pix-qr-wrap {
    background: var(--white);
    padding: 16px;
    width: fit-content;
    margin: 0 auto 24px;
    border: 1px solid var(--line);
}
.pix-qr-wrap img {
    display: block;
    width: 240px;
    height: 240px;
}
.pix-info {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.pix-amount {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 500;
    line-height: 1;
    margin-top: 6px;
    letter-spacing: -0.02em;
}
.pix-copy-wrap {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.pix-copy-wrap input {
    flex: 1;
    padding: 12px 14px;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink);
    overflow: hidden;
    text-overflow: ellipsis;
}
.pix-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-alt);
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--ink-muted);
}
.pix-status-pulse {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}
.pix-instructions {
    margin: 0;
    padding-left: 20px;
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.7;
}
.pix-instructions li { padding: 2px 0; }

@media (max-width: 768px) {
    .cart-row {
        grid-template-columns: 60px 1fr auto;
        gap: 12px;
    }
    .cart-row-qty,
    .cart-row-remove { grid-column: 2 / 4; justify-self: start; margin-top: 6px; }
    .cart-row-price { grid-row: 1; grid-column: 3; }
    .checkout-section { padding: 18px 20px; }
    .pix-qr-wrap img { width: 200px; height: 200px; }
}

/* ============================================
   MINI-CART DRAWER (lateral direita)
   ============================================ */
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
}
.cart-drawer.open { pointer-events: auto; }
.cart-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0);
    transition: background 220ms;
}
.cart-drawer.open .cart-drawer-overlay {
    background: rgba(10,10,10,0.4);
}
.cart-drawer-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 420px;
    max-width: 92vw;
    background: var(--bg);
    transform: translateX(100%);
    transition: transform 280ms cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.cart-drawer.open .cart-drawer-panel {
    transform: translateX(0);
}
.cart-drawer-header {
    padding: 24px 28px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.cart-drawer-close {
    background: transparent;
    border: 0;
    font-size: 28px;
    line-height: 1;
    color: var(--ink-muted);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    transition: color 150ms;
}
.cart-drawer-close:hover { color: var(--ink); }
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 28px;
}
.cart-drawer-loading {
    padding: 64px 0;
    text-align: center;
}
.cart-drawer-empty {
    text-align: center;
    padding: 48px 0;
    color: var(--ink-muted);
}
.cart-drawer-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.cart-drawer-item:last-child { border-bottom: 0; }
.cart-drawer-thumb {
    width: 64px;
    height: 64px;
    background: var(--bg-alt);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-drawer-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-drawer-thumb span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 24px;
    color: var(--line-strong);
}
.cart-drawer-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cart-drawer-brand {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
}
.cart-drawer-name {
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.2;
}
.cart-drawer-size {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink-muted);
    letter-spacing: 0.05em;
}
.cart-drawer-row-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}
.cart-drawer-price {
    font-family: var(--serif);
    font-size: 15px;
}
.cart-drawer-qty-text {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink-muted);
    letter-spacing: 0.05em;
}
.cart-drawer-remove {
    background: transparent;
    border: 0;
    color: var(--ink-muted);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 6px;
    transition: color 150ms;
}
.cart-drawer-remove:hover { color: var(--danger); }
.cart-drawer-footer {
    padding: 20px 28px 28px;
    border-top: 1px solid var(--line);
    background: var(--bg);
}
.cart-drawer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.cart-drawer-total-value {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--ink);
    font-weight: 500;
}

/* ============================================
   REFINAMENTOS V2 — visual mais clean
   ============================================ */

/* Hero menos pesado, mais respirado */
.hero {
    padding-top: 60px;
    padding-bottom: 80px;
}
.hero .display {
    font-size: 64px;
    line-height: 1.05;
    letter-spacing: -0.025em;
}
.hero .lead {
    font-size: 16px;
    max-width: 480px;
    line-height: 1.55;
}

/* Cards com menos density */
.product-card {
    background: var(--white);
}
.product-card-info {
    padding: 14px 4px 8px;
}
.product-card-name {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
}
.product-card-brand {
    font-size: 10px;
    letter-spacing: 0.2em;
}

/* Section headers: mais ar */
.section-header {
    margin-bottom: 32px;
}
.section { padding: 56px 0; }

/* Drop strip menos chamativo */
.drop-strip {
    padding: 56px 0;
}

/* Anúncio (faixa topo) menor */
.announcement {
    padding: 7px 16px;
    font-size: 11px;
    letter-spacing: 0.08em;
}

/* Botões mais discretos */
.btn {
    letter-spacing: 0.12em;
}

@media (max-width: 768px) {
    .hero { padding-top: 40px; padding-bottom: 56px; }
    .hero .display { font-size: 42px; }
    .section { padding: 40px 0; }
    .section-header { margin-bottom: 24px; }
}

/* ============================================
   HOME V3 — minimalista e mobile-first
   ============================================ */

/* Hero clean — sem hero-content gigante */
.hero-clean {
    padding: 88px 0 64px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}
.hero-clean-inner {
    max-width: 720px;
}
.hero-clean-title {
    font-family: var(--serif);
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin: 18px 0 20px;
}
.hero-clean-title em {
    font-style: italic;
    color: var(--accent);
}
.hero-clean-desc {
    font-size: 17px;
    color: var(--ink-muted);
    line-height: 1.5;
    max-width: 440px;
    margin: 0 0 28px;
}
.hero-clean-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Categorias clean */
.section-cats { padding: 56px 0; }
.cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.cat-card-clean {
    display: block;
    text-decoration: none;
    color: var(--ink);
    background: var(--bg-alt);
    overflow: hidden;
    transition: transform 300ms cubic-bezier(.4,0,.2,1);
    position: relative;
}
.cat-card-clean:hover { transform: translateY(-4px); }
.cat-card-img {
    width: 100%;
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    transition: transform 600ms cubic-bezier(.4,0,.2,1);
}
.cat-card-clean:hover .cat-card-img { transform: scale(1.04); }
.cat-card-img-fallback {
    background: linear-gradient(135deg, var(--bg-alt), var(--bg-warm));
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-card-img-fallback span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 96px;
    color: var(--line-strong);
}
.cat-card-info {
    padding: 18px 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cat-card-info h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    margin: 0;
}
.cat-card-arrow {
    color: var(--accent);
    font-size: 18px;
    transition: transform 200ms;
}
.cat-card-clean:hover .cat-card-arrow {
    transform: translateX(4px);
}

/* Section header com link "Ver tudo" alinhado */
.section-header-clean {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    gap: 24px;
    flex-wrap: wrap;
}
.section-header-clean h2 { margin: 0; }
.link-arrow-clean {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: color 150ms, border-color 150ms;
}
.link-arrow-clean:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Mobile do hero/cats/destaques */
@media (max-width: 768px) {
    .hero-clean { padding: 56px 0 40px; }
    .hero-clean-title { font-size: 44px; line-height: 1.05; }
    .hero-clean-desc { font-size: 15px; }
    .section-cats { padding: 32px 0; }
    .cats-grid { grid-template-columns: 1fr; gap: 10px; }
    .cat-card-img { aspect-ratio: 16/10; }
    .cat-card-info { padding: 14px 16px; }
    .cat-card-info h3 { font-size: 19px; }
}

/* Link "Club" no nav — estilo distinto sem poluir */
.nav-link-club {
    color: var(--accent) !important;
    font-family: var(--serif) !important;
    font-style: italic !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    font-size: 16px !important;
    padding-left: 18px !important;
    margin-left: 6px;
    border-left: 1px solid var(--line);
}
.nav-link-club:hover { color: var(--ink) !important; }
.nav-link-club.active { color: var(--accent) !important; }

/* ============================================
   CLUB / MEMBROS — clean
   ============================================ */
.club-hero {
    padding: 80px 0 56px;
    text-align: center;
}
.club-hero-title {
    font-family: var(--serif);
    font-size: 80px;
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 18px 0 20px;
    font-weight: 400;
}
.club-hero-title em {
    font-style: italic;
    color: var(--accent);
}
.club-hero-desc {
    font-size: 17px;
    color: var(--ink-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.55;
}

/* Benefícios em grid 4 colunas */
.club-benefits {
    padding: 56px 0;
}
.club-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}
.club-benefit {
    text-align: center;
}
.club-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
    margin: 0 auto 14px;
}
.club-benefit h3 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 6px;
}
.club-benefit p {
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.5;
    margin: 0;
}

/* Pricing */
.club-pricing { padding: 64px 0; }
.club-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    max-width: 800px;
    margin: 0 auto;
}
.club-plan {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: transform 200ms;
}
.club-plan.featured {
    border-color: var(--accent);
    border-width: 2px;
    transform: scale(1.02);
}
.club-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 5px 14px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
}
.club-plan-name {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 12px;
}
.club-plan-price {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
}
.club-plan-period {
    font-size: 18px;
    color: var(--ink-muted);
    font-family: var(--sans);
    font-weight: 400;
}
.club-plan-parc {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-muted);
    margin-top: 6px;
    letter-spacing: 0.05em;
}
.club-plan-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
    border-top: 1px solid var(--line);
    padding-top: 24px;
}
.club-plan-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
}
.club-plan-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .club-hero { padding: 56px 0 32px; }
    .club-hero-title { font-size: 52px; }
    .club-hero-desc { font-size: 15px; }
    .club-benefits { padding: 40px 0; }
    .club-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }
    .club-pricing { padding: 40px 0; }
    .club-plan { padding: 28px 22px; }
    .club-plan-price { font-size: 44px; }
    .club-plan.featured { transform: none; }
}

/* ============================================
   MOBILE-FIRST V3
   ============================================ */

/* Sticky bottom no produto (mobile only) */
.product-sticky-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 12px 16px;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    align-items: center;
    gap: 12px;
}
.product-sticky-info { flex: 1; min-width: 0; }
.product-sticky-name {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-sticky-price {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--ink);
    margin-top: 2px;
}
.product-sticky-price span {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
}
.product-sticky-mobile .btn {
    padding: 14px 24px;
    min-height: 50px;
    font-size: 11px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    /* Mostra sticky bottom no mobile */
    .product-sticky-mobile { display: flex; }
    body.has-sticky-bottom { padding-bottom: 80px; }

    /* Botões com padding mais generoso pra dedo */
    .btn { min-height: 44px; padding: 12px 22px; }
    .btn-lg { min-height: 52px; }

    /* Tipografia mais legível */
    body { font-size: 16px; }

    /* Cards mantém layout grid 2-col no mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .product-card-name { font-size: 14px; }
    .product-card-price { font-size: 16px; }
    .product-card-info { padding: 12px 6px 8px; }

    /* Container com padding lateral */
    .container, .container-narrow { padding: 0 16px; }

    /* Inputs maiores no mobile */
    .form-control {
        min-height: 44px;
        font-size: 16px; /* evita zoom no iOS */
    }
}

/* Badge "Novo" pequena no nav-link-club */
@media (max-width: 768px) {
    .nav-link-club { display: none; }
}

/* ============================================
   CONTA — abas no mobile, sidebar no desktop
   ============================================ */
@media (max-width: 768px) {
    .account-grid {
        grid-template-columns: 1fr !important;
    }
    .account-sidebar {
        position: static !important;
        background: transparent !important;
        padding: 0 !important;
        margin-bottom: 24px;
    }
    .account-sidebar-header {
        text-align: center;
        margin-bottom: 16px;
        padding: 16px;
        background: var(--bg-alt);
    }
    .account-menu {
        display: flex !important;
        overflow-x: auto;
        gap: 4px;
        padding: 0 0 4px !important;
        margin: 0 -16px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        border: 0 !important;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .account-menu::-webkit-scrollbar { display: none; }
    .account-menu li { flex-shrink: 0; margin: 0 !important; }
    .account-menu li a {
        white-space: nowrap;
        padding: 10px 16px !important;
        background: var(--bg-alt) !important;
        border: 1px solid var(--line) !important;
        font-size: 12px !important;
        font-family: var(--mono) !important;
        letter-spacing: 0.05em !important;
    }
    .account-menu li a.active {
        background: var(--ink) !important;
        color: var(--white) !important;
        border-color: var(--ink) !important;
    }
}

/* ============================================
   FOOTER CLEAN
   ============================================ */
.footer-clean {
    background: var(--ink);
    color: var(--bg);
    padding: 56px 0 28px;
    margin-top: 80px;
}
.footer-clean-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-clean-brand .nav-logo {
    color: var(--bg);
    font-size: 24px;
}
.footer-clean-brand .nav-logo em {
    color: var(--accent);
}
.footer-clean-brand p {
    margin-top: 16px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    line-height: 1.6;
    max-width: 320px;
}
.footer-clean-col h5 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0 0 18px;
    font-weight: 500;
}
.footer-clean-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-clean-col li { padding: 5px 0; }
.footer-clean-col a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
    transition: color 150ms;
}
.footer-clean-col a:hover { color: var(--accent); }
.footer-clean-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    color: rgba(255,255,255,0.4);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.05em;
}
.footer-clean-payment {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .footer-clean { padding: 40px 0 24px; margin-top: 48px; }
    .footer-clean-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }
    .footer-clean-brand {
        grid-column: 1 / -1;
    }
    .footer-clean-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ============================================
   CARROSSEL DA HOME
   ============================================ */
.hero-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16/7;
    max-height: 620px;
    min-height: 420px;
    overflow: hidden;
    background: var(--ink);
}
.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}
.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 700ms ease-in-out;
    display: flex;
    align-items: flex-end; /* Texto âncora embaixo */
}
.carousel-slide.active { opacity: 1; z-index: 1; }
.carousel-overlay {
    position: absolute;
    inset: 0;
    /* Degradê só na parte inferior pra não escurecer a imagem inteira */
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 40%, transparent 65%);
}
.carousel-content {
    position: relative;
    z-index: 2;
    padding: 0 0 64px; /* afastamento da borda inferior */
}
.carousel-pos-left .carousel-content,
.carousel-content.carousel-pos-left {
    /* alinhamento interno do texto */
    text-align: left;
}
.carousel-pos-center .carousel-content,
.carousel-content.carousel-pos-center {
    text-align: center;
}
.carousel-pos-right .carousel-content,
.carousel-content.carousel-pos-right {
    text-align: right;
}

/* Posicionamento horizontal aplicado no CONTAINER (não no content) */
.carousel-slide .container {
    display: flex;
    width: 100%;
    flex-direction: column;
}
.carousel-slide.carousel-pos-left .container { align-items: flex-start; }
.carousel-slide.carousel-pos-center .container { align-items: center; }
.carousel-slide.carousel-pos-right .container { align-items: flex-end; }
.carousel-color-white { color: var(--white); }
.carousel-color-white .carousel-eyebrow { color: rgba(255,255,255,0.8); }
.carousel-color-black { color: var(--ink); }
.carousel-color-black .carousel-overlay {
    background: linear-gradient(to top, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.15) 40%, transparent 65%);
}

.carousel-eyebrow {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.85;
}
.carousel-title {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
    margin: 0 0 10px;
}
.carousel-subtitle {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.5;
    opacity: 0.85;
    margin: 0 0 24px;
    max-width: 460px;
}
.carousel-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.6);
    padding: 14px 24px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 200ms ease;
}
.carousel-cta::after {
    content: '→';
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1;
    transition: transform 200ms ease;
}
.carousel-cta:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}
.carousel-cta:hover::after { transform: translateX(4px); }

.carousel-color-black .carousel-cta {
    color: var(--ink);
    border-color: rgba(10,10,10,0.6);
}
.carousel-color-black .carousel-cta:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

/* Setas discretas — só "próxima" à direita */
.carousel-arrow {
    position: absolute;
    bottom: 56px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 0;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    z-index: 5;
    transition: opacity 200ms, transform 200ms;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    opacity: 0.7;
}
.carousel-arrow:hover { opacity: 1; transform: translateX(2px); }
.carousel-prev { display: none; } /* esconde a anterior */
.carousel-next {
    right: 32px;
}
.carousel-color-black .carousel-arrow { color: var(--ink); }

/* Dots — barra contínua embaixo, igual referência */
.carousel-dots {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 80px; /* deixa espaço pra seta */
    display: flex;
    gap: 6px;
    z-index: 5;
}
.carousel-dot {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.3);
    border: 0;
    cursor: pointer;
    transition: background 200ms;
    padding: 0;
    max-width: 80px;
}
.carousel-dot:hover { background: rgba(255,255,255,0.5); }
.carousel-dot.active { background: var(--white); }
.carousel-color-black .carousel-dot { background: rgba(10,10,10,0.2); }
.carousel-color-black .carousel-dot.active { background: var(--ink); }

@media (max-width: 768px) {
    .hero-carousel {
        aspect-ratio: 4/5;
        max-height: 600px;
    }
    .carousel-content { padding-bottom: 80px; }
    .carousel-title { font-size: 36px; }
    .carousel-eyebrow { margin-bottom: 8px; font-size: 9px; }
    .carousel-subtitle { font-size: 10px; margin-bottom: 18px; }
    .carousel-cta { padding: 12px 18px; font-size: 10px; }
    .carousel-next { display: none; } /* mobile usa swipe */
    .carousel-dots {
        left: 20px;
        right: 20px;
        bottom: 24px;
    }
    .carousel-dot { max-width: 100%; }
}

/* ============================================
   VENDA — página pública
   ============================================ */
.venda-hero {
    padding: 64px 0 40px;
    text-align: center;
    background: var(--bg);
}
.venda-hero-title {
    font-family: var(--serif);
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
    margin: 18px 0 16px;
}
.venda-hero-title em { font-style: italic; color: var(--accent); }
.venda-hero-desc {
    font-size: 16px;
    color: var(--ink-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.55;
}
.venda-form-section { padding: 32px 0 80px; background: var(--bg-alt); }
.venda-form { background: var(--white); padding: 32px; border: 1px solid var(--line); }
.venda-form-section-block {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
}
.venda-form-section-block:last-of-type { border-bottom: 0; margin-bottom: 0; }

.venda-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
    background: var(--white);
    padding: 24px;
    border: 1px solid var(--line);
}
.venda-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.4;
}
.venda-step .num {
    font-family: var(--serif);
    font-size: 26px;
    font-style: italic;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .venda-hero { padding: 40px 0 24px; }
    .venda-hero-title { font-size: 40px; }
    .venda-hero-desc { font-size: 14px; }
    .venda-form-section { padding: 16px 0 40px; }
    .venda-form { padding: 20px; }
    .venda-steps { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
}

/* ============================================
   CHECKOUT V3 — transparente, fluido
   ============================================ */
.link-back {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-muted);
    text-decoration: none;
    margin-bottom: 24px;
    display: inline-block;
    transition: color 150ms;
}
.link-back:hover { color: var(--ink); }

/* Toggle Pix/Cartão */
.pay-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
    background: var(--bg-alt);
    padding: 6px;
    border-radius: 4px;
}
.pay-toggle-btn {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: all 150ms;
    text-align: left;
    font-family: inherit;
}
.pay-toggle-btn.active {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.pay-toggle-btn:hover:not(.active) { background: rgba(255,255,255,0.5); }
.pay-toggle-icon { font-size: 22px; }
.pay-toggle-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pay-toggle-info strong {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
}
.pay-toggle-meta {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.05em;
    color: var(--ink-muted);
}
.pay-toggle-btn.active .pay-toggle-meta { color: var(--accent); }
.pay-toggle-price {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--ink);
    white-space: nowrap;
}

/* Panes */
.pay-pane {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 28px;
    margin-bottom: 16px;
}
.pay-loading {
    text-align: center;
    padding: 48px 0;
}
.pay-loading p {
    margin-top: 16px;
    color: var(--ink-muted);
    font-size: 13px;
    font-family: var(--mono);
    letter-spacing: 0.05em;
}
.pay-processing {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.card-pane { position: relative; }

/* PIX clean */
.pix-card-clean { padding: 8px 0; }
.pix-amount-display {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.pix-big-amount {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 500;
    line-height: 1;
    margin-top: 6px;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.pix-discount-tag {
    display: inline-block;
    margin-top: 10px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 4px 10px;
}
.pix-qr-wrap-clean {
    background: var(--white);
    padding: 16px;
    width: fit-content;
    margin: 0 auto 20px;
    border: 1px solid var(--line);
}
.pix-qr-wrap-clean img {
    display: block;
    width: 220px;
    height: 220px;
}
.pix-copy-btn {
    width: 100%;
    padding: 14px 18px;
    background: var(--ink);
    color: var(--white);
    border: 0;
    cursor: pointer;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 150ms;
}
.pix-copy-btn:hover { background: var(--accent); }
.pix-copy-confirm {
    margin-top: 10px;
    padding: 10px 14px;
    background: #dcfce7;
    color: #166534;
    text-align: center;
    font-size: 13px;
    font-family: var(--mono);
    letter-spacing: 0.05em;
}
.pix-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-alt);
    margin-top: 18px;
    font-size: 13px;
    color: var(--ink-muted);
}
.pix-status-pulse {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.5s infinite;
    flex-shrink: 0;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}
.pix-instructions-toggle {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.pix-instructions-toggle summary {
    cursor: pointer;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-muted);
    padding: 8px 0;
}
.pix-instructions-toggle summary:hover { color: var(--ink); }
.pix-instructions-toggle ol {
    margin: 12px 0 0;
    padding-left: 20px;
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.7;
}

/* Selo de segurança */
.pay-secure-info {
    text-align: center;
    font-size: 12px;
    color: var(--ink-muted);
    margin-top: 24px;
    line-height: 1.6;
}
.pay-secure-info span {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

/* Tela OK */
.ok-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 48px;
    line-height: 1;
}
.ok-icon-success {
    background: var(--accent-soft);
    color: var(--accent);
}
.ok-icon-pending {
    background: #fef3c7;
    color: #f59e0b;
}
.ok-numero {
    background: var(--bg-alt);
    padding: 24px 32px;
    margin: 40px auto;
    max-width: 380px;
    border-left: 3px solid var(--accent);
}
.ok-numero-value {
    font-family: var(--serif);
    font-size: 28px;
    margin-top: 6px;
    letter-spacing: -0.01em;
}

/* Mobile */
@media (max-width: 768px) {
    .pay-toggle {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .pay-toggle-btn { padding: 12px 14px; }
    .pay-pane { padding: 20px 16px; }
    .pix-big-amount { font-size: 36px; }
    .pix-qr-wrap-clean img { width: 200px; height: 200px; }
}

/* Input com erro */
.input-error {
    border-color: var(--danger) !important;
    background: rgba(239, 68, 68, 0.04);
}
.input-error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* ============================================
   CHECKOUT V4 — form próprio de cartão
   ============================================ */

/* Form de cartão estilizado */
.card-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.card-field {
    display: flex;
    flex-direction: column;
}
.card-field label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 8px;
    font-weight: 500;
}
.card-field .form-control {
    height: 48px;
    padding: 0 14px;
    font-size: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink);
    transition: border-color 150ms, box-shadow 150ms;
    width: 100%;
    box-sizing: border-box;
}
.card-field .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 84, 30, 0.1);
    outline: none;
}
.card-field select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230a0a0a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.card-input-wrap {
    position: relative;
}
.card-brand-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.card-brand-icon svg {
    display: block;
}

.card-error-msg {
    color: var(--danger);
    font-size: 11px;
    margin-top: 4px;
    min-height: 14px;
    font-family: var(--mono);
    letter-spacing: 0.02em;
}

.card-submit-btn {
    margin-top: 8px;
    height: 56px;
    font-size: 13px;
    letter-spacing: 0.18em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.card-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.card-submit-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.loader-inline {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 600ms linear infinite;
}

.card-secure-text {
    font-size: 11px;
    color: var(--ink-muted);
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

/* Bandeiras visíveis no header do form */
.pay-pane .card-pane h3 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile do form */
@media (max-width: 768px) {
    .card-field .form-control { height: 50px; font-size: 16px; }
    .card-submit-btn { height: 56px; font-size: 13px; }
}

/* Polimento geral mobile do checkout */
@media (max-width: 768px) {
    .checkout-pay-wrap {
        gap: 16px;
    }
    .checkout-side {
        position: static;
        order: -1; /* resumo VAI PRO TOPO no mobile pra cliente saber o valor */
        padding: 18px 20px;
        margin-bottom: 0;
    }
    .checkout-side h3 {
        margin-bottom: 12px;
    }
    .checkout-side .checkout-item {
        padding: 8px 0;
    }
    .pix-card-clean {
        padding: 0;
    }
    .pix-amount-display {
        margin-bottom: 18px;
        padding-bottom: 18px;
    }
    .pix-big-amount {
        font-size: 32px;
    }
    .pix-qr-wrap-clean {
        padding: 12px;
    }
    .pix-qr-wrap-clean img {
        width: 200px;
        height: 200px;
    }
    .pay-pane {
        padding: 18px 16px;
    }
    .pay-toggle {
        gap: 4px;
        padding: 4px;
    }
    .pay-toggle-btn {
        padding: 12px 14px;
        grid-template-columns: 28px 1fr auto;
        gap: 10px;
    }
    .pay-toggle-info strong { font-size: 15px; }
    .pay-toggle-meta { font-size: 9px; }
    .pay-toggle-price { font-size: 14px; }
    .container { padding: 0 14px; }
    .form-row { flex-direction: column; gap: 14px; }
    .form-group { width: 100%; }
}

/* Container side com tamanho fixo no desktop */
@media (min-width: 769px) {
    .checkout-pay-wrap {
        grid-template-columns: 1fr 380px;
        gap: 32px;
    }
    .checkout-side {
        position: sticky;
        top: 90px;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }
}

/* ============================================
   CARROSSEL V2 — personalização completa
   ============================================ */

/* Alinhamento vertical do conteúdo */
.carousel-slide { align-items: flex-end; } /* default = bottom */
.carousel-slide.carousel-va-top { align-items: flex-start; }
.carousel-slide.carousel-va-center { align-items: center; }
.carousel-slide.carousel-va-bottom { align-items: flex-end; }

/* Padding-bottom muda conforme alinhamento (top/center não precisam de tanto espaço) */
.carousel-va-top .carousel-content { padding: 80px 0 0; }
.carousel-va-center .carousel-content { padding: 32px 0; }
.carousel-va-bottom .carousel-content { padding: 0 0 80px; }

/* Largura do bloco de texto */
.carousel-w-narrow { max-width: 380px; }
.carousel-w-normal { max-width: 540px; }
.carousel-w-wide { max-width: 720px; }
.carousel-w-full { max-width: 100%; }

/* Tamanhos do título */
.carousel-sz-sm { font-size: 36px; }
.carousel-sz-md { font-size: 48px; }
.carousel-sz-lg { font-size: 64px; }
.carousel-sz-xl { font-size: 88px; }

/* Botão — herda cores do inline style, só comportamento */
.carousel-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 200ms ease;
    margin-top: 6px;
}
.carousel-cta::after {
    content: '→';
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1;
    transition: transform 200ms ease;
}
.carousel-cta:hover::after { transform: translateX(4px); }
.carousel-cta-ghost { padding-left: 0 !important; padding-right: 0 !important; }
.carousel-cta-ghost:hover { letter-spacing: 0.24em; }

/* Mobile escalas */
@media (max-width: 768px) {
    .carousel-sz-sm { font-size: 28px; }
    .carousel-sz-md { font-size: 32px; }
    .carousel-sz-lg { font-size: 40px; }
    .carousel-sz-xl { font-size: 52px; }
    .carousel-w-narrow,
    .carousel-w-normal,
    .carousel-w-wide,
    .carousel-w-full { max-width: 100%; }
    .carousel-va-top .carousel-content { padding: 56px 0 0; }
    .carousel-va-bottom .carousel-content { padding: 0 0 90px; }
}

/* ============================================
   IMAGE SWAP ON HOVER (produto com 2+ fotos)
   ============================================ */
.product-card.has-swap .product-card-image-inner {
    /* Anular o scale no hover do inner — fica feio com 2 imagens */
    transform: none !important;
}
.product-card.has-swap .product-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 500ms ease, transform 700ms ease;
}
.product-card.has-swap .product-card-img-primary {
    opacity: 1;
    z-index: 2;
}
.product-card.has-swap .product-card-img-hover {
    opacity: 0;
    z-index: 1;
}
/* HOVER: troca as imagens com fade suave */
.product-card.has-swap:hover .product-card-img-primary {
    opacity: 0;
}
.product-card.has-swap:hover .product-card-img-hover {
    opacity: 1;
    transform: scale(1.02);
}

/* Mobile: toggle ao tocar (classe .swap-active aplicada via JS) */
@media (hover: none) {
    .product-card.has-swap.swap-active .product-card-img-primary {
        opacity: 0;
    }
    .product-card.has-swap.swap-active .product-card-img-hover {
        opacity: 1;
    }
}
