/* =========================================================
   VERDANOVA — Global Stylesheet
   Premium Garden & Outdoor Marketplace — Argentina
   ========================================================= */

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

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --white:        #FFFFFF;
  --forest:       #2E7D32;
  --forest-dark:  #1B5E20;
  --forest-light: #4CAF50;
  --olive:        #6B8E23;
  --slate:        #334155;
  --slate-light:  #64748B;
  --sand:         #EFE6D4;
  --sand-dark:    #DDD0B8;
  --gray-light:   #F8FAFC;
  --gray-mid:     #E2E8F0;
  --gray-text:    #94A3B8;
  --font-body:    'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius:       8px;
  --radius-lg:    16px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.13);
  --transition:   .25s ease;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 600; }
h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; }
.text-forest  { color: var(--forest); }
.text-olive   { color: var(--olive); }
.text-slate   { color: var(--slate); }
.text-muted   { color: var(--slate-light); }
.text-center  { text-align: center; }
.text-sm      { font-size: .875rem; }
.text-xs      { font-size: .75rem; }
.fw-500       { font-weight: 500; }
.fw-600       { font-weight: 600; }
.fw-700       { font-weight: 700; }

/* ─── Layout Utilities ──────────────────────────────────── */
.container     { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm  { max-width: 900px;  margin: 0 auto; padding: 0 24px; }
.section       { padding: 72px 0; }
.section-sm    { padding: 48px 0; }
.flex          { display: flex; }
.flex-center   { display: flex; align-items: center; justify-content: center; }
.flex-between  { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap     { flex-wrap: wrap; }
.gap-8         { gap: 8px; }
.gap-12        { gap: 12px; }
.gap-16        { gap: 16px; }
.gap-24        { gap: 24px; }
.gap-32        { gap: 32px; }
.grid-2        { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3        { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4        { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}
.btn-sand {
  background: var(--sand);
  color: var(--slate);
  border-color: var(--sand-dark);
}
.btn-sand:hover {
  background: var(--sand-dark);
}
.btn-sm { padding: 8px 18px; font-size: .8rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Top Bar ───────────────────────────────────────────── */
.topbar {
  background: var(--slate);
  color: #94A3B8;
  font-size: .78rem;
  padding: 6px 0;
}
.topbar a { color: #94A3B8; transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar .flex-between { gap: 24px; }
.topbar-right { display: flex; align-items: center; gap: 20px; }

/* ─── Header ────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}
.logo-text { font-family: var(--font-display); font-size: 1.5rem; color: var(--forest); font-weight: 700; }
.logo-sub  { font-size: .65rem; color: var(--slate-light); font-weight: 400; text-transform: uppercase; letter-spacing: .1em; display: block; line-height: 1; }

/* Search bar */
.header-search {
  flex: 1;
  max-width: 540px;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 10px 48px 10px 18px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 50px;
  font-size: .9rem;
  color: var(--slate);
  background: var(--gray-light);
  outline: none;
  transition: border-color var(--transition);
}
.header-search input:focus { border-color: var(--forest); background: var(--white); }
.header-search input::placeholder { color: var(--gray-text); }
.search-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--forest);
  font-size: 1rem;
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 8px; }
.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  border: none;
  background: none;
  color: var(--slate);
  font-size: .7rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}
.action-btn:hover { background: var(--gray-light); color: var(--forest); }
.action-btn svg, .action-btn i { font-size: 1.2rem; }
.action-btn .count {
  background: var(--forest);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 50px;
  margin-left: 2px;
}

/* ─── Navigation ────────────────────────────────────────── */
.site-nav {
  background: var(--forest);
  position: relative;
  z-index: 999;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 16px;
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.12); }
.nav-link .arrow { font-size: .65rem; transition: transform var(--transition); }
.nav-item:hover .arrow { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 999;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: .85rem;
  color: var(--slate);
  transition: var(--transition);
}
.dropdown a:hover { background: var(--gray-light); color: var(--forest); padding-left: 26px; }
.dropdown-divider { height: 1px; background: var(--gray-mid); margin: 6px 0; }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; padding: 8px; }
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 2px solid var(--forest);
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  padding: 24px;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-nav a { display: block; padding: 14px 0; font-size: 1rem; color: var(--slate); border-bottom: 1px solid var(--gray-mid); }
.mobile-nav a:hover { color: var(--forest); }
.mobile-close { background: none; border: none; font-size: 1.5rem; color: var(--slate); cursor: pointer; }

/* ─── Breadcrumb ────────────────────────────────────────── */
.breadcrumb {
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray-mid);
  padding: 10px 0;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--slate-light); }
.breadcrumb li a { color: var(--forest); }
.breadcrumb li a:hover { text-decoration: underline; }
.breadcrumb li:last-child { color: var(--slate); font-weight: 500; }
.breadcrumb li:not(:last-child)::after { content: '/'; color: var(--gray-text); }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(30,50,20,.72) 40%, rgba(30,50,20,.28) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 600px;
  padding: 80px 0;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 12px rgba(0,0,0,.2); }
.hero-content p { font-size: 1.1rem; margin-bottom: 32px; opacity: .92; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.25);
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 700; }
.hero-stat span { font-size: .8rem; opacity: .8; text-transform: uppercase; letter-spacing: .05em; }

/* ─── Section Headers ───────────────────────────────────── */
.section-header { margin-bottom: 48px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--olive);
  margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--slate-light); font-size: 1.05rem; max-width: 640px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ─── Product Cards ─────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-light);
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  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); }
.card-action-btn {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: .9rem;
  color: var(--slate);
  transition: var(--transition);
}
.card-action-btn:hover { background: var(--forest); color: var(--white); }
.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.tag-new     { background: var(--forest); color: var(--white); }
.tag-offer   { background: #E53935;       color: var(--white); }
.tag-popular { background: var(--olive);  color: var(--white); }
.product-card-body { padding: 18px; }
.product-brand { font-size: .75rem; color: var(--slate-light); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.product-name { font-size: 1rem; font-weight: 600; color: var(--slate); margin-bottom: 8px; line-height: 1.3; }
.product-name a { color: inherit; transition: color var(--transition); }
.product-name a:hover { color: var(--forest); }
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.stars { color: #F59E0B; font-size: .85rem; }
.rating-count { font-size: .75rem; color: var(--slate-light); }
.product-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.price-main { font-size: 1.25rem; font-weight: 700; color: var(--forest); }
.price-old  { font-size: .9rem; text-decoration: line-through; color: var(--gray-text); }
.price-discount { font-size: .75rem; font-weight: 700; color: #E53935; background: #FFEBEE; padding: 2px 6px; border-radius: 4px; }
.product-card-footer { padding: 0 18px 18px; }

/* ─── Category Cards ────────────────────────────────────── */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
}
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,40,15,.75) 0%, transparent 60%);
}
.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: var(--white);
}
.category-card-content h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.category-card-content span { font-size: .8rem; opacity: .85; }
.category-card-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover .category-card-arrow { opacity: 1; background: var(--forest); }

/* ─── Filters Sidebar ───────────────────────────────────── */
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.filters-sidebar {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-mid);
  background: var(--gray-light);
}
.filters-header h3 { font-size: .95rem; }
.filter-clear { font-size: .78rem; color: var(--forest); background: none; border: none; font-weight: 600; }
.filter-group { border-bottom: 1px solid var(--gray-mid); }
.filter-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate);
  user-select: none;
}
.filter-group-header:hover { background: var(--gray-light); }
.filter-group-header .chevron { transition: transform var(--transition); font-size: .75rem; color: var(--slate-light); }
.filter-group.open .chevron { transform: rotate(180deg); }
.filter-options { padding: 8px 20px 14px; display: none; }
.filter-group.open .filter-options { display: block; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  cursor: pointer;
  font-size: .85rem;
  color: var(--slate);
}
.filter-option input[type=checkbox] { accent-color: var(--forest); width: 15px; height: 15px; }
.filter-option span { flex: 1; }
.filter-count { font-size: .75rem; color: var(--slate-light); }
.price-range { padding: 0 4px; }
.price-range input[type=range] { width: 100%; accent-color: var(--forest); }
.price-inputs { display: flex; gap: 8px; margin-top: 10px; }
.price-inputs input {
  flex: 1;
  padding: 6px 10px;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: .8rem;
  color: var(--slate);
  outline: none;
}
.price-inputs input:focus { border-color: var(--forest); }

/* ─── Catalog Controls ──────────────────────────────────── */
.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.results-count { font-size: .88rem; color: var(--slate-light); }
.results-count strong { color: var(--slate); font-weight: 600; }
.sort-select {
  padding: 8px 14px;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--slate);
  background: var(--white);
  outline: none;
  cursor: pointer;
}
.sort-select:focus { border-color: var(--forest); }
.view-toggles { display: flex; gap: 4px; }
.view-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--slate-light);
  transition: var(--transition);
}
.view-btn.active, .view-btn:hover { border-color: var(--forest); color: var(--forest); background: var(--gray-light); }

/* ─── Product Grid ──────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.products-grid.list-view { grid-template-columns: 1fr; }
.products-grid.list-view .product-card { display: flex; }
.products-grid.list-view .product-card-image { width: 220px; flex-shrink: 0; aspect-ratio: auto; min-height: 200px; }

/* ─── Pagination ────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}
.page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-weight: 500;
}
.page-btn:hover, .page-btn.active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}
.page-btn.disabled { opacity: .4; pointer-events: none; }

/* ─── Comparison Table ──────────────────────────────────── */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.compare-table th, .compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--gray-mid);
}
.compare-table thead th {
  background: var(--forest);
  color: var(--white);
  font-weight: 600;
}
.compare-table thead th:first-child {
  background: var(--slate);
}
.compare-table tbody tr:nth-child(even) { background: var(--gray-light); }
.compare-table tbody tr:hover { background: #EFF7EF; }
.compare-table td:first-child { font-weight: 600; color: var(--slate); width: 200px; }
.compare-highlight { color: var(--forest); font-weight: 600; }
.check-yes { color: var(--forest); font-size: 1rem; }
.check-no  { color: #EF4444;       font-size: 1rem; }

/* ─── Product Detail ────────────────────────────────────── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-gallery { position: sticky; top: 100px; }
.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-light);
  aspect-ratio: 1;
  margin-bottom: 14px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--gray-mid);
  cursor: pointer;
  transition: border-color var(--transition);
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--forest); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info-panel { padding-top: 8px; }
.product-info-panel .product-brand { font-size: .85rem; margin-bottom: 8px; }
.product-info-panel h1 { font-family: var(--font-display); font-size: 1.9rem; margin-bottom: 12px; }
.product-info-panel .rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.product-info-panel .price-main { font-size: 2rem; }
.availability { display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; margin-bottom: 20px; }
.availability.in-stock { color: var(--forest); }
.availability.low-stock { color: #F59E0B; }
.product-short-desc { color: var(--slate-light); font-size: .95rem; line-height: 1.7; margin-bottom: 24px; border-bottom: 1px solid var(--gray-mid); padding-bottom: 24px; }
.quantity-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--gray-mid); border-radius: var(--radius); overflow: hidden; }
.qty-btn { width: 38px; height: 42px; background: var(--gray-light); border: none; font-size: 1.1rem; color: var(--slate); transition: var(--transition); }
.qty-btn:hover { background: var(--gray-mid); }
.qty-input { width: 50px; height: 42px; border: none; border-left: 1.5px solid var(--gray-mid); border-right: 1.5px solid var(--gray-mid); text-align: center; font-size: .95rem; font-weight: 600; color: var(--slate); outline: none; }
.product-actions-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.product-meta { background: var(--gray-light); border-radius: var(--radius-lg); padding: 20px; }
.meta-item { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: .88rem; }
.meta-item:not(:last-child) { border-bottom: 1px solid var(--gray-mid); }
.meta-item strong { min-width: 140px; color: var(--slate); }
.meta-item span { color: var(--slate-light); }
.product-tabs { margin-top: 48px; }
.tabs-nav { display: flex; border-bottom: 2px solid var(--gray-mid); gap: 4px; margin-bottom: 32px; }
.tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.tab-btn.active { color: var(--forest); border-bottom-color: var(--forest); }
.tab-btn:hover { color: var(--forest); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── Specs Table ───────────────────────────────────────── */
.specs-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.specs-table tr:nth-child(even) { background: var(--gray-light); }
.specs-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-mid); }
.specs-table td:first-child { font-weight: 600; color: var(--slate); width: 40%; }
.specs-table td:last-child  { color: var(--slate-light); }

/* ─── Reviews ───────────────────────────────────────────── */
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.review-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.reviewer-name { font-weight: 600; font-size: .95rem; margin-bottom: 2px; }
.review-date { font-size: .78rem; color: var(--slate-light); }
.review-body { font-size: .9rem; color: var(--slate-light); line-height: 1.7; }
.review-helpful { font-size: .78rem; color: var(--slate-light); margin-top: 10px; }
.review-helpful button { color: var(--forest); background: none; border: none; font-weight: 600; font-size: .78rem; }

/* ─── Blog ──────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.blog-card-image { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 22px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-category {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--forest);
  background: rgba(46,125,50,.1);
  padding: 3px 10px;
  border-radius: 50px;
}
.blog-date { font-size: .78rem; color: var(--slate-light); }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.35; }
.blog-card-body h3 a { color: var(--slate); transition: color var(--transition); }
.blog-card-body h3 a:hover { color: var(--forest); }
.blog-card-body p { font-size: .88rem; color: var(--slate-light); line-height: 1.65; margin-bottom: 16px; }
.blog-read-more { font-size: .82rem; font-weight: 700; color: var(--forest); display: flex; align-items: center; gap: 5px; }
.blog-read-more:hover { gap: 8px; }
.blog-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  margin-bottom: 40px;
}
.blog-featured-image { aspect-ratio: auto; min-height: 380px; overflow: hidden; }
.blog-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body h2 { font-size: 1.7rem; margin-bottom: 16px; }

/* ─── Article page ──────────────────────────────────────── */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.article-header { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 2px solid var(--gray-mid); }
.article-header h1 { font-size: 2.2rem; margin-bottom: 16px; }
.article-body { font-size: 1rem; line-height: 1.8; color: var(--slate); }
.article-body h2 { margin: 36px 0 16px; font-size: 1.5rem; }
.article-body h3 { margin: 28px 0 12px; font-size: 1.2rem; }
.article-body p { margin-bottom: 18px; color: var(--slate-light); }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 18px; }
.article-body li { margin-bottom: 8px; color: var(--slate-light); }
.article-body img { border-radius: var(--radius-lg); margin: 28px 0; }
.article-body blockquote {
  border-left: 4px solid var(--forest);
  padding: 16px 24px;
  background: var(--gray-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--slate);
}
.article-sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.article-sidebar-widget h4 { margin-bottom: 16px; font-size: .95rem; padding-bottom: 12px; border-bottom: 1px solid var(--gray-mid); }

/* ─── Cart / Checkout ───────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  background: var(--white);
  margin-bottom: 16px;
}
.cart-item-image {
  width: 96px;
  height: 96px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-light);
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: .95rem; margin-bottom: 4px; }
.cart-item-info p  { font-size: .82rem; color: var(--slate-light); margin-bottom: 12px; }
.cart-item-price { font-size: 1.1rem; font-weight: 700; color: var(--forest); }
.cart-item-remove { background: none; border: none; color: var(--slate-light); font-size: .8rem; cursor: pointer; display: flex; align-items: center; gap: 4px; }
.cart-item-remove:hover { color: #EF4444; }
.order-summary {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.order-summary h3 { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-mid); }
.summary-line { display: flex; justify-content: space-between; font-size: .9rem; padding: 8px 0; color: var(--slate-light); }
.summary-line.total { font-size: 1.1rem; font-weight: 700; color: var(--slate); border-top: 2px solid var(--gray-mid); margin-top: 8px; padding-top: 16px; }
.coupon-row { display: flex; gap: 8px; margin: 16px 0; }
.coupon-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: .85rem;
  outline: none;
}
.coupon-row input:focus { border-color: var(--forest); }
.checkout-form { max-width: 720px; }
.form-section-title { font-size: 1rem; font-weight: 600; color: var(--slate); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--slate);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(46,125,50,.08); }
.form-textarea { min-height: 120px; resize: vertical; }

/* ─── Contact Page ──────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info-card {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,.8); margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail-text strong { display: block; font-size: .85rem; opacity: .7; margin-bottom: 3px; }
.contact-detail-text a, .contact-detail-text p { color: var(--white); font-size: .95rem; margin: 0; }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.success-message {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--forest-dark);
  font-weight: 600;
  font-size: .9rem;
  display: none;
  align-items: center;
  gap: 10px;
}
.success-message.show { display: flex; }

/* ─── About Page ────────────────────────────────────────── */
.about-hero { background: var(--sand); border-radius: var(--radius-lg); padding: 64px; text-align: center; margin-bottom: 64px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { text-align: center; padding: 32px 24px; background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); }
.value-icon { width: 60px; height: 60px; background: rgba(46,125,50,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: .88rem; color: var(--slate-light); margin: 0; }
.stats-section { background: var(--forest); color: var(--white); border-radius: var(--radius-lg); padding: 60px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item strong { display: block; font-size: 2.5rem; font-weight: 700; font-family: var(--font-display); margin-bottom: 6px; }
.stat-item span { font-size: .88rem; opacity: .8; }

/* ─── Feature Banner ────────────────────────────────────── */
.feature-banner {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 48px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: .92rem;
  color: var(--slate);
}
.feature-list li::before { content: '✓'; font-weight: 700; color: var(--forest); }

/* ─── Testimonials ──────────────────────────────────────── */
.testimonials-section { background: var(--gray-light); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-mid);
}
.testimonial-text { font-size: .95rem; color: var(--slate-light); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: .88rem; }
.author-info span  { font-size: .78rem; color: var(--slate-light); }

/* ─── Newsletter ────────────────────────────────────────── */
.newsletter-section { background: var(--forest); color: var(--white); }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { color: var(--white); margin-bottom: 12px; }
.newsletter-inner p { opacity: .85; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 13px 20px;
  border-radius: 50px;
  border: none;
  font-size: .9rem;
  outline: none;
}
.newsletter-form button { padding: 13px 28px; border-radius: 50px; background: var(--sand); color: var(--slate); font-weight: 700; border: none; font-size: .9rem; white-space: nowrap; transition: var(--transition); }
.newsletter-form button:hover { background: var(--sand-dark); }

/* ─── Footer ────────────────────────────────────────────── */
.site-footer { background: var(--slate); color: rgba(255,255,255,.75); }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { padding-right: 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-mark { background: var(--forest); }
.footer-logo .logo-text { color: var(--white); }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--forest); color: var(--white); }
.footer-col h5 { color: var(--white); font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: .83rem; color: rgba(255,255,255,.6); }
.footer-contact-item a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }
.footer-badges { display: flex; align-items: center; gap: 12px; }
.payment-badge {
  height: 24px;
  background: rgba(255,255,255,.12);
  border-radius: 4px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
}

/* ─── Cookie Banner ─────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--slate);
  color: rgba(255,255,255,.85);
  padding: 16px 0;
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-text { font-size: .85rem; flex: 1; }
.cookie-text a { color: var(--forest-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ─── Tags / Badges ─────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.badge-forest { background: rgba(46,125,50,.12); color: var(--forest); }
.badge-olive  { background: rgba(107,142,35,.12); color: var(--olive); }
.badge-slate  { background: rgba(51,65,85,.1);    color: var(--slate); }
.badge-sand   { background: var(--sand);           color: var(--slate); }

/* ─── Info boxes ────────────────────────────────────────── */
.info-box {
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .88rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.info-box-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.info-box.info   { background: #EEF2FF; color: #3730A3; }
.info-box.warning{ background: #FFFBEB; color: #92400E; }
.info-box.success{ background: #ECFDF5; color: #065F46; }

/* ─── Policy / Legal pages ──────────────────────────────── */
.policy-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.policy-nav {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: sticky;
  top: 100px;
}
.policy-nav h5 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-light); margin-bottom: 12px; }
.policy-nav a { display: block; padding: 7px 10px; font-size: .85rem; color: var(--slate-light); border-radius: var(--radius); transition: var(--transition); }
.policy-nav a:hover, .policy-nav a.active { color: var(--forest); background: rgba(46,125,50,.08); font-weight: 500; }
.policy-content h2 { font-size: 1.35rem; color: var(--slate); margin: 36px 0 12px; font-family: var(--font-body); font-weight: 700; }
.policy-content h3 { font-size: 1.05rem; color: var(--slate); margin: 24px 0 10px; font-weight: 600; }
.policy-content p, .policy-content li { font-size: .9rem; color: var(--slate-light); line-height: 1.75; }
.policy-content ul, .policy-content ol { padding-left: 20px; margin-bottom: 16px; }
.policy-content li { margin-bottom: 6px; }
.policy-content table { width: 100%; border-collapse: collapse; font-size: .85rem; margin-bottom: 24px; }
.policy-content table th, .policy-content table td { padding: 10px 14px; border: 1px solid var(--gray-mid); text-align: left; }
.policy-content table th { background: var(--gray-light); font-weight: 600; color: var(--slate); }
.policy-content table td { color: var(--slate-light); }

/* ─── Page header ───────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
  color: var(--white);
  padding: 56px 0;
}
.page-header h1 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,.8); font-size: 1rem; margin: 0; }

/* ─── Empty / Placeholder States ───────────────────────── */
.empty-state { text-align: center; padding: 80px 40px; }
.empty-state-icon { font-size: 4rem; margin-bottom: 20px; color: var(--gray-text); }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--slate-light); max-width: 400px; margin: 0 auto 24px; }

/* ─── Tooltips ──────────────────────────────────────────── */
.tooltip { position: relative; }
.tooltip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--slate);
  color: var(--white);
  font-size: .72rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.tooltip:hover::after { opacity: 1; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
  .catalog-layout { grid-template-columns: 220px 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
  .feature-banner { grid-template-columns: 1fr; padding: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-hero { padding: 48px 32px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .header-search { display: none; }
  .menu-toggle { display: block; }
  .site-nav { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 480px; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .header-actions .action-btn span { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}

/* auto-fix missing classes */
.footer-col h5,.footer-col .footer-heading{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;margin-bottom:14px;}

/* auto-fix: R13 footer 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: .6;
}
.footer-col ul { padding: 0; list-style: none; }
.footer-col li { margin-bottom: 7px; }
.footer-brand .logo-text,
.footer-brand .site-logo__name,
.footer-brand .footer-logo-name { color: #fff; }
.footer-brand .logo-icon,
.footer-brand .site-logo__icon { background: rgba(255,255,255,.12); }
