/* RokyShop — rokytnice.com inspired style */
/* Clean white, mountain-crisp aesthetic */

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

:root {
  --color-bg:        #ffffff;
  --color-surface:   #f8f8f6;
  --color-border:    #e8e4de;
  --color-text:      #1a1a1a;
  --color-text-muted:#6b6560;
  --color-accent:    #2b5c3e;   /* forest green — rokytnice palette */
  --color-accent-dk: #1e4530;
  --color-sale:      #c0392b;
  --color-gold:      #b89b5e;
  --font-sans:       'Inter', system-ui, sans-serif;
  --font-serif:      'Playfair Display', Georgia, serif;
  --radius:          4px;
  --shadow-sm:       0 1px 4px rgba(0,0,0,.07);
  --shadow-md:       0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:       0 8px 32px rgba(0,0,0,.14);
  --header-h:        120px;
  --transition:      .2s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ─────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 var(--color-border);
}

.header-top {
  background: var(--color-accent);
  color: #fff;
  font-size: 12px;
  padding: 7px 0;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top-tagline { opacity: .85; letter-spacing: .03em; }

/* Lang switcher */
.lang-switcher { position: relative; }
.lang-btn {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background var(--transition);
}
.lang-btn:hover { background: rgba(255,255,255,.25); }
.lang-arrow { font-size: 10px; margin-left: 4px; }

.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 130px;
  z-index: 200;
}
.lang-switcher:hover .lang-dropdown,
.lang-btn[aria-expanded="true"] + .lang-dropdown { display: block; }
.lang-dropdown li a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--color-text);
  transition: background var(--transition);
}
.lang-dropdown li a:hover,
.lang-dropdown li a.active { background: var(--color-surface); color: var(--color-accent); }

.header-main { padding: 14px 0; }
.header-main-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--color-text);
  letter-spacing: -.01em;
}
.logo-text strong { color: var(--color-accent); }
.logo-sub {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: -2px;
}

/* Main nav */
.main-nav { flex: 1; }
.nav-list {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--color-text);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--color-accent); background: var(--color-surface); }
.nav-arrow { font-size: 9px; opacity: .6; }

/* Mega menu */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-accent);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 220px;
  z-index: 500;
}
.nav-item:hover .mega-menu { display: block; }
.mega-inner { padding: 16px; }
.mega-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.mega-list a {
  display: block;
  padding: 7px 10px;
  font-size: 13px;
  color: var(--color-text);
  border-radius: 3px;
  transition: background var(--transition), color var(--transition);
}
.mega-list a:hover { background: var(--color-surface); color: var(--color-accent); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform .3s;
}

/* ── MOBILE NAV ──────────────────────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  overflow-y: auto;
  transition: left .3s ease;
  padding: 20px 0;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { left: 0; }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1999;
}
.mobile-overlay.open { display: block; }

.mobile-nav-list { padding: 0 16px; }
.mobile-nav-item { border-bottom: 1px solid var(--color-border); }
.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
}
.mobile-nav-row a {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.mobile-expand {
  font-size: 20px;
  color: var(--color-text-muted);
  width: 32px;
  text-align: center;
}
.mobile-sub {
  display: none;
  padding: 0 0 12px 12px;
}
.mobile-sub.open { display: block; }
.mobile-sub li { padding: 6px 0; }
.mobile-sub a { font-size: 13px; color: var(--color-text-muted); }

/* ── BREADCRUMB ────────────────────────────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--color-text-muted);
}
.breadcrumb li + li::before { content: '/'; margin-right: 6px; opacity: .5; }
.breadcrumb a { color: var(--color-accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── BUTTONS ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform .1s;
  border: 2px solid transparent;
}
.btn:active { transform: scale(.98); }

.btn-hero {
  background: #fff;
  color: var(--color-accent);
  border-color: #fff;
  font-size: 15px;
  padding: 14px 36px;
}
.btn-hero:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

.btn-buy {
  background: var(--color-accent);
  color: #fff;
  width: 100%;
  padding: 16px;
  font-size: 15px;
  border-radius: var(--radius);
}
.btn-buy:hover { background: var(--color-accent-dk); }

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-outline:hover { background: var(--color-accent); color: #fff; }

/* ── HERO ───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,68,45,.78) 0%, rgba(0,0,0,.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero-sub {
  font-size: 17px;
  opacity: .9;
  margin-bottom: 32px;
  line-height: 1.5;
}

/* ── SECTIONS ───────────────────────────────────────────────────────────────── */
.section { padding: 60px 0; }
.section-sale { background: var(--color-surface); }
.section-brands { background: #fff; }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}
.section-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--color-text);
}
.section-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.section-more:hover { text-decoration: underline; }

/* ── CATEGORY GRID (homepage) ───────────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.cat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-accent);
}
.cat-icon { font-size: 32px; }
.cat-name { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* ── PRODUCT GRID ───────────────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  gap: 20px;
}
.product-grid--4 { grid-template-columns: repeat(4, 1fr); }
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ── PRODUCT CARD ───────────────────────────────────────────────────────────── */
.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-card-link { display: block; }

.product-card-img-wrap {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
  background: var(--color-surface);
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card-img { transform: scale(1.04); }
.product-card-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 13px;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
}
.product-badge.sale { background: var(--color-sale); color: #fff; }

.product-card-info { padding: 14px; }
.product-card-brand {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.product-card-title {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price { font-size: 15px; font-weight: 600; }
.price-old { font-size: 13px; color: var(--color-text-muted); text-decoration: line-through; }
.price-sale { font-size: 15px; font-weight: 700; color: var(--color-sale); }

.product-card-rating {
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-card-rating span { color: var(--color-text-muted); font-size: 11px; }

/* ── BANNER STRIP ───────────────────────────────────────────────────────────── */
.banner-strip {
  background: var(--color-accent);
  color: #fff;
  padding: 36px 0;
}
.banner-strip-inner {
  display: flex;
  gap: 32px;
  justify-content: space-around;
  flex-wrap: wrap;
}
.banner-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 180px;
}
.banner-icon { font-size: 32px; }
.banner-feat strong { display: block; font-size: 15px; margin-bottom: 2px; }
.banner-feat p { font-size: 13px; opacity: .8; }

/* ── BRANDS GRID ────────────────────────────────────────────────────────────── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  transition: box-shadow var(--transition), border-color var(--transition);
  text-align: center;
}
.brand-card:hover { box-shadow: var(--shadow-sm); border-color: var(--color-accent); }
.brand-logo { max-height: 48px; max-width: 120px; object-fit: contain; margin: 0 auto; }
.brand-name-text { font-weight: 600; font-size: 14px; letter-spacing: .04em; }

/* ── CATEGORY PAGE ──────────────────────────────────────────────────────────── */
.category-page { padding: 28px 0 60px; }
.page-heading { margin-bottom: 20px; }
.page-title {
  font-family: var(--font-serif);
  font-size: 32px;
  margin-bottom: 8px;
}

/* Subcategory chips */
.subcat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.subcat-chip {
  padding: 7px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.subcat-chip:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* Gender filter tabs */
.gender-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.gender-tab {
  padding: 7px 18px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  background: #fff;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.gender-tab:hover { border-color: var(--color-accent); color: var(--color-accent); }
.gender-tab.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  background: #fff;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.page-btn:hover { background: var(--color-surface); border-color: var(--color-accent); }
.page-btn.active { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

.no-products { text-align: center; padding: 60px 0; color: var(--color-text-muted); }
.no-products p { font-size: 18px; margin-bottom: 20px; }

/* ── PRODUCT PAGE ───────────────────────────────────────────────────────────── */
.product-page { padding: 36px 0 60px; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 60px;
}

/* Gallery */
.gallery-main {
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-surface);
  aspect-ratio: 4/5;
}
.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.gallery-thumb {
  border: 2px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  width: 72px;
  height: 86px;
  cursor: pointer;
  transition: border-color var(--transition);
  padding: 0;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover,
.gallery-thumb.active { border-color: var(--color-accent); }

/* Product info */
.product-brand {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.product-brand a:hover { text-decoration: underline; }
.product-title {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 16px;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--color-gold);
}
.rating-value { font-weight: 700; font-size: 14px; color: var(--color-text); }
.rating-count { font-size: 13px; color: var(--color-text-muted); }

.product-price-block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.product-price { font-size: 28px; font-weight: 700; }
.product-price-old { font-size: 18px; color: var(--color-text-muted); text-decoration: line-through; }
.product-price-sale { font-size: 28px; font-weight: 700; color: var(--color-sale); }
.product-save-badge {
  background: var(--color-sale);
  color: #fff;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
}
.product-currency { font-size: 14px; color: var(--color-text-muted); }

.product-option { margin-bottom: 18px; }
.option-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 8px;
  color: var(--color-text-muted);
}
.size-list, .color-list { display: flex; flex-wrap: wrap; gap: 8px; }
.size-chip {
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  cursor: default;
}
.color-chip {
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-size: 13px;
  background: var(--color-surface);
}

.product-attrs { margin-bottom: 20px; }
.attr-row {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 13.5px;
}
.attr-key { color: var(--color-text-muted); min-width: 100px; font-weight: 500; }

.product-actions { margin-bottom: 28px; }

.product-section-title {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}
.product-desc-body {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-text);
  max-height: 300px;
  overflow: hidden;
  position: relative;
}
.product-desc-body ul,
.product-desc-body ol {
  list-style: disc;
  padding-left: 20px;
  margin: 8px 0;
}
.product-desc-body ol { list-style: decimal; }
.product-desc-body li { margin-bottom: 4px; }
.product-desc-body p  { margin-bottom: 8px; }

/* Related */
.section-related { margin-top: 40px; }

/* ── FOOTER ─────────────────────────────────────────────────────────────────── */
.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo strong { color: var(--color-accent); }
.footer-about p { font-size: 13.5px; line-height: 1.7; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13.5px; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
  font-size: 12.5px;
}
.footer-bottom a { color: var(--color-accent); }

/* ── ERROR PAGE ─────────────────────────────────────────────────────────────── */
.error-page { padding: 80px 0; text-align: center; }
.error-code { font-size: 120px; font-weight: 800; color: var(--color-border); line-height: 1; margin-bottom: 16px; }
.error-title { font-family: var(--font-serif); font-size: 32px; margin-bottom: 28px; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .mega-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-top-tagline { display: none; }
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-nav { display: block; }

  .hero { min-height: 380px; }
  .hero-title { font-size: 30px; }

  .category-layout { grid-template-columns: 1fr; }
  .filter-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    z-index: 2000;
    border-radius: 0;
    overflow-y: auto;
  }
  .filter-sidebar.open { display: block; }
  .filter-close {
    display: block;
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: var(--color-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
  }
  .product-toolbar { display: block; }

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

  .product-layout { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .banner-strip-inner { gap: 20px; }

  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
}

@media (max-width: 480px) {
  .product-grid--4,
  .product-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-layout  { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}
