:root {
    --navy: #03243d;
    --navy-soft: #0b3d59;
    --brown: #2a1913;
    --clay: #a56f4e;
    --paper: #f7f5ef;
    --paper-deep: #ebe8df;
    --white: #ffffff;
    --muted: #69757a;
    --line: rgba(3, 36, 61, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--navy); font-family: 'Montserrat', Arial, Helvetica, sans-serif; }
a { color: inherit; }

.store-page { min-height: 100vh; padding-top: 78px; overflow: hidden; }
.site-header, .store-hero, .store-section, .site-footer { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 30; width: 100%; min-height: 78px; margin: 0; padding: 0 max(24px, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: 165px 1fr auto; align-items: center; gap: 34px; border-bottom: 1px solid var(--line); transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease; }
.site-header.is-scrolled { background: rgba(0, 20, 34, .88); border-bottom-color: rgba(255, 255, 255, .12); box-shadow: 0 10px 28px rgba(0, 12, 22, .2); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.site-logo { display: block; width: 148px; padding: 4px 8px; background: transparent; }
.site-logo img { display: block; width: 100%; height: auto; }
.site-header.is-scrolled .site-logo img { filter: brightness(0) invert(1); }
.site-nav { display: flex; justify-content: flex-end; gap: clamp(18px, 3vw, 40px); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.site-nav a, .header-contact, .section-link, .product-cta { text-decoration: none; }
.site-nav a { color: var(--muted); transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus { color: var(--navy); }
.menu-toggle { display: none; }
.header-contact { display: inline-flex; align-items: center; gap: 9px; padding: 12px 0 12px 18px; border-left: 1px solid var(--line); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.whatsapp-icon { width: 18px; height: 18px; flex: 0 0 auto; fill: currentColor; color: #18b96f; transition: transform .2s ease, color .2s ease; }
.header-contact:hover .whatsapp-icon, .header-contact:focus-visible .whatsapp-icon { color: #27d982; transform: translateY(-1px) scale(1.08); }
.site-header.is-scrolled .site-nav a, .site-header.is-scrolled .header-contact { color: rgba(255, 255, 255, .82); }
.site-header.is-scrolled .site-nav a:hover, .site-header.is-scrolled .site-nav a:focus, .site-header.is-scrolled .header-contact:hover { color: var(--white); }
.site-header.is-scrolled .header-contact { border-left-color: rgba(255, 255, 255, .18); }
.section-link span, .product-cta span { color: var(--clay); margin-left: 5px; }

.store-hero { position: relative; width: 100%; min-height: clamp(448px, 34.4vw, 552px); margin: 0; padding: 0; }
.hero-image { position: absolute; inset: 0; overflow: hidden; background: var(--navy); }
.hero-image::after { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--hero-overlay, rgba(0, 20, 34, .78)) 0%, color-mix(in srgb, var(--hero-overlay, rgba(0, 20, 34, .58)) 76%, transparent) 32%, color-mix(in srgb, var(--hero-overlay, rgba(0, 20, 34, .22)) 30%, transparent) 70%, transparent 100%); content: ''; }
.hero-image img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-image img { position:absolute; inset:0; opacity:0; transition:opacity .85s ease; }
.hero-image img.is-active { opacity:1; }
.hero-copy { position: relative; z-index: 2; display: flex; width: min(1240px, calc(100% - 48px)); min-height: clamp(448px, 34.4vw, 552px); flex-direction: column; align-items: flex-start; justify-content: center; margin: 0 auto; padding: 58px 0; }
.eyebrow, .section-kicker, .footer-label { margin: 0; color: var(--clay); font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.hero-copy h1 { max-width: 850px; margin: 22px 0 0; color: var(--white); font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: clamp(3.5rem, 6.5vw, 6.8rem); font-weight: 400; letter-spacing: -.085em; line-height: .89; }
.hero-copy h1 em { color: var(--hero-accent, #f0b37d); font-style: normal; }
.hero-text { max-width: 620px; margin: 30px 0 0; color: rgba(255, 255, 255, .8); font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.5; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; gap: 22px; padding: 17px 21px; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.button-primary { border: 1px solid var(--hero-accent, #f0b37d); background: var(--hero-accent, #f0b37d); color: var(--navy); transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.button-primary:hover { border-color: var(--white); background: var(--white); color: var(--navy); transform: translateY(-2px); }
.button-secondary { border: 1px solid var(--hero-accent, #f0b37d); background: color-mix(in srgb, var(--hero-accent, #f0b37d) 18%, transparent); color: var(--white); transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.button-secondary:hover { border-color: var(--hero-accent, #f0b37d); background: var(--hero-accent, #f0b37d); color: var(--navy); transform: translateY(-2px); }
.button-primary span, .button-secondary span { color: currentColor; font-size: 1.1rem; }
.hero-note { color: rgba(255, 255, 255, .78); font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: .9rem; font-style: italic; }

.store-section { padding: 86px 0 0; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-heading h2 { margin: 9px 0 0; color: var(--navy); font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: clamp(2.5rem, 5vw, 4.4rem); font-weight: 400; letter-spacing: -.07em; line-height: .95; }
.section-link { color: var(--navy); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.products-section { padding-bottom: 98px; }
.section-heading-products { align-items: center; }
.products-tools { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.store-search { display: flex; align-items: center; border-bottom: 1px solid var(--line); }
.store-search input { width: 145px; padding: 9px 0; border: 0; outline: 0; background: transparent; color: var(--navy); font: inherit; font-size: .64rem; }
.store-search button { padding: 7px 0 7px 10px; border: 0; background: transparent; color: var(--clay); font: inherit; font-weight: 700; cursor: pointer; }
.search-result-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .72rem; }
.search-result-note strong { color: var(--navy); }
.category-filters { display: flex; flex-wrap: wrap; gap: 9px; }
.category-filters span { padding: 9px 12px; border: 1px solid var(--line); color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.category-filters span:first-child { border-color: var(--navy); background: var(--navy); color: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.product-card { min-width: 0; background: var(--white); border: 1px solid rgba(3, 36, 61, .13); transition: transform .2s ease, box-shadow .2s ease; }
.product-card { display: flex; flex-direction: column; }
.product-card:hover { box-shadow: 8px 8px 0 rgba(3, 36, 61, .11); transform: translateY(-4px); }
.product-card-link { display: flex; min-height: 0; flex: 1; flex-direction: column; color: inherit; text-decoration: none; }
.product-card-link:focus-visible { outline: 2px solid var(--clay); outline-offset: -2px; }
.product-card-link .product-info { padding-bottom: 0; }
.product-media { position: relative; display: grid; min-height: 205px; overflow: hidden; place-items: center; color: var(--white); text-decoration: none; }
.product-card--featured .product-media { min-height: 305px; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media--pedais { background: linear-gradient(135deg, #062b46 0%, #0e5068 55%, #a56f4e 170%); }
.product-media--guitarras { background: linear-gradient(135deg, #2a1913 0%, #654333 55%, #d5b48d 150%); }
.product-media--acessorios { background: linear-gradient(135deg, #173f52 0%, #6c8990 100%); }
.product-media--pecas-e-componentes { background: linear-gradient(135deg, #1c2530 0%, #77818a 100%); }
.product-monogram { display: grid; width: 92px; height: 92px; place-items: center; border: 1px solid rgba(255,255,255,.65); font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 2.2rem; letter-spacing: -.1em; }
.product-media-name { position: absolute; bottom: 16px; left: 18px; font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.product-badge { position: absolute; top: 14px; left: 14px; padding: 7px 8px; background: var(--white); color: var(--navy); font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-info { padding: 18px 18px 20px; }
.product-category { margin: 0; color: var(--clay); font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-info h3 { min-height: 44px; margin: 9px 0 7px; color: var(--navy); font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 1.35rem; font-weight: 400; letter-spacing: -.03em; line-height: 1; }
.product-meta { min-height: 18px; margin: 0; color: var(--muted); font-size: .66rem; letter-spacing: .03em; }
.product-meta span { margin: 0 3px; color: var(--clay); }
.product-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; margin-top: 18px; }
.product-card > .product-bottom { padding: 0 18px 20px; }
.product-price-link { color: var(--navy); font-size: 1.05rem; font-weight: 700; text-decoration: none; }
.product-price-link:hover { color: var(--clay); }
.product-cta { color: var(--navy); font-size: .58rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.product-buy-button { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 10px 16px; border: 1px solid var(--navy); border-radius: 4px; background: var(--navy); box-shadow: 0 7px 16px rgba(3, 36, 61, .18); color: var(--white); font-size: .64rem; transition: transform .2s ease, box-shadow .2s ease; }
.product-buy-button:hover, .product-buy-button:focus-visible { background: var(--navy); box-shadow: 0 12px 22px rgba(3, 36, 61, .24); color: var(--white); transform: scale(1.05); }
.empty-state { grid-column: 1 / -1; padding: 48px; background: var(--paper-deep); color: var(--muted); text-align: center; }

.site-footer { position: relative; display: grid; width: 100%; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin: 0; padding: 56px max(24px, calc((100vw - 1240px) / 2)) 28px; background: #24130B; color: rgba(255, 255, 255, .78); }
.footer-brand img { display: block; width: 178px; height: auto; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 250px; margin: 18px 0 0; color: rgba(255, 255, 255, .66); font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: .92rem; line-height: 1.4; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.social-icon { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(255, 255, 255, .28); border-radius: 50%; color: rgba(255, 255, 255, .84); font-size: .56rem; font-weight: 700; letter-spacing: .02em; text-decoration: none; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.social-icon:hover { border-color: #f0b37d; background: #f0b37d; color: var(--navy); transform: translateY(-2px); }
.footer-column { display: flex; flex-direction: column; gap: 11px; color: rgba(255, 255, 255, .72); font-size: .72rem; }
.footer-column a { text-decoration: none; }
.footer-column a:hover { color: var(--white); }
.footer-label { margin-bottom: 5px; color: #f0b37d; font-size: .61rem; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: center; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .16); color: rgba(255, 255, 255, .58); font-size: .63rem; letter-spacing: .04em; text-align: center; }

/* Product catalogue */
.catalog-page { min-height: 100vh; padding-top: 78px; background: linear-gradient(135deg, #f7f5ef 0%, #edf4f6 58%, #e4f0f4 100%); }
.catalog-main { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 88px 0 108px; }
.catalog-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.catalog-intro h1 { margin: 11px 0 0; color: var(--navy); font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: clamp(3rem, 6vw, 5.7rem); font-weight: 400; letter-spacing: -.08em; line-height: .9; }
.catalog-intro > div > p:last-child { max-width: 480px; margin: 22px 0 0; color: var(--muted); font-size: .91rem; line-height: 1.5; }
.catalog-count { padding-bottom: 5px; color: var(--clay); font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.catalog-toolbar { display: grid; grid-template-columns: minmax(0, 1fr) 224px; align-items: end; gap: 18px; margin-top: 45px; }
.catalog-search, .catalog-select { display: flex; min-width: 0; flex-direction: column; gap: 9px; color: var(--muted); font-size: .61rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.catalog-search { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 9px 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.catalog-search > span, .catalog-select > span { grid-column: 1 / -1; }
.catalog-search input, .catalog-select select { min-width: 0; border: 0; outline: 0; background: transparent; color: var(--navy); font: inherit; font-size: .76rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
.catalog-search input::placeholder { color: #9aa3a3; }
.catalog-search button { padding: 0 0 0 10px; border: 0; background: transparent; color: var(--clay); font: inherit; font-size: 1rem; font-weight: 700; cursor: pointer; }
.catalog-select select { width: 100%; padding: 11px 12px; border: 1px solid var(--line); background: rgba(255, 255, 255, .6); cursor: pointer; }
.catalog-categories { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.catalog-categories a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid var(--line); color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease; }
.catalog-categories a:hover, .catalog-categories a:focus-visible { border-color: var(--clay); background: rgba(165, 111, 78, .08); color: var(--navy); transform: translateY(-2px); }
.catalog-categories a.is-active { border-color: var(--navy); background: var(--navy); color: var(--white); }
.catalog-categories small { color: currentColor; font-size: .56rem; opacity: .66; letter-spacing: 0; }
.catalog-result-note { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 28px; color: var(--muted); font-size: .7rem; }
.catalog-result-note strong { color: var(--navy); }
.catalog-result-note a { margin-left: 7px; color: var(--clay); font-weight: 700; text-decoration: none; }
.catalog-products-grid { margin-top: 42px; }
.catalog-empty { grid-column: 1 / -1; padding: 68px 30px; border: 1px solid var(--line); background: rgba(255, 255, 255, .7); text-align: center; }
.catalog-empty h2 { margin: 10px 0 0; color: var(--navy); font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 400; letter-spacing: -.06em; }
.catalog-empty > p:not(.section-kicker) { max-width: 440px; margin: 16px auto 27px; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.catalog-empty .button { display: inline-flex; }
.catalog-pagination { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 46px; }
.catalog-pagination a, .catalog-pagination span { display: grid; min-width: 34px; height: 34px; padding: 0 10px; place-items: center; border: 1px solid var(--line); color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .04em; text-decoration: none; }
.catalog-pagination a:hover, .catalog-pagination a:focus-visible, .catalog-pagination a.is-current { border-color: var(--navy); background: var(--navy); color: var(--white); }
.catalog-pagination span.is-disabled { opacity: .45; }

/* Product detail */
.product-detail-page { min-height: 100vh; padding-top: 78px; background: linear-gradient(135deg, #f7f5ef 0%, #edf4f6 58%, #e4f0f4 100%); }
.product-detail-main { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 48px 0 108px; }
.product-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-breadcrumb a { color: var(--clay); text-decoration: none; }
.product-detail-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); align-items: start; gap: clamp(38px, 6vw, 86px); margin-top: 34px; }
.product-gallery-stage { position: relative; display: grid; min-height: clamp(430px, 46vw, 620px); overflow: hidden; place-items: center; border: 1px solid rgba(3, 36, 61, .12); background-color: var(--navy); }
.product-gallery-stage img { display: block; width: 100%; height: 100%; max-height: 620px; object-fit: contain; }
.product-detail-monogram { display: grid; width: 130px; height: 130px; place-items: center; border: 1px solid rgba(255,255,255,.68); color: var(--white); font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 3.4rem; letter-spacing: -.12em; }
.product-gallery-stage .product-badge { top: 18px; left: 18px; }
.product-gallery-thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.product-gallery-thumbs button { width: 72px; height: 72px; padding: 0; overflow: hidden; border: 1px solid var(--line); background: var(--white); cursor: pointer; opacity: .62; transition: border-color .2s ease, opacity .2s ease, transform .2s ease; }
.product-gallery-thumbs button:hover, .product-gallery-thumbs button:focus-visible, .product-gallery-thumbs button.is-active { border-color: var(--clay); opacity: 1; transform: translateY(-2px); }
.product-gallery-thumbs img { display: block; width: 100%; height: 100%; object-fit: cover; }
.product-video-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--clay); font-size: .67rem; font-weight: 700; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
.product-video-link span { font-size: 1rem; }
.product-purchase { align-self: center; padding: 38px 0; }
.product-purchase h1 { max-width: 560px; margin: 12px 0 0; color: var(--navy); font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: clamp(2.8rem, 5vw, 5.7rem); font-weight: 400; letter-spacing: -.085em; line-height: .91; }
.product-detail-meta { margin: 18px 0 0; color: var(--muted); font-size: .76rem; letter-spacing: .04em; }
.product-detail-meta span { margin: 0 5px; color: var(--clay); }
.product-detail-price { margin-top: 38px; color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.45rem); font-weight: 600; letter-spacing: -.05em; }
.product-detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 17px; }
.product-detail-tags span { padding: 8px 10px; border: 1px solid rgba(165, 111, 78, .35); color: var(--clay); font-size: .59rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.product-detail-stock { max-width: 430px; margin: 25px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.product-detail-buy { display: inline-flex; align-items: center; justify-content: center; min-width: 210px; margin-top: 28px; padding: 17px 22px; border: 1px solid var(--navy); background: var(--navy); color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .11em; text-decoration: none; text-transform: uppercase; box-shadow: 0 12px 25px rgba(3, 36, 61, .16); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.product-detail-buy:hover, .product-detail-buy:focus-visible { background: var(--navy-soft); box-shadow: 0 16px 30px rgba(3, 36, 61, .24); transform: translateY(-3px); }
.product-detail-note { margin: 18px 0 0; color: var(--muted); font-size: .68rem; }
.product-detail-sku { margin: 26px 0 0; color: #8d9698; font-size: .58rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.product-detail-info-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 20px; margin-top: 84px; }
.product-detail-panel { min-width: 0; padding: 32px; border: 1px solid rgba(3, 36, 61, .12); background: rgba(255, 255, 255, .78); }
.product-detail-panel h2 { margin: 10px 0 0; color: var(--navy); font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 400; letter-spacing: -.06em; }
.product-detail-copy, .product-detail-muted { margin-top: 22px; color: var(--muted); font-size: .83rem; line-height: 1.72; }
.product-condition-block { display: grid; gap: 14px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.product-condition-block p { margin: 0; color: var(--muted); font-size: .75rem; line-height: 1.55; }
.product-condition-block strong { display: block; margin-bottom: 5px; color: var(--navy); font-size: .59rem; letter-spacing: .1em; text-transform: uppercase; }
.product-spec-list { display: grid; gap: 0; margin: 25px 0 0; }
.product-spec-list div { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.product-spec-list dt { color: var(--muted); font-size: .68rem; }
.product-spec-list dd { margin: 0; color: var(--navy); font-size: .72rem; font-weight: 700; text-align: right; }
.product-spec-notes { margin: 20px 0 0; color: var(--muted); font-size: .74rem; line-height: 1.55; }

/* Public store visual direction — phase 1 */
:root {
    --store-ink: #050505;
    --store-gold: #f3b400;
    --store-gold-deep: #c98d00;
    --store-heading: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
}

.store-page {
    padding-top: 0;
    background: #f8f8f6;
}

.store-page .site-header {
    grid-template-columns: 150px minmax(0, 1fr) auto;
    min-height: 88px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .76) 0%, rgba(0, 0, 0, .16) 82%, transparent 100%);
    border-bottom-color: rgba(255, 255, 255, .12);
    color: var(--white);
}

.store-page .site-logo {
    width: 132px;
    padding: 0;
}

.store-page .site-logo img,
.store-page .site-header.is-scrolled .site-logo img {
    filter: none;
}

.store-page .site-nav {
    justify-content: center;
    gap: clamp(18px, 2.8vw, 38px);
    font-size: .68rem;
}

.store-page .site-nav a {
    position: relative;
    padding: 34px 0 30px;
    color: rgba(255, 255, 255, .86);
    transition: color .2s ease;
}

.store-page .site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    background: var(--store-gold);
    content: '';
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.store-page .site-nav a:hover,
.store-page .site-nav a:focus-visible,
.store-page .site-nav a.is-active {
    color: var(--store-gold);
}

.store-page .site-nav a:hover::after,
.store-page .site-nav a:focus-visible::after,
.store-page .site-nav a.is-active::after {
    transform: scaleX(1);
}

.store-page .header-contact {
    border-left-color: rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .9);
}

.store-page .whatsapp-icon {
    color: var(--store-gold);
}

.store-page .site-header.is-scrolled {
    background: rgba(5, 5, 5, .9);
    border-bottom-color: rgba(255, 255, 255, .14);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .26);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.store-page .site-header.is-scrolled .site-nav a,
.store-page .site-header.is-scrolled .header-contact {
    color: rgba(255, 255, 255, .86);
}

.store-page .site-header.is-scrolled .site-nav a:hover,
.store-page .site-header.is-scrolled .site-nav a:focus-visible,
.store-page .site-header.is-scrolled .site-nav a.is-active,
.store-page .site-header.is-scrolled .header-contact:hover {
    color: var(--store-gold);
}

.store-page .store-hero,
.store-page .hero-copy {
    min-height: clamp(560px, 51vw, 720px);
}

.store-page .hero-image {
    background: var(--store-ink);
}

.store-page .hero-image--placeholder::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 72% 42%, rgba(243, 180, 0, .2), transparent 23%),
        linear-gradient(120deg, rgba(255, 255, 255, .04), transparent 42%, rgba(243, 180, 0, .08));
    content: '';
    pointer-events: none;
}

.store-page .hero-image--placeholder.is-placeholder img {
    opacity: 0;
}

.hero-placeholder-art {
    position: absolute;
    top: 16%;
    right: 5%;
    z-index: 0;
    width: min(55vw, 700px);
    height: 70%;
    transform: rotate(-4deg);
    opacity: .92;
}

.hero-placeholder-pedal {
    position: absolute;
    bottom: 3%;
    display: block;
    width: 25%;
    height: 72%;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 8px;
    box-shadow: 0 28px 55px rgba(0, 0, 0, .42), inset 0 0 0 7px rgba(0, 0, 0, .13);
    transform: skewY(-3deg);
}

.hero-placeholder-pedal::before,
.hero-placeholder-pedal::after {
    position: absolute;
    left: 22%;
    width: 56%;
    height: 14%;
    border: 1px solid rgba(0, 0, 0, .35);
    border-radius: 50%;
    content: '';
}

.hero-placeholder-pedal::before { top: 20%; }
.hero-placeholder-pedal::after { top: 49%; }
.hero-placeholder-pedal--light { right: 56%; background: linear-gradient(145deg, #d9d4c8, #7d776b); }
.hero-placeholder-pedal--gold { right: 27%; background: linear-gradient(145deg, #f4bd14, #9b6300); transform: translateY(-8%) skewY(-3deg); }
.hero-placeholder-pedal--dark { right: 0; background: linear-gradient(145deg, #363b40, #090a0b); }

.store-page .hero-image::after {
    z-index: 2;
    background: linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .72) 33%, rgba(0, 0, 0, .2) 70%, rgba(0, 0, 0, .05) 100%);
}

.store-page .hero-copy {
    width: min(1240px, calc(100% - 48px));
    padding: 112px 0 72px;
}

.store-page .hero-copy h1 {
    max-width: 680px;
    margin-top: 20px;
    font-family: var(--store-heading);
    font-size: clamp(4.5rem, 8.4vw, 8.2rem);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: .82;
    text-transform: uppercase;
}

.store-page .hero-copy h1 em {
    color: var(--store-gold);
}

.store-page .hero-text {
    max-width: 430px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .78);
    font-size: .88rem;
    line-height: 1.65;
}

.store-page .hero-actions {
    gap: 12px;
    margin-top: 30px;
}

.store-page .button {
    border-radius: 0;
    padding: 14px 20px;
    font-size: .66rem;
    letter-spacing: .12em;
}

.store-page .button-primary {
    border-color: var(--store-gold);
    background: var(--store-gold);
    color: var(--store-ink);
}

.store-page .button-primary:hover,
.store-page .button-primary:focus-visible {
    border-color: var(--white);
    background: var(--white);
    color: var(--store-ink);
}

.store-page .button-secondary {
    border-color: rgba(255, 255, 255, .72);
    background: transparent;
    color: var(--white);
}

.store-page .button-secondary:hover,
.store-page .button-secondary:focus-visible {
    border-color: var(--store-gold);
    background: var(--store-gold);
    color: var(--store-ink);
}

@media (max-width: 680px) {
    .store-page .site-header,
    .store-page .site-header.is-scrolled {
        min-height: 68px;
        background: rgba(5, 5, 5, .94);
        border-bottom-color: rgba(255, 255, 255, .12);
        box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .store-page .site-logo {
        width: 116px;
    }

    .store-page .site-nav,
    .store-page .site-header.is-scrolled .site-nav.is-open {
        top: 100%;
        padding: 6px 16px 12px;
        background: var(--store-ink);
        border-bottom-color: rgba(255, 255, 255, .12);
        box-shadow: 0 16px 28px rgba(0, 0, 0, .24);
    }

    .store-page .site-nav a,
    .store-page .site-header.is-scrolled .site-nav a {
        padding: 13px 0;
        border-top-color: rgba(255, 255, 255, .12);
        color: rgba(255, 255, 255, .84);
    }

    .store-page .site-nav a::after {
        bottom: 8px;
        left: 0;
        width: 32px;
        transform-origin: left;
    }

    .store-page .menu-toggle,
    .store-page .site-header.is-scrolled .menu-toggle {
        border-color: rgba(255, 255, 255, .26);
        color: var(--white);
    }

    .store-page .store-hero,
    .store-page .hero-copy {
        min-height: clamp(590px, 142vw, 690px);
    }

    .store-page .hero-image img {
        object-position: 66% center;
    }

    .hero-placeholder-art {
        top: 22%;
        right: -14%;
        width: 82vw;
        height: 55%;
        opacity: .64;
    }

    .store-page .hero-copy {
        width: min(100% - 32px, 520px);
        padding: 110px 0 50px;
    }

    .store-page .hero-copy h1 {
        max-width: 360px;
        font-size: clamp(4rem, 17vw, 5.8rem);
    }

    .store-page .hero-text {
        max-width: 330px;
        font-size: .82rem;
    }

    .store-page .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .store-page .hero-actions .button {
        justify-content: center;
    }
}

/* Public store visual direction — phase 2 */
.store-page .store-section {
    width: 100%;
    padding-right: max(24px, calc((100vw - 1240px) / 2));
    padding-left: max(24px, calc((100vw - 1240px) / 2));
    background: var(--white);
}

.store-page .categories-section {
    padding-top: 78px;
    padding-bottom: 88px;
}

.store-page .featured-section {
    padding-top: 82px;
    padding-bottom: 92px;
    border-top: 1px solid rgba(5, 5, 5, .08);
}

.store-page .products-section {
    padding-top: 82px;
    background: #f5f5f2;
    border-top: 1px solid rgba(5, 5, 5, .08);
}

.store-page .section-heading--showcase {
    position: relative;
    align-items: center;
    justify-content: center;
    margin-bottom: 34px;
}

.store-page .section-heading--showcase > div:first-child {
    position: relative;
    padding: 0 78px;
    text-align: center;
}

.store-page .section-heading--showcase > div:first-child::before,
.store-page .section-heading--showcase > div:first-child::after {
    position: absolute;
    top: 55%;
    width: 52px;
    height: 1px;
    background: var(--store-gold);
    content: '';
}

.store-page .section-heading--showcase > div:first-child::before { left: 0; }
.store-page .section-heading--showcase > div:first-child::after { right: 0; }

.store-page .section-heading--showcase h2 {
    margin-top: 4px;
    font-family: var(--store-heading);
    font-size: clamp(2.8rem, 5vw, 4.3rem);
    font-weight: 800;
    letter-spacing: .015em;
    line-height: .86;
    text-transform: uppercase;
}

.store-page .section-heading--showcase .section-kicker {
    color: var(--store-gold-deep);
    font-size: .6rem;
}

.store-page .section-heading--showcase > .section-link {
    position: absolute;
    right: 0;
    bottom: 7px;
    color: var(--store-ink);
}

.store-page .section-heading--showcase > .section-link span {
    color: var(--store-gold-deep);
}

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

.category-card {
    position: relative;
    display: flex;
    min-height: 205px;
    align-items: center;
    justify-content: flex-start;
    padding: 26px 18px 22px;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(5, 5, 5, .16);
    color: var(--store-ink);
    text-align: center;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.category-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--store-gold);
    content: '';
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.category-card:hover,
.category-card:focus-visible {
    border-color: var(--store-gold);
    box-shadow: 0 16px 30px rgba(5, 5, 5, .1);
    outline: none;
    transform: translateY(-4px);
}

.category-card:hover::before,
.category-card:focus-visible::before { transform: scaleX(1); }

.category-card-icon {
    position: relative;
    display: grid;
    width: 80px;
    height: 80px;
    margin-bottom: 17px;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #071f33;
    transition: color .2s ease, transform .2s ease;
}

.category-card-image {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(18%) sepia(8%) saturate(620%) hue-rotate(169deg) brightness(92%) contrast(91%);
    transition: transform .2s ease, filter .2s ease;
}

.category-card:hover .category-card-icon,
.category-card:focus-visible .category-card-icon { color: #071f33; transform: translateY(-3px); }
.category-card:hover .category-card-image,
.category-card:focus-visible .category-card-image { transform: scale(1.06); }

.category-card strong {
    font-family: var(--store-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: .95;
    text-transform: uppercase;
}

.category-card small {
    max-width: 160px;
    margin-top: 8px;
    color: #717171;
    font-size: .62rem;
    line-height: 1.4;
}

.category-card-arrow {
    position: absolute;
    right: 14px;
    bottom: 13px;
    color: var(--store-gold-deep);
    font-size: 1rem;
    font-weight: 700;
}

.store-page .product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-color: rgba(5, 5, 5, .14);
    border-radius: 6px;
    background: #fff;
    box-shadow: none;
}

.store-page .product-card:hover {
    box-shadow: 0 18px 32px rgba(5, 5, 5, .12);
}

.store-page .product-media-frame {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f7f6f2;
}

.store-page .product-media {
    width: 100%;
    height: 100%;
    min-height: 0;
    background: #f7f6f2;
}

.store-page .product-media img {
    width: 100%;
    height: 100%;
    padding: 15px;
    object-fit: cover;
    transition: transform .35s ease;
}

.store-page .product-card:hover .product-media img {
    transform: scale(1.035);
}

.store-page .product-card-details {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    justify-content: center;
    padding: 14px 17px 7px;
    text-align: center;
}

.store-page .product-category {
    color: var(--store-gold-deep);
}

.store-page .product-info h3 {
    min-height: 40px;
    margin: 7px 0 6px;
    font-family: var(--store-heading);
    font-size: 1.36rem;
    font-weight: 800;
    letter-spacing: .015em;
    line-height: .9;
    text-transform: uppercase;
}

.store-page .product-meta {
    color: #777;
}

.store-page .product-meta span {
    color: var(--store-gold-deep);
}

.store-page .product-bottom {
    align-items: center;
    margin-top: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(5, 5, 5, .1);
}

.store-page .product-card-footer {
    flex-direction: column;
    gap: 8px;
    padding: 12px 17px 17px;
}

.store-page .product-price-link {
    color: var(--store-ink);
    font-size: 1rem;
}

.store-page .product-buy-button {
    width: min(100%, 168px);
    min-height: 42px;
    border-color: var(--store-ink);
    border-radius: 3px;
    background: var(--store-ink);
    box-shadow: none;
    color: var(--store-gold);
    font-size: .68rem;
    letter-spacing: .08em;
}

.store-page .product-buy-button:hover,
.store-page .product-buy-button:focus-visible {
    border-color: var(--store-gold);
    background: var(--store-gold);
    box-shadow: none;
    color: var(--store-ink);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .categories-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
    .store-page .store-section {
        padding-right: 16px;
        padding-left: 16px;
    }

    .store-page .categories-section,
    .store-page .featured-section,
    .store-page .products-section {
        padding-top: 64px;
        padding-bottom: 70px;
    }

    .store-page .section-heading--showcase {
        margin-bottom: 26px;
    }

    .store-page .section-heading--showcase > div:first-child {
        padding: 0 52px;
    }

    .store-page .section-heading--showcase > div:first-child::before,
    .store-page .section-heading--showcase > div:first-child::after {
        width: 34px;
    }

    .store-page .section-heading--showcase > .section-link {
        position: static;
        margin-top: 14px;
    }

    .category-card {
        min-height: 185px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .category-card strong { font-size: 1.18rem; }
    .store-page .product-media-frame { aspect-ratio: 1 / 1; }
    .store-page .product-media { min-height: 0; }
}

@media (max-width: 900px) {
    .site-header { grid-template-columns: 180px 1fr; gap: 18px; }
    .site-nav { justify-content: flex-end; gap: 16px; }
    .header-contact { display: none; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .catalog-main { padding-top: 68px; }
    .product-detail-grid { grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr); gap: 32px; }
    .product-purchase { padding: 18px 0; }
}

@media (max-width: 680px) {
    .store-page { padding-top: 68px; }
    .site-header, .store-section, .site-footer { width: min(100% - 32px, 520px); }
    .site-header { width: 100%; min-height: 68px; margin: 0; padding: 0 16px; grid-template-columns: 1fr auto; }
    .site-logo { width: 122px; }
    .site-nav { position: absolute; top: calc(100% - 1px); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 8px 16px 16px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 14px 28px rgba(3, 36, 61, .12); }
    .site-nav.is-open { display: flex; }
    .site-nav a { padding: 14px 0; border-top: 1px solid var(--line); font-size: .68rem; }
    .site-nav a:first-child { border-top: 0; }
    .site-header.is-scrolled { background: var(--paper); border-bottom-color: var(--line); box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
    .site-header.is-scrolled .site-logo img { filter: none; }
    .site-header.is-scrolled .site-nav a { color: var(--muted); }
    .site-header.is-scrolled .site-nav.is-open { background: var(--paper); border-bottom-color: var(--line); }
    .site-header.is-scrolled .site-nav.is-open a { color: var(--muted); border-top-color: var(--line); }
    .header-contact { display: none; }
    .menu-toggle { display: inline-flex; width: 42px; height: 42px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 0; border: 1px solid var(--line); background: transparent; color: var(--navy); cursor: pointer; }
    .menu-toggle span { display: block; width: 17px; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
    .site-header.is-scrolled .menu-toggle { border-color: var(--line); color: var(--navy); }
    .site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
    .site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .store-hero { width: 100%; min-height: clamp(464px, 123.2vw, 576px); padding: 0; }
    .hero-image img { object-position: 68% center; }
    .hero-copy { width: min(100% - 32px, 520px); min-height: clamp(464px, 123.2vw, 576px); padding: 44px 0 48px; }
    .hero-copy h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
    .hero-actions { align-items: flex-start; gap: 14px; margin-top: 30px; }
    .hero-actions .button { width: 100%; justify-content: space-between; }
    .store-section { padding-top: 64px; }
    .section-heading, .section-heading-products { align-items: flex-start; flex-direction: column; }
    .products-tools { width: 100%; align-items: flex-start; flex-direction: column; justify-content: flex-start; }
    .featured-grid, .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .store-page .product-media-frame { aspect-ratio: 1 / 1; }
    .store-page .product-media { min-height: 0; }
    .product-info { padding: 14px 12px 15px; }
    .product-card-link .product-info { padding-bottom: 0; }
    .product-card > .product-bottom { padding: 0 12px 15px; }
    .product-info h3 { min-height: 38px; font-size: 1.08rem; }
    .product-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
    .site-footer { width: 100%; margin: 0; grid-template-columns: 1fr 1fr; gap: 34px 22px; padding-top: 42px; padding-right: 16px; padding-left: 16px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { grid-column: 1 / -1; flex-direction: column; gap: 8px; }
    .catalog-page { padding-top: 68px; }
    .catalog-main { width: min(100% - 32px, 520px); padding: 60px 0 76px; }
    .catalog-intro { align-items: flex-start; flex-direction: column; gap: 20px; }
    .catalog-intro > div > p:last-child { margin-top: 18px; }
    .catalog-toolbar { grid-template-columns: 1fr; margin-top: 34px; }
    .catalog-categories { margin-top: 22px; }
    .catalog-products-grid { margin-top: 30px; }
    .catalog-pagination { flex-wrap: wrap; margin-top: 34px; }
    .product-detail-page { padding-top: 68px; }
    .product-detail-main { width: min(100% - 32px, 520px); padding: 34px 0 76px; }
    .product-detail-grid, .product-detail-info-grid { grid-template-columns: 1fr; gap: 28px; }
    .product-gallery-stage { min-height: min(110vw, 470px); }
    .product-purchase { padding: 6px 0 0; }
    .product-purchase h1 { font-size: clamp(2.8rem, 15vw, 4.5rem); }
    .product-detail-price { margin-top: 28px; }
    .product-detail-info-grid { margin-top: 50px; }
    .product-detail-panel { padding: 24px 20px; }
}

/* Checkout and cart */
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.header-cart { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.header-cart span { display: grid; min-width: 19px; height: 19px; padding: 0 4px; place-items: center; border-radius: 50%; background: var(--clay); color: var(--white); font-size: .58rem; letter-spacing: 0; }
.site-header.is-scrolled .header-cart { color: rgba(255, 255, 255, .86); }
.store-flash, .checkout-flash { width: min(1180px, calc(100% - 48px)); margin: 14px auto; padding: 13px 16px; border: 1px solid rgba(3, 36, 61, .14); background: rgba(255, 255, 255, .92); color: var(--navy); font-size: .72rem; font-weight: 600; }
.store-flash { position: relative; z-index: 4; margin-top: 0; }
.store-flash.is-error, .checkout-flash.is-error { border-color: rgba(157, 66, 45, .34); background: #fff2ed; color: #8d3926; }
.store-flash.is-success, .checkout-flash.is-success { border-color: rgba(70, 125, 92, .3); background: #eff8f1; color: #2f6944; }
.product-cart-form { margin: 0; }

.checkout-page { min-height: 100vh; padding: 28px 24px 80px; background-color: #eef5f8; background-image: radial-gradient(circle at 12% 18%, rgba(56, 140, 196, .26) 0, rgba(56, 140, 196, 0) 32%), radial-gradient(circle at 88% 78%, rgba(16, 86, 146, .2) 0, rgba(16, 86, 146, 0) 35%), radial-gradient(circle at 60% 42%, rgba(136, 205, 234, .28) 0, rgba(136, 205, 234, 0) 28%), linear-gradient(135deg, #f7f8f5 0%, #e7f1f6 100%); background-position: 8% 15%, 92% 82%, 54% 44%, center; background-size: 135% 135%, 145% 145%, 125% 125%, 100% 100%; color: var(--navy); animation: checkout-background-flow 18s ease-in-out infinite alternate; }
.checkout-header { width: min(1180px, 100%); display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 0 auto 66px; }
.checkout-logo { display: block; width: 142px; }
.checkout-logo img { display: block; width: 100%; height: auto; }
.checkout-back-link { color: var(--navy); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.checkout-back-link span { margin-left: 8px; color: var(--clay); }
.checkout-heading, .checkout-shell, .checkout-flash { width: min(1180px, 100%); margin-right: auto; margin-left: auto; }
.checkout-heading { margin-bottom: 26px; }
.checkout-heading h1 { margin: 7px 0 10px; font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: clamp(2.9rem, 5vw, 5rem); font-weight: 400; letter-spacing: -.08em; line-height: .95; }
.checkout-heading > p:last-child { margin: 0; color: var(--muted); font-size: .9rem; }
.checkout-kicker { margin: 0; color: var(--clay); font-size: .62rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.checkout-shell { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr); align-items: start; gap: 22px; }
.checkout-panel, .checkout-empty, .checkout-success-card { border: 1px solid rgba(3, 36, 61, .13); border-radius: 3px; background: rgba(255, 255, 255, .97); box-shadow: 12px 16px 35px rgba(3, 36, 61, .07); }
.checkout-panel { padding: 30px; }
.checkout-panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.checkout-panel-heading h2, .checkout-summary-panel h2, .checkout-empty h2 { margin: 7px 0 0; font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 1.55rem; font-weight: 500; letter-spacing: -.05em; }
.checkout-panel-heading > span { color: var(--muted); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.checkout-items { display: flex; flex-direction: column; }
.checkout-item { display: grid; grid-template-columns: 82px minmax(0, 1fr) auto auto; align-items: center; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.checkout-item:last-child { border-bottom: 0; }
.checkout-item-media { display: grid; width: 82px; height: 82px; overflow: hidden; place-items: center; background: var(--navy); color: var(--white); }
.checkout-item-media img { width: 100%; height: 100%; object-fit: cover; }
.checkout-item-media span { font-size: 1.25rem; font-weight: 700; letter-spacing: -.08em; }
.checkout-item-info p { margin: 0 0 5px; color: var(--clay); font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.checkout-item-info h3 { margin: 0 0 8px; font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 1.08rem; font-weight: 500; letter-spacing: -.04em; }
.checkout-item-info strong { font-size: .86rem; }
.checkout-quantity { display: flex; align-items: center; gap: 6px; }
.checkout-quantity label { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .62rem; font-weight: 700; text-transform: uppercase; }
.checkout-quantity input { width: 48px; padding: 8px 5px; border: 1px solid var(--line); background: var(--paper); color: var(--navy); font: inherit; text-align: center; }
.checkout-quantity button { padding: 0; border: 0; background: none; color: var(--clay); font: inherit; font-size: .58rem; font-weight: 700; cursor: pointer; }
.checkout-remove { width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--muted); font-size: 1.1rem; line-height: 1; cursor: pointer; transition: border-color .2s ease, color .2s ease, transform .2s ease; }
.checkout-remove:hover { border-color: var(--clay); color: var(--clay); transform: rotate(90deg); }
.checkout-summary-panel { position: sticky; top: 24px; background: var(--navy); color: rgba(255, 255, 255, .84); }
.checkout-summary-panel .checkout-kicker { color: #f0b37d; }
.checkout-summary-panel h2 { color: var(--white); }
.checkout-summary-line, .checkout-summary-total, .checkout-summary-products div { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.checkout-summary-line { margin-top: 18px; color: rgba(255, 255, 255, .62); font-size: .73rem; }
.checkout-summary-line strong { color: var(--white); }
.checkout-summary-total { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .2); color: rgba(255, 255, 255, .7); font-size: .75rem; }
.checkout-summary-total strong { color: #f0b37d; font-size: 1.35rem; }
.checkout-summary-note { margin: 20px 0 24px; color: rgba(255, 255, 255, .58); font-size: .68rem; line-height: 1.5; }
.checkout-button { display: inline-flex; align-items: center; justify-content: space-between; gap: 18px; min-width: 180px; padding: 15px 17px; border: 1px solid transparent; font: inherit; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.checkout-button:hover { transform: translateY(-2px); }
.checkout-button-light { width: 100%; border-color: #f0b37d; background: #f0b37d; color: var(--navy); }
.checkout-button-light:hover { border-color: var(--white); background: var(--white); }
.checkout-button-dark { border-color: var(--navy); background: var(--navy); color: var(--white); }
.checkout-button-dark:hover { border-color: var(--clay); background: var(--clay); }
.checkout-empty { width: min(680px, 100%); margin: 0 auto; padding: 68px 32px; text-align: center; }
.checkout-empty-mark, .checkout-success-mark { display: grid; width: 58px; height: 58px; margin: 0 auto 22px; place-items: center; border: 1px solid var(--clay); border-radius: 50%; color: var(--clay); font-size: 1.55rem; }
.checkout-empty p { margin: 14px 0 28px; color: var(--muted); font-size: .88rem; }
.checkout-form-panel { padding-bottom: 34px; }
.checkout-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding-top: 24px; }
.checkout-field { display: flex; flex-direction: column; gap: 8px; color: var(--muted); font-size: .63rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.checkout-field-wide { grid-column: 1 / -1; }
.checkout-field span { color: #9ba3a4; font-size: .58rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
.checkout-field-label { display: flex; align-items: center; justify-content: space-between; color: var(--muted) !important; font-size: .63rem !important; font-weight: 700 !important; letter-spacing: .06em !important; text-transform: uppercase !important; }
.checkout-field-label em { color: #9ba3a4; font-size: .56rem; font-style: normal; font-weight: 600; letter-spacing: .04em; }
.checkout-field input { width: 100%; padding: 12px 13px; border: 1px solid rgba(3, 36, 61, .17); border-radius: 2px; outline: 0; background: var(--paper); color: var(--navy); font: inherit; font-size: .8rem; font-weight: 500; letter-spacing: 0; text-transform: none; transition: border-color .2s ease, box-shadow .2s ease; }
.checkout-field input:focus { border-color: var(--clay); box-shadow: 0 0 0 3px rgba(165, 111, 78, .12); }
.checkout-field small { color: #a34630; font-size: .58rem; font-weight: 600; letter-spacing: 0; text-transform: none; }
.checkout-subheading { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.checkout-subheading h2 { margin: 7px 0 0; font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 1.25rem; font-weight: 500; letter-spacing: -.04em; }
.checkout-shipping-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding-top: 20px; }
.checkout-shipping-option { display: flex; gap: 10px; min-height: 85px; padding: 14px; border: 1px solid var(--line); background: var(--paper); cursor: pointer; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.checkout-shipping-option:hover { border-color: var(--clay); transform: translateY(-2px); }
.checkout-shipping-option:has(input:checked) { border-color: var(--clay); background: #fff7ef; }
.checkout-shipping-option input { margin-top: 2px; accent-color: var(--clay); }
.checkout-shipping-option span { display: flex; flex-direction: column; gap: 6px; }
.checkout-shipping-option strong { font-size: .7rem; }
.checkout-shipping-option small { color: var(--muted); font-size: .61rem; line-height: 1.35; }
.checkout-address-fields[hidden] { display: none; }
.checkout-address-feedback, .checkout-shipping-feedback { margin: 12px 0 0; font-size: .67rem; line-height: 1.45; }
.checkout-address-feedback { color: var(--muted); }
.checkout-address-feedback[data-state="loading"], .checkout-shipping-feedback[data-state="loading"] { color: #376984; }
.checkout-address-feedback[data-state="ready"], .checkout-shipping-feedback[data-state="ready"] { color: #31714e; }
.checkout-address-feedback[data-state="error"], .checkout-shipping-feedback[data-state="error"] { color: #a34630; }
.checkout-summary-products { display: flex; flex-direction: column; gap: 13px; margin-top: 22px; padding: 17px 0; border-top: 1px solid rgba(255, 255, 255, .15); border-bottom: 1px solid rgba(255, 255, 255, .15); }
.checkout-summary-products div { color: rgba(255, 255, 255, .7); font-size: .67rem; }
.checkout-summary-products strong { color: var(--white); font-size: .68rem; }
.checkout-shipping-feedback { color: rgba(255, 255, 255, .56); }
.checkout-shipping-feedback[data-state="loading"] { color: #a9d2ea; }
.checkout-shipping-feedback[data-state="ready"] { color: #bee8cc; }
.checkout-shipping-feedback[data-state="error"] { color: #f1b7a9; }
.checkout-payment-placeholder { display: flex; flex-direction: column; gap: 6px; margin: 22px 0; padding: 14px; border: 1px solid rgba(240, 179, 125, .35); background: rgba(240, 179, 125, .1); }
.checkout-payment-placeholder strong { color: #f0b37d; font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
.checkout-payment-placeholder span { color: rgba(255, 255, 255, .65); font-size: .67rem; line-height: 1.4; }
.checkout-success-page { display: flex; flex-direction: column; }
.checkout-success-card { width: min(680px, 100%); margin: 0 auto; padding: 58px 42px; text-align: center; }
.checkout-success-card h1 { margin: 0; font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: clamp(2.3rem, 5vw, 4.4rem); font-weight: 400; letter-spacing: -.08em; line-height: .95; }
.checkout-success-card > p:not(.checkout-kicker) { max-width: 470px; margin: 18px auto 26px; color: var(--muted); font-size: .87rem; line-height: 1.5; }
.checkout-success-items { display: flex; flex-direction: column; gap: 11px; margin: 0 0 20px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; }
.checkout-success-items div { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--muted); font-size: .72rem; }
.checkout-success-items strong { color: var(--navy); }
.checkout-success-note { margin: 0 0 28px; text-align: left; }
.checkout-success-note span { color: var(--muted); }

@keyframes checkout-background-flow {
    0% { background-position: 8% 15%, 92% 82%, 54% 44%, center; }
    100% { background-position: 30% 7%, 65% 96%, 42% 58%, center; }
}

@media (prefers-reduced-motion: reduce) {
    .checkout-page { animation: none; }
}

@media (max-width: 900px) {
    .site-header { grid-template-columns: 180px 1fr auto; }
}

@media (max-width: 680px) {
    .site-header { grid-template-columns: 1fr auto; }
    .header-actions { gap: 10px; }
    .header-cart { font-size: .58rem; }
    .store-flash, .checkout-flash { width: calc(100% - 32px); }
    .checkout-page { padding: 20px 16px 54px; }
    .checkout-header { margin-bottom: 48px; }
    .checkout-logo { width: 122px; }
    .checkout-shell { grid-template-columns: 1fr; }
    .checkout-summary-panel { position: static; }
    .checkout-panel { padding: 22px 18px; }
    .checkout-item { grid-template-columns: 64px minmax(0, 1fr) auto; gap: 12px; }
    .checkout-item-media { width: 64px; height: 64px; }
    .checkout-quantity { grid-column: 2 / 3; justify-content: flex-start; }
    .checkout-item > form:last-child { grid-column: 3; grid-row: 1; }
    .checkout-form-grid, .checkout-shipping-options { grid-template-columns: 1fr; }
    .checkout-field-wide { grid-column: auto; }
    .checkout-success-card { padding: 44px 22px; }
}

/* Public store visual direction — phase 3 */
.store-brands {
    width: 100%;
    padding: 54px max(24px, calc((100vw - 1240px) / 2)) 42px;
    background: radial-gradient(circle at 50% -90%, rgba(243, 180, 0, .18), transparent 52%), #090909;
    color: var(--white);
}

.store-brands-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    text-align: center;
}

.store-brands-kicker {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    color: var(--white);
    font-family: var(--store-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: .025em;
    line-height: .9;
    text-transform: uppercase;
}

.store-brands-rule {
    width: min(180px, 28vw);
    height: 1px;
    margin: 13px auto 29px;
    background: var(--store-gold);
    opacity: .9;
}

.brand-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    gap: 24px;
}

.brand-word {
    color: rgba(255, 255, 255, .9);
    font-family: var(--store-heading);
    font-size: clamp(1.35rem, 2.4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: .85;
    text-transform: none;
    white-space: nowrap;
}

.brand-word:nth-child(2) { font-family: Georgia, serif; font-size: clamp(1rem, 1.8vw, 1.65rem); font-weight: 400; letter-spacing: -.06em; }
.brand-word:nth-child(3) { font-size: clamp(.95rem, 1.7vw, 1.55rem); letter-spacing: -.04em; }
.brand-word:nth-child(4) { font-family: Georgia, serif; font-style: italic; }
.brand-word:nth-child(5) { padding: 7px 12px; border: 2px solid currentColor; border-radius: 7px; font-size: clamp(1rem, 1.8vw, 1.65rem); }
.brand-word:nth-child(6) { font-size: clamp(1.2rem, 2.1vw, 1.9rem); }

.brand-dots { display: flex; justify-content: center; gap: 9px; margin-top: 30px; }
.brand-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, .38); }
.brand-dots span.is-active { background: var(--store-gold); }

.store-benefits {
    width: 100%;
    padding: 68px max(24px, calc((100vw - 1240px) / 2)) 64px;
    background: var(--white);
    border-bottom: 1px solid rgba(5, 5, 5, .1);
}

.benefits-grid {
    display: grid;
    width: min(1240px, 100%);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 auto;
}

.benefit-card { 
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    min-height: 126px;
    padding: 3px 28px 5px;
    border-right: 1px solid rgba(5, 5, 5, .16);
}

.benefit-card:first-child { padding-left: 0; }
.benefit-card:last-child { padding-right: 0; border-right: 0; }
.benefit-mark { display: grid; width: 46px; height: 46px; place-items: center; border: 2px solid var(--store-gold); border-radius: 50%; background: transparent; color: var(--store-gold); }
.benefit-icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.benefit-card h2 { margin: 0; color: var(--store-ink); font-family: var(--store-heading); font-size: 1.28rem; font-weight: 800; letter-spacing: .02em; line-height: .92; text-transform: uppercase; }
.benefit-card p { margin: 15px 0 0; color: #626262; font-size: .72rem; line-height: 1.55; }

.store-newsletter {
    display: grid;
    width: min(1240px, calc(100% - 48px));
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin: 0 auto;
    padding: 72px 0 78px;
    background: #f8f8f6;
}

.newsletter-panel, .social-preview { min-width: 0; padding: 0 52px; }
.newsletter-panel { padding-left: 0; border-right: 1px solid rgba(5, 5, 5, .18); }
.social-preview { padding-right: 0; }
.newsletter-copy h2, .social-preview h2 { max-width: 460px; margin: 12px 0 0; color: var(--store-ink); font-family: var(--store-heading); font-size: clamp(2.1rem, 3.8vw, 3.4rem); font-weight: 800; letter-spacing: .01em; line-height: .86; text-transform: uppercase; }
.newsletter-copy > p:last-child { max-width: 430px; margin: 17px 0 0; color: #626262; font-size: .77rem; line-height: 1.55; }
.newsletter-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 0; max-width: 430px; margin-top: 28px; }
.newsletter-form input { min-width: 0; padding: 14px 15px; border: 1px solid rgba(5, 5, 5, .3); border-right: 0; outline: 0; background: var(--white); color: var(--store-ink); font: inherit; font-size: .72rem; }
.newsletter-form input:focus { border-color: var(--store-gold-deep); box-shadow: 0 0 0 3px rgba(243, 180, 0, .14); }
.newsletter-form button { padding: 0 20px; border: 1px solid var(--store-gold); background: var(--store-gold); color: var(--store-ink); font: inherit; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: not-allowed; }
.newsletter-form small { grid-column: 1 / -1; margin-top: 9px; color: #8b8b87; font-size: .6rem; }
.social-preview { display: flex; flex-direction: column; justify-content: space-between; }
.social-preview-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 31px; }
.social-preview-tile { display: grid; min-height: 104px; place-items: center; background: var(--store-ink); color: var(--store-gold); font-family: var(--store-heading); font-size: .82rem; font-weight: 800; letter-spacing: .1em; }
.social-preview-tile--texture { background: linear-gradient(135deg, #101010, #35444a 48%, #090909); }
.social-preview-tile--live { background: linear-gradient(135deg, #33200e, #b56d16 50%, #090909); color: var(--white); }
.social-preview-tile--gear { background: linear-gradient(135deg, #0d3047, #0c1117 60%, #bd8a12); color: var(--white); }
.social-preview-tile--tone { background: linear-gradient(135deg, #3c1711, #0b0b0b 68%); }

.store-page .site-footer { display: block; padding: 58px max(24px, calc((100vw - 1240px) / 2)) 25px; }
.footer-main { display: grid; width: min(1240px, 100%); grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin: 0 auto; }
.footer-bottom { width: min(1240px, 100%); margin: 42px auto 0; }
.store-page .footer-brand img { width: 160px; }
.store-page .footer-brand p { max-width: 280px; font-size: .78rem; }
.store-page .footer-label { font-family: var(--store-heading); font-size: .78rem; letter-spacing: .08em; }
.store-page .footer-column { gap: 12px; }

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

@media (max-width: 900px) {
    .brand-list { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 30px; }
    .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 28px; }
    .benefit-card:nth-child(2) { border-right: 0; }
    .benefit-card:nth-child(3) { padding-left: 0; }
    .benefit-card:nth-child(4) { padding-right: 0; }
    .store-newsletter { grid-template-columns: 1fr; gap: 55px; }
    .newsletter-panel { padding-right: 0; padding-bottom: 55px; border-right: 0; border-bottom: 1px solid rgba(5, 5, 5, .18); }
    .social-preview { padding-left: 0; }
    .footer-main { grid-template-columns: 1.5fr 1fr 1fr; gap: 28px; }
}

@media (max-width: 680px) {
    .store-brands { padding: 48px 16px 38px; }
    .store-brands-kicker { gap: 12px; font-size: 1.9rem; }
    .store-brands-rule { width: 100px; }
    .brand-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 12px; }
    .brand-word { font-size: 1.55rem; }
    .brand-word:nth-child(2), .brand-word:nth-child(3), .brand-word:nth-child(5) { font-size: 1.2rem; }
    .store-benefits { padding: 48px 16px 44px; }
    .benefits-grid { grid-template-columns: 1fr; gap: 28px; }
    .benefit-card, .benefit-card:nth-child(3) { padding: 0 0 28px; border-right: 0; border-bottom: 1px solid rgba(5, 5, 5, .14); }
    .benefit-card:last-child { padding-bottom: 0; border-bottom: 0; }
    .store-newsletter { width: calc(100% - 32px); grid-template-columns: 1fr; padding: 55px 0 62px; }
    .newsletter-panel, .social-preview { padding-right: 0; padding-left: 0; }
    .newsletter-panel { padding-bottom: 44px; }
    .newsletter-form { grid-template-columns: 1fr; gap: 10px; }
    .newsletter-form input { border-right: 1px solid rgba(5, 5, 5, .3); }
    .newsletter-form button { min-height: 45px; }
    .social-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .social-preview-tile { min-height: 88px; }
    .store-page .site-footer { padding: 46px 16px 22px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 8px; margin-top: 34px; }
}

/* Public store visual direction — phase 4: catalog and product cards */
.catalog-page .site-header {
    background: rgba(5, 5, 5, .96);
    border-bottom-color: rgba(255, 255, 255, .14);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
    color: var(--white);
}

.catalog-page .site-logo { width: 132px; padding: 0; }
.catalog-page .site-nav { justify-content: center; }
.catalog-page .site-nav a, .catalog-page .header-contact { color: rgba(255, 255, 255, .86); }
.catalog-page .site-nav a:hover, .catalog-page .site-nav a:focus-visible, .catalog-page .site-nav a.is-active { color: var(--store-gold); }
.catalog-page .header-contact { border-left-color: rgba(255, 255, 255, .2); }
.catalog-page .whatsapp-icon { color: var(--store-gold); }
.catalog-page .site-header.is-scrolled { background: rgba(5, 5, 5, .94); }
.catalog-page .menu-toggle { color: var(--white); border-color: rgba(255, 255, 255, .3); }

.catalog-page { background: linear-gradient(135deg, #f7f7f4 0%, #eef4f5 58%, #e4eff2 100%); }
.catalog-main { padding-top: 102px; }
.catalog-intro h1 { font-family: var(--store-heading); font-size: clamp(3.4rem, 7vw, 6.2rem); font-weight: 800; letter-spacing: .015em; line-height: .82; text-transform: uppercase; }
.catalog-intro > div > p:last-child { max-width: 530px; margin-top: 19px; }
.catalog-count { color: var(--store-gold-deep); }
.catalog-toolbar { margin-top: 43px; }
.catalog-search { border-bottom-color: rgba(5, 5, 5, .25); }
.catalog-search button { color: var(--store-gold-deep); }
.catalog-select select { border-color: rgba(5, 5, 5, .2); background: rgba(255, 255, 255, .72); }
.catalog-categories { gap: 8px; margin-top: 25px; }
.catalog-categories a { border-color: rgba(5, 5, 5, .18); background: rgba(255, 255, 255, .36); }
.catalog-categories a:hover, .catalog-categories a:focus-visible { border-color: var(--store-gold-deep); background: rgba(243, 180, 0, .1); }
.catalog-categories a.is-active { border-color: var(--store-ink); background: var(--store-ink); color: var(--store-gold); }
.catalog-products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 38px; }
.catalog-page .product-card { border-color: rgba(5, 5, 5, .15); background: rgba(255, 255, 255, .94); box-shadow: 0 8px 20px rgba(5, 5, 5, .04); }
.catalog-page .product-card:hover { box-shadow: 0 18px 32px rgba(5, 5, 5, .12); transform: translateY(-5px); }
.store-page .product-media-frame,
.catalog-page .product-media-frame {
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--white);
}
.store-page .product-card,
.catalog-page .product-card {
    width: min(calc(100% - 32px), 280px);
    justify-self: center;
}
.catalog-page .product-media { min-height: 0; height: 100%; background: var(--white); }
.catalog-page .product-media img { padding: 0; object-fit: cover; }
.catalog-page .product-info { padding: 17px 17px 7px; text-align: center; }
.catalog-page .product-category { color: var(--store-gold-deep); }
.catalog-page .product-info h3 { min-height: 39px; font-family: var(--store-heading); font-size: 1.42rem; font-weight: 800; letter-spacing: .015em; line-height: .9; text-transform: uppercase; }
.catalog-page .product-meta { color: #686868; }
.catalog-page .product-bottom, .store-page .product-bottom { align-items: center; flex-direction: column; gap: 8px; margin-top: 0; }
.catalog-page .product-card > .product-bottom { padding: 8px 17px 19px; }
.store-page .product-card-footer { padding: 12px 17px 17px; }
.product-price-block { display: flex; align-items: center; flex-direction: column; gap: 3px; }
.catalog-page .product-price-link, .store-page .product-price-link { color: var(--store-ink); font-family: var(--store-heading); font-size: 1.58rem; font-weight: 800; letter-spacing: .015em; line-height: 1; }
.product-installments { color: #575757; font-size: .76rem; font-weight: 600; line-height: 1.35; text-align: center; }
.catalog-page .product-buy-button, .store-page .product-buy-button { width: min(100%, 156px); min-height: 42px; gap: 9px; border-color: var(--store-ink); border-radius: 2px; background: var(--store-ink); box-shadow: 0 7px 15px rgba(5, 5, 5, .17); color: var(--store-gold); font-family: var(--store-heading); font-size: .86rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease; }
.catalog-page .product-buy-button:hover, .catalog-page .product-buy-button:focus-visible, .store-page .product-buy-button:hover, .store-page .product-buy-button:focus-visible {
    border-color: var(--store-ink);
    background: var(--store-ink);
    color: var(--store-gold);
    box-shadow: 0 10px 20px rgba(5, 5, 5, .22);
    transform: scale(1.03);
}
.catalog-page .product-buy-button,
.catalog-page .product-buy-button span,
.store-page .product-buy-button,
.store-page .product-buy-button span,
.catalog-page .product-buy-button:hover,
.catalog-page .product-buy-button:hover span,
.store-page .product-buy-button:hover,
.store-page .product-buy-button:hover span,
.catalog-page .product-buy-button:focus-visible,
.catalog-page .product-buy-button:focus-visible span,
.store-page .product-buy-button:focus-visible,
.store-page .product-buy-button:focus-visible span {
    color: var(--store-gold);
}
.product-buy-button svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.catalog-pagination a:hover, .catalog-pagination a:focus-visible, .catalog-pagination a.is-current { border-color: var(--store-ink); background: var(--store-ink); color: var(--store-gold); }

@media (max-width: 900px) {
    .catalog-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .catalog-page .product-card { width: min(calc(100% - 24px), 280px); }
}

@media (max-width: 680px) {
    .catalog-page .site-header { background: var(--store-ink); }
    .catalog-main { padding-top: 76px; }
    .catalog-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .catalog-page .product-card,
    .store-page .product-card { width: calc(100% - 22px); }
    .catalog-page .product-media img { padding: 0; }
    .catalog-page .product-info { padding: 14px 11px 6px; }
    .catalog-page .product-info h3 { min-height: 34px; font-size: 1.08rem; }
    .catalog-page .product-card > .product-bottom { padding: 7px 10px 14px; }
    .catalog-page .product-price-link, .store-page .product-price-link { font-size: 1.25rem; }
    .product-installments { font-size: .68rem; line-height: 1.3; }
    .catalog-page .product-buy-button, .store-page .product-buy-button { width: 100%; min-height: 40px; font-size: .76rem; }
}
