:root {
    --catalog-primary: #8c5a2b;
    --catalog-secondary: #5c6b47;
    --catalog-bg: #f7f1e6;
    --catalog-text: #2b1d12;
    --catalog-surface: #fffdf8;
    --catalog-line: color-mix(in srgb, var(--catalog-text) 18%, transparent);
    --catalog-title-font: 'Fraunces', serif;
    --catalog-body-font: 'Inter', sans-serif;
    --store-width: 1240px;
    --store-radius: 4px;
}

[hidden] { display: none !important; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--catalog-bg); color: var(--catalog-text); font-family: var(--catalog-body-font); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
.store-container { width: min(calc(100% - 40px), var(--store-width)); margin-inline: auto; }
.catalog-layout-centralizado { --store-width: 1080px; }
.catalog-layout-compacto { --store-width: 920px; }
.catalog-card-arredondado { --store-radius: 18px; }
.catalog-card-minimalista { --store-radius: 0; }

.store-header { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid var(--catalog-line); background: color-mix(in srgb, var(--catalog-bg) 92%, transparent); backdrop-filter: blur(12px); }
.store-header-inner { min-height: 76px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.store-brand { display: flex; align-items: center; gap: 11px; font-family: var(--catalog-title-font); font-size: 1.18rem; font-weight: 650; }
.store-brand img { width: 42px; height: 42px; object-fit: contain; }
.store-brand-mark { width: 39px; height: 39px; border-radius: 50%; display: grid; place-items: center; background: var(--catalog-primary); color: #fff; }
.store-nav { display: flex; justify-content: center; gap: 30px; }
.store-nav a { font-size: .88rem; font-weight: 600; }
.store-nav a:hover { color: var(--catalog-primary); }
.store-cart-button, .store-menu-button { border: 0; cursor: pointer; color: var(--catalog-text); background: transparent; }
.store-header-actions { display: flex; align-items: center; gap: 8px; }
.store-account-button { padding: 9px 11px; display: flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; }
.store-cart-button { display: flex; align-items: center; gap: 7px; padding: 9px 13px; border: 1px solid var(--catalog-line); border-radius: 999px; }
.store-cart-button b { min-width: 21px; height: 21px; padding: 0 5px; display: grid; place-items: center; border-radius: 20px; background: var(--catalog-primary); color: #fff; font-size: .72rem; }
.store-menu-button { display: none; font-size: 1.6rem; }

.store-hero { overflow: hidden; border-bottom: 1px solid var(--catalog-line); background: color-mix(in srgb, var(--catalog-primary) 7%, var(--catalog-bg)); }
.store-hero-grid { min-height: 570px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 60px; }
.store-eyebrow { color: var(--catalog-primary); font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
.store-hero h1 { max-width: 760px; margin: 13px 0 20px; font: 650 clamp(2.7rem, 5.4vw, 5.5rem)/.98 var(--catalog-title-font); letter-spacing: -.035em; }
.store-hero h1 em { color: var(--catalog-primary); font-style: italic; }
.store-hero-copy p { max-width: 610px; margin: 0 0 30px; color: color-mix(in srgb, var(--catalog-text) 72%, transparent); font-size: 1.06rem; }
.store-button { min-height: 46px; padding: 11px 20px; display: inline-flex; justify-content: center; align-items: center; gap: 9px; border: 1px solid transparent; border-radius: var(--store-radius); cursor: pointer; font-weight: 700; transition: transform .18s, background .18s; }
.store-button:hover { transform: translateY(-2px); }
.store-button-primary { background: var(--catalog-primary); color: #fff; }
.store-button-outline { border-color: var(--catalog-primary); color: var(--catalog-primary); }
.store-hero-visual { position: relative; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50% 44% 52% 42%; color: #fff; background: var(--catalog-secondary); box-shadow: 0 30px 80px color-mix(in srgb, var(--catalog-text) 18%, transparent); }
.store-hero-visual > i { position: relative; z-index: 2; font-size: clamp(7rem, 16vw, 13rem); opacity: .72; }
.store-hero-visual > img { width: 100%; height: 100%; object-fit: cover; }
.store-hero-has-image .store-hero-visual { overflow: hidden; border-radius: var(--store-radius); }
.hero-circle { position: absolute; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; }
.hero-circle-one { width: 72%; height: 72%; }
.hero-circle-two { width: 92%; height: 92%; }

.store-section { padding: 90px 0; }
.store-section-heading { margin-bottom: 30px; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.store-view-switch { display: flex; padding: 4px; border: 1px solid var(--catalog-line); border-radius: 999px; background: var(--catalog-surface); }
.store-view-switch button { width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--catalog-text); cursor: pointer; }
.store-view-switch button.active { background: var(--catalog-primary); color: #fff; }
.store-section-heading h2, .store-story h2, .store-product-content h2 { margin: 5px 0 0; font: 650 clamp(2rem, 3vw, 3rem)/1.05 var(--catalog-title-font); }
.store-search { width: min(100%, 390px); height: 48px; padding-left: 14px; display: flex; align-items: center; border: 1px solid var(--catalog-line); background: var(--catalog-surface); border-radius: 999px; overflow: hidden; }
.store-search input { min-width: 0; flex: 1; height: 100%; padding: 0 10px; border: 0; outline: 0; background: transparent; color: var(--catalog-text); }
.store-search button { align-self: stretch; padding: 0 18px; border: 0; background: var(--catalog-primary); color: #fff; cursor: pointer; }
.store-categories { margin-bottom: 34px; display: flex; gap: 9px; overflow-x: auto; scrollbar-width: thin; padding-bottom: 6px; }
.store-categories a { flex: none; padding: 9px 14px; border: 1px solid var(--catalog-line); border-radius: 999px; background: var(--catalog-surface); font-size: .86rem; font-weight: 600; }
.store-categories a.active { border-color: var(--catalog-primary); background: var(--catalog-primary); color: #fff; }
.store-categories small { opacity: .7; }
.store-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.store-product-grid.store-product-list { grid-template-columns: 1fr; }
.store-product-list .store-product-card { display: grid; grid-template-columns: minmax(220px, 30%) 1fr; }
.store-product-list .store-product-image { aspect-ratio: 16/10; }
.store-product-list .store-product-info { display: flex; flex-direction: column; justify-content: center; padding: 28px; }
.store-product-list .store-product-info p { min-height: 0; max-width: 720px; -webkit-line-clamp: 3; }
.store-product-card { overflow: hidden; border: 1px solid var(--catalog-line); border-radius: var(--store-radius); background: var(--catalog-surface); transition: transform .2s, box-shadow .2s; }
.catalog-card-minimalista .store-product-card { border-width: 0 0 1px; background: transparent; }
.store-product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px color-mix(in srgb, var(--catalog-text) 12%, transparent); }
.store-product-image { position: relative; aspect-ratio: 1/.82; display: block; overflow: hidden; background: color-mix(in srgb, var(--catalog-primary) 9%, var(--catalog-bg)); }
.store-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.store-product-card:hover img { transform: scale(1.035); }
.store-product-image > span { width: 100%; height: 100%; display: grid; place-items: center; color: color-mix(in srgb, var(--catalog-text) 30%, transparent); font-size: 3rem; }
.store-product-flags { position: absolute; top: 12px; left: 12px; display: grid; gap: 5px; }
.store-product-flags b { width: 36px; height: 36px; display: grid; place-items: center; border: 2px solid color-mix(in srgb, #fff 75%, transparent); border-radius: 50%; background: var(--catalog-secondary); color: #fff; box-shadow: 0 5px 14px color-mix(in srgb, var(--catalog-text) 18%, transparent); font-size: .9rem; }
.store-product-flags b.is-best-seller { background: var(--catalog-primary); }
.store-product-info { padding: 18px; }
.store-product-info > small { color: var(--catalog-primary); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.store-product-info h3 { margin: 5px 0 8px; font: 650 1.25rem/1.2 var(--catalog-title-font); }
.store-product-info p { min-height: 42px; margin: 0 0 15px; color: color-mix(in srgb, var(--catalog-text) 70%, transparent); font-size: .84rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.store-product-bottom { padding-top: 14px; display: flex; align-items: end; justify-content: space-between; border-top: 1px solid var(--catalog-line); }
.store-product-bottom div { display: grid; }
.store-product-bottom span { font-size: .68rem; opacity: .65; }
.store-product-bottom strong { color: var(--catalog-primary); font-size: 1.06rem; }
.store-product-bottom > a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--catalog-primary); color: #fff; }
.store-empty { min-height: 300px; display: grid; place-items: center; align-content: center; text-align: center; }
.store-empty > i { font-size: 3rem; color: var(--catalog-primary); }
.store-empty h1, .store-empty h3 { margin: 10px 0 0; font-family: var(--catalog-title-font); }
.store-empty p { margin: 4px 0 18px; opacity: .7; }
.store-pagination { margin-top: 36px; display: flex; justify-content: center; gap: 7px; }
.store-pagination a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--catalog-line); background: var(--catalog-surface); }
.store-pagination a.active { background: var(--catalog-primary); color: #fff; }

.store-story { padding: 80px 0; background: var(--catalog-secondary); color: #fff; }
.store-story-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 70px; }
.store-story-art { min-height: 300px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); font-size: 8rem; }
.store-story .store-eyebrow { color: color-mix(in srgb, var(--catalog-bg) 80%, white); }
.store-story p { max-width: 670px; opacity: .8; }

.store-footer { padding-top: 60px; background: color-mix(in srgb, var(--catalog-text) 93%, black); color: #fff; }
.store-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.store-footer-grid > div { display: grid; align-content: start; gap: 7px; }
.store-footer-grid strong { font: 650 1.45rem var(--catalog-title-font); }
.store-footer-grid p, .store-footer-grid span { margin: 0; opacity: .68; font-size: .86rem; }
.store-footer-bottom { margin-top: 45px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); opacity: .58; font-size: .78rem; }
.store-pix { margin-top: 22px; display: grid; gap: 12px; }
.store-pix img { width: min(100%, 260px); margin-inline: auto; border: 10px solid #fff; }
.store-pix label { font-size: .78rem; font-weight: 700; }
.store-pix textarea { width: 100%; min-height: 92px; resize: none; padding: 11px; border: 1px solid var(--catalog-line); background: var(--catalog-surface); color: var(--catalog-text); font-size: .72rem; overflow-wrap: anywhere; }
.store-pix > a { text-align: center; color: var(--catalog-primary); font-weight: 700; font-size: .82rem; }
.store-payment-confirmed { margin-top: 22px; padding: 20px; display: flex; align-items: center; gap: 14px; border: 1px solid color-mix(in srgb, #267447 32%, transparent); background: color-mix(in srgb, #267447 8%, var(--catalog-surface)); color: #267447; }
.store-payment-confirmed > i { font-size: 2rem; }
.store-payment-confirmed b { font: 650 1.2rem var(--catalog-title-font); }
.store-payment-confirmed p { margin: 3px 0 0; color: var(--catalog-text); font-size: .82rem; }
.store-payment-confirmed.is-cancelled { border-color: color-mix(in srgb, #b42318 32%, transparent); background: color-mix(in srgb, #b42318 8%, var(--catalog-surface)); color: #b42318; }

.store-product-page { padding: 34px 0 80px; }
.store-breadcrumb { margin-bottom: 28px; display: flex; align-items: center; gap: 8px; font-size: .78rem; opacity: .68; }
.store-product-detail { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: start; }
.store-gallery-main { aspect-ratio: 1/.9; overflow: hidden; display: grid; place-items: center; border-radius: var(--store-radius); background: color-mix(in srgb, var(--catalog-primary) 8%, var(--catalog-bg)); }
.store-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.store-gallery-main > span { font-size: 5rem; opacity: .25; }
.store-thumbnails { margin-top: 12px; display: flex; gap: 10px; }
.store-thumbnails button { width: 72px; height: 72px; padding: 0; border: 1px solid var(--catalog-line); cursor: pointer; background: transparent; }
.store-thumbnails img { width: 100%; height: 100%; object-fit: cover; }
.store-product-purchase { padding-top: 15px; }
.store-product-purchase h1 { margin: 8px 0 14px; font: 650 clamp(2.5rem, 4vw, 4.6rem)/1 var(--catalog-title-font); letter-spacing: -.03em; }
.store-product-lead { margin-bottom: 28px; color: color-mix(in srgb, var(--catalog-text) 72%, transparent); }
.store-variation-group > label { display: block; margin-bottom: 9px; font-weight: 700; }
.store-variations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.store-variations button { padding: 12px; display: grid; text-align: left; border: 1px solid var(--catalog-line); border-radius: var(--store-radius); background: var(--catalog-surface); color: var(--catalog-text); cursor: pointer; }
.store-variations button.active { outline: 2px solid var(--catalog-primary); border-color: var(--catalog-primary); }
.store-variations span { color: var(--catalog-primary); font-size: .8rem; }
.store-purchase-price { margin: 28px 0 18px; display: grid; }
.store-purchase-price span { font-size: .75rem; opacity: .65; }
.store-purchase-price strong { color: var(--catalog-primary); font: 650 2rem var(--catalog-title-font); }
.store-purchase-actions { display: grid; grid-template-columns: 88px minmax(0, 1fr) minmax(0, 1fr); gap: 8px; }
.store-purchase-actions .store-quantity { grid-template-columns: 26px 1fr 26px; }
.store-purchase-actions .store-button { min-width: 0; padding-inline: 12px; white-space: nowrap; font-size: .8rem; }
.store-quantity { height: 49px; display: grid; grid-template-columns: 36px 1fr 36px; border: 1px solid var(--catalog-line); background: var(--catalog-surface); }
.store-quantity button { border: 0; background: transparent; cursor: pointer; font-size: 1.2rem; }
.store-quantity input { min-width: 0; width: 100%; border: 0; text-align: center; background: transparent; -moz-appearance: textfield; }
.store-quantity input::-webkit-inner-spin-button { appearance: none; }
.store-add-cart[disabled], .store-buy-now[disabled] { opacity: .5; cursor: not-allowed; transform: none; }
.store-stock-message { min-height: 24px; margin: 8px 0 20px; font-size: .8rem; }
.store-stock-message.unavailable { color: #b42318; }
.store-assurances { padding: 20px 0 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; border-top: 1px solid var(--catalog-line); list-style: none; }
.store-assurances li { display: flex; gap: 9px; align-items: start; }
.store-assurances i { color: var(--catalog-secondary); font-size: 1.25rem; }
.store-assurances span { display: grid; font-size: .68rem; }
.store-assurances b { font-size: .74rem; }
.store-product-content { margin-top: 75px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; border-top: 1px solid var(--catalog-line); padding-top: 50px; }
.store-product-content p { white-space: normal; color: color-mix(in srgb, var(--catalog-text) 74%, transparent); }
.store-product-video { margin-top:65px;padding-top:45px;border-top:1px solid var(--catalog-line) }
.store-product-video-heading { margin-bottom:24px }.store-product-video-heading h2 { margin:5px 0 0;font:650 clamp(2rem,3vw,3rem)/1.05 var(--catalog-title-font) }
.store-product-video-frame { width:min(100%,960px);aspect-ratio:16/9;overflow:hidden;border-radius:var(--store-radius);background:#111;box-shadow:0 20px 55px color-mix(in srgb,var(--catalog-text) 16%,transparent) }
.store-product-video-frame iframe { width:100%;height:100%;display:block;border:0 }
.store-unavailable { padding: 16px; background: #fee4e2; color: #912018; }
.catalog-toast { position: fixed; right: 22px; bottom: 22px; z-index: 60; padding: 13px 17px; border-radius: 7px; background: var(--catalog-text); color: #fff; transform: translateY(30px); opacity: 0; pointer-events: none; transition: .22s; }
.catalog-toast.show { transform: translateY(0); opacity: 1; }

.store-cart-page { min-height: 70vh; padding: 34px 0 90px; }
.store-cart-heading { margin-bottom: 30px; display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.store-cart-heading h1 { margin: 5px 0 0; font: 650 clamp(2.5rem, 5vw, 4.6rem)/1 var(--catalog-title-font); }
.store-continue-link { color: var(--catalog-primary); font-weight: 700; font-size: .86rem; }
.store-cart-loading { min-height: 280px; display: grid; place-items: center; align-content: center; }
.store-spinner { width: 35px; height: 35px; border: 3px solid var(--catalog-line); border-top-color: var(--catalog-primary); border-radius: 50%; animation: store-spin .8s linear infinite; }
@keyframes store-spin { to { transform: rotate(360deg); } }
.store-cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 34px; align-items: start; }
.store-cart-warnings { margin-bottom: 14px; padding: 12px 15px; border: 1px solid #f5c27a; background: #fff3dc; color: #78450a; font-size: .84rem; }
.store-cart-warnings div + div { margin-top: 4px; }
.store-cart-list { display: grid; gap: 12px; }
.store-cart-item { padding: 16px; display: grid; grid-template-columns: 105px minmax(0, 1fr) 140px 115px; gap: 18px; align-items: center; border: 1px solid var(--catalog-line); border-radius: var(--store-radius); background: var(--catalog-surface); }
.store-cart-item.unavailable { opacity: .68; }
.store-cart-item-image { width: 105px; height: 105px; overflow: hidden; display: grid; place-items: center; background: color-mix(in srgb, var(--catalog-primary) 8%, var(--catalog-bg)); border-radius: calc(var(--store-radius) * .7); }
.store-cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.store-cart-item-image span { font-size: 2rem; opacity: .28; }
.store-cart-item-info > small { color: var(--catalog-primary); font-size: .66rem; font-weight: 700; }
.store-cart-item-info h2 { margin: 2px 0; font: 650 1.2rem/1.2 var(--catalog-title-font); }
.store-cart-item-info > span { font-size: .8rem; opacity: .7; }
.store-cart-remove { margin-top: 12px; padding: 0; border: 0; background: transparent; color: #b42318; font-size: .74rem; cursor: pointer; }
.store-cart-item-controls { display: grid; gap: 12px; justify-items: start; }
.store-cart-item-controls > strong { color: var(--catalog-primary); }
.store-cart-item-total { display: grid; text-align: right; }
.store-cart-item-total small { opacity: .58; }
.store-cart-item-total strong { font-size: 1.05rem; }
.store-cart-item-total span { margin-top: 5px; color: var(--catalog-secondary); font-size: .7rem; }
.store-cart-item-total span.unavailable { color: #b42318; }
.store-cart-summary { position: sticky; top: 96px; padding: 24px; border: 1px solid var(--catalog-line); border-radius: var(--store-radius); background: var(--catalog-surface); }
.store-cart-summary h2 { margin: 0 0 20px; font: 650 1.55rem var(--catalog-title-font); }
.store-summary-row { padding-bottom: 16px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--catalog-line); }
.store-delivery-box { padding: 18px 0; display: grid; gap: 9px; border-bottom: 1px solid var(--catalog-line); }
.store-delivery-option { padding: 11px; display: grid; grid-template-columns: auto auto 1fr; gap: 10px; align-items: start; border: 1px solid var(--catalog-line); cursor: pointer; }
.store-delivery-option.active { border-color: var(--catalog-primary); background: color-mix(in srgb, var(--catalog-primary) 6%, var(--catalog-surface)); }
.store-delivery-option > i { color: var(--catalog-primary); }
.store-delivery-option span { display: grid; }
.store-delivery-option small { opacity: .62; font-size: .7rem; }
.store-summary-total { padding: 19px 0; display: flex; justify-content: space-between; align-items: end; }
.store-summary-total span { display: grid; }
.store-summary-total small { opacity: .58; font-size: .68rem; }
.store-summary-total strong { color: var(--catalog-primary); font: 650 1.55rem var(--catalog-title-font); }
.store-checkout-button { width: 100%; }
.store-checkout-button:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.store-summary-security { margin-top: 13px; text-align: center; opacity: .6; font-size: .68rem; }

.store-checkout-page { min-height: 75vh; padding: 34px 0 90px; }
.store-checkout-heading { margin-bottom: 30px; display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.store-checkout-heading h1 { margin: 5px 0 4px; font: 650 clamp(2.5rem, 5vw, 4.6rem)/1 var(--catalog-title-font); }
.store-checkout-heading p { margin: 0; opacity: .65; }
.checkout-login-button { flex: none; display: inline-flex; align-items: center; gap: 9px; padding-inline: 18px; }
.checkout-login-button span { display: grid; line-height: 1.15; text-align: left; }
.checkout-login-button small { font-size: .64rem; font-weight: 500; opacity: .68; }
.checkout-authenticated-note { min-height: 45px; padding: 9px 12px; display: flex; align-items: center; gap: 9px; border: 1px solid color-mix(in srgb, #267447 35%, transparent); color: #267447; background: color-mix(in srgb, #267447 7%, var(--catalog-surface)); }
.checkout-authenticated-note > i { font-size: 1.15rem; }
.checkout-authenticated-note > span { display: grid; font-size: .78rem; font-weight: 700; }
.checkout-authenticated-note small { font-weight: 400; }
.store-checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: 30px; align-items: start; }
.store-checkout-steps { display: grid; gap: 17px; }
.store-checkout-card, .store-checkout-summary, .store-order-card { padding: 25px; border: 1px solid var(--catalog-line); border-radius: var(--store-radius); background: var(--catalog-surface); }
.store-checkout-card-title { margin-bottom: 22px; display: flex; gap: 13px; align-items: start; }
.store-checkout-card-title > span { flex: none; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--catalog-primary); color: #fff; font-weight: 700; }
.store-checkout-card-title h2, .store-checkout-summary h2, .store-order-card h2 { margin: 0; font: 650 1.45rem var(--catalog-title-font); }
.store-checkout-card-title p { margin: 0; opacity: .62; font-size: .78rem; }
.store-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.store-form-grid label, .store-field-block { display: grid; gap: 5px; font-size: .78rem; font-weight: 600; }
.store-form-grid label.wide { grid-column: 1 / -1; }
.store-form-grid input, .store-field-block input, .store-field-block textarea { width: 100%; min-height: 45px; padding: 10px 12px; border: 1px solid var(--catalog-line); border-radius: 3px; background: var(--catalog-bg); color: var(--catalog-text); outline: 0; }
.store-field-block textarea { resize: vertical; }
.store-form-grid input:focus, .store-field-block input:focus, .store-field-block textarea:focus { border-color: var(--catalog-primary); }
.store-form-grid small { opacity: .58; font-weight: 400; }
.store-cep-status { min-height: 18px; opacity: 1 !important; }
.store-cep-status.is-loading { color: var(--catalog-primary); }
.store-cep-status.is-success { color: #267447; }
.store-cep-status.is-error { color: #b42318; }
.store-checkout-options, .store-payment-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.store-checkout-options label, .store-payment-options label { padding: 14px; display: grid; grid-template-columns: auto auto 1fr; gap: 10px; align-items: start; border: 1px solid var(--catalog-line); cursor: pointer; }
.store-checkout-options label:has(input:checked), .store-payment-options label:has(input:checked) { border-color: var(--catalog-primary); background: color-mix(in srgb, var(--catalog-primary) 6%, var(--catalog-surface)); }
.store-checkout-options i, .store-payment-options i { color: var(--catalog-primary); font-size: 1.2rem; }
.store-checkout-options span, .store-payment-options span { display: grid; }
.store-checkout-options small, .store-payment-options small { opacity: .6; font-size: .7rem; }
.store-address-fields { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--catalog-line); }
.store-field-block { margin-top: 16px; }
.store-checkout-summary { position: sticky; top: 96px; }
.store-checkout-items { display: grid; margin: 15px 0; }
.store-checkout-item, .store-order-item { padding: 11px 0; display: flex; justify-content: space-between; gap: 15px; border-bottom: 1px solid var(--catalog-line); font-size: .78rem; }
.store-checkout-item span, .store-order-item span { display: grid; }
.store-checkout-item small, .store-order-item small { opacity: .62; }
.store-checkout-summary .store-summary-row { padding: 11px 0; }
.store-checkout-error { margin-bottom: 12px; padding: 10px; background: #fee4e2; color: #912018; font-size: .78rem; }
.store-checkout-terms { display: block; margin-top: 12px; text-align: center; opacity: .55; line-height: 1.4; }

.store-order-page { min-height: 75vh; padding: 70px 0 90px; text-align: center; }
.store-order-wrap { max-width: 960px; }
.store-order-success { width: 72px; height: 72px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: var(--catalog-secondary); color: #fff; font-size: 2rem; }
.store-order-page h1 { margin: 7px 0; font: 650 clamp(2.6rem, 5vw, 4.5rem)/1 var(--catalog-title-font); }
.store-order-page > .store-container > p { max-width: 650px; margin: 0 auto 35px; opacity: .7; }
.store-order-grid { margin-bottom: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; text-align: left; }
.store-order-total { padding-top: 17px; display: flex; justify-content: space-between; }
.store-order-total strong { color: var(--catalog-primary); font-size: 1.2rem; }
.store-order-status { margin: 16px 0; display: flex; gap: 12px; align-items: center; }
.store-order-status > span { width: 12px; height: 12px; border-radius: 50%; background: var(--catalog-primary); box-shadow: 0 0 0 6px color-mix(in srgb, var(--catalog-primary) 14%, transparent); }
.store-order-status div { display: grid; }
.store-order-status small, .store-order-card p { opacity: .65; font-size: .78rem; }

.customer-auth-page { min-height: 75vh; padding: 80px 0; display: grid; align-items: center; }
.customer-auth-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.customer-auth-copy h1, .customer-area-heading h1, .customer-order-heading h1 { margin: 8px 0 12px; font: 650 clamp(2.8rem, 5vw, 5rem)/1 var(--catalog-title-font); }
.customer-auth-copy > p { max-width: 560px; opacity: .7; }
.customer-auth-copy ul { padding: 0; margin: 28px 0 0; display: grid; gap: 12px; list-style: none; }
.customer-auth-copy li { display: flex; gap: 10px; align-items: center; }
.customer-auth-copy li i { color: var(--catalog-primary); font-size: 1.2rem; }
.customer-auth-card { padding: 34px; border: 1px solid var(--catalog-line); background: var(--catalog-surface); border-radius: var(--store-radius); }
.customer-auth-card h2 { margin: 0; font: 650 2rem var(--catalog-title-font); }
.customer-auth-card > p { margin: 0 0 22px; opacity: .65; }
.customer-auth-card form { display: grid; gap: 15px; }
.customer-auth-card label { display: grid; gap: 5px; font-size: .8rem; font-weight: 600; }
.customer-auth-card input { min-height: 48px; padding: 10px 12px; border: 1px solid var(--catalog-line); background: var(--catalog-bg); color: var(--catalog-text); outline: 0; }
.customer-auth-card input:focus { border-color: var(--catalog-primary); }
.customer-auth-card button { width: 100%; }
.customer-auth-card > small { display: block; margin-top: 15px; text-align: center; opacity: .55; }
.customer-forgot-link { margin-top:-8px; justify-self:end; color:var(--catalog-primary); font-size:.75rem; font-weight:700; }
.customer-recovery-wrap { max-width:520px; }
.customer-recovery-icon { width:58px;height:58px;margin:22px 0 14px;display:grid;place-items:center;border-radius:50%;background:color-mix(in srgb,var(--catalog-primary) 12%,var(--catalog-bg));color:var(--catalog-primary);font-size:1.55rem; }
.customer-recovery-icon.invalid { color:#b42318;background:#fee2e2; }

.customer-area-page, .customer-order-page { min-height: 75vh; padding: 55px 0 90px; }
.customer-area-heading, .customer-order-heading { margin-bottom: 30px; display: flex; justify-content: space-between; align-items: end; gap: 25px; }
.customer-area-heading h1, .customer-order-heading h1 { font-size: clamp(2.6rem, 4vw, 4.2rem); margin-bottom: 5px; }
.customer-area-heading p, .customer-order-heading p { margin: 0; opacity: .65; }
.customer-order-heading-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.customer-logout-link { display: inline-flex; align-items: center; gap: 6px; color: var(--catalog-primary); font-size: .78rem; font-weight: 700; }
.customer-logout-link:hover { text-decoration: underline; }
.customer-cancel-order { color: #b42318; border-color: color-mix(in srgb, #b42318 45%, transparent); }
.customer-cancel-order:hover { background: #b42318; border-color: #b42318; color: #fff; }
.customer-cancelled { gap: 14px; }
.customer-cancelled > button { margin-left: auto; }
.customer-summary-grid { margin-bottom: 22px; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.customer-summary-grid > div { padding: 17px; display: flex; gap: 13px; align-items: center; border: 1px solid var(--catalog-line); background: var(--catalog-surface); }
.customer-summary-grid i { color: var(--catalog-primary); font-size: 1.5rem; }
.customer-summary-grid span { display: grid; font-size: .75rem; opacity: .76; }
.customer-summary-grid b { font-size: 1rem; color: var(--catalog-text); }
.customer-content-grid, .customer-order-detail-grid { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(280px,.7fr); gap: 20px; align-items: start; }
.customer-panel { padding: 24px; border: 1px solid var(--catalog-line); background: var(--catalog-surface); border-radius: var(--store-radius); }
.customer-panel h2 { margin: 0; font: 650 1.55rem var(--catalog-title-font); }
.customer-panel h3 { margin: 24px 0 5px; font: 650 1rem var(--catalog-title-font); }
.customer-panel-heading { margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; }
.customer-panel-heading a { color: var(--catalog-primary); font-size: .78rem; font-weight: 700; }
.customer-empty { min-height: 220px; display: grid; place-items: center; align-content: center; text-align: center; }
.customer-empty i { color: var(--catalog-primary); font-size: 2rem; }
.customer-order-list { display: grid; }
.customer-order-row { padding: 15px 0; display: grid; grid-template-columns: 1fr auto auto; gap: 18px; align-items: center; border-bottom: 1px solid var(--catalog-line); }
.customer-order-row > div { display: grid; }
.customer-order-row > div:nth-child(2) { justify-items: end; }
.customer-order-code { color: var(--catalog-primary); font-weight: 800; }
.customer-order-row small { opacity: .6; font-size: .72rem; }
.customer-status { width: fit-content; padding: 5px 8px; border-radius: 999px; background: #e8eef8; color: #294a7a; font-size: .68rem; font-weight: 700; }
.status-entregue, .status-pronto_retirada { background:#dcfce7;color:#166534; }
.status-cancelado { background:#fee2e2;color:#991b1b; }
.status-aguardando_pagamento { background:#fef3c7;color:#92400e; }
.customer-profile dl { margin: 15px 0 0; display: grid; grid-template-columns: 80px 1fr; gap: 8px; font-size: .8rem; }
.customer-profile dt { opacity: .55; }.customer-profile dd { margin: 0; font-weight: 600; }
.customer-profile p { margin: 0; opacity: .72; font-size: .8rem; }
.customer-tracking { margin: 20px 0 28px; padding: 25px 18px; display: grid; grid-template-columns: repeat(5,1fr); border: 1px solid var(--catalog-line); background: var(--catalog-surface); overflow-x: auto; }
.customer-tracking > div { position: relative; min-width: 130px; display: grid; justify-items: center; gap: 9px; text-align: center; color: color-mix(in srgb,var(--catalog-text) 42%,transparent); font-size: .75rem; }
.customer-tracking > div:not(:last-child)::after { content:""; position:absolute; top:17px; left:60%; right:-40%; height:2px; background:var(--catalog-line); }
.customer-tracking > div.done:not(:last-child)::after { background:var(--catalog-secondary); }
.customer-tracking > div > span { position:relative; z-index:1; width:35px; height:35px; display:grid; place-items:center; border-radius:50%; background:var(--catalog-bg); border:1px solid var(--catalog-line); }
.customer-tracking > div.done { color:var(--catalog-text); }
.customer-tracking > div.done > span { background:var(--catalog-secondary); color:#fff; border-color:var(--catalog-secondary); }
.customer-tracking > div.current > span { box-shadow:0 0 0 6px color-mix(in srgb,var(--catalog-secondary) 14%,transparent); }
.customer-cancelled { margin:20px 0 28px; padding:20px; display:flex; gap:15px; align-items:center; background:#fee2e2;color:#991b1b; }
.customer-cancelled i { font-size:1.8rem; }.customer-cancelled p { margin:0; }
.customer-history { margin-top:20px; }
.customer-history > div { padding:12px 0; display:flex; gap:12px; border-bottom:1px solid var(--catalog-line); }
.customer-history > div > span { width:10px;height:10px;margin-top:6px;border-radius:50%;background:var(--catalog-primary); }
.customer-history p { margin:0;display:grid; }.customer-history small { opacity:.58; }
.customer-manage-link { margin-top:18px; display:inline-flex; gap:7px; align-items:center; color:var(--catalog-primary); font-size:.78rem; font-weight:700; }
.customer-settings-page { min-height:75vh; padding:55px 0 90px; }
.customer-settings-wrap { max-width:880px; }
.customer-settings-heading { margin-bottom:25px; }
.customer-settings-heading h1 { margin:7px 0 4px; font:650 clamp(2.6rem,4vw,4.2rem)/1 var(--catalog-title-font); }
.customer-settings-heading p { margin:0; opacity:.65; }
.customer-settings-card { padding:26px; border:1px solid var(--catalog-line); background:var(--catalog-surface); border-radius:var(--store-radius); }
.customer-settings-card h2 { margin:0 0 17px; font:650 1.55rem var(--catalog-title-font); }
.customer-settings-card h2:not(:first-child) { margin-top:30px; padding-top:23px; border-top:1px solid var(--catalog-line); }
.customer-form-help { margin:-12px 0 16px; opacity:.58; font-size:.76rem; }
.customer-form-actions { margin-top:22px; display:flex; justify-content:flex-end; gap:10px; }
.customer-form-message { margin-top:17px; padding:11px 13px; font-size:.78rem; }
.customer-form-message.success { background:#dcfce7;color:#166534; }
.customer-form-message.error { background:#fee2e2;color:#991b1b; }
.customer-address-layout { display:grid; grid-template-columns:minmax(0,1fr) minmax(340px,.8fr); gap:20px; align-items:start; }
.customer-address-list { display:grid; gap:12px; }
.customer-address-card { padding:20px; border:1px solid var(--catalog-line); background:var(--catalog-surface); border-radius:var(--store-radius); }
.customer-address-title { display:flex; justify-content:space-between; align-items:center; }
.customer-address-title h2 { margin:0; font:650 1.3rem var(--catalog-title-font); }
.customer-address-title span { padding:4px 8px; border-radius:99px; background:#dcfce7;color:#166534;font-size:.67rem;font-weight:700; }
.customer-address-card p { opacity:.72; font-size:.8rem; }
.customer-address-actions { display:flex; gap:14px; flex-wrap:wrap; }
.customer-address-actions a,.customer-address-actions button { padding:0;border:0;background:transparent;color:var(--catalog-primary);font-size:.74rem;font-weight:700;cursor:pointer; }
.customer-address-actions .danger { color:#b42318; }

@media (max-width: 1040px) {
    .store-product-grid { grid-template-columns: repeat(3, 1fr); }
    .store-product-detail { gap: 35px; }
    .store-assurances { grid-template-columns: 1fr; }
    .store-cart-layout { grid-template-columns: 1fr 330px; }
    .store-cart-item { grid-template-columns: 88px minmax(0, 1fr) 120px; }
    .store-cart-item-image { width: 88px; height: 88px; }
    .store-cart-item-total { grid-column: 2 / 4; display: flex; justify-content: space-between; text-align: left; border-top: 1px solid var(--catalog-line); padding-top: 10px; }
}
@media (max-width: 780px) {
    .store-container { width: min(calc(100% - 28px), var(--store-width)); }
    .store-header-inner { min-height: 66px; grid-template-columns: auto 1fr auto; gap: 12px; }
    .store-brand { justify-self: center; }
    .store-brand > span:last-child { display: none; }
    .store-menu-button { display: block; grid-column: 1; grid-row: 1; }
    .store-nav { position: absolute; top: 66px; left: 0; right: 0; display: none; padding: 16px 20px 22px; flex-direction: column; gap: 14px; border-bottom: 1px solid var(--catalog-line); background: var(--catalog-bg); }
    .store-nav.open { display: flex; }
    .store-header-actions { grid-column: 3; grid-row: 1; }
    .store-account-button span, .store-cart-button span { display: none; }
    .store-hero-grid { min-height: auto; padding: 65px 0; grid-template-columns: 1fr; gap: 45px; }
    .store-hero h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
    .store-hero-visual { width: min(100%, 430px); margin-inline: auto; }
    .store-section { padding: 65px 0; }
    .store-section-heading { align-items: stretch; flex-direction: column; }
    .store-search { width: 100%; }
    .store-product-grid { grid-template-columns: repeat(2, 1fr); gap: 13px; }
    .store-story-grid, .store-product-detail { grid-template-columns: 1fr; }
    .store-story-art { min-height: 230px; }
    .store-footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .store-product-content { grid-template-columns: 1fr; }
    .store-cart-layout { grid-template-columns: 1fr; }
    .store-cart-summary { position: static; }
    .store-checkout-layout { grid-template-columns: 1fr; }
    .store-checkout-heading { align-items: flex-start; flex-direction: column; }
    .store-checkout-summary { position: static; }
    .customer-auth-wrap { grid-template-columns:1fr; gap:35px; }
    .customer-content-grid, .customer-order-detail-grid { grid-template-columns:1fr; }
    .customer-address-layout { grid-template-columns:1fr; }
}
@media (max-width: 480px) {
    .store-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
    .store-product-grid:not(.store-product-list) .store-product-image { aspect-ratio: 1 / 1; }
    .store-product-grid:not(.store-product-list) .store-product-info { padding: 11px; }
    .store-product-grid:not(.store-product-list) .store-product-info > small { font-size: .58rem; letter-spacing: .04em; }
    .store-product-grid:not(.store-product-list) .store-product-info h3 { margin: 4px 0 9px; font-size: .98rem; }
    .store-product-grid:not(.store-product-list) .store-product-info p { display: none; }
    .store-product-grid:not(.store-product-list) .store-product-bottom { padding-top: 9px; align-items: center; }
    .store-product-grid:not(.store-product-list) .store-product-bottom strong { font-size: .9rem; }
    .store-product-grid:not(.store-product-list) .store-product-bottom > a { width: 30px; height: 30px; }
    .store-product-grid:not(.store-product-list) .store-product-flags { top: 7px; left: 7px; }
    .store-product-grid:not(.store-product-list) .store-product-flags b { width: 29px; height: 29px; font-size: .72rem; }
    .store-product-info p { min-height: 0; }
    .store-product-list .store-product-card { grid-template-columns: 108px 1fr; }
    .store-product-list .store-product-image { height: 100%; aspect-ratio: auto; }
    .store-product-list .store-product-info { padding: 15px; }
    .store-product-list .store-product-info p { display: none; }
    .store-variations { grid-template-columns: 1fr; }
    .store-purchase-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .store-purchase-actions .store-quantity { grid-column: 1 / -1; width: 120px; }
    .store-purchase-actions .store-button { padding-inline: 8px; font-size: .72rem; }
    .store-quantity { width: 120px; }
    .store-cart-heading { align-items: start; flex-direction: column; }
    .store-cart-item { grid-template-columns: 76px 1fr; gap: 12px; }
    .store-cart-item-image { width: 76px; height: 76px; }
    .store-cart-item-controls { grid-column: 1 / 3; grid-template-columns: 1fr auto; align-items: center; }
    .store-cart-item-total { grid-column: 1 / 3; }
    .store-form-grid, .store-checkout-options, .store-payment-options, .store-order-grid { grid-template-columns: 1fr; }
    .store-form-grid label.wide { grid-column: auto; }
    .customer-area-heading, .customer-order-heading { align-items:start; flex-direction:column; }
    .customer-order-heading-actions { align-items: flex-start; }
    .customer-cancelled { align-items: flex-start; flex-wrap: wrap; }
    .customer-cancelled > button { width: 100%; margin-left: 0; }
    .customer-summary-grid { grid-template-columns:1fr; }
    .customer-order-row { grid-template-columns:1fr auto; }
    .customer-order-row > div:nth-child(2) { justify-items:start; }
    .customer-order-row > i { grid-column:2;grid-row:1/3; }
}
