/*
Theme Name: Farol Club
Theme URI: https://farolclub.com
Author: Farol Club
Description: Tema editorial e vitrine afiliada de games.
Version: 1.2.0
Text Domain: farol-club
*/

:root {
  --navy: #0b1220;
  --graphite: #141b2a;
  --surface: #182235;
  --line: #2a3c55;
  --cyan: #00e5ff;
  --teal: #00b7c3;
  --amber: #ffb11a;
  --white: #f4f6f8;
  --muted: #94a3b8;
  --danger: #fb7185;
  --font-ui: Inter, Arial, sans-serif;
  --font-display: Orbitron, Arial, sans-serif;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--navy); color: var(--white); font: 400 16px/1.6 var(--font-ui); }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
button, input { font: inherit; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.site-shell { overflow: clip; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.eyebrow { margin: 0 0 10px; color: var(--cyan); font: 700 12px/1 var(--font-ui); letter-spacing: .08em; text-transform: uppercase; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 24px; }
.section-heading h2 { margin: 0; font: 700 27px/1.2 var(--font-display); letter-spacing: 0; }
.text-link { color: var(--cyan); font-weight: 700; }
.text-link:hover { color: var(--white); }

.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(148,163,184,.18); background: rgba(11,18,32,.92); backdrop-filter: blur(16px); }
.header-inner { min-height: 72px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; gap: 10px; align-items: center; flex: 0 0 auto; }
.brand-mark { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--cyan); color: var(--amber); font-size: 20px; line-height: 1; }
.brand-name { display: grid; line-height: 1; font-family: var(--font-display); font-weight: 700; letter-spacing: .09em; font-size: 15px; }
.brand-name small { color: var(--cyan); font-size: 9px; letter-spacing: .32em; margin-top: 4px; }
.primary-nav { display: flex; align-items: center; gap: 20px; margin-left: auto; color: #cbd5e1; font-size: 14px; }
.primary-nav a:hover { color: var(--cyan); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.header-store-link { color: var(--cyan); font-size: 13px; font-weight: 800; }
.icon-button { display: inline-grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); color: var(--white); background: transparent; cursor: pointer; border-radius: 8px; }
.button { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; border: 1px solid transparent; border-radius: 8px; background: var(--cyan); color: #02131a; cursor: pointer; font-weight: 800; }
.button:hover { background: #79efff; }
.button-outline { background: transparent; border-color: var(--cyan); color: var(--cyan); }
.button-outline:hover { background: rgba(0,229,255,.09); color: var(--white); }
.button-offer { background: var(--amber); color: #241500; }
.mobile-toggle { display: none; }

.hero { min-height: 600px; position: relative; display: grid; align-items: end; padding: 100px 0 64px; isolation: isolate; background-color: #080f1c; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(6,14,27,.96) 0%, rgba(6,14,27,.82) 42%, rgba(6,14,27,.15) 100%), url('assets/images/farol-hero.png') center/cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 40%; z-index: -1; background: linear-gradient(transparent, var(--navy)); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 650px) 1fr; }
.hero h1 { max-width: 600px; margin: 0; font: 700 clamp(36px, 5vw, 56px)/1.08 var(--font-display); letter-spacing: 0; }
.hero p:not(.eyebrow) { max-width: 570px; margin: 20px 0 28px; color: #d1d9e6; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 22px; color: var(--muted); font-size: 13px; }

.content-section { padding: 72px 0; }
.content-section + .content-section { border-top: 1px solid rgba(148,163,184,.14); }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.article-card, .offer-card, .platform-card { min-width: 0; border: 1px solid var(--line); border-radius: 8px; background: var(--graphite); overflow: hidden; }
.article-card:hover, .offer-card:hover { border-color: rgba(0,229,255,.7); transform: translateY(-2px); transition: transform .18s ease, border-color .18s ease; }
.card-image { aspect-ratio: 16 / 9; overflow: hidden; background: #0f192a; }
.card-image img { height: 100%; object-fit: cover; }
.card-body { padding: 20px; }
.tag { display: inline-flex; align-items: center; padding: 5px 9px; border: 1px solid rgba(0,229,255,.46); border-radius: 999px; color: var(--cyan); font-size: 12px; font-weight: 700; }
.tag.offer { color: var(--amber); border-color: rgba(255,177,26,.65); }
.card-body h3 { margin: 12px 0 8px; font: 700 20px/1.25 var(--font-display); letter-spacing: 0; }
.card-body p { margin: 0; color: var(--muted); font-size: 14px; }
.meta { margin-top: 15px; color: var(--muted); font-size: 12px; }

.review-feature { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); border: 1px solid var(--line); border-radius: 8px; background: var(--graphite); overflow: hidden; }
.review-copy { padding: 42px; }
.review-copy h2 { margin: 0; font: 700 32px/1.2 var(--font-display); }
.review-copy p { color: var(--muted); }
.score-panel { display: grid; place-content: center; padding: 32px; border-left: 1px solid var(--line); background: #101a2a; text-align: center; }
.score { width: 156px; aspect-ratio: 1; display: grid; align-content: center; border: 1px solid var(--cyan); clip-path: polygon(20% 0,80% 0,100% 20%,100% 80%,80% 100%,20% 100%,0 80%,0 20%); }
.score strong { font: 700 50px/1 var(--font-display); }
.score small { margin-top: 8px; color: var(--cyan); font-weight: 700; letter-spacing: .08em; }

.offers-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.offer-card { position: relative; padding: 18px; }
.discount { position: absolute; top: 12px; left: 12px; padding: 4px 8px; background: var(--amber); color: #281600; font-size: 12px; font-weight: 800; }
.product-visual { aspect-ratio: 1.25; margin-bottom: 16px; display: grid; place-items: center; border: 1px solid rgba(0,229,255,.19); background: radial-gradient(circle at 50% 40%, rgba(0,229,255,.22), transparent 55%), #111c2b; font-size: 60px; }
.offer-card h3 { margin: 0; font-size: 16px; line-height: 1.3; }
.old-price { margin: 10px 0 0; color: var(--muted); font-size: 13px; text-decoration: line-through; }
.price { margin: 2px 0 14px; font: 700 25px/1.2 var(--font-display); }
.checked { color: var(--muted); font-size: 11px; }
.offer-card .button { width: 100%; margin-top: 14px; }
.farol-offer-block { display: grid; grid-template-columns: 1fr auto; gap: 10px 20px; align-items: center; margin: 28px 0; padding: 20px; border: 1px solid rgba(255,177,26,.7); border-radius: 8px; background: #1b1c24; }
.farol-offer-block strong { font-family: var(--font-display); }
.farol-offer-block small { grid-column: 1 / -1; color: var(--muted); font-size: 12px; }
.farol-score-block { width: 170px; display: grid; gap: 6px; margin: 28px 0; padding: 22px; border: 1px solid var(--cyan); text-align: center; }
.farol-score-block strong { font: 700 42px/1 var(--font-display); }.farol-score-block span { color: var(--cyan); font-size: 12px; font-weight: 700; }
.farol-youtube-video { margin: 32px 0; }.farol-youtube-video iframe { display: block; width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; border-radius: 8px; }.farol-youtube-video figcaption { margin-top: 8px; color: var(--muted); font-size: 13px; }
.farol-related-products { margin: 52px 0 0; padding-top: 32px; border-top: 1px solid var(--line); }.farol-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }.farol-product-card { display: flex; min-width: 0; flex-direction: column; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: var(--graphite); }.farol-product-card h3 { margin: 12px 0 8px; font: 700 18px/1.3 var(--font-display); }.farol-product-card > p { margin: 0 0 12px; color: var(--muted); font-size: 14px; }.farol-product-card .price { margin-top: auto; color: var(--white); font: 700 22px/1.2 var(--font-display); }.farol-product-card .button { width: 100%; margin-top: 6px; }.farol-product-card small { margin-top: 10px; color: var(--muted); font-size: 11px; }.farol-affiliate-notice { margin: -6px 0 18px; color: var(--muted); font-size: 13px; }.catalog-intro { max-width: 650px; color: var(--muted); }.catalog-filters { display: flex; flex-wrap: wrap; align-items: end; gap: 12px; margin: 0 0 30px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: var(--graphite); }.catalog-filters label { display: grid; gap: 5px; color: var(--muted); font-size: 13px; }.catalog-filters select { min-height: 42px; min-width: 180px; padding: 8px; border: 1px solid var(--line); border-radius: 6px; background: var(--navy); color: var(--white); }
.article-subtitle { margin: 16px 0; color: #d1d9e6; font-size: 20px; line-height: 1.5; }.farol-editorial-note { margin: 24px 0; padding: 16px 18px; border-left: 4px solid var(--cyan); border-radius: 6px; background: rgba(0,229,255,.08); }.farol-tested-version { margin: 18px 0; color: var(--muted); font-size: 14px; }.farol-sources { margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line); }.farol-sources h2 { font-family: var(--font-display); }.farol-sources li { overflow-wrap: anywhere; }
.entry-content { color: #dce4ef; font-size: 18px; line-height: 1.7; }.entry-content h2, .entry-content h3 { margin-top: 40px; font-family: var(--font-display); line-height: 1.25; }.entry-content a { color: var(--cyan); text-decoration: underline; }.entry-content img { margin: 28px 0; border-radius: 8px; }.entry-content table { width: 100%; border-collapse: collapse; }.entry-content td, .entry-content th { padding: 10px; border: 1px solid var(--line); text-align: left; }

.platforms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.platform-card { min-height: 132px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(135deg, #17243a, #101827); }
.platform-card strong { font: 700 19px/1.1 var(--font-display); }
.platform-card span { color: var(--cyan); font-size: 13px; }
.newsletter { padding: 64px 0; background: #101a2a; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.newsletter-inner { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.newsletter h2 { max-width: 620px; margin: 0; font: 700 32px/1.2 var(--font-display); }
.newsletter-form { display: flex; width: min(100%, 420px); gap: 8px; }
.newsletter-form input { flex: 1; min-width: 0; min-height: 44px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; color: var(--white); background: var(--navy); }
.newsletter-privacy { margin: 10px 0 0; color: var(--muted); font-size: 12px; }

.site-footer { padding: 50px 0 26px; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.footer-grid h3 { margin: 0 0 12px; color: var(--white); font-size: 14px; }
.footer-grid a { display: block; margin: 7px 0; font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; font-size: 12px; }

@media (max-width: 1023px) {
  .primary-nav { gap: 12px; font-size: 13px; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .farol-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .header-inner { min-height: 64px; }
  .primary-nav { display: none; position: absolute; top: 64px; left: 16px; right: 16px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: var(--graphite); flex-direction: column; align-items: stretch; }
  .primary-nav.is-open { display: flex; }
  .header-actions .button { display: none; }
  .mobile-toggle { display: grid; }
  .hero { min-height: 600px; padding-bottom: 52px; }
  .hero::before { background: linear-gradient(90deg, rgba(6,14,27,.95), rgba(6,14,27,.68)), url('assets/images/farol-hero.png') 68% center/cover no-repeat; }
  .hero h1 { font-size: 37px; }
  .hero p:not(.eyebrow) { font-size: 17px; }
  .content-section { padding: 52px 0; }
  .section-heading h2, .newsletter h2 { font-size: 25px; }
  .section-heading { align-items: start; flex-direction: column; gap: 10px; }
  .card-grid, .offers-grid, .platforms, .farol-product-grid { grid-template-columns: 1fr; }
  .review-feature { grid-template-columns: 1fr; }
  .review-copy { padding: 28px; }
  .farol-offer-block { grid-template-columns: 1fr; }.farol-offer-block .button { width: 100%; }
  .score-panel { border-left: 0; border-top: 1px solid var(--line); }
  .newsletter-inner, .footer-bottom { align-items: start; flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .catalog-filters { align-items: stretch; flex-direction: column; }.catalog-filters select { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .article-card, .offer-card { transition: none; } }

/* Commerce system 1.2 */
.store-hero, .deals-hero, .editorial-hero, .platform-hero, .article-header { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #0e192b 0%, #101e32 55%, #17243a 100%); }
.store-hero::after, .deals-hero::after, .platform-hero::after { content: ""; position: absolute; width: 420px; height: 420px; right: -120px; top: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(0,229,255,.16), transparent 68%); pointer-events: none; }
.store-hero-inner { min-height: 300px; display: flex; justify-content: space-between; align-items: center; gap: 40px; padding-top: 64px; padding-bottom: 64px; }
.store-hero h1, .deals-hero h1, .editorial-hero h1, .platform-hero h1, .article-header h1 { margin: 0; max-width: 850px; font: 800 clamp(36px,6vw,62px)/1.04 var(--font-display); letter-spacing: -.03em; }
.store-hero p:not(.eyebrow), .deals-hero > .container > p:not(.eyebrow), .platform-hero p { max-width: 700px; color: #cbd5e1; font-size: 18px; }
.store-section { background: linear-gradient(180deg, rgba(24,34,53,.35), transparent 380px); }
.catalog-filters { position: relative; z-index: 2; margin-top: -104px; padding: 20px; border-color: rgba(0,229,255,.24); border-radius: 14px; box-shadow: 0 18px 60px rgba(0,0,0,.28); }
.catalog-filters input, .catalog-filters select { min-height: 46px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: #0b1423; color: var(--white); }
.catalog-filters .catalog-search { flex: 1 1 260px; }
.catalog-filters .catalog-search input { width: 100%; }
.store-results-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin: 36px 0 22px; }
.store-results-heading h2 { margin: 0; font: 700 24px/1.2 var(--font-display); }
.store-results-heading > p { margin: 0; color: var(--muted); font-size: 13px; }
.farol-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.farol-product-card { position: relative; padding: 0; overflow: hidden; border-radius: 14px; background: linear-gradient(180deg, #172235, #111a29); box-shadow: 0 10px 32px rgba(0,0,0,.2); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.farol-product-card:hover { transform: translateY(-5px); border-color: rgba(0,229,255,.68); box-shadow: 0 18px 44px rgba(0,0,0,.32); }
.farol-product-card .discount { z-index: 2; left: 14px; top: 14px; border-radius: 5px; background: #e5484d; color: #fff; letter-spacing: .04em; }
.product-image { position: relative; display: grid; place-items: center; aspect-ratio: 1 / .84; padding: 24px; background: #f7f8fa; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .25s ease; }
.farol-product-card:hover .product-image img { transform: scale(1.035); }
.product-card-body { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.product-kicker { color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.farol-product-card h3 { margin: 8px 0; min-height: 47px; font: 700 17px/1.38 var(--font-display); }
.farol-product-card h3 a:hover { color: var(--cyan); }
.farol-product-card .product-reason { min-height: 44px; margin: 0 0 16px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.product-price { min-height: 59px; display: flex; flex-direction: column; justify-content: end; margin-top: auto; }
.product-price .old-price { margin: 0; color: #9aa8bb; font-size: 12px; }
.product-price strong { color: #ffd166; font: 800 25px/1.2 var(--font-display); }
.farol-product-card .button { margin-top: 14px; min-height: 48px; border-radius: 9px; }
.farol-product-card small { display: block; min-height: 34px; margin-top: 11px; color: #8492a6; line-height: 1.35; }
.button-offer:hover { background: #ffc44d; color: #1c1100; }
.deals-hero > .container, .platform-hero > .container { padding-top: 80px; padding-bottom: 72px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 28px; color: #c9f9ff; font-size: 13px; font-weight: 700; }
.deals-grid .farol-product-card:first-child { border-color: rgba(255,177,26,.66); }
.store-empty { grid-column: 1 / -1; min-height: 280px; display: grid; place-items: center; align-content: center; padding: 36px; border: 1px dashed var(--line); border-radius: 14px; background: rgba(20,27,42,.7); text-align: center; }
.store-empty > span { color: var(--cyan); font-size: 52px; }
.store-empty h2 { margin: 8px 0; font-family: var(--font-display); }
.store-empty p { max-width: 520px; margin: 0 0 20px; color: var(--muted); }
.product-page { padding: 72px 0; }
.product-page-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr); gap: 64px; align-items: center; }
.product-gallery { min-height: 520px; display: grid; place-items: center; padding: 48px; border-radius: 18px; background: #f7f8fa; }
.product-gallery img { max-height: 460px; object-fit: contain; }
.product-summary h1 { margin: 0; font: 800 clamp(32px,4vw,48px)/1.1 var(--font-display); }
.product-lead { color: #b9c4d3; font-size: 18px; }
.product-page-price { display: grid; margin: 30px 0 18px; }
.product-page-price span { color: var(--muted); text-decoration: line-through; }
.product-page-price strong { color: #ffd166; font: 800 42px/1.1 var(--font-display); }
.button-large { min-height: 56px; padding-inline: 26px; font-size: 17px; }
.product-trust { display: grid; gap: 10px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); color: #cbd5e1; font-size: 13px; }
.product-trust span::before { content: "✓"; margin-right: 9px; color: var(--cyan); }
.product-description { max-width: 820px; padding-top: 72px; }
.product-description > h2 { font-family: var(--font-display); }
.availability-note { padding: 18px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); }
.editorial-hero { padding: 72px 0; }
.editorial-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.45fr); gap: 50px; align-items: center; }
.editorial-hero-grid > div > p:last-child { max-width: 660px; color: #cbd5e1; font-size: 18px; }
.editorial-store-promo { padding: 28px; border: 1px solid rgba(255,177,26,.52); border-radius: 14px; background: rgba(11,18,32,.68); box-shadow: 0 18px 50px rgba(0,0,0,.22); }
.editorial-store-promo > span { color: var(--amber); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.editorial-store-promo h2 { margin: 9px 0 20px; font: 700 20px/1.35 var(--font-display); }
.editorial-grid .article-card:first-child { grid-column: span 2; }
.editorial-grid .article-card:first-child .card-image { aspect-ratio: 2 / 1; }
.article-header { padding: 76px 0 58px; }
.article-header-inner { max-width: 980px; }
.article-header h1 { font-size: clamp(36px,5.5vw,58px); }
.article-header .article-subtitle { max-width: 780px; color: #cbd5e1; }
.article-layout { display: grid; grid-template-columns: minmax(0,760px) minmax(240px,320px); justify-content: space-between; gap: 64px; padding-top: 58px; padding-bottom: 80px; }
.article-cover { margin: 32px 0; overflow: hidden; border-radius: 14px; }
.article-sidebar { align-self: start; position: sticky; top: 104px; display: grid; gap: 18px; }
.sidebar-card { display: grid; gap: 12px; padding: 22px; border: 1px solid var(--line); border-radius: 12px; background: var(--graphite); }
.sidebar-card h2 { margin: 0; font: 700 20px/1.3 var(--font-display); }
.sidebar-card p { margin: 0; color: var(--muted); font-size: 14px; }
.sidebar-card > a:not(.button) { color: var(--cyan); font-size: 14px; }
.farol-store-cta { margin: 48px 0 0; padding: 28px; border: 1px solid rgba(255,177,26,.55); border-radius: 12px; background: linear-gradient(135deg, #1d202b, #151e2d); }
.farol-inline-product { max-width: 330px; margin: 36px 0; }
.farol-store-cta h2 { margin: 0; font-family: var(--font-display); }
.farol-store-cta p:not(.eyebrow) { color: var(--muted); }
.review-media { min-height: 360px; }
.review-media img { height: 100%; object-fit: cover; }
.platform-card { position: relative; min-height: 170px; border-radius: 12px; }
.platform-card:hover { border-color: var(--cyan); background: linear-gradient(135deg, #1b3150, #101827); }
.platform-icon { color: var(--cyan); font-size: 23px; }
.pagination { margin-top: 36px; }
.nav-links { display: flex; gap: 8px; }
.page-numbers { min-width: 40px; min-height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 7px; }
.page-numbers.current { border-color: var(--cyan); background: rgba(0,229,255,.1); color: var(--cyan); }

@media (max-width: 1100px) {
  .farol-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .article-layout { grid-template-columns: minmax(0,1fr) 270px; gap: 38px; }
}
@media (max-width: 820px) {
  .farol-product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .store-hero-inner, .editorial-hero-grid, .product-page-grid, .article-layout { grid-template-columns: 1fr; }
  .store-hero-inner { align-items: start; flex-direction: column; justify-content: center; }
  .catalog-filters { margin-top: -72px; }
  .article-sidebar { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .editorial-grid .article-card:first-child { grid-column: auto; }
}
@media (max-width: 560px) {
  .farol-product-grid { grid-template-columns: 1fr; }
  .store-hero-inner { min-height: 330px; padding-top: 46px; }
  .store-results-heading, .article-sidebar { align-items: start; grid-template-columns: 1fr; flex-direction: column; }
  .catalog-filters { margin-top: -52px; }
  .product-gallery { min-height: 320px; padding: 28px; }
  .product-page { padding-top: 38px; }
  .product-page-grid { gap: 34px; }
  .editorial-hero { padding: 52px 0; }
}
