/* ============================================================
   PETLORIA — Marketplace de Mascotas | Argentina
   styles.css
   ============================================================ */

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

/* ─── CSS VARIABLES ─────────────────────────────────────── */
:root {
  /* ── Core palette ── */
  --white:         #FFFFFF;
  --green:         #16A34A;
  --green-dark:    #0f7a34;
  --green-light:   #dcfce7;
  --blue:          #38BDF8;
  --blue-dark:     #0ea5e9;
  --slate:         #334155;
  --slate-light:   #64748b;
  --sand:          #F5EFE6;
  --sand-dark:     #c4a882;
  --gray-light:    #F8FAFC;
  --gray-mid:      #e2e8f0;
  --gray-border:   #cbd5e1;
  --text-main:     #1e293b;
  --text-muted:    #64748b;

  /* ── Aliases used across pages ── */
  --sky:           #38BDF8;
  --sky-dark:      #0ea5e9;
  --sky-light:     #e0f2fe;
  --sky-blue:      #e0f2fe;
  --gray-bg:       #F8FAFC;
  --border:        #e2e8f0;
  --text-primary:  #1e293b;
  --text-secondary:#334155;

  /* ── Radii ── */
  --radius:        8px;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  /* ── Shadows ── */
  --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,.12);
  --shadow-xl:     0 16px 48px rgba(0,0,0,.16);

  /* ── Transitions & fonts ── */
  --transition:    all .22s ease;
  --font-heading:  'Poppins', sans-serif;
  --font-body:     'Inter', sans-serif;
  --nav-h:         136px;
}

/* ─── 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(--text-main);
  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, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-heading); line-height: 1.2; color: var(--slate); }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { line-height: 1.7; color: var(--text-muted); }
.text-green { color: var(--green); }
.text-blue  { color: var(--blue-dark); }
.text-slate { color: var(--slate); }
.text-muted { color: var(--text-muted); }

/* ─── LAYOUT ────────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.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-col { display: flex; flex-direction: column; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(22,163,74,.35); }
.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-secondary:hover { background: var(--green); color: var(--white); }
.btn-blue {
  background: var(--blue-dark);
  color: var(--white);
  border: 2px solid var(--blue-dark);
}
.btn-blue:hover { background: #0284c7; border-color: #0284c7; transform: translateY(-1px); }
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-ghost { color: var(--slate); padding: 8px 12px; }
.btn-ghost:hover { background: var(--gray-light); border-radius: var(--radius-sm); }

/* ─── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-body { padding: 24px; }
.card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-img-sq { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* ─── BADGE / TAG ────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.badge-green  { background: var(--green-light); color: var(--green-dark); }
.badge-blue   { background: #e0f2fe; color: var(--blue-dark); }
.badge-sand   { background: var(--sand); color: var(--slate); }
.badge-gray   { background: var(--gray-mid); color: var(--slate-light); }

/* ─── SECTION HEADERS ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.section-divider { width: 48px; height: 3px; background: var(--green); border-radius: 2px; margin: 16px auto 0; }

/* ─── NAVIGATION / HEADER ────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
}
.header-top {
  background: var(--slate);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: 7px 0;
}
.header-top .container { display: flex; align-items: center; justify-content: space-between; }
.header-top a { color: rgba(255,255,255,.75); transition: var(--transition); }
.header-top a:hover { color: var(--white); }
.header-top-links { display: flex; gap: 20px; align-items: center; }
.header-main { padding: 14px 0; }
.header-main .container { display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--green); flex-shrink: 0; }
.logo span { color: var(--slate); }
.logo-paw { font-size: 1.6rem; }
.search-bar { flex: 1; display: flex; align-items: center; background: var(--gray-light); border: 2px solid var(--gray-mid); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.search-bar:focus-within { border-color: var(--green); background: var(--white); }
.search-bar input { flex: 1; padding: 10px 16px; border: none; background: transparent; font-size: .95rem; outline: none; }
.search-bar button { padding: 10px 18px; background: var(--green); color: var(--white); font-size: .95rem; transition: var(--transition); }
.search-bar button:hover { background: var(--green-dark); }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: .72rem;
  font-weight: 500;
  color: var(--slate);
  transition: var(--transition);
  position: relative;
}
.action-btn svg { width: 22px; height: 22px; }
.action-btn:hover { background: var(--gray-light); color: var(--green); }
.action-btn .badge-count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--green);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-main { background: var(--sand); border-bottom: 1px solid rgba(0,0,0,.06); }
.nav-main .container { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--slate);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--green); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--green);
  border-radius: 2px 2px 0 0;
}
.dropdown {
  position: absolute;
  top: 100%; left: 0;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--slate);
  transition: var(--transition);
}
.dropdown a:hover { background: var(--gray-light); color: var(--green); }
.dropdown-icon { font-size: 1.1rem; }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--slate); cursor: pointer; padding: 8px; }

/* ─── BREADCRUMBS ────────────────────────────────────────── */
.breadcrumbs { padding: 14px 0; background: var(--gray-light); border-bottom: 1px solid var(--gray-mid); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: .82rem; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li:not(:last-child)::after { content: '›'; color: var(--gray-border); }
.breadcrumbs a { color: var(--text-muted); transition: var(--transition); }
.breadcrumbs a:hover { color: var(--green); }
.breadcrumbs .current { color: var(--slate); font-weight: 500; }

/* ─── HERO SECTION ───────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(30,41,59,.72) 0%, rgba(30,41,59,.35) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: var(--white);
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 32px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── CATEGORY GRID ──────────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.cat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--green); }
.cat-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.cat-card-body { padding: 14px 12px; }
.cat-card-body h3 { font-size: .92rem; color: var(--slate); margin-bottom: 4px; }
.cat-card-body p { font-size: .78rem; color: var(--text-muted); }

/* ─── PRODUCT CARDS ──────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-actions-overlay {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}
.product-card:hover .product-actions-overlay { opacity: 1; transform: translateX(0); }
.overlay-btn {
  width: 36px; height: 36px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.overlay-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.product-info { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: .75rem; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.product-name { font-size: .95rem; font-weight: 600; color: var(--slate); margin-bottom: 8px; line-height: 1.3; flex: 1; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { color: #f59e0b; font-size: .85rem; }
.rating-count { font-size: .75rem; color: var(--text-muted); }
.product-price-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 12px; }
.price-current { font-size: 1.15rem; font-weight: 700; color: var(--green); }
.price-old { font-size: .85rem; color: var(--text-muted); text-decoration: line-through; }
.price-discount { font-size: .78rem; font-weight: 700; color: #dc2626; background: #fee2e2; padding: 2px 7px; border-radius: 999px; }
.product-card .btn-primary { margin-top: auto; font-size: .85rem; padding: 10px 16px; border-radius: var(--radius-sm); justify-content: center; }

/* ─── FILTER SIDEBAR ─────────────────────────────────────── */
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.filter-sidebar { position: sticky; top: 90px; }
.filter-panel {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.filter-header { padding: 16px 20px; background: var(--slate); color: var(--white); display: flex; align-items: center; justify-content: space-between; }
.filter-header h3 { font-size: .95rem; color: var(--white); }
.filter-section { padding: 18px 20px; border-bottom: 1px solid var(--gray-mid); }
.filter-section:last-child { border-bottom: none; }
.filter-section h4 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--slate-light); margin-bottom: 14px; }
.filter-option { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; cursor: pointer; }
.filter-option input[type=checkbox], .filter-option input[type=radio] { accent-color: var(--green); width: 15px; height: 15px; cursor: pointer; }
.filter-option label { font-size: .88rem; color: var(--slate); cursor: pointer; flex: 1; }
.filter-option .count { font-size: .75rem; color: var(--text-muted); }
.price-range { display: flex; flex-direction: column; gap: 10px; }
.price-range input[type=range] { accent-color: var(--green); width: 100%; }
.price-inputs { display: flex; gap: 8px; }
.price-inputs input { flex: 1; padding: 7px 10px; border: 1px solid var(--gray-border); border-radius: var(--radius-sm); font-size: .82rem; text-align: center; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; gap: 16px; }
.toolbar-results { font-size: .9rem; color: var(--text-muted); }
.toolbar-sort { display: flex; align-items: center; gap: 8px; }
.toolbar-sort select { padding: 8px 14px; border: 1px solid var(--gray-border); border-radius: var(--radius-sm); font-size: .88rem; color: var(--slate); background: var(--white); cursor: pointer; }
.toolbar-view { display: flex; gap: 4px; }
.view-btn { width: 34px; height: 34px; border: 1px solid var(--gray-border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--text-muted); transition: var(--transition); cursor: pointer; }
.view-btn.active, .view-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ─── COMPARISON TABLE ───────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.compare-table th, .compare-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--gray-mid); font-size: .9rem; }
.compare-table th { background: var(--sand); font-weight: 700; color: var(--slate); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.compare-table tr:nth-child(even) td { background: var(--gray-light); }
.compare-table td:first-child { font-weight: 600; color: var(--slate); width: 180px; }
.compare-check { color: var(--green); font-size: 1.1rem; }
.compare-x { color: #ef4444; font-size: 1.1rem; }

/* ─── BLOG ───────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-mid); overflow: hidden; transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-meta span { font-size: .78rem; color: var(--text-muted); }
.blog-card-body h3 { margin-bottom: 10px; font-size: 1.05rem; }
.blog-card-body h3 a { color: var(--slate); transition: var(--transition); }
.blog-card-body h3 a:hover { color: var(--green); }
.blog-card-body p { font-size: .88rem; margin-bottom: 16px; }
.read-more { font-size: .85rem; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 4px; transition: var(--transition); }
.read-more:hover { gap: 8px; }
.article-content h2 { margin: 36px 0 16px; }
.article-content h3 { margin: 28px 0 12px; }
.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 20px; }
.article-content li { margin-bottom: 8px; color: var(--text-muted); line-height: 1.7; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content img { border-radius: var(--radius-md); margin: 28px 0; width: 100%; }
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.article-sidebar { position: sticky; top: 90px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
.sidebar-widget h4 { color: var(--slate); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--green); }
.sidebar-widget ul li { border-bottom: 1px solid var(--gray-mid); }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { display: block; padding: 10px 0; font-size: .88rem; color: var(--slate); transition: var(--transition); }
.sidebar-widget ul li a:hover { color: var(--green); padding-left: 6px; }

/* ─── STATS STRIP ────────────────────────────────────────── */
.stats-strip { background: var(--green); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item .stat-num { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-item .stat-label { font-size: .88rem; color: rgba(255,255,255,.8); margin-top: 6px; }

/* ─── TRUST / USP STRIP ──────────────────────────────────── */
.usp-strip { background: var(--sand); padding: 40px 0; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.usp-item { display: flex; align-items: flex-start; gap: 14px; }
.usp-icon { width: 48px; height: 48px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; color: var(--green-dark); }
.usp-text h4 { font-size: .95rem; color: var(--slate); margin-bottom: 4px; }
.usp-text p { font-size: .82rem; }

/* ─── PRODUCT DETAIL ─────────────────────────────────────── */
.product-detail-layout { display: grid; grid-template-columns: 1fr 480px; gap: 48px; }
.product-gallery { position: sticky; top: 90px; }
.gallery-main img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 1; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.gallery-thumb { width: 72px; height: 72px; border-radius: var(--radius-sm); border: 2px solid var(--gray-mid); overflow: hidden; cursor: pointer; transition: var(--transition); }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--green); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info { padding: 8px 0; }
.product-detail-info .price-block { margin: 20px 0; padding: 20px; background: var(--gray-light); border-radius: var(--radius-md); }
.product-detail-info .price-current { font-size: 2rem; }
.product-detail-info .stock { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--green); margin-bottom: 20px; }
.product-detail-info .stock::before { content: ''; width: 8px; height: 8px; background: var(--green); border-radius: 50%; }
.quantity-selector { display: flex; align-items: center; gap: 0; border: 1px solid var(--gray-border); border-radius: var(--radius-md); overflow: hidden; width: fit-content; margin-bottom: 16px; }
.qty-btn { width: 40px; height: 44px; background: var(--gray-light); font-size: 1.2rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); cursor: pointer; }
.qty-btn:hover { background: var(--green); color: var(--white); }
.qty-input { width: 56px; height: 44px; border: none; border-left: 1px solid var(--gray-border); border-right: 1px solid var(--gray-border); text-align: center; font-size: 1rem; font-weight: 600; }
.product-tabs { margin-top: 40px; }
.tab-list { display: flex; border-bottom: 2px solid var(--gray-mid); margin-bottom: 28px; }
.tab-btn { padding: 12px 20px; font-size: .9rem; font-weight: 600; color: var(--text-muted); transition: var(--transition); border-bottom: 2px solid transparent; margin-bottom: -2px; }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }
.tab-btn:hover { color: var(--green); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── CART ───────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { padding: 12px 16px; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); font-weight: 700; border-bottom: 2px solid var(--gray-mid); text-align: left; }
.cart-table td { padding: 20px 16px; border-bottom: 1px solid var(--gray-mid); vertical-align: middle; font-size: .9rem; }
.cart-item-info { display: flex; align-items: center; gap: 14px; }
.cart-item-info img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--gray-mid); }
.cart-item-info div h4 { font-size: .92rem; font-weight: 600; color: var(--slate); }
.cart-item-info div p { font-size: .78rem; color: var(--text-muted); }
.cart-summary { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 90px; }
.cart-summary h3 { margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-mid); font-size: .9rem; }
.summary-row:last-child { border-bottom: none; font-size: 1.05rem; font-weight: 700; }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 440px; gap: 56px; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--slate); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text-main);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.success-msg {
  display: none;
  background: var(--green-light);
  border: 1px solid var(--green);
  color: var(--green-dark);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 16px;
  font-weight: 600;
  text-align: center;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.info-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); padding: 24px; display: flex; align-items: flex-start; gap: 16px; }
.info-icon { width: 48px; height: 48px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.info-text h4 { font-size: .95rem; margin-bottom: 4px; color: var(--slate); }
.info-text p, .info-text a { font-size: .88rem; color: var(--text-muted); }
.info-text a:hover { color: var(--green); }

/* ─── POLICY PAGES ───────────────────────────────────────── */
.policy-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.policy-nav { position: sticky; top: 90px; }
.policy-nav ul { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); overflow: hidden; }
.policy-nav ul li a {
  display: block;
  padding: 12px 18px;
  font-size: .86rem;
  color: var(--slate);
  border-bottom: 1px solid var(--gray-mid);
  transition: var(--transition);
}
.policy-nav ul li:last-child a { border-bottom: none; }
.policy-nav ul li a:hover, .policy-nav ul li a.active { background: var(--green-light); color: var(--green-dark); padding-left: 24px; }
.policy-content h1 { margin-bottom: 8px; }
.policy-content .last-updated { font-size: .82rem; color: var(--text-muted); margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-mid); }
.policy-content h2 { margin: 36px 0 14px; font-size: 1.2rem; }
.policy-content h3 { margin: 24px 0 10px; font-size: 1rem; }
.policy-content p { margin-bottom: 16px; }
.policy-content ul, .policy-content ol { padding-left: 24px; margin-bottom: 16px; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { margin-bottom: 8px; color: var(--text-muted); font-size: .92rem; line-height: 1.7; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .88rem; }
.policy-content table th { background: var(--sand); padding: 12px 14px; text-align: left; font-weight: 700; color: var(--slate); border: 1px solid var(--gray-mid); }
.policy-content table td { padding: 11px 14px; border: 1px solid var(--gray-mid); color: var(--text-muted); }
.policy-content table tr:nth-child(even) td { background: var(--gray-light); }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-item { border: 1px solid var(--gray-mid); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: .95rem; color: var(--slate); transition: var(--transition); background: var(--white); }
.faq-question:hover { background: var(--gray-light); }
.faq-question.open { background: var(--green-light); color: var(--green-dark); }
.faq-question .arrow { font-size: 1.1rem; transition: transform .3s ease; }
.faq-question.open .arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 22px 18px; font-size: .9rem; color: var(--text-muted); line-height: 1.7; }
.faq-answer.open { display: block; }

/* ─── NOSOTROS ───────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid var(--green); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-item { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.value-icon { font-size: 2rem; margin-bottom: 12px; }

/* ─── CHECKOUT ───────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }
.checkout-step { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; }
.checkout-step h3 { margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-mid); }
.step-header { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.step-num { width: 32px; height: 32px; background: var(--green); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; flex-shrink: 0; }

/* ─── PAGINATION ─────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 48px; }
.page-btn { width: 38px; height: 38px; border: 1px solid var(--gray-border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: .88rem; font-weight: 600; color: var(--slate); transition: var(--transition); cursor: pointer; }
.page-btn:hover, .page-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }
.page-btn.prev, .page-btn.next { width: auto; padding: 0 14px; font-size: .82rem; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--slate); color: rgba(255,255,255,.75); margin-top: 80px; }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo span { color: rgba(255,255,255,.6); }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); color: rgba(255,255,255,.75); }
.social-link:hover { background: var(--green); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .86rem; color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { font-size: .8rem; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-legal-links a:hover { color: var(--white); }
.footer-contact { font-size: .82rem; }
.footer-contact li { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-contact li span { color: var(--green); font-size: .95rem; }

/* ─── NOTICE BARS ────────────────────────────────────────── */
.notice-bar { background: var(--blue-dark); color: var(--white); text-align: center; padding: 10px 0; font-size: .85rem; font-weight: 500; }
.notice-bar a { color: var(--white); text-decoration: underline; }

/* ─── EYEBROW / SECTION LABELS ───────────────────────────── */
.eyebrow {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

/* ─── RESPONSIVE GRID ALIASES ────────────────────────────── */
.two-col-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.three-col-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.four-col-grid  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.brand-grid     { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ─── BREADCRUMB BAR ─────────────────────────────────────── */
.breadcrumb-bar { background: var(--gray-light); border-bottom: 1px solid var(--gray-mid); padding: 12px 0; font-size: .82rem; }
.breadcrumb     { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; list-style: none; padding: 0; }
.breadcrumb a   { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb span:last-child { color: var(--slate); font-weight: 500; }

/* ─── NEWSLETTER WRAP (footer) ───────────────────────────── */
.newsletter-wrap { display: grid; grid-template-columns: 1fr 480px; gap: 40px; align-items: center; }

/* ─── PAGE HERO VARIANT ──────────────────────────────────── */
.page-hero { padding: 64px 0; }
.page-hero h1 { margin-bottom: 16px; }

/* ─── TEXT COLOUR HELPERS ─────────────────────────────────── */
.text-secondary { color: var(--text-secondary); }
.text-primary   { color: var(--text-primary); }
.text-sky       { color: var(--sky-dark); }

/* ─── BTN WHITE ──────────────────────────────────────────── */
.btn-white { background: var(--white); color: var(--green); border: 2px solid var(--white); }
.btn-white:hover { background: var(--green-light); color: var(--green-dark); border-color: var(--green-light); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-ghost { background: transparent; color: var(--slate); border: 1px solid var(--gray-border); }
.btn-ghost:hover { background: var(--gray-light); }

/* ─── UTILITY ────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.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-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.w-full { width: 100%; }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.bg-sand  { background: var(--sand); }
.bg-light { background: var(--gray-light); }
.bg-green { background: var(--green); }
.hidden { display: none; }
.block { display: block; }
.divider { height: 1px; background: var(--gray-mid); margin: 32px 0; }
.highlight-box { background: var(--green-light); border-left: 4px solid var(--green); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; margin: 24px 0; }
.highlight-box p { color: var(--green-dark); font-size: .9rem; }
.tag-list { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { display: inline-block; padding: 4px 12px; background: var(--gray-light); border: 1px solid var(--gray-mid); border-radius: 999px; font-size: .78rem; color: var(--slate); transition: var(--transition); cursor: pointer; }
.tag:hover { background: var(--green-light); border-color: var(--green); color: var(--green-dark); }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr:nth-child(even) td { background: var(--gray-light); }
.spec-table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-mid); font-size: .88rem; }
.spec-table td:first-child { font-weight: 600; color: var(--slate); width: 45%; }
.spec-table td:last-child { color: var(--text-muted); }
.reviews-list { display: flex; flex-direction: column; gap: 20px; }
.review-item { background: var(--gray-light); border-radius: var(--radius-md); padding: 20px; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.reviewer-name { font-weight: 600; font-size: .9rem; color: var(--slate); }
.review-date { font-size: .78rem; color: var(--text-muted); }
.review-text { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.related-section { margin-top: 64px; }
.chip-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.chip { padding: 7px 16px; border: 1px solid var(--gray-border); border-radius: 999px; font-size: .82rem; font-weight: 500; color: var(--slate); cursor: pointer; transition: var(--transition); background: var(--white); }
.chip:hover, .chip.active { background: var(--green); color: var(--white); border-color: var(--green); }
.promo-banner { background: linear-gradient(135deg, var(--green) 0%, var(--blue-dark) 100%); color: var(--white); border-radius: var(--radius-lg); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; overflow: hidden; position: relative; }
.promo-banner h2 { color: var(--white); margin-bottom: 12px; }
.promo-banner p { color: rgba(255,255,255,.85); max-width: 460px; }
.promo-banner .btn-white { background: var(--white); color: var(--green); border: 2px solid var(--white); font-weight: 700; }
.promo-banner .btn-white:hover { background: var(--sand); border-color: var(--sand); }
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--slate);
  color: rgba(255,255,255,.9);
  padding: 18px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-bar p { font-size: .85rem; flex: 1; }
.cookie-bar a { color: var(--blue); text-decoration: underline; }
.cookie-bar .cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.infobox { background: var(--sand); border-radius: var(--radius-lg); padding: 32px; border: 1px solid rgba(0,0,0,.06); }
.infobox h3 { margin-bottom: 12px; }
.page-header { background: var(--slate); color: var(--white); padding: 52px 0; }
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,.75); max-width: 580px; font-size: 1.05rem; }
.page-header .breadcrumbs { background: transparent; border: none; padding: 0; margin-top: 20px; }
.page-header .breadcrumbs a { color: rgba(255,255,255,.65); }
.page-header .breadcrumbs .current { color: rgba(255,255,255,.9); }
.page-header .breadcrumbs li::after { color: rgba(255,255,255,.4); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .product-detail-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .checkout-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .two-col-grid { grid-template-columns: 1fr; }
  .newsletter-wrap { grid-template-columns: 1fr; text-align: center; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .four-col-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; margin-bottom: 28px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-banner { flex-direction: column; text-align: center; }
  .three-col-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
  .header-top { display: none; }
  .nav-main { display: none; }
  .mobile-menu-btn { display: flex; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 440px; }
  .section { padding: 52px 0; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cookie-bar { flex-direction: column; text-align: center; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .three-col-grid { grid-template-columns: 1fr; }
  .four-col-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr 1fr !important; }
  .newsletter-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr !important; }
  .brand-grid { grid-template-columns: 1fr; }
  .four-col-grid { grid-template-columns: 1fr; }
}
/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.mobile-nav-panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 300px;
  background: var(--white);
  overflow-y: auto;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform .3s ease;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-panel .nav-close { display: flex; justify-content: flex-end; margin-bottom: 20px; font-size: 1.5rem; color: var(--slate); cursor: pointer; }
.mobile-nav-panel a { display: block; padding: 12px 0; font-size: .95rem; font-weight: 500; color: var(--slate); border-bottom: 1px solid var(--gray-mid); transition: var(--transition); }
.mobile-nav-panel a:hover { color: var(--green); padding-left: 6px; }

/* auto-fix missing classes */
.footer-brand .logo-text,.footer-brand .site-logo__name{color:#fff;}
.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); }

.footer-brand { }
