/* =============================================
   Officentra - Premium Office Furniture Marketplace
   Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:       #FFFFFF;
  --navy:        #1E40AF;
  --navy-dark:   #1a35a0;
  --navy-light:  #2d51c8;
  --cool-gray:   #6B7280;
  --slate:       #334155;
  --soft-white:  #F9FAFB;
  --light-gray:  #F3F4F6;
  --border:      #E5E7EB;
  --text-dark:   #111827;
  --text-mid:    #374151;
  --text-light:  #9CA3AF;
  --success:     #059669;
  --warning:     #D97706;
  --error:       #DC2626;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.07);
  --shadow-md:   0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --transition:  all .22s ease;
  --font-main:   'Inter', system-ui, sans-serif;
  --font-display:'Plus Jakarta Sans', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--navy-light); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* --- Utility --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.bg-soft { background: var(--soft-white); }
.bg-light { background: var(--light-gray); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.section { padding: 72px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 96px 0; }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.28;
  color: var(--slate);
}
h1 { font-size: clamp(28px, 5vw, 52px); }
h2 { font-size: clamp(22px, 4vw, 38px); }
h3 { font-size: clamp(18px, 3vw, 26px); }
h4 { font-size: 20px; }
h5 { font-size: 17px; }
h6 { font-size: 15px; }
p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--slate); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(30,64,175,.28); }
.btn--outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--ghost { background: var(--light-gray); color: var(--slate); }
.btn--ghost:hover { background: var(--border); color: var(--slate); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--soft-white); color: var(--navy); }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--icon { padding: 10px; border-radius: 50%; }
.btn--block { width: 100%; justify-content: center; }
.btn--success { background: var(--success); color: var(--white); }
.btn--success:hover { background: #047857; color: var(--white); }

/* --- Top Bar --- */
.topbar {
  background: var(--slate);
  color: rgba(255,255,255,.8);
  font-size: 12.5px;
  padding: 7px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar a { color: rgba(255,255,255,.8); }
.topbar a:hover { color: var(--white); }
.topbar__icon { width: 14px; height: 14px; vertical-align: middle; margin-right: 4px; }

/* --- Header --- */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 24px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.header__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  font-family: var(--font-display);
}
.header__logo-text { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--slate); }
.header__logo-text span { color: var(--navy); }

/* Search */
.header__search {
  flex: 1;
  max-width: 520px;
  position: relative;
}
.header__search-input {
  width: 100%;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0 48px 0 18px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--soft-white);
  transition: var(--transition);
}
.header__search-input:focus { outline: none; border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 3px rgba(30,64,175,.1); }
.header__search-input::placeholder { color: var(--text-light); }
.header__search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.header__search-btn:hover { background: var(--navy-dark); }
.header__search-btn svg { width: 16px; height: 16px; }

/* Header Actions */
.header__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header__action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: var(--slate);
  font-size: 11px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}
.header__action-btn:hover { background: var(--light-gray); color: var(--navy); }
.header__action-btn svg { width: 22px; height: 22px; }
.header__action-badge {
  position: absolute;
  top: 2px;
  right: 8px;
  width: 18px;
  height: 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Nav --- */
.nav {
  background: var(--navy);
  border-bottom: 3px solid var(--navy-dark);
}
.nav__inner {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav__all-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  background: rgba(0,0,0,.12);
  border-right: 1px solid rgba(255,255,255,.12);
  margin-right: 4px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__all-btn:hover { background: rgba(0,0,0,.2); color: var(--white); }
.nav__all-btn svg { width: 18px; height: 18px; }
.nav__list { display: flex; align-items: center; gap: 0; flex: 1; }
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 14px;
  color: rgba(255,255,255,.9);
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav__link svg { width: 14px; height: 14px; opacity: .7; }
.nav__link.active { color: var(--white); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown-link {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  color: var(--text-mid);
  transition: var(--transition);
  text-decoration: none;
}
.nav__dropdown-link:hover { color: var(--navy); background: var(--soft-white); padding-left: 24px; }

/* --- Breadcrumb --- */
.breadcrumb {
  background: var(--soft-white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.breadcrumb__item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--cool-gray); }
.breadcrumb__item a { color: var(--cool-gray); text-decoration: none; }
.breadcrumb__item a:hover { color: var(--navy); }
.breadcrumb__item.active { color: var(--slate); font-weight: 500; }
.breadcrumb__sep { color: var(--text-light); }

/* --- Hero --- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--slate);
}
.hero__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17,24,39,.82) 0%, rgba(30,64,175,.35) 55%, rgba(0,0,0,.1) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 96px 0 80px;
  max-width: 700px;
}
.hero__eyebrow {
  display: inline-block;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  max-width: 580px;
}
.hero__cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.hero__stat-value { font-size: 28px; font-weight: 800; color: var(--white); font-family: var(--font-display); }
.hero__stat-label { font-size: 12px; color: rgba(255,255,255,.65); font-weight: 500; }

/* --- Section Headers --- */
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.section-title { margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: var(--cool-gray); max-width: 580px; }
.section-header--center .section-subtitle { margin: 0 auto; }

/* --- Category Cards --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}
.category-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.category-card__img-wrap { width: 72px; height: 72px; border-radius: var(--radius-md); overflow: hidden; background: var(--light-gray); }
.category-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.category-card__name { font-size: 13px; font-weight: 600; color: var(--slate); }
.category-card__count { font-size: 12px; color: var(--cool-gray); }

/* --- Product Cards --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); border-color: #D1D5DB; transform: translateY(-3px); }
.product-card__img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--light-gray); }
.product-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-card__img-wrap img { transform: scale(1.04); }
.product-card__actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
}
.product-card:hover .product-card__actions { opacity: 1; transform: translateX(0); }
.product-card__action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.product-card__action-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.product-card__action-btn svg { width: 16px; height: 16px; }
.product-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-card__brand { font-size: 11px; font-weight: 600; color: var(--cool-gray); text-transform: uppercase; letter-spacing: .06em; }
.product-card__name { font-size: 14px; font-weight: 600; color: var(--slate); line-height: 1.4; }
.product-card__name a { color: inherit; text-decoration: none; }
.product-card__name a:hover { color: var(--navy); }
.product-card__rating { display: flex; align-items: center; gap: 5px; }
.product-card__stars { color: #F59E0B; font-size: 13px; letter-spacing: 1px; }
.product-card__review-count { font-size: 12px; color: var(--cool-gray); }
.product-card__specs { font-size: 12px; color: var(--cool-gray); }
.product-card__footer { padding: 12px 16px 16px; border-top: 1px solid var(--light-gray); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-card__price { font-size: 20px; font-weight: 800; color: var(--navy); font-family: var(--font-display); }
.product-card__price-old { font-size: 13px; color: var(--cool-gray); text-decoration: line-through; }
.product-card__add-btn { flex-shrink: 0; }

/* Stock badge */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge--success { background: #ECFDF5; color: #065F46; }
.badge--warning { background: #FFFBEB; color: #92400E; }
.badge--error { background: #FEF2F2; color: #991B1B; }
.badge--navy { background: #EFF6FF; color: var(--navy); }
.badge--gray { background: var(--light-gray); color: var(--cool-gray); }

/* Discount tag */
.product-card__discount-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #EF4444;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 1;
}

/* --- Filter Layout --- */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
.filter-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.filter-panel__header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-panel__title { font-size: 15px; font-weight: 700; color: var(--slate); }
.filter-panel__clear { font-size: 12px; color: var(--navy); font-weight: 500; cursor: pointer; background: none; border: none; }
.filter-panel__clear:hover { text-decoration: underline; }
.filter-group { padding: 16px 20px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; }
.filter-group__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.filter-group__toggle { color: var(--cool-gray); }
.filter-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 0;
  cursor: pointer;
}
.filter-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  flex-shrink: 0;
  cursor: pointer;
}
.filter-item label { font-size: 13.5px; color: var(--text-mid); cursor: pointer; flex: 1; display: flex; align-items: center; justify-content: space-between; }
.filter-item__count { font-size: 11.5px; color: var(--text-light); }

/* Price range */
.price-range { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.price-range input[type="number"] {
  flex: 1;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 10px;
  font-size: 13px;
  color: var(--text-dark);
  background: var(--soft-white);
}
.price-range input[type="number"]:focus { outline: none; border-color: var(--navy); }
.price-range span { font-size: 13px; color: var(--cool-gray); }
.price-range-apply { margin-top: 10px; }

/* --- Catalog Header --- */
.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.catalog-header__count { font-size: 14px; color: var(--cool-gray); }
.catalog-header__count strong { color: var(--slate); }
.catalog-header__sort { display: flex; align-items: center; gap: 10px; }
.sort-select {
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  font-size: 13.5px;
  color: var(--slate);
  background: var(--white);
  cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--navy); }
.view-toggle { display: flex; align-items: center; gap: 4px; }
.view-toggle-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cool-gray);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.view-toggle-btn.active, .view-toggle-btn:hover { border-color: var(--navy); color: var(--navy); background: var(--soft-white); }
.view-toggle-btn svg { width: 16px; height: 16px; }

/* --- Product Detail --- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: start;
}
.product-gallery__main { position: relative; aspect-ratio: 1; background: var(--light-gray); border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--border); }
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; }
.product-gallery__thumb { width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--border); cursor: pointer; background: var(--light-gray); transition: var(--transition); }
.product-gallery__thumb:hover, .product-gallery__thumb.active { border-color: var(--navy); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { position: sticky; top: 90px; }
.product-info__brand { font-size: 13px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.product-info__title { font-size: 26px; font-weight: 800; color: var(--slate); margin-bottom: 12px; }
.product-info__rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.product-info__price-wrap { padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.product-info__price { font-size: 36px; font-weight: 800; color: var(--navy); font-family: var(--font-display); }
.product-info__price-old { font-size: 18px; color: var(--cool-gray); text-decoration: line-through; }
.product-info__price-save { font-size: 13px; color: #059669; font-weight: 600; }
.product-info__actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.product-info__qty { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.qty-control { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-control button { width: 36px; height: 36px; background: var(--light-gray); color: var(--slate); font-size: 18px; font-weight: 600; display: flex; align-items: center; justify-content: center; transition: var(--transition); border: none; cursor: pointer; }
.qty-control button:hover { background: var(--border); }
.qty-control input { width: 48px; height: 36px; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); text-align: center; font-size: 15px; font-weight: 600; color: var(--slate); background: var(--white); }
.qty-control input:focus { outline: none; }

/* Product Tabs */
.product-tabs { margin-top: 48px; }
.tab-nav { display: flex; border-bottom: 2px solid var(--border); gap: 0; }
.tab-btn {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cool-gray);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  text-decoration: none;
  display: inline-block;
}
.tab-btn.active, .tab-btn:hover { color: var(--navy); border-bottom-color: var(--navy); }
.tab-content { display: none; padding: 28px 0; }
.tab-content.active { display: block; }

/* Spec Table */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border);
}
.spec-table th { font-weight: 600; color: var(--slate); background: var(--soft-white); width: 40%; }
.spec-table td { color: var(--text-mid); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

/* --- Blog Cards --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card__img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.blog-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.blog-card:hover .blog-card__img-wrap img { transform: scale(1.04); }
.blog-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card__category { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.blog-card__title { font-size: 17px; font-weight: 700; color: var(--slate); margin-bottom: 10px; line-height: 1.35; }
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: var(--navy); }
.blog-card__excerpt { font-size: 13.5px; color: var(--cool-gray); margin-bottom: 16px; flex: 1; line-height: 1.6; }
.blog-card__meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--text-light); border-top: 1px solid var(--light-gray); padding-top: 14px; }
.blog-card__meta-item { display: flex; align-items: center; gap: 4px; }
.blog-card__meta-item svg { width: 14px; height: 14px; }

/* --- Info Boxes --- */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.info-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); }
.info-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: #EFF6FF;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.info-card__icon svg { width: 26px; height: 26px; }
.info-card__title { font-size: 15px; font-weight: 700; color: var(--slate); margin-bottom: 6px; }
.info-card__desc { font-size: 13px; color: var(--cool-gray); }

/* --- Comparison Table --- */
.compare-table { width: 100%; border-collapse: collapse; border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.compare-table th { background: var(--navy); color: var(--white); padding: 14px 18px; font-size: 14px; font-weight: 600; text-align: center; }
.compare-table th:first-child { text-align: left; background: var(--slate); }
.compare-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--text-mid); text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--slate); background: var(--soft-white); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td:not(:first-child) { background: var(--soft-white); }
.compare-check { color: var(--success); font-size: 18px; }
.compare-cross { color: #DC2626; font-size: 18px; }

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.form-label .required { color: #DC2626; margin-left: 3px; }
.form-control {
  width: 100%;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,64,175,.1); }
textarea.form-control { height: auto; padding: 12px 14px; resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-hint { font-size: 12px; color: var(--cool-gray); margin-top: 5px; }
.form-error { font-size: 12px; color: var(--error); margin-top: 5px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- Alert / Notification --- */
.alert { border-radius: var(--radius-sm); padding: 14px 18px; font-size: 14px; display: flex; align-items: flex-start; gap: 10px; }
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.alert--success { background: #ECFDF5; color: #065F46; border: 1px solid #6EE7B7; }
.alert--warning { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }
.alert--info { background: #EFF6FF; color: #1E3A8A; border: 1px solid #BFDBFE; }

/* Success Message */
.success-message {
  display: none;
  background: #ECFDF5;
  border: 2px solid #34D399;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.success-message.show { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.success-message__icon { width: 56px; height: 56px; background: var(--success); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); }
.success-message__icon svg { width: 28px; height: 28px; }
.success-message__title { font-size: 18px; font-weight: 700; color: #065F46; }
.success-message__desc { font-size: 14px; color: #047857; }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-banner::after {
  content: '';
  position: absolute;
  right: 80px;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-banner__text { position: relative; z-index: 1; }
.cta-banner__title { font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.cta-banner__subtitle { font-size: 15px; color: rgba(255,255,255,.75); max-width: 480px; }
.cta-banner__action { position: relative; z-index: 1; flex-shrink: 0; }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.testimonial-card__stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card__text { font-size: 14px; line-height: 1.7; color: var(--text-mid); margin-bottom: 18px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--light-gray); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--navy); flex-shrink: 0; }
.testimonial-card__name { font-size: 14px; font-weight: 700; color: var(--slate); }
.testimonial-card__role { font-size: 12px; color: var(--cool-gray); }

/* --- Guide / Article Content --- */
.article-content { font-size: 16px; line-height: 1.75; color: var(--text-mid); }
.article-content h2 { font-size: 26px; color: var(--slate); margin: 36px 0 16px; padding-top: 20px; border-top: 2px solid var(--light-gray); }
.article-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.article-content h3 { font-size: 20px; color: var(--slate); margin: 28px 0 12px; }
.article-content h4 { font-size: 17px; color: var(--slate); margin: 22px 0 10px; }
.article-content p { margin-bottom: 16px; }
.article-content ul, .article-content ol { padding-left: 22px; margin-bottom: 16px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 6px; }
.article-content a { color: var(--navy); font-weight: 500; }
.article-content a:hover { text-decoration: underline; }
.article-content img { border-radius: var(--radius-md); margin: 24px 0; width: 100%; object-fit: cover; }
.article-content blockquote {
  border-left: 4px solid var(--navy);
  padding: 16px 22px;
  background: #EFF6FF;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--navy);
}
.article-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.article-content table th { background: var(--navy); color: var(--white); padding: 11px 14px; font-size: 13.5px; text-align: left; }
.article-content table td { padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: 13.5px; }
.article-content table tr:nth-child(even) td { background: var(--soft-white); }

/* --- Info Box (article highlight) --- */
.info-box { background: #EFF6FF; border-left: 4px solid var(--navy); border-radius: var(--radius-sm); padding: 18px 20px; margin: 24px 0; }
.info-box__title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.info-box__text { font-size: 14px; color: #1E3A8A; }

/* --- Pagination --- */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; }
.page-btn {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.page-btn.prev-next { padding: 0 14px; width: auto; gap: 6px; }
.page-btn svg { width: 14px; height: 14px; }

/* --- Tags --- */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--light-gray);
  color: var(--slate);
  font-size: 12.5px;
  font-weight: 500;
  border-radius: 20px;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* --- Footer --- */
.footer {
  background: var(--slate);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand { }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; }
.footer__logo-icon { width: 36px; height: 36px; background: var(--white); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--navy); font-weight: 800; font-size: 16px; font-family: var(--font-display); }
.footer__logo-text { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--white); }
.footer__tagline { font-size: 13.5px; line-height: 1.6; margin-bottom: 20px; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 13px; }
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,.5); }
.footer__contact-item a { color: rgba(255,255,255,.8); text-decoration: none; }
.footer__contact-item a:hover { color: var(--white); }
.footer__col-title { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer__link { display: block; font-size: 13.5px; color: rgba(255,255,255,.7); text-decoration: none; margin-bottom: 10px; transition: var(--transition); }
.footer__link:hover { color: var(--white); padding-left: 4px; }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer__bottom a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer__bottom a:hover { color: var(--white); }
.footer__legal-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* --- Policy Pages --- */
.policy-page { max-width: 860px; margin: 0 auto; padding: 0 20px; }
.policy-page h1 { font-size: 32px; margin-bottom: 10px; }
.policy-page .policy-meta { color: var(--cool-gray); font-size: 13px; margin-bottom: 32px; }
.policy-page h2 { font-size: 21px; margin: 36px 0 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.policy-page h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.policy-page h3 { font-size: 17px; margin: 22px 0 10px; color: var(--slate); }
.policy-page p { color: var(--text-mid); margin-bottom: 14px; }
.policy-page ul { padding-left: 22px; list-style: disc; margin-bottom: 14px; }
.policy-page li { color: var(--text-mid); margin-bottom: 6px; font-size: 15px; }
.policy-page table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.policy-page table th { background: var(--soft-white); padding: 10px 14px; font-size: 13.5px; font-weight: 600; text-align: left; border: 1px solid var(--border); }
.policy-page table td { padding: 10px 14px; font-size: 13.5px; color: var(--text-mid); border: 1px solid var(--border); }

/* --- About Page --- */
.about-hero { background: var(--soft-white); border-radius: var(--radius-xl); overflow: hidden; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { text-align: center; }
.team-card__avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--light-gray); margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; color: var(--navy); }
.team-card__name { font-size: 15px; font-weight: 700; color: var(--slate); margin-bottom: 4px; }
.team-card__role { font-size: 13px; color: var(--cool-gray); }

/* --- Values Grid --- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 28px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); }
.value-card__num { font-size: 36px; font-weight: 800; color: var(--light-gray); font-family: var(--font-display); margin-bottom: 14px; line-height: 1; }
.value-card__title { font-size: 17px; font-weight: 700; color: var(--slate); margin-bottom: 8px; }
.value-card__desc { font-size: 14px; color: var(--cool-gray); }

/* --- Steps --- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-card__num { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--white); font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--font-display); border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--navy); }
.step-card__title { font-size: 15px; font-weight: 700; color: var(--slate); margin-bottom: 8px; }
.step-card__desc { font-size: 13px; color: var(--cool-gray); }

/* --- Sidebar (blog/article) --- */
.sidebar-layout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: start; }
.sidebar { }
.sidebar-widget { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 20px; }
.sidebar-widget:last-child { margin-bottom: 0; }
.sidebar-widget__title { font-size: 15px; font-weight: 700; color: var(--slate); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sidebar-link { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--light-gray); font-size: 13.5px; color: var(--text-mid); text-decoration: none; transition: var(--transition); }
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--navy); padding-left: 4px; }
.sidebar-link svg { width: 16px; height: 16px; color: var(--navy); flex-shrink: 0; }

/* --- Sitemap --- */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sitemap-col__title { font-size: 16px; font-weight: 700; color: var(--slate); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--navy); }
.sitemap-link { display: flex; align-items: center; gap: 6px; padding: 6px 0; font-size: 14px; color: var(--text-mid); text-decoration: none; transition: var(--transition); }
.sitemap-link:hover { color: var(--navy); padding-left: 4px; }
.sitemap-link::before { content: '–'; color: var(--text-light); font-size: 12px; }

/* --- Stats Row --- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { padding: 28px 20px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); text-align: center; }
.stat-card__value { font-size: 36px; font-weight: 800; color: var(--navy); font-family: var(--font-display); margin-bottom: 6px; }
.stat-card__label { font-size: 13.5px; color: var(--cool-gray); font-weight: 500; }

/* --- Featured Section (two column) --- */
.featured-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.featured-split__img { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; }
.featured-split__img img { width: 100%; height: 100%; object-fit: cover; }

/* --- Cart / mini-cart --- */
.cart-summary { background: var(--soft-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 90px; }
.cart-summary__title { font-size: 16px; font-weight: 700; color: var(--slate); margin-bottom: 16px; }
.cart-summary__row { display: flex; align-items: center; justify-content: space-between; font-size: 14px; color: var(--text-mid); padding: 8px 0; border-bottom: 1px solid var(--border); }
.cart-summary__row:last-child { border-bottom: none; }
.cart-summary__total { font-size: 18px; font-weight: 800; color: var(--navy); }

/* --- Mobile Menu --- */
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; background: none; border: none; }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--slate); border-radius: 2px; transition: var(--transition); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 500; }
.mobile-overlay.open { display: block; }
.mobile-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 600;
  overflow-y: auto;
  transition: left .3s ease;
  padding: 0 0 32px;
}
.mobile-menu.open { left: 0; }
.mobile-menu__header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.mobile-menu__close { width: 36px; height: 36px; border-radius: 50%; background: var(--light-gray); display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; color: var(--slate); }
.mobile-nav-link { display: block; padding: 13px 20px; font-size: 15px; font-weight: 500; color: var(--slate); border-bottom: 1px solid var(--light-gray); text-decoration: none; transition: var(--transition); }
.mobile-nav-link:hover { color: var(--navy); background: var(--soft-white); }

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--slate);
  color: rgba(255,255,255,.9);
  padding: 16px 20px;
  z-index: 999;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner__text { font-size: 13.5px; flex: 1; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .catalog-layout { grid-template-columns: 230px 1fr; }
  .product-detail-grid { grid-template-columns: 1fr 420px; gap: 32px; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .featured-split { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-info { position: static; }
}
@media (max-width: 680px) {
  .topbar { display: none; }
  .header__search { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 24px; }
  .hero__content { padding: 64px 0 56px; }
  .hero__stats { gap: 20px; }
  .section { padding: 52px 0; }
}

/* R13 auto CSS vars */
:root {
  --gray: #6b7280;
}

/* auto-fix: structural classes */
.footer-col { }
.footer-col h5,.footer-col .footer-heading{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;margin-bottom:14px;opacity:.65;}
.footer-col ul{padding:0;list-style:none} .footer-col li{margin-bottom:7px}
.footer-brand { }
.footer-brand .logo-text,.footer-brand .site-logo__name{color:#fff}
.cerez-banner,.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#1a1a2e;color:#fff;padding:16px 24px;z-index:9999;display:none}
