/* ============================================================
   Traviora — Premium Travel & Adventure Marketplace
   Main Stylesheet | traviora.digital
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --white:        #FFFFFF;
  --ocean:        #0284C7;
  --ocean-dark:   #0369A1;
  --ocean-light:  #E0F2FE;
  --sand:         #E9D8A6;
  --sand-dark:    #D4BC85;
  --slate:        #334155;
  --slate-light:  #64748B;
  --green:        #3F7D58;
  --green-light:  #DCFCE7;
  --gray:         #F8FAFC;
  --gray-mid:     #E2E8F0;
  --gray-dark:    #CBD5E1;
  --text-dark:    #0F172A;
  --text-mid:     #475569;
  --text-light:   #94A3B8;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.13);
  --transition:   .25s ease;
  --font-main:    'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

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

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h4, h5, h6 { font-family: var(--font-main); font-weight: 600; line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
p  { color: var(--text-mid); line-height: 1.75; }

/* ── Utilities ──────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.text-center { text-align: center; }
.text-ocean  { color: var(--ocean); }
.text-green  { color: var(--green); }
.text-slate  { color: var(--slate); }
.text-light  { color: var(--text-light); }
.bg-gray     { background: var(--gray); }
.bg-slate    { background: var(--slate); }
.bg-ocean    { background: var(--ocean); }
.fw-600      { font-weight: 600; }
.fw-700      { font-weight: 700; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Grid helpers ───────────────────────────────────────────── */
.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; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.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; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: 2px solid transparent; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ocean); color: var(--white);
  border-color: var(--ocean);
}
.btn-primary:hover { background: var(--ocean-dark); border-color: var(--ocean-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(2,132,199,.30); }
.btn-secondary {
  background: transparent; color: var(--ocean); border-color: var(--ocean);
}
.btn-secondary:hover { background: var(--ocean); color: var(--white); transform: translateY(-1px); }
.btn-slate { background: var(--slate); color: var(--white); border-color: var(--slate); }
.btn-slate:hover { background: var(--text-dark); border-color: var(--text-dark); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: #346649; border-color: #346649; }
.btn-sm { padding: 8px 18px; font-size: .875rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-ghost { background: transparent; color: var(--slate); border-color: var(--gray-mid); }
.btn-ghost:hover { background: var(--gray); border-color: var(--gray-dark); }
.btn-icon { padding: 10px; border-radius: 50%; }

/* ── Tags & Badges ─────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 20px; font-size: .75rem; font-weight: 600;
}
.tag-ocean { background: var(--ocean-light); color: var(--ocean-dark); }
.tag-green { background: var(--green-light); color: var(--green); }
.tag-sand  { background: var(--sand); color: var(--slate); }
.tag-gray  { background: var(--gray-mid); color: var(--text-mid); }
.badge-new  { background: var(--ocean); color: #fff; font-size: .7rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.badge-sale { background: #EF4444; color: #fff; font-size: .7rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.badge-best { background: var(--green); color: #fff; font-size: .7rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; }

/* ── Notification bar ───────────────────────────────────────── */
.notify-bar {
  background: var(--slate); color: var(--white);
  text-align: center; padding: 10px 24px; font-size: .85rem;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.notify-bar a { color: var(--sand); font-weight: 600; }
.notify-bar a:hover { text-decoration: underline; }

/* ── 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;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 38px; height: 38px; background: var(--ocean);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { color: white; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--slate); line-height: 1; }
.logo-text span { color: var(--ocean); }
.header-search {
  flex: 1; max-width: 520px;
  display: flex; align-items: center;
  background: var(--gray); border: 2px solid var(--gray-mid);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color var(--transition);
}
.header-search:focus-within { border-color: var(--ocean); }
.header-search input {
  flex: 1; padding: 10px 16px; background: transparent; border: none; font-size: .9rem;
}
.header-search button {
  padding: 10px 18px; background: var(--ocean); color: white; border: none;
  cursor: pointer; transition: background var(--transition);
}
.header-search button:hover { background: var(--ocean-dark); }
.header-actions { display: flex; align-items: center; gap: 6px; }
.header-action-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  color: var(--slate); font-size: .875rem; font-weight: 500;
  background: transparent; border: none; cursor: pointer;
  transition: background var(--transition);
  position: relative;
}
.header-action-btn:hover { background: var(--gray); color: var(--ocean); }
.header-action-btn .badge-count {
  position: absolute; top: 2px; right: 6px;
  background: var(--ocean); color: white; font-size: .65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  background: var(--white); border-bottom: 1px solid var(--gray-mid);
}
.nav-inner {
  display: flex; align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 14px 16px; font-size: .9rem; font-weight: 500; color: var(--slate);
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--ocean); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--ocean); border-radius: 2px 2px 0 0;
}
.nav-dropdown {
  position: absolute; top: 100%; left: 0;
  background: white; border: 1px solid var(--gray-mid); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); min-width: 220px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition); z-index: 500;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: .875rem; color: var(--text-mid);
  transition: all var(--transition);
}
.nav-dropdown a:hover { background: var(--gray); color: var(--ocean); padding-left: 28px; }
.nav-dropdown .dd-cat-icon { width: 20px; height: 20px; color: var(--ocean); }

/* Mega menu */
.mega-menu {
  position: absolute; top: 100%; left: -100px;
  background: white; border: 1px solid var(--gray-mid); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); width: 680px; padding: 28px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition); z-index: 500;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-col h5 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 12px; }
.mega-col a {
  display: block; padding: 6px 0; font-size: .875rem; color: var(--text-mid);
  border-bottom: 1px solid transparent;
}
.mega-col a:hover { color: var(--ocean); border-bottom-color: var(--ocean-light); }

/* Mobile toggle */
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 6px;
  color: var(--slate);
}
.mobile-nav {
  display: none; flex-direction: column; background: white;
  border-bottom: 1px solid var(--gray-mid); padding: 16px 24px; gap: 4px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a { padding: 10px 0; font-size: .95rem; color: var(--slate); border-bottom: 1px solid var(--gray-mid); }
.mobile-nav a:hover { color: var(--ocean); }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  background: var(--gray); border-bottom: 1px solid var(--gray-mid);
  padding: 12px 0;
}
.breadcrumb-inner {
  display: flex; align-items: center; gap: 8px;
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  font-size: .8rem; color: var(--text-light);
  flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--text-mid); transition: color var(--transition); }
.breadcrumb-inner a:hover { color: var(--ocean); }
.breadcrumb-inner .sep { color: var(--gray-dark); }
.breadcrumb-inner .current { color: var(--slate); font-weight: 500; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--slate) 0%, #1E3A5F 100%);
  min-height: 580px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%;
  opacity: .35;
}
.hero-content {
  position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px;
}
.hero-text {}
.hero-eyebrow {
  display: inline-block; background: rgba(226,212,166,.2); color: var(--sand);
  padding: 5px 14px; border-radius: 20px; font-size: .8rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-size: 1.6rem; font-weight: 800; color: var(--white); }
.hero-stat span { font-size: .8rem; color: rgba(255,255,255,.6); }
.hero-image-wrap { display: flex; justify-content: center; }
.hero-image-wrap img { width: 100%; max-width: 520px; border-radius: var(--radius-lg); object-fit: cover; height: 420px; box-shadow: var(--shadow-lg); }

/* ── Category Showcase ──────────────────────────────────────── */
.cat-showcase { padding: 72px 0; }
.cat-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; }
.cat-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; group: true;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cat-card:hover img { transform: scale(1.04); }
.cat-card-main { height: 480px; }
.cat-card-sub  { height: 225px; }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.7) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.cat-card-overlay h3 { color: white; margin-bottom: 6px; }
.cat-card-overlay p  { color: rgba(255,255,255,.8); font-size: .875rem; margin-bottom: 16px; }
.cat-side { display: flex; flex-direction: column; gap: 20px; }

/* ── Section Heading ────────────────────────────────────────── */
.section-heading { margin-bottom: 48px; }
.section-heading.text-center .section-label { margin-left: auto; margin-right: auto; }
.section-label {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
  width: fit-content;
}
.section-label::before {
  content: ''; width: 28px; height: 3px; background: var(--ocean); border-radius: 2px;
}
.section-label span { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ocean); }
.section-heading p { color: var(--text-mid); font-size: 1.05rem; max-width: 600px; margin-top: 12px; }
.section-heading.text-center p { margin-left: auto; margin-right: auto; }

/* ── Product Card ───────────────────────────────────────────── */
.product-card {
  background: white; border-radius: var(--radius-md);
  border: 1px solid var(--gray-mid);
  overflow: hidden; transition: all var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--ocean-light); }
.product-card-img {
  position: relative; overflow: hidden; background: var(--gray);
  aspect-ratio: 4/3;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.product-card-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transform: translateX(8px); transition: all var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 36px; height: 36px; border-radius: 50%; background: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-mid);
  cursor: pointer; transition: all var(--transition); color: var(--text-mid);
}
.product-action-btn:hover { background: var(--ocean); color: white; border-color: var(--ocean); }
.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ocean); margin-bottom: 4px; }
.product-name { font-size: .95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
.product-name a:hover { color: var(--ocean); }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { display: flex; gap: 1px; }
.stars svg { width: 13px; height: 13px; }
.star-fill { color: #F59E0B; }
.star-empty { color: var(--gray-dark); }
.rating-count { font-size: .775rem; color: var(--text-light); }
.product-specs { margin-bottom: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.spec-chip { background: var(--gray); color: var(--text-mid); font-size: .73rem; padding: 3px 8px; border-radius: 4px; font-weight: 500; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; flex-wrap: wrap; gap: 8px; }
.price-group { display: flex; flex-direction: column; }
.price-original { font-size: .8rem; color: var(--text-light); text-decoration: line-through; }
.price-current { font-size: 1.2rem; font-weight: 700; color: var(--slate); }
.price-discount { font-size: .75rem; color: #10B981; font-weight: 600; }

/* ── Filter Sidebar ─────────────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.filter-sidebar { position: sticky; top: 90px; }
.filter-block {
  background: white; border: 1px solid var(--gray-mid); border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: 16px;
}
.filter-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; cursor: pointer; background: var(--gray);
  border-bottom: 1px solid var(--gray-mid);
}
.filter-header h5 { font-size: .875rem; font-weight: 700; color: var(--slate); }
.filter-body { padding: 16px 20px; }
.filter-option { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; cursor: pointer; }
.filter-option input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--ocean); cursor: pointer;
}
.filter-option label { font-size: .875rem; color: var(--text-mid); cursor: pointer; flex: 1; }
.filter-option .count { font-size: .75rem; color: var(--text-light); background: var(--gray); padding: 1px 6px; border-radius: 10px; }
.price-range-inputs { display: flex; gap: 8px; align-items: center; margin-top: 12px; }
.price-range-inputs input { flex: 1; padding: 8px 10px; border: 1px solid var(--gray-mid); border-radius: var(--radius-sm); font-size: .85rem; }
.price-range-inputs span { color: var(--text-light); font-size: .85rem; }
.range-slider { width: 100%; accent-color: var(--ocean); margin-top: 8px; }
.filter-actions { display: flex; gap: 8px; margin-top: 16px; }

/* ── Products toolbar ───────────────────────────────────────── */
.products-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding: 12px 16px; background: var(--gray);
  border-radius: var(--radius-sm); gap: 16px; flex-wrap: wrap;
}
.toolbar-left { display: flex; align-items: center; gap: 16px; }
.toolbar-count { font-size: .875rem; color: var(--text-mid); }
.toolbar-right { display: flex; align-items: center; gap: 12px; }
.toolbar-sort select {
  padding: 7px 12px; border: 1px solid var(--gray-mid); border-radius: var(--radius-sm);
  font-size: .875rem; background: white; color: var(--slate); cursor: pointer;
}
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  padding: 6px; border-radius: var(--radius-sm); border: 1px solid var(--gray-mid);
  background: white; cursor: pointer; color: var(--text-mid); transition: all var(--transition);
}
.view-btn.active, .view-btn:hover { background: var(--ocean); color: white; border-color: var(--ocean); }

/* ── Blog ────────────────────────────────────────────────────── */
.blog-card {
  background: white; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--gray-mid); transition: all var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--gray); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-date, .blog-read { font-size: .78rem; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card h3 a:hover { color: var(--ocean); }
.blog-card p { font-size: .875rem; flex: 1; }
.blog-card-footer { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--gray-mid); display: flex; align-items: center; justify-content: space-between; }

/* ── Article ─────────────────────────────────────────────────── */
.article-header { background: var(--slate); padding: 64px 0; }
.article-header h1 { color: white; }
.article-header .article-meta { display: flex; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
.article-header .meta-item { color: rgba(255,255,255,.7); font-size: .875rem; display: flex; align-items: center; gap: 6px; }
.article-hero-img { width: 100%; max-height: 500px; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 40px; }
.article-content { max-width: 780px; }
.article-content h2 { font-size: 1.6rem; margin: 36px 0 16px; }
.article-content h3 { font-size: 1.25rem; margin: 28px 0 12px; }
.article-content p  { margin-bottom: 18px; font-size: 1rem; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 18px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { color: var(--text-mid); line-height: 1.7; margin-bottom: 6px; }
.article-content blockquote {
  border-left: 4px solid var(--ocean); padding: 16px 24px;
  background: var(--ocean-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}
.article-content blockquote p { color: var(--slate); font-style: italic; margin: 0; }
.article-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.article-content th { background: var(--slate); color: white; padding: 12px 16px; text-align: left; font-size: .875rem; }
.article-content td { padding: 12px 16px; border-bottom: 1px solid var(--gray-mid); font-size: .875rem; color: var(--text-mid); }
.article-content tr:nth-child(even) td { background: var(--gray); }
.article-sidebar { position: sticky; top: 90px; }

/* ── Comparison Table ───────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { background: var(--slate); color: white; padding: 14px 20px; text-align: left; font-size: .875rem; }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-mid); font-size: .875rem; color: var(--text-mid); }
.compare-table tr:nth-child(even) td { background: var(--gray); }
.compare-table .feature-name { font-weight: 600; color: var(--slate); background: var(--gray-mid) !important; }
.compare-winner { color: var(--green); font-weight: 700; }
.compare-icon-yes { color: var(--green); }
.compare-icon-no  { color: #EF4444; }

/* ── Cart ─────────────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { padding: 12px 16px; background: var(--gray); text-align: left; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-mid); border-bottom: 2px solid var(--gray-mid); }
.cart-table td { padding: 18px 16px; border-bottom: 1px solid var(--gray-mid); vertical-align: middle; }
.cart-product { display: flex; align-items: center; gap: 16px; }
.cart-product-img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); background: var(--gray); }
.cart-product-info h5 { font-size: .9rem; font-weight: 600; margin-bottom: 4px; }
.cart-product-info p { font-size: .78rem; color: var(--text-light); }
.qty-control { display: flex; align-items: center; gap: 0; border: 1px solid var(--gray-mid); border-radius: var(--radius-sm); width: fit-content; }
.qty-btn { width: 32px; height: 32px; border: none; background: var(--gray); cursor: pointer; font-size: 1rem; font-weight: 600; transition: background var(--transition); }
.qty-btn:hover { background: var(--gray-mid); }
.qty-input { width: 44px; height: 32px; border: none; border-left: 1px solid var(--gray-mid); border-right: 1px solid var(--gray-mid); text-align: center; font-size: .875rem; font-weight: 600; }
.remove-btn { background: none; border: none; cursor: pointer; color: var(--text-light); transition: color var(--transition); }
.remove-btn:hover { color: #EF4444; }
.cart-summary { background: white; border: 1px solid var(--gray-mid); border-radius: var(--radius-md); padding: 28px; position: sticky; top: 90px; }
.cart-summary h4 { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-mid); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: .9rem; }
.summary-row.total { font-size: 1.1rem; font-weight: 700; padding-top: 16px; border-top: 2px solid var(--slate); margin-top: 16px; color: var(--slate); }
.coupon-form { display: flex; gap: 8px; margin-top: 20px; }
.coupon-form input { flex: 1; padding: 10px 12px; border: 1px solid var(--gray-mid); border-radius: var(--radius-sm); font-size: .875rem; }

/* ── Checkout ─────────────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.checkout-form-section { margin-bottom: 36px; }
.checkout-form-section h4 { margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--gray-mid); border-radius: var(--radius-sm);
  font-size: .9rem; transition: border-color var(--transition); background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(2,132,199,.1); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group .hint { font-size: .775rem; color: var(--text-light); margin-top: 4px; }
.form-group .error-msg { font-size: .775rem; color: #EF4444; margin-top: 4px; display: none; }
.form-group.has-error input { border-color: #EF4444; }
.form-group.has-error .error-msg { display: block; }
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-option { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border: 2px solid var(--gray-mid); border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition); }
.payment-option:has(input:checked) { border-color: var(--ocean); background: var(--ocean-light); }
.payment-option input[type="radio"] { accent-color: var(--ocean); }
.checkout-order-summary { background: white; border: 1px solid var(--gray-mid); border-radius: var(--radius-md); padding: 28px; position: sticky; top: 90px; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon { width: 48px; height: 48px; background: var(--ocean-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--ocean); }
.contact-form-wrap { background: white; border: 1px solid var(--gray-mid); border-radius: var(--radius-md); padding: 40px; box-shadow: var(--shadow-sm); }
.success-message { display: none; background: var(--green-light); border: 1px solid var(--green); color: var(--green); border-radius: var(--radius-sm); padding: 16px 20px; font-weight: 600; margin-top: 16px; align-items: center; gap: 10px; }
.success-message.show { display: flex; }

/* ── Info Cards ─────────────────────────────────────────────── */
.info-card {
  background: white; border-radius: var(--radius-md); padding: 32px;
  border: 1px solid var(--gray-mid); text-align: center;
  transition: all var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-card-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.info-card-icon.ocean { background: var(--ocean-light); color: var(--ocean); }
.info-card-icon.green { background: var(--green-light); color: var(--green); }
.info-card-icon.sand  { background: var(--sand); color: var(--slate); }
.info-card h4 { margin-bottom: 10px; }
.info-card p  { font-size: .875rem; }

/* ── Feature Strip ──────────────────────────────────────────── */
.feature-strip { background: var(--slate); padding: 28px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item { display: flex; align-items: center; gap: 16px; padding: 0 20px; border-right: 1px solid rgba(255,255,255,.1); }
.feature-item:last-child { border-right: none; }
.feature-item-icon { width: 44px; height: 44px; background: rgba(255,255,255,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--sand); flex-shrink: 0; }
.feature-item h5 { color: white; font-size: .9rem; margin-bottom: 2px; }
.feature-item p  { color: rgba(255,255,255,.6); font-size: .78rem; }

/* ── Tabs ────────────────────────────────────────────────────── */
.tabs-nav { display: flex; gap: 0; border-bottom: 2px solid var(--gray-mid); margin-bottom: 28px; overflow-x: auto; }
.tab-btn { padding: 12px 24px; font-size: .9rem; font-weight: 600; color: var(--text-mid); background: none; border: none; cursor: pointer; white-space: nowrap; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all var(--transition); }
.tab-btn.active, .tab-btn:hover { color: var(--ocean); border-bottom-color: var(--ocean); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ── Accordion ──────────────────────────────────────────────── */
.accordion-item { border: 1px solid var(--gray-mid); border-radius: var(--radius-sm); margin-bottom: 8px; overflow: hidden; }
.accordion-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; cursor: pointer; background: white; transition: background var(--transition); }
.accordion-header:hover { background: var(--gray); }
.accordion-header h5 { font-size: .9rem; }
.accordion-icon { transition: transform var(--transition); color: var(--text-mid); }
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-body { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.accordion-item.open .accordion-body { padding: 16px 20px; max-height: 1000px; }
.accordion-body p { font-size: .875rem; }

/* ── Spec Table ─────────────────────────────────────────────── */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th { background: var(--slate); color: white; padding: 12px 16px; text-align: left; font-size: .8rem; font-weight: 600; }
.spec-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-mid); font-size: .875rem; }
.spec-table tr:nth-child(even) td { background: var(--gray); }
.spec-table td:first-child { font-weight: 600; color: var(--slate); width: 40%; }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 48px; }
.page-btn { min-width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); border: 1px solid var(--gray-mid); background: white; cursor: pointer; font-size: .875rem; font-weight: 500; color: var(--text-mid); transition: all var(--transition); text-decoration: none; }
.page-btn:hover, .page-btn.active { background: var(--ocean); color: white; border-color: var(--ocean); }
.page-btn.disabled { opacity: .4; cursor: not-allowed; }

/* ── Rating widget ──────────────────────────────────────────── */
.review-card { background: white; border: 1px solid var(--gray-mid); border-radius: var(--radius-md); padding: 22px; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ocean-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--ocean); font-size: .95rem; }
.reviewer-name { font-weight: 600; font-size: .9rem; }
.reviewer-date { font-size: .775rem; color: var(--text-light); }
.review-text { font-size: .875rem; line-height: 1.7; }
.rating-summary { display: flex; gap: 40px; align-items: center; padding: 28px; background: var(--gray); border-radius: var(--radius-md); margin-bottom: 28px; flex-wrap: wrap; }
.rating-big { font-size: 3.5rem; font-weight: 800; color: var(--slate); line-height: 1; }
.rating-bars { flex: 1; min-width: 200px; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: .8rem; color: var(--text-mid); }
.rating-bar-bg { flex: 1; height: 8px; background: var(--gray-mid); border-radius: 4px; }
.rating-bar-fill { height: 8px; background: #F59E0B; border-radius: 4px; }

/* ── Newsletter ─────────────────────────────────────────────── */
.newsletter-section { background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%); padding: 64px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text h2 { color: white; }
.newsletter-text p { color: rgba(255,255,255,.8); margin-top: 8px; }
.newsletter-form { display: flex; gap: 0; max-width: 460px; width: 100%; }
.newsletter-form input { flex: 1; padding: 14px 20px; border: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm); font-size: .9rem; }
.newsletter-form button { padding: 14px 24px; background: var(--slate); color: white; border: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-weight: 600; cursor: pointer; transition: background var(--transition); font-size: .9rem; }
.newsletter-form button:hover { background: var(--text-dark); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--text-dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: white; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .875rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: var(--radius-sm); background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: all var(--transition); }
.social-btn:hover { background: var(--ocean); color: white; }
.footer-col h5 { color: white; font-size: .875rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.55); font-size: .875rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--sand); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .8rem; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.4); font-size: .8rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--sand); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,.55); font-size: .835rem; }
.footer-contact-item svg { color: var(--sand); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--sand); }

/* ── Trust badges ───────────────────────────────────────────── */
.trust-strip { background: var(--gray); border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); padding: 16px 0; }
.trust-grid { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--text-mid); font-size: .8rem; font-weight: 500; }
.trust-item svg { color: var(--green); }

/* ── Policy pages ───────────────────────────────────────────── */
.policy-hero { background: var(--slate); padding: 56px 0; }
.policy-hero h1 { color: white; font-size: 2.2rem; }
.policy-hero p   { color: rgba(255,255,255,.7); margin-top: 12px; }
.policy-body { max-width: 840px; margin: 0 auto; padding: 56px 24px; }
.policy-body h2 { font-size: 1.4rem; font-family: var(--font-main); font-weight: 700; margin: 32px 0 14px; color: var(--slate); }
.policy-body h3 { font-size: 1.1rem; font-weight: 600; margin: 22px 0 10px; color: var(--slate); }
.policy-body p  { margin-bottom: 16px; }
.policy-body ul, .policy-body ol { padding-left: 24px; margin-bottom: 16px; }
.policy-body ul { list-style: disc; }
.policy-body ol { list-style: decimal; }
.policy-body li { color: var(--text-mid); line-height: 1.75; margin-bottom: 6px; }
.policy-body table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.policy-body th { background: var(--slate); color: white; padding: 11px 14px; text-align: left; font-size: .85rem; }
.policy-body td { padding: 11px 14px; border-bottom: 1px solid var(--gray-mid); font-size: .85rem; }
.policy-body tr:nth-child(even) td { background: var(--gray); }
.policy-meta-box { background: var(--ocean-light); border-left: 4px solid var(--ocean); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 32px; font-size: .875rem; color: var(--slate); }
.policy-meta-box strong { color: var(--ocean-dark); }

/* ── About page ─────────────────────────────────────────────── */
.about-hero { background: var(--slate); padding: 80px 0; }
.about-hero h1 { color: white; }
.about-hero p { color: rgba(255,255,255,.75); margin-top: 16px; font-size: 1.1rem; max-width: 580px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: white; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-mid); text-align: center; }
.team-card-img { height: 220px; background: var(--gray); display: flex; align-items: center; justify-content: center; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card-body h4 { margin-bottom: 4px; }
.team-card-body .role { font-size: .85rem; color: var(--ocean); font-weight: 600; margin-bottom: 10px; }
.team-card-body p { font-size: .83rem; }
.value-item { display: flex; gap: 20px; align-items: flex-start; padding: 24px; background: white; border-radius: var(--radius-md); border: 1px solid var(--gray-mid); margin-bottom: 16px; }
.value-num { font-size: 2.5rem; font-weight: 800; color: var(--ocean-light); line-height: 1; flex-shrink: 0; width: 60px; }
.value-text h4 { margin-bottom: 6px; }

/* ── Product Detail ─────────────────────────────────────────── */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.product-gallery { position: sticky; top: 90px; }
.gallery-main { border-radius: var(--radius-md); overflow: hidden; background: var(--gray); margin-bottom: 12px; }
.gallery-main img { width: 100%; height: 440px; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color var(--transition); }
.gallery-thumb.active { border-color: var(--ocean); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info h1 { font-size: 1.8rem; margin-bottom: 12px; }
.product-price-big { font-size: 2rem; font-weight: 800; color: var(--slate); margin-bottom: 6px; }
.product-price-original { text-decoration: line-through; color: var(--text-light); font-size: 1rem; margin-right: 12px; }
.product-detail-specs { background: var(--gray); border-radius: var(--radius-sm); padding: 20px; margin: 20px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.detail-spec { display: flex; flex-direction: column; gap: 2px; }
.detail-spec-label { font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); }
.detail-spec-value { font-size: .9rem; font-weight: 600; color: var(--slate); }
.add-to-cart-wrap { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

/* ── Sitemap ─────────────────────────────────────────────────── */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.sitemap-section h4 { margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--ocean-light); color: var(--ocean); font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
.sitemap-section ul li { margin-bottom: 8px; }
.sitemap-section ul li a { font-size: .875rem; color: var(--text-mid); display: flex; align-items: center; gap: 6px; }
.sitemap-section ul li a:hover { color: var(--ocean); }

/* ── Guías ───────────────────────────────────────────────────── */
.guide-card { background: white; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-mid); transition: all var(--transition); }
.guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.guide-card-img { aspect-ratio: 16/9; background: var(--gray); overflow: hidden; }
.guide-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.guide-card:hover .guide-card-img img { transform: scale(1.04); }
.guide-card-body { padding: 24px; }
.guide-steps { counter-reset: step; }
.guide-step { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.guide-step::before { counter-increment: step; content: counter(step); width: 32px; height: 32px; border-radius: 50%; background: var(--ocean); color: white; font-size: .85rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

/* ── Cookie banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--slate); color: white; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2); flex-wrap: wrap;
  transform: translateY(100%); transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: .875rem; color: rgba(255,255,255,.85); flex: 1; min-width: 200px; }
.cookie-text a { color: var(--sand); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Empty states ───────────────────────────────────────────── */
.empty-state { text-align: center; padding: 72px 24px; }
.empty-state svg { margin: 0 auto 24px; color: var(--gray-dark); }
.empty-state h3 { margin-bottom: 12px; }
.empty-state p  { max-width: 420px; margin: 0 auto 24px; }

/* ── Alerts ─────────────────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: .875rem; margin-bottom: 16px; display: flex; align-items: flex-start; gap: 10px; }
.alert-info    { background: var(--ocean-light); color: var(--ocean-dark); border-left: 4px solid var(--ocean); }
.alert-success { background: var(--green-light); color: var(--green); border-left: 4px solid var(--green); }
.alert-warn    { background: #FEF9C3; color: #854D0E; border-left: 4px solid #F59E0B; }
.alert-error   { background: #FEE2E2; color: #991B1B; border-left: 4px solid #EF4444; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-card-main { grid-column: span 2; height: 360px; }
  .shop-layout { grid-template-columns: 220px 1fr; gap: 28px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .article-sidebar { display: none; }
}
@media (max-width: 700px) {
  .header-search { display: none; }
  .mobile-toggle { display: block; }
  .site-nav { display: none; }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cart-table .cart-product-img { width: 56px; height: 56px; }
  .form-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-grid { gap: 20px; justify-content: flex-start; }
  .newsletter-inner { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .policy-body { padding: 36px 20px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card-main { grid-column: unset; height: 280px; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .product-detail-specs { grid-template-columns: 1fr; }
}

/* ── Policy layout (2-column with sidebar) ─────────────────── */
.policy-layout {
  display: grid; grid-template-columns: 1fr 280px; gap: 48px;
  align-items: start; padding: 56px 24px;
}
.policy-hero { background: var(--slate); padding: 56px 0; }
.policy-hero .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.policy-hero h1 { color: white; font-size: clamp(1.8rem,4vw,2.4rem); margin-top: 16px; }
.policy-subtitle { color: rgba(255,255,255,.7); margin-top: 12px; font-size: 1rem; max-width: 640px; }
.policy-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: rgba(255,255,255,.55); flex-wrap: wrap;
  background: none; border: none; padding: 0; margin-bottom: 16px;
}
.policy-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.policy-hero .breadcrumb a:hover { color: var(--sand); }
.policy-hero .breadcrumb span:last-child { color: var(--sand); font-weight: 500; }
.policy-content { background: var(--gray); }
.policy-body { max-width: 100%; }
.policy-block {
  background: white; border-radius: var(--radius-md);
  border: 1px solid var(--gray-mid); padding: 32px;
  margin-bottom: 20px;
}
.policy-block h2 {
  font-size: 1.2rem; font-family: var(--font-main); font-weight: 700;
  color: var(--slate); margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--ocean-light);
}
.policy-block h3 { font-size: 1rem; font-weight: 700; color: var(--slate); margin: 20px 0 8px; }
.policy-block p  { margin-bottom: 14px; font-size: .9rem; }
.policy-block ul, .policy-block ol { padding-left: 22px; margin-bottom: 14px; }
.policy-block ul { list-style: disc; }
.policy-block ol { list-style: decimal; }
.policy-block li { color: var(--text-mid); line-height: 1.75; margin-bottom: 6px; font-size: .9rem; }
.policy-block table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.policy-block th { background: var(--slate); color: white; padding: 10px 14px; text-align: left; font-size: .82rem; }
.policy-block td { padding: 10px 14px; border-bottom: 1px solid var(--gray-mid); font-size: .82rem; color: var(--text-mid); }
.policy-block tr:nth-child(even) td { background: var(--gray); }
.policy-block a { color: var(--ocean); text-decoration: underline; }
.policy-block a:hover { color: var(--ocean-dark); }
.policy-contact-box {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
  border-radius: var(--radius-md); padding: 32px; margin-bottom: 20px;
}
.policy-contact-box h3 { color: white; font-family: var(--font-main); margin-bottom: 12px; }
.policy-contact-box p  { color: rgba(255,255,255,.85); font-size: .9rem; margin-bottom: 8px; }
.policy-contact-box .btn-primary { background: white; color: var(--ocean); border-color: white; margin-top: 12px; }
.policy-contact-box .btn-primary:hover { background: var(--sand); border-color: var(--sand); color: var(--slate); }
.policy-sidebar { position: sticky; top: 90px; }
.policy-nav-widget, .policy-info-widget {
  background: white; border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md); padding: 24px; margin-bottom: 16px;
}
.policy-nav-widget h4, .policy-info-widget h4 {
  font-size: .85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-light); margin-bottom: 14px;
}
.policy-nav-widget ul li { margin-bottom: 6px; }
.policy-nav-widget ul li a {
  display: block; font-size: .875rem; color: var(--text-mid);
  padding: 6px 10px; border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.policy-nav-widget ul li a:hover, .policy-nav-widget ul li a.active {
  background: var(--ocean-light); color: var(--ocean); font-weight: 600;
}
.policy-info-widget p { font-size: .85rem; margin-bottom: 8px; }
.company-table { width: 100%; border-collapse: collapse; }
.company-table th { padding: 10px 14px; text-align: left; font-size: .83rem; font-weight: 700; color: var(--slate); background: var(--gray); border-bottom: 1px solid var(--gray-mid); width: 40%; }
.company-table td { padding: 10px 14px; font-size: .83rem; color: var(--text-mid); border-bottom: 1px solid var(--gray-mid); }
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }

/* ── Tracking page ──────────────────────────────────────────── */
.track-hero { background: var(--slate); padding: 56px 0; }
.track-hero h1 { color: white; margin-top: 16px; }
.track-hero .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.55); background: none; border: none; padding: 0; }
.track-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.track-hero .breadcrumb a:hover { color: var(--sand); }
.track-subtitle { color: rgba(255,255,255,.7); margin-top: 10px; }
.track-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.track-form-panel { background: white; border: 1px solid var(--gray-mid); border-radius: var(--radius-md); padding: 36px; }
.track-form-panel h2 { margin-bottom: 24px; font-size: 1.4rem; }
.track-form .form-group { margin-bottom: 20px; }
.form-input { width: 100%; padding: 11px 14px; border: 1px solid var(--gray-mid); border-radius: var(--radius-sm); font-size: .9rem; transition: border-color var(--transition); }
.form-input:focus { border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(2,132,199,.1); }
.form-hint { font-size: .775rem; color: var(--text-light); margin-top: 4px; display: block; }
.form-divider { text-align: center; position: relative; margin: 24px 0; }
.form-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--gray-mid); }
.form-divider span { position: relative; background: white; padding: 0 12px; font-size: .8rem; color: var(--text-light); font-weight: 600; }
.tracking-result { margin-top: 32px; }
.tracking-found { border: 1px solid var(--gray-mid); border-radius: var(--radius-md); padding: 28px; }
.tracking-found h3 { margin-bottom: 12px; font-size: 1.1rem; font-family: var(--font-main); }
.order-id { color: var(--ocean); }
.tracking-status-badge { display: inline-block; padding: 6px 16px; border-radius: 20px; font-size: .82rem; font-weight: 700; margin-bottom: 24px; }
.in-transit { background: #FEF3C7; color: #92400E; }
.delivered  { background: var(--green-light); color: var(--green); }
.tracking-timeline { margin: 20px 0; }
.timeline-step { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; position: relative; }
.timeline-step:not(:last-child)::after { content: ''; position: absolute; left: 8px; top: 20px; bottom: -10px; width: 2px; background: var(--gray-mid); }
.step-dot { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; }
.timeline-step.done .step-dot  { background: var(--green); }
.timeline-step.active .step-dot { background: var(--ocean); box-shadow: 0 0 0 4px var(--ocean-light); }
.timeline-step.pending .step-dot { background: var(--gray-mid); border: 2px solid var(--gray-dark); }
.step-info strong { display: block; font-size: .875rem; color: var(--slate); }
.step-info span { font-size: .78rem; color: var(--text-light); }
.track-logistic-info { padding-top: 20px; border-top: 1px solid var(--gray-mid); }
.track-logistic-info p { font-size: .875rem; margin-bottom: 8px; }
.track-info-panel { display: flex; flex-direction: column; gap: 16px; }
.track-info-card { background: white; border: 1px solid var(--gray-mid); border-radius: var(--radius-md); padding: 22px; }
.track-info-card h3 { font-size: 1rem; font-family: var(--font-main); font-weight: 700; color: var(--slate); margin-bottom: 14px; }
.track-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.track-table td { padding: 8px 0; color: var(--text-mid); border-bottom: 1px solid var(--gray-mid); }
.track-table td:last-child { text-align: right; font-weight: 600; color: var(--slate); }
.carriers-list { list-style: none; padding: 0; }
.carriers-list li { font-size: .85rem; color: var(--text-mid); margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--gray-mid); }
.mt-2 { margin-top: 12px; }
.btn-full { width: 100%; justify-content: center; text-align: center; display: block; }

/* ── FAQ page ───────────────────────────────────────────────── */
.faq-hero { background: var(--slate); padding: 56px 0; }
.faq-hero h1 { color: white; margin-top: 16px; }
.faq-hero .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.55); background: none; border: none; padding: 0; }
.faq-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.faq-subtitle { color: rgba(255,255,255,.7); margin-top: 10px; }
.faq-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.faq-main { flex: 1; }
.faq-category { margin-bottom: 40px; }
.faq-category h2 { font-size: 1.3rem; font-family: var(--font-main); font-weight: 700; color: var(--slate); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--ocean-light); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--gray-mid); border-radius: var(--radius-sm); background: white; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 16px 20px; background: white; border: none;
  cursor: pointer; font-size: .9rem; font-weight: 600; color: var(--slate);
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition);
}
.faq-question::after { content: '+'; font-size: 1.2rem; font-weight: 400; color: var(--ocean); flex-shrink: 0; }
.faq-question[aria-expanded="true"] { background: var(--ocean-light); }
.faq-question[aria-expanded="true"]::after { content: '–'; }
.faq-answer {
  overflow: hidden; max-height: 0; transition: max-height .35s ease;
  padding: 0 20px;
}
.faq-answer p { font-size: .875rem; padding: 4px 0 16px; }
.faq-answer ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.faq-answer li { font-size: .875rem; color: var(--text-mid); margin-bottom: 4px; line-height: 1.7; }
.faq-answer a { color: var(--ocean); text-decoration: underline; }
.faq-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 16px; }
.faq-contact-widget, .faq-links-widget {
  background: white; border: 1px solid var(--gray-mid); border-radius: var(--radius-md); padding: 24px;
}
.faq-contact-widget h3, .faq-links-widget h3 { font-size: 1rem; font-family: var(--font-main); font-weight: 700; color: var(--slate); margin-bottom: 14px; }
.faq-contact-widget p { font-size: .85rem; margin-bottom: 8px; }
.faq-contact-widget ul { list-style: none; padding: 0; margin-bottom: 16px; }
.faq-contact-widget ul li { font-size: .85rem; color: var(--text-mid); margin-bottom: 6px; }
.faq-links-widget ul li { margin-bottom: 8px; }
.faq-links-widget ul li a { font-size: .875rem; color: var(--ocean); text-decoration: underline; }
.faq-links-widget ul li a:hover { color: var(--ocean-dark); }

/* ── Guide page ─────────────────────────────────────────────── */
.guide-hero { background: var(--slate); padding: 56px 0; }
.guide-hero h1 { color: white; margin-top: 16px; }
.guide-hero .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.55); background: none; border: none; padding: 0; }
.guide-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.guide-subtitle { color: rgba(255,255,255,.7); margin-top: 10px; font-size: 1.05rem; }
.guide-nav-strip { background: white; border-bottom: 1px solid var(--gray-mid); }
.guide-nav-links { display: flex; gap: 0; overflow-x: auto; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.guide-nav-links a { padding: 14px 18px; font-size: .875rem; font-weight: 500; color: var(--text-mid); white-space: nowrap; border-bottom: 2px solid transparent; transition: all var(--transition); }
.guide-nav-links a:hover { color: var(--ocean); border-bottom-color: var(--ocean); }
.section-pad { padding: 64px 0; }
.bg-light { background: var(--gray); }
.guide-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.guide-intro-text h2 { margin-bottom: 20px; }
.guide-intro-img img { width: 100%; border-radius: var(--radius-md); height: 380px; object-fit: cover; }
.guide-section-title { font-size: clamp(1.4rem,3vw,1.9rem); margin-bottom: 32px; }
.guide-section-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.guide-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--slate); margin: 28px 0 10px; }
.guide-content p { margin-bottom: 14px; font-size: .9rem; }
.guide-content ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.guide-content li { font-size: .9rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 6px; }
.guide-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .85rem; }
.guide-table th { background: var(--slate); color: white; padding: 10px 14px; text-align: left; }
.guide-table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-mid); color: var(--text-mid); }
.guide-table tr:nth-child(even) td { background: white; }
.guide-table tr:nth-child(odd) td { background: var(--gray); }
.guide-recommendation { background: white; border: 1px solid var(--gray-mid); border-radius: var(--radius-md); padding: 22px; margin-bottom: 16px; }
.guide-recommendation h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 16px; }
.rec-item { border-bottom: 1px solid var(--gray-mid); padding-bottom: 14px; margin-bottom: 14px; }
.rec-item:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 14px; }
.rec-tier { display: inline-block; font-size: .73rem; font-weight: 700; text-transform: uppercase; padding: 2px 8px; border-radius: 4px; background: var(--ocean-light); color: var(--ocean-dark); margin-bottom: 6px; }
.rec-item p { font-size: .83rem; }
.guide-tip-box { background: var(--sand); border-radius: var(--radius-md); padding: 20px; margin-bottom: 16px; }
.guide-tip-box h4 { font-size: .875rem; color: var(--slate); margin-bottom: 8px; }
.guide-tip-box p { font-size: .83rem; color: var(--slate); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; padding: 10px 22px; border: 2px solid var(--ocean); color: var(--ocean); border-radius: var(--radius-sm); font-weight: 600; font-size: .875rem; transition: all var(--transition); }
.btn-outline:hover { background: var(--ocean); color: white; }
.btn-outline-white { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border: 2px solid rgba(255,255,255,.5); color: white; border-radius: var(--radius-sm); font-weight: 600; font-size: .95rem; transition: all var(--transition); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: white; }
.guide-organizer-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.org-type { background: white; border: 1px solid var(--gray-mid); border-radius: var(--radius-md); padding: 24px; }
.org-type h3 { font-size: 1rem; font-weight: 700; color: var(--slate); margin-bottom: 10px; }
.org-type p { font-size: .875rem; margin-bottom: 10px; }
.org-type ul { list-style: disc; padding-left: 20px; }
.org-type li { font-size: .85rem; color: var(--text-mid); margin-bottom: 4px; line-height: 1.6; }
.accessories-guide-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.acc-item { background: white; border: 1px solid var(--gray-mid); border-radius: var(--radius-md); padding: 24px; }
.acc-item h3 { font-size: 1rem; font-weight: 700; color: var(--slate); margin-bottom: 10px; }
.acc-item p { font-size: .875rem; }
.camping-guide-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 28px; }
.camp-item { background: white; border: 1px solid var(--gray-mid); border-radius: var(--radius-md); padding: 24px; }
.camp-item h3 { font-size: 1rem; font-weight: 700; color: var(--slate); margin-bottom: 10px; }
.camp-item p, .camp-item li { font-size: .875rem; color: var(--text-mid); }
.camp-item ul { list-style: disc; padding-left: 20px; }
.camp-item li { margin-bottom: 4px; line-height: 1.6; }
.guide-intro-p { font-size: .95rem; max-width: 800px; margin-bottom: 28px; }
.bg-slate-text { background: var(--slate); }
.bg-slate-text h2 { color: white; margin-bottom: 14px; }
.bg-slate-text p  { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.cta-btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Blog article ───────────────────────────────────────────── */
.blog-article { }
.article-hero { background: var(--slate); padding: 64px 0; }
.article-hero .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.55); background: none; border: none; padding: 0; margin-bottom: 16px; }
.article-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.article-hero .breadcrumb a:hover { color: var(--sand); }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.article-cat { background: var(--ocean); color: white; font-size: .75rem; font-weight: 700; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; }
.article-date, .article-read { font-size: .82rem; color: rgba(255,255,255,.6); }
.article-hero h1 { color: white; }
.article-lead { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-top: 14px; max-width: 700px; }
.article-featured-img { max-height: 480px; overflow: hidden; }
.article-featured-img img { width: 100%; height: 480px; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; padding: 48px 24px; }
.article-body { }
.article-body h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.article-body h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.article-body p  { margin-bottom: 16px; font-size: .95rem; }
.article-body ul { list-style: disc; padding-left: 24px; margin-bottom: 18px; }
.article-body li { color: var(--text-mid); line-height: 1.75; margin-bottom: 6px; font-size: .95rem; }
.article-body strong { color: var(--slate); }
.article-cta-box { background: var(--ocean-light); border: 1px solid var(--ocean); border-radius: var(--radius-md); padding: 28px; margin-top: 40px; }
.article-cta-box h3 { font-size: 1.1rem; font-family: var(--font-main); font-weight: 700; color: var(--ocean-dark); margin-bottom: 10px; }
.article-cta-box p { color: var(--ocean-dark); font-size: .9rem; margin-bottom: 16px; }
.article-author-card, .related-articles, .sidebar-products { background: white; border: 1px solid var(--gray-mid); border-radius: var(--radius-md); padding: 22px; margin-bottom: 16px; }
.article-author-card h4, .related-articles h4, .sidebar-products h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 14px; }
.related-articles ul { list-style: none; padding: 0; }
.related-articles ul li { margin-bottom: 10px; }
.related-articles ul li a { font-size: .875rem; color: var(--ocean); text-decoration: underline; line-height: 1.5; }
.sidebar-products { display: flex; flex-direction: column; gap: 8px; }
.sidebar-product-link { display: block; padding: 10px 14px; background: var(--gray); border-radius: var(--radius-sm); font-size: .875rem; color: var(--ocean); font-weight: 600; transition: background var(--transition); }
.sidebar-product-link:hover { background: var(--ocean-light); }

/* ── Breadcrumb (inline, for pages with custom heroes) ─────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--text-light); flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-mid); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--ocean); }
.breadcrumb span { color: var(--text-light); }

/* ── Responsive additions ───────────────────────────────────── */
@media (max-width: 900px) {
  .policy-layout { grid-template-columns: 1fr; padding: 36px 20px; }
  .policy-sidebar { position: static; }
  .track-layout { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .guide-section-grid { grid-template-columns: 1fr; }
  .guide-intro-grid { grid-template-columns: 1fr; }
  .guide-intro-img { display: none; }
  .accessories-guide-grid { grid-template-columns: 1fr; }
  .camping-guide-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; padding: 36px 20px; }
  .article-sidebar { display: none; }
}
@media (max-width: 700px) {
  .guide-organizer-grid { grid-template-columns: 1fr; }
  .faq-sidebar { display: none; }
  .policy-block { padding: 22px; }
  .article-featured-img img { height: 260px; }
}

/* 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 { }
