/* ============================================================
   style.css — Anjos Colchões & Sofás | Public Site
   ============================================================ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --navy: #003B5C;
  --navy-deep: #002a42;
  --navy-mid: #004a73;
  --ink: #111111;
  --gold: #c9a84c;
  --gold-light: #e0c070;
  --white: #ffffff;
  --cream: #f7f4f0;
  --cream-dark: #ede9e3;
  --text: #1a1a1a;
  --text-muted: #666;
  --text-light: #999;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --radius-card: 14px;
  --radius-pill: 999px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.09);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.16);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font: 'Montserrat', sans-serif;
  --nav-bg: #ffffff;
  --bg-dark: #000000;
  --inner-radius: 20px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: #f4f1ed; line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-size: 16px; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Ticker Bar ──────────────────────────────────────────── */
.ticker-bar {
  background: #093C59;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
  margin: 10px 12px 14px;
  border-radius: 14px;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  gap: 80px;
  width: max-content;
}
.ticker-track span { display: inline-block; padding: 0 6px; }
.ticker-track .sep { color: var(--gold); opacity: 0.8; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Fjord-style Main Nav Container ────────────────────────── */
.hero-shell {
  position: relative;
  padding: 0 12px 12px;
}

.navbar-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.navbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: transparent;
  position: relative;
  z-index: 10;
}

.main-nav {
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
  background: transparent;
}
.main-nav > * {
  pointer-events: auto;
}

.main-nav.scrolled {
  position: fixed;
  top: 0;
  left: 10px;
  right: 10px;
}

/* Bloco da Esquerda (Logo + Menu) */
.nav-left {
  background-color: var(--nav-bg);
  padding: 10px 22px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: var(--inner-radius);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 3;
}

/* A "Magica" da Curva Invertida na Direita do Bloco Esquerdo */
.nav-left::after {
  content: "";
  position: absolute;
  right: calc(var(--inner-radius) * -1);
  top: 0;
  width: var(--inner-radius);
  height: var(--inner-radius);
  background-color: transparent;
  border-top-left-radius: 20px;
  box-shadow: -10px -10px 0 10px var(--nav-bg);
}

/* Estilizacao basica dos itens internos */
.nav-logo,
.logo {
  font-size: 13px;
  font-weight: bold;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.nav-logo-icon {
  width: auto;
  height: 28px;
  min-width: 28px;
  background: transparent;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 7px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.nav-logo-icon img {
  width: auto;
  height: 100%;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #2b2b2b;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--ink) !important; }
.nav-links a.is-active {
  color: var(--ink) !important;
  font-weight: 700;
}

.nav-end-dot {
  width: 26px;
  height: 18px;
  border-radius: 999px;
  background: #efefef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 2px;
  transition: background var(--transition);
}
.nav-end-dot::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #111;
  transform: translateX(-4px);
  transition: transform var(--transition), background var(--transition);
}

/* Bloco da Direita (Busca + Carrinho) */
.nav-right {
  background-color: var(--nav-bg);
  padding: 10px 22px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: var(--inner-radius);
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 3;
}

/* A "Magica" da Curva Invertida na Esquerda do Bloco Direito */
.nav-right::before {
  content: "";
  position: absolute;
  left: calc(var(--inner-radius) * -1);
  top: 0;
  width: var(--inner-radius);
  height: var(--inner-radius);
  background-color: transparent;
  border-top-right-radius: 20px;
  box-shadow: 10px -10px 0 10px var(--nav-bg);
}

.nav-actions-pill {
  margin-left: auto;
}

.nav-action-link,
.nav-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: opacity var(--transition);
  padding: 0;
}
.nav-action-link:hover,
.nav-cart:hover {
  opacity: 0.66;
}
.nav-action-link svg,
.nav-cart svg {
  width: 14px;
  height: 14px;
}
.nav-cart {
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
}

.nav-whatsapp svg,
.nav-whatsapp-icon {
  width: 14px;
  height: 14px;
}

.nav-whatsapp-icon {
  display: block;
  object-fit: contain;
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #efefef;
}
.hamburger span {
  display: block;
  width: 14px; height: 1.5px;
  background: #111;
  border-radius: 2px;
  transition: var(--transition);
}

.global-search-modal[hidden] {
  display: none !important;
}

.global-search-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
}

.global-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 22, 0.42);
  backdrop-filter: blur(10px);
}

.global-search-panel {
  position: relative;
  width: min(720px, calc(100vw - 28px));
  margin: 78px auto 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(17, 17, 17, 0.08);
  overflow: hidden;
}

.global-search-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.global-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: #141414;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
}

.global-search-input::placeholder {
  color: #7c8188;
}

.global-search-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2f4f7;
  color: #111;
  font-size: 24px;
  line-height: 1;
}

.global-search-results {
  max-height: min(62vh, 520px);
  overflow-y: auto;
  padding: 10px;
}

.global-search-result {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  transition: background var(--transition), transform var(--transition);
}

.global-search-result:hover {
  background: #f4f6f8;
  transform: translateY(-1px);
}

.global-search-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #093C59;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.global-search-title {
  color: #111;
  font-size: 15px;
  font-weight: 600;
}

.global-search-meta {
  color: #6c7279;
  font-size: 13px;
  text-align: right;
}

.global-search-empty {
  padding: 20px 16px 24px;
  color: #666d75;
  font-size: 14px;
}

/* ── Hero Slider ─────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - 70px);
  min-height: 700px;
  overflow: hidden;
  background: #d9d6d0;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
  border-bottom-left-radius: 28px;
  corner-shape: inherit;
  margin-top: 0;
  padding-top: 0;
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img {
  width: 100%; height: 100%;
  display: block;
  border-radius: inherit;
  corner-shape: inherit;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.06) 100%);
}

/* Hero Info Card */
.hero-info-card {
  position: absolute;
  bottom: clamp(16px, 2.2vw, 36px);
  left: clamp(14px, 2.6vw, 46px);
  background: rgba(255,255,255,0.98);
  border-radius: 12px;
  padding: clamp(14px, 2vw, 34px) clamp(14px, 2.2vw, 38px);
  width: clamp(240px, 28vw, 400px);
  box-shadow: none;
  animation: slideUp 0.6s ease 0.3s both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-info-card h1 {
  font-size: clamp(28px, 2.35vw, 32px);
  font-weight: 500;
  color: #111111;
  line-height: 1.12;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}
.hero-info-card p {
  font-size: clamp(12px, 1vw, 14px);
  color: #7a7a7a;
  margin-bottom: clamp(14px, 1.8vw, 28px);
  line-height: 1.7;
  max-width: clamp(180px, 18vw, 250px);
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-link-hero {
  color: #222;
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* Hero Navigation */
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  background: transparent;
  border-radius: 0;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  font-weight: 300;
  transition: opacity var(--transition);
  z-index: 10;
}
.hero-nav-btn:hover { opacity: 0.7; }
.hero-prev { left: 42px; }
.hero-next { right: 42px; }

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(80,80,80,0.45);
  border-radius: 999px;
  z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.hero-dot.active {
  background: var(--white);
  width: 10px;
  border-radius: 50%;
}

/* Hotspots */
.hotspot {
  position: absolute;
  z-index: 20;
  transform: translate(-50%, -50%);
}
.hotspot-btn {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.95);
  border: 6px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  color: #5d5d5d;
  font-size: 22px;
  font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  animation: none;
}
.hotspot-btn:hover {
  transform: scale(1.08);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.24);
}
.hotspot-popup {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.98);
  background: var(--white);
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.26);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
  width: 228px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hotspot-popup::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--white);
}
.hotspot:hover .hotspot-popup,
.hotspot.open .hotspot-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
  box-shadow: 0 14px 34px rgba(0,0,0,0.3);
}
.hotspot-popup-thumb {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 8px;
  background: #eee8e0;
  flex-shrink: 0;
}

.hotspot-popup-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.hotspot-popup-content {
  min-width: 0;
}

.hotspot-popup-name {
  display: none;
}

.hotspot-popup-desc {
  font-size: 13px;
  line-height: 1.32;
  color: #232323;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hotspot:hover .hotspot-popup-thumb img,
.hotspot.open .hotspot-popup-thumb img {
  transform: scale(1.06);
}

.hero-badges {
  position: absolute;
  right: 16px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 12;
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  background: rgba(255,255,255,0.96);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ── Section Common ──────────────────────────────────────── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 16px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 16px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.btn-text-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: gap var(--transition);
}
.btn-text-link:hover { gap: 10px; }

.section-intro {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: #66615b;
}

/* ── Products Section ────────────────────────────────────── */
.section-products {
  background: #f1f1f1;
  padding: 18px 12px 20px;
}

.section-products .section-inner {
  max-width: none;
}

.products-headline {
  height: 50px;
  background: #e7e7e7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.products-headline span {
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #202020;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.products-grid.products-grid-static {
  display: grid;
  grid-template-columns: repeat(var(--products-count, 4), minmax(0, 1fr));
  gap: 10px;
}

.products-grid.products-grid-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.products-grid.products-grid-slider::-webkit-scrollbar {
  display: none;
}

.products-grid.products-grid-slider .product-card {
  flex: 0 0 calc((100% - 30px) / 4);
  min-width: calc((100% - 30px) / 4);
  scroll-snap-align: start;
}

.products-carousel {
  position: relative;
}

.products-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(175, 175, 175, 0.85);
  color: #ffffff;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  transition: background .25s ease, transform .25s ease;
}
.products-carousel-btn:hover { background: rgba(150, 150, 150, 0.92); }

.products-prev { left: 6px; }
.products-next { right: 6px; }

/* Product Card */
.product-card {
  background: #e4e4e4;
  border-radius: 14px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  min-height: 510px;
  border: 1px solid #dddddd;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}
.card-img-wrap {
  position: relative;
  aspect-ratio: 0.79;
  overflow: hidden;
  background: #ebebeb;
  border-radius: 10px;
  margin: 8px;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease;
}
.product-card:hover .card-img-wrap img {
  transform: scale(1.04);
  filter: blur(10px);
}

/* Name pill top-left */
.card-name-pill {
  display: none;
}
/* Badge top-right */
.card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: #05070a;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 4;
  line-height: 1;
}
.card-badge.premium { background: #05070a; color: #ffffff; }

.card-hover-info {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-card:hover .card-hover-info {
  opacity: 1;
  transform: translateY(0);
}
.card-hover-title {
  font-size: 13px;
  font-weight: 600;
  color: #1b1b1b;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-hover-price {
  font-size: 13px;
  font-weight: 500;
  color: #121212;
  opacity: 0.8;
  white-space: nowrap;
}

/* ── Fjord Home (below products) ────────────────────────── */
.section-fjord-collections,
.section-fjord-about,
.section-fjord-footer {
  background: #f1efea;
  padding: 28px 12px 0;
}

.section-fjord-collections .section-inner,
.section-fjord-about .section-inner,
.section-fjord-footer .section-inner {
  max-width: none;
  width: 100%;
  margin: 0;
}

.section-header-centered {
  justify-content: center;
  margin-bottom: 14px;
}

.section-header-centered .section-title {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #1d1d1d;
}

.fjord-collections-layout {
  --col-gap: 12px;
  --collections-h: 800px;
  --row-h: calc((var(--collections-h) - var(--col-gap)) / 2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  min-height: var(--collections-h);
}

.fjord-col-left {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: var(--collections-h);
  min-height: var(--collections-h);
  max-height: var(--collections-h);
}

.fjord-col-right {
  display: grid;
  grid-template-rows: var(--row-h) var(--row-h);
  gap: var(--col-gap);
  height: var(--collections-h);
  min-height: var(--collections-h);
  max-height: var(--collections-h);
}

.fjord-col-row {
  display: grid;
  grid-template-columns: minmax(0, 2.17fr) minmax(0, 1fr);
  gap: var(--col-gap);
  height: var(--row-h);
  min-height: var(--row-h);
  max-height: var(--row-h);
}

.fjord-col-row-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.17fr);
}

.fjord-col-row > * {
  min-width: 0;
  min-height: 100%;
}

.fjord-col-image-wrap {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #171717;
}

.fjord-col-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.fjord-col-image-wrap:hover img {
  transform: scale(1.03);
}

.fjord-col-overlay-card {
  position: absolute;
  left: clamp(12px, 1.6vw, 24px);
  bottom: clamp(12px, 1.6vw, 24px);
  width: clamp(170px, 14vw, 220px);
  background: rgba(245,245,245,0.96);
  border-radius: 12px;
  padding: clamp(12px, 1.25vw, 22px) clamp(12px, 1.2vw, 18px);
}

.fjord-col-overlay-card h3,
.fjord-col-text-card h3 {
  font-size: clamp(28px, 2.55vw, 42px);
  line-height: .92;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin-bottom: clamp(8px, 0.9vw, 12px);
}

.fjord-col-overlay-card p {
  font-size: 13px;
  line-height: 1.45;
  color: #6a6864;
  margin-bottom: 14px;
}

.fjord-col-overlay-card a,
.fjord-col-text-card a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fjord-col-text-card {
  border-radius: 12px;
  background: #093C59;
  color: #f5f5f5;
  padding: clamp(16px, 2vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 100%;
}

/* ── Global Dark Mode ───────────────────────────────────── */
html[data-theme="dark"] body {
  background: #0d1218;
  color: #e7edf5;
}

html[data-theme="dark"] .ticker-bar {
  background: #093C59;
  color: #f6f8fb;
}

html[data-theme="dark"] .nav-left,
html[data-theme="dark"] .nav-right {
  background-color: #121a23;
}

html[data-theme="dark"] .nav-left::after {
  box-shadow: -10px -10px 0 10px #121a23;
}

html[data-theme="dark"] .nav-right::before {
  box-shadow: 10px -10px 0 10px #121a23;
}

html[data-theme="dark"] .nav-links a,
html[data-theme="dark"] .nav-logo {
  color: #e7edf5;
}

html[data-theme="dark"] .nav-action-link,
html[data-theme="dark"] .nav-cart {
  color: #f2f6fb;
}

html[data-theme="dark"] .nav-whatsapp-icon {
  filter: brightness(0) invert(1);
}

html[data-theme="dark"] .nav-action-link:hover,
html[data-theme="dark"] .nav-cart:hover {
  opacity: 0.78;
}

html[data-theme="dark"] .nav-end-dot {
  background: #243241;
}

html[data-theme="dark"] .nav-end-dot::before {
  background: #e3be65;
  transform: translateX(4px);
}

html[data-theme="dark"] .hamburger {
  background: #243241;
}

html[data-theme="dark"] .hamburger span {
  background: #f2f6fb;
}

html[data-theme="dark"] .global-search-panel {
  background: rgba(18, 26, 35, 0.98);
  border-color: #263241;
}

html[data-theme="dark"] .global-search-head {
  border-bottom-color: #263241;
}

html[data-theme="dark"] .global-search-input,
html[data-theme="dark"] .global-search-title {
  color: #f2f6fb;
}

html[data-theme="dark"] .global-search-input::placeholder,
html[data-theme="dark"] .global-search-meta,
html[data-theme="dark"] .global-search-empty {
  color: #aab5c2;
}

html[data-theme="dark"] .global-search-close {
  background: #243241;
  color: #f2f6fb;
}

html[data-theme="dark"] .global-search-result:hover {
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .section-products,
html[data-theme="dark"] .section-fjord-collections,
html[data-theme="dark"] .section-fjord-about,
html[data-theme="dark"] .section-fjord-footer,
html[data-theme="dark"] .section-tech,
html[data-theme="dark"] .section-blog,
html[data-theme="dark"] .section-connect,
html[data-theme="dark"] .section-about,
html[data-theme="dark"] .section-story-video,
html[data-theme="dark"] .shop-main,
html[data-theme="dark"] .blog-main,
html[data-theme="dark"] .contact-main {
  background: #0d1218;
}

html[data-theme="dark"] .products-headline,
html[data-theme="dark"] .fjord-about-topbar,
html[data-theme="dark"] .contact-hero,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .shop-hero,
html[data-theme="dark"] .shop-toolbar,
html[data-theme="dark"] .blog-hero,
html[data-theme="dark"] .blog-list-wrap,
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .shop-product-card,
html[data-theme="dark"] .blog-card,
html[data-theme="dark"] .connect-panel,
html[data-theme="dark"] .fjord-about-copy,
html[data-theme="dark"] .contact-info-list li,
html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea {
  background: #121a23;
  border-color: #263241;
  color: #e7edf5;
}

html[data-theme="dark"] .section-title,
html[data-theme="dark"] .section-eyebrow,
html[data-theme="dark"] .shop-title,
html[data-theme="dark"] .shop-intro,
html[data-theme="dark"] .contact-card h2,
html[data-theme="dark"] .contact-card p,
html[data-theme="dark"] .blog-card h3 a,
html[data-theme="dark"] .blog-card p,
html[data-theme="dark"] .shop-toolbar-title,
html[data-theme="dark"] .products-headline span,
html[data-theme="dark"] .fjord-about-title,
html[data-theme="dark"] .fjord-about-text,
html[data-theme="dark"] .contact-info-list li a,
html[data-theme="dark"] .contact-info-list li span {
  color: #e7edf5;
}

html[data-theme="dark"] .contact-submit {
  background: #e3be65;
  color: #10151b;
}

.fjord-col-text-card p {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(245,245,245,0.76);
  margin-bottom: 18px;
}

.section-fjord-about {
  padding-top: 16px;
}

.fjord-about-topbar {
  height: 52px;
  border-radius: 10px;
  background: #e7e7e7;
  border: 1px solid #dfdfdf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #242424;
  margin-bottom: 10px;
}

.fjord-about-grid {
  display: grid;
  grid-template-columns: 600px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.fjord-about-image {
  order: 2;
  border-radius: 10px;
  overflow: hidden;
  background: #ddd;
  height: 600px;
  min-height: 600px;
  max-height: 600px;
}

.fjord-about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.fjord-about-copy {
  order: 1;
  border-radius: 10px;
  background: #efefef;
  border: 1px solid #e0e0e0;
  padding: 64px;
  width: 600px;
  height: 600px;
  min-height: 600px;
  max-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fjord-about-title {
  font-size: 54px;
  line-height: 0.94;
  letter-spacing: -0.045em;
  font-weight: 500;
  color: #202020;
  margin-bottom: 18px;
}

.fjord-about-text {
  font-size: 16px;
  line-height: 1.7;
  color: #696969;
  max-width: 470px;
  margin-bottom: 24px;
}

.fjord-about-copy .btn-text-link {
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2c;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-flex;
  align-self: flex-start;
}

.section-fjord-footer {
  padding: 12px 12px 12px;
}
.fjord-social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.fjord-social-row a {
  min-height: 48px;
  border-radius: 12px;
  background: #eceae6;
  border: 1px solid #ddd9d2;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  font-size: 18px;
  color: #222;
}

.fjord-social-row a svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}
.fjord-social-row a .fjord-social-icon {
  width: 19px;
  height: 19px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.fjord-footer-full {
  background: #093C59;
  border-radius: 14px;
  border: 1px solid #0d4a6d;
  color: #f2f2f2;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 22px;
}

.fjord-footer-logo {
  display: inline-block;
  margin: 0;
  font-size: 30px;
  line-height: .95;
  letter-spacing: -0.04em;
  font-weight: 700;
  font-weight: 500;
  margin-bottom: 12px;
}

.fjord-footer-brand-col p {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
}

.fjord-footer-menu-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.fjord-footer-menu-col a {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  margin-bottom: 8px;
}

/* ── Contact Page ───────────────────────────────────────── */
.contact-page .shop-shell {
  max-width: none;
  width: 100%;
  padding: 0 12px 12px;
}

.contact-main {
  padding-top: 86px;
}

.contact-hero {
  padding: 32px;
  border-radius: 14px;
  background: #eceae6;
  border: 1px solid #ddd9d2;
  margin-bottom: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
}

.contact-card {
  border-radius: 14px;
  background: #eceae6;
  border: 1px solid #ddd9d2;
  padding: 26px;
}

.contact-card h2 {
  font-size: 30px;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 8px;
}

.contact-card p {
  color: #5c5b58;
  font-size: 15px;
  line-height: 1.6;
}

.contact-form {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: #252525;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid #d7d2ca;
  background: #f6f4f1;
  color: #1a1a1a;
  padding: 0 14px;
  font: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 138px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #9b958a;
}

.contact-submit {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: #05090d;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), opacity var(--transition);
}

.contact-submit:hover {
  transform: translateY(-1px);
  opacity: .92;
}

.contact-info-list {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.contact-info-list li {
  border-radius: 10px;
  border: 1px solid #d7d2ca;
  background: #f6f4f1;
  padding: 12px 14px;
  display: grid;
  gap: 6px;
}

.contact-info-list li span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #767067;
  font-weight: 600;
}

.contact-info-list li a {
  color: #171717;
  font-size: 16px;
  line-height: 1.45;
  text-decoration: none;
}

.contact-map-cta {
  margin-top: 14px;
  min-height: 46px;
  border-radius: 999px;
  background: #0d3d5a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 600;
}

/* ── Tech Section ────────────────────────────────────────── */
.section-tech {
  background: linear-gradient(180deg, #f5f1eb 0%, #ece7df 100%);
  padding-top: 28px;
}

.section-story-video {
  background: #f6f3ee;
  padding: 8px 0 18px;
}

.section-story-video .section-inner {
  max-width: none;
  width: 100%;
  padding: 0;
}

.story-video-shell {
  position: relative;
  min-height: 780px;
  border-radius: 0;
  overflow: hidden;
  background: #1b1b1b;
}

.story-video-media,
.story-video-bg,
.story-video-overlay {
  position: absolute;
  inset: 0;
}

.story-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #574c43;
}

.story-video-overlay {
  background:
    linear-gradient(180deg, rgba(23, 18, 14, 0.22) 0%, rgba(23, 18, 14, 0.46) 100%),
    radial-gradient(circle at center, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.3) 68%);
}

.story-video-content {
  position: relative;
  z-index: 2;
  min-height: 780px;
  max-width: 940px;
  margin: 0 auto;
  padding: 196px 32px 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.main-nav .nav-logo span {
  display: none;
}

.story-video-pills {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.story-video-pill {
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.96);
  color: #151515;
  font-size: 14px;
  font-weight: 600;
}

.story-video-pill-muted {
  background: rgba(58, 46, 37, 0.68);
  color: #fff;
  backdrop-filter: blur(12px);
}

.story-video-title {
  max-width: 920px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 600;
  margin-bottom: 26px;
}

.story-video-text {
  max-width: 860px;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
}

.story-video-text-secondary {
  margin-bottom: 34px;
}

.story-video-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.story-video-btn {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.story-video-btn:hover {
  transform: translateY(-2px);
}

.story-video-btn-light {
  background: #fff;
  color: #121212;
  box-shadow: 0 10px 26px rgba(0,0,0,0.14);
}

.story-video-btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 26px rgba(20, 122, 74, 0.28);
}

.story-video-toggle {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,0.14);
}

.tech-header {
  align-items: flex-end;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tech-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transform: translateY(0);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 59, 92, 0.08);
}

.tech-visual {
  position: relative;
  /* full width, no padding */
}

.tech-visual-frame {
  border-radius: 0; 
  overflow: hidden;
  background: #f4f6f8;
  height: 260px;
}

.tech-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.tech-card:hover .tech-visual-frame img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.tech-card-label {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  color: var(--navy-deep);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 14px 22px 14px 18px;
  border-radius: 0 0 18px 0;
  z-index: 2;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.02);
}

.tech-card-label::after {
  content: '';
  position: absolute;
  top: 0;
  right: -14px;
  width: 14px;
  height: 14px;
  border-top-left-radius: 14px;
  box-shadow: -7px -7px 0 7px #fff;
}

.tech-content {
  padding: 22px 24px 26px;
}

.tech-card.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
}

.tech-card.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tech-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #4e4a45;
  margin-bottom: 18px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f0f4f8;
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 600;
}
.tech-tags span svg {
  width: 12px;
  height: 12px;
  opacity: 0.6;
}

/* ── Blog Section ────────────────────────────────────────── */
.section-blog {
  background: #f6f3ee;
  padding-top: 24px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-carousel {
  overflow: hidden;
  width: 100%;
}

.blog-carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: blogCarousel 34s linear infinite;
}

.blog-carousel:hover .blog-carousel-track {
  animation-play-state: paused;
}

.blog-carousel .blog-card {
  width: min(440px, calc(100vw - 80px));
  flex: 0 0 auto;
}

@keyframes blogCarousel {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.blog-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(10, 20, 30, 0.08);
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 610px;
  overflow: hidden;
  background: #ebe7e2;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1); /* Enlarge to fill and avoid letterboxing in source files */
  transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter .55s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.18);
  filter: blur(3px) saturate(0.92) brightness(0.72);
}

.blog-card-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Keep text at bottom */
  align-items: flex-start;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(9, 21, 31, 0) 0%, rgba(9, 21, 31, 0.3) 40%, rgba(9, 21, 31, 0.9) 100%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 2;
}

.blog-card-image-overlay span {
  display: block;
  color: #fff;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 700;
  text-wrap: balance;
  transform: translateY(22px);
  transition: transform .45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-card-image-overlay {
  opacity: 1;
}

.blog-card:hover .blog-card-image-overlay span {
  transform: translateY(0);
}

.blog-card-body {
  padding: 22px 22px 24px;
}

.blog-card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  background: #eef3f6;
  border-radius: 999px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.blog-card h3 {
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #151515;
  margin-bottom: 12px;
  font-weight: 600;
}

.blog-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #6a655f;
  margin-bottom: 16px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: #7a746d;
  font-size: 12px;
  font-weight: 600;
}

/* ── Connect Section ─────────────────────────────────────── */
.section-connect {
  background: #f6f3ee;
  padding-top: 8px;
}

.connect-panel {
  background: linear-gradient(135deg, #fbfaf7 0%, #eeebe5 100%);
  border-radius: 30px;
  padding: 26px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  border: 1px solid rgba(0,0,0,0.05);
}

.connect-copy {
  padding: 18px 12px 18px 8px;
}

.connect-copy .section-title {
  margin-bottom: 18px;
}

.connect-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: #605a53;
  max-width: 440px;
}

.connect-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.connect-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.connect-gallery-stack {
  display: grid;
  gap: 14px;
}

.connect-gallery-card {
  overflow: hidden;
  border-radius: 24px;
  background: #e7e2da;
  min-height: 240px;
}

.connect-gallery-large {
  min-height: 100%;
}

.connect-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Shop Page ───────────────────────────────────────────── */
.shop-page {
  background: #f3f1ed;
}

.shop-shell {
  padding: 0 12px 20px;
}

.shop-main {
  background: #f3f1ed;
  padding: 86px 0 0;
}

.shop-hero {
  background: linear-gradient(180deg, #f6f4ef 0%, #ece7df 100%);
  border-radius: 20px;
  padding: 46px 36px 34px;
  margin-bottom: 14px;
  border: 1px solid rgba(0,0,0,0.05);
}

.shop-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6d6a65;
  margin-bottom: 14px;
}

.shop-title {
  max-width: 920px;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 500;
  color: #121212;
  margin-bottom: 18px;
}

.shop-intro {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.7;
  color: #56524d;
}

.shop-products-wrap {
  background: #ece8e1;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.05);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f8f6f3;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
}

.shop-toolbar-title {
  font-size: 26px;
  font-weight: 500;
  color: #151515;
  letter-spacing: -0.03em;
}

.shop-count {
  font-size: 14px;
  font-weight: 600;
  color: #6d6964;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.shop-product-card {
  min-height: 480px;
}

.shop-empty {
  padding: 24px;
  font-size: 15px;
  color: #5d5954;
}

/* ── Blog & Post Pages ──────────────────────────────────── */
.blog-main,
.post-main {
  padding: 86px 0 24px;
}

.blog-hero,
.blog-list-wrap {
  border: 1px solid rgba(0,0,0,0.05);
}

.blog-hero {
  background: linear-gradient(180deg, #f6f4ef 0%, #ece7df 100%);
  border-radius: 20px;
  padding: 46px 36px 34px;
  margin-bottom: 14px;
}

.blog-list-wrap {
  background: #ece8e1;
  border-radius: 20px;
  padding: 16px;
}

.blog-grid-page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-page {
  background: #ffffff;
}

.post-page .shop-shell {
  padding: 0;
}

.post-page .ticker-bar {
  margin: 0;
  border-radius: 0;
}

.post-page .post-main {
  padding: 0;
}

.post-article {
  width: 100%;
  max-width: none;
  margin: 0;
}

.post-hero {
  position: relative;
  width: 100%;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.post-hero-media,
.post-hero-media img,
.post-hero-overlay {
  position: absolute;
  inset: 0;
}

.post-hero-media {
  background: #d8d8d8;
}

.post-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-hero-overlay {
  background:
    linear-gradient(180deg, rgba(14, 21, 28, 0.34) 0%, rgba(14, 21, 28, 0.22) 28%, rgba(14, 21, 28, 0.56) 100%),
    linear-gradient(0deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 22%);
}

.post-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 112px 24px 72px;
  text-align: center;
  color: #fff;
}

.post-breadcrumbs {
  display: none;
}

.post-hero-taxonomy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}

.post-page .blog-card-kicker {
  min-height: 34px;
  padding: 0 14px;
  font-size: 13px;
}

.post-title {
  max-width: 860px;
  margin: 0 auto 22px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.06em;
  font-weight: 600;
  color: #fff;
}

.post-excerpt {
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}

.post-meta-bar {
  justify-content: center;
  gap: 14px 22px;
  color: rgba(255,255,255,0.96);
  font-size: 14px;
  padding-top: 0;
  border-top: none;
}

.post-body-shell {
  background: #fff;
  padding: 48px 24px 72px;
}

.post-content {
  max-width: 840px;
  margin: 0 auto;
  color: #364152;
  font-size: 19px;
  line-height: 1.78;
}

.post-content h1,
.post-content h2,
.post-content h3 {
  color: #0f1720;
  letter-spacing: -0.05em;
}

.post-content h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  margin: 8px 0 22px;
}

.post-content p,
.post-content ul,
.post-content ol,
.post-content figure {
  margin-bottom: 22px;
}

.post-content ul,
.post-content ol {
  padding-left: 22px;
}

.post-content a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.post-content figure img {
  width: 100%;
  border-radius: 18px;
}

.post-content figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: #6d6861;
}


/* ── Marquee Strip ───────────────────────────────────────── */
.marquee-strip {
  background: var(--navy);
  margin: 2px 12px 14px;
  padding: 18px 26px;
  overflow: hidden;
  border-radius: 14px;
}
.marquee-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  flex-wrap: wrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: opacity var(--transition), transform var(--transition);
}
.marquee-item:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}
.marquee-item svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,0.9);
  flex-shrink: 0;
}
.marquee-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.marquee-label {
  position: relative;
}
.marquee-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.28);
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: transform var(--transition), background var(--transition);
}
.marquee-item:hover .marquee-label::after {
  transform: scaleX(1);
  background: rgba(255,255,255,0.72);
}

/* ── About Section ───────────────────────────────────────── */
.section-about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-content .section-eyebrow { margin-bottom: 12px; }
.about-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy-deep);
  margin-bottom: 20px;
}
.about-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.about-stats {
  display: flex;
  gap: 32px;
}
.stat-item { text-align: left; }
.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: linear-gradient(135deg, #07131d 0%, #0d2233 100%);
  color: var(--white);
  padding: 60px 24px 34px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-brand .nav-logo {
  font-size: 18px;
  margin-bottom: 14px;
}
.footer-brand .nav-logo-icon {
  height: 56px;
  min-width: 56px;
}
.footer-brand .nav-logo-icon img {
  max-width: 220px;
}
.footer-brand .nav-logo span {
  display: none;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-brand .footer-tagline {
  display: none;
}
.footer-socials {
  display: flex;
  gap: 14px;
}
.social-link {
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, color .3s, border-color .3s;
  border: 1.6px solid currentColor;
}
.social-link svg {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 1;
  transition: transform .3s, stroke .3s;
}
.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .35s;
}
.social-link:hover {
  transform: translateY(-4px) scale(1.08);
}
.social-link:hover::before {
  opacity: 1;
}
.social-link:hover svg {
  transform: scale(1.12);
  stroke: #ffffff;
}
.social-instagram {
  color: var(--gold);
  box-shadow: 0 4px 18px rgba(201,168,76,.18);
}
.social-instagram::before {
  background: linear-gradient(135deg, #c9a84c, #f0c668);
}
.social-facebook {
  color: #5b8fd6;
  box-shadow: 0 4px 18px rgba(91,143,214,.18);
}
.social-facebook::before {
  background: linear-gradient(135deg, #5b8fd6, #2e66b4);
}
.social-whatsapp {
  color: #25D366;
  box-shadow: 0 4px 18px rgba(37,211,102,.18);
}
.social-whatsapp::before {
  background: linear-gradient(135deg, #25D366, #159947);
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  margin-top: 16px;
  border: 1px solid rgba(201,168,76,.5);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-whatsapp-cta:hover {
  background: var(--gold);
  color: #0d2233;
  border-color: var(--gold);
}

/* ── Produto — Layout ────────────────────────────────────── */
.produto-page {
  padding: 10px 10px 0;
  background: #f4f1ed;
}
.produto-container {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 600px;
  gap: 10px;
  min-height: calc(100vh - 20px);
}

/* Gallery Left */
.produto-gallery {
  padding: 64px 0 60px;
}
.gallery-main-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream-dark);
  height: 600px;
  margin-bottom: 16px;
}
.gallery-main-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.3s ease;
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 4px 0;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 64px; height: 64px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.gallery-thumb.active { border-color: var(--navy); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; object-position: center; background: #fff; }

.gallery-extra { margin-top: 20px; }
.gallery-extra-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 600px;
  margin-bottom: 16px;
  background: var(--cream-dark);
}
.gallery-extra-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Info Right (Sticky) */
.produto-info {
  background: var(--white);
  border-left: none;
  border-radius: 24px;
  padding: 48px 46px 36px;
  position: sticky;
  top: 10px;
  height: calc(100vh - 20px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.produto-info > * {
  flex-shrink: 0;
}
.produto-original-price {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.shop-toolbar-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}

/* ── Shop Filters ────────────────────────────────────────── */
.shop-filters-container {
  overflow-x: auto;
  margin-bottom: 24px;
  max-width: 100%;
  scrollbar-width: none;
}
.shop-filters-container::-webkit-scrollbar {
  display: none;
}
.shop-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f2f5;
  padding: 6px;
  border-radius: 999px;
  width: max-content;
}
.filter-btn {
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  background: rgba(255,255,255,0.7);
}
.filter-btn.active {
  background: #000;
  color: #fff;
}
.produto-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.produto-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.produto-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.produto-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.produto-taxonomy {
  display: block;
  margin-bottom: 24px;
}

.produto-taxonomy-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.produto-taxonomy-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef4f8;
  border: 1px solid #d6e3ec;
  color: #093C59;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

/* Info ticker */
.info-ticker {
  overflow: hidden;
  background: var(--navy-deep);
  border-radius: var(--radius-pill);
  padding: 10px 0;
  margin-bottom: 24px;
}
.info-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 18s linear infinite;
  gap: 60px;
}
.info-ticker-track span {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 16px;
}
.info-ticker-track .gold { color: var(--gold); }

/* WhatsApp CTA */
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: var(--radius-card);
  transition: background var(--transition), transform var(--transition);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.02);
}
.btn-whatsapp svg { width: 22px; height: 22px; }

/* Accordions */
.accordion-group { margin-top: auto; border-top: 1px solid rgba(0,0,0,0.08); }
.accordion-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-deep);
  user-select: none;
}
.accordion-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.accordion-inline-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef3f6;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.accordion-inline-icon svg,
.accordion-inline-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.accordion-inline-icon-text {
  font-size: 13px;
  font-weight: 700;
}
.accordion-icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-dark);
  border-radius: 50%;
  font-size: 16px;
  transition: transform var(--transition);
  color: var(--navy);
  flex-shrink: 0;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body p, .accordion-body div {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 16px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .fjord-col-overlay-card h3,
  .fjord-col-text-card h3 { font-size: 34px; }
  .shop-products-grid { grid-template-columns: repeat(3, 1fr); }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-carousel .blog-card { width: min(360px, calc(100vw - 90px)); }
  .blog-card-image { height: 520px; }
  .connect-panel { grid-template-columns: 1fr; }
  .shop-title { font-size: clamp(36px, 5vw, 64px); }
  .products-headline span { font-size: 24px; }
  .product-card { min-height: 430px; }
  .shop-product-card { min-height: 430px; }
  .card-name-pill {
    padding: 6px 12px;
  }
  .card-price-current { font-size: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .produto-container { grid-template-columns: 1fr 440px; }
}

@media (max-width: 900px) {
  .gallery-main-wrap,
  .gallery-extra-img {
    height: 480px;
  }

  .contact-layout { grid-template-columns: 1fr; }
  .fjord-collections-layout { grid-template-columns: 1fr; }
  .fjord-collections-layout {
    --collections-h: auto;
    --row-h: 260px;
    min-height: auto;
  }
  .fjord-col-left {
    height: auto;
    min-height: auto;
    max-height: none;
  }
  .fjord-col-row,
  .fjord-col-row-reverse { grid-template-columns: 1fr; min-height: auto; }
  .fjord-col-row { grid-auto-rows: 260px auto; }
  .fjord-col-row-reverse { grid-auto-rows: auto 260px; }
  .fjord-col-right {
    height: auto;
    min-height: auto;
    max-height: none;
  }
  .fjord-col-overlay-card {
    width: min(220px, calc(100% - 28px));
    left: 14px;
    bottom: 14px;
    padding: 16px 14px;
  }
  .fjord-about-topbar { font-size: 24px; height: 44px; }
  .fjord-about-image {
    height: 420px;
    min-height: 420px;
    max-height: 420px;
  }
  .fjord-about-image img { height: 420px; }
  .fjord-about-copy {
    width: 100%;
    height: auto;
    min-height: 420px;
    max-height: none;
  }
  .fjord-about-title { font-size: clamp(30px, 7vw, 56px); }
  .fjord-footer-full { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-height: 320px; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid,
  .connect-gallery { grid-template-columns: 1fr; }
  .blog-carousel .blog-card { width: min(320px, calc(100vw - 72px)); }
  .blog-card-image { height: 440px; }
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
  .story-video-shell,
  .story-video-content {
    min-height: 680px;
  }
  .produto-container { grid-template-columns: 1fr; }
  .produto-info {
    position: static;
    height: auto;
    border-top: 1px solid rgba(0,0,0,0.07);
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
  .hero-shell,
  .navbar-container,
  .hero {
    width: 100%;
    max-width: 100vw;
  }
  .hero-shell {
    padding: 0 10px 10px;
  }
  .ticker-bar {
    margin: 8px 10px 12px;
    height: 30px;
  }
  .ticker-track span {
    font-size: 11px;
  }
  .contact-page .shop-shell { padding: 0 10px 10px; }
  .contact-main { padding-top: 82px; }
  .contact-hero { padding: 24px 20px; border-radius: 16px; }
  .contact-card { padding: 20px 16px; border-radius: 16px; }
  .contact-card h2 { font-size: 24px; }
  .contact-map-cta { width: 100%; }
  .section-fjord-collections,
  .section-fjord-about,
  .section-fjord-footer {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section-header-centered .section-title {
    font-size: 28px;
  }
  .fjord-col-overlay-card h3,
  .fjord-col-text-card h3 { font-size: 28px; }
  .fjord-col-text-card { padding: 18px 14px; }
  .fjord-footer-full {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }
  .fjord-footer-logo {
    font-size: 24px;
  }
  .fjord-about-topbar { font-size: 20px; }
  .fjord-about-copy {
    padding: 22px;
    width: 100%;
    height: auto;
    min-height: auto;
    max-height: none;
  }
  .fjord-about-text { font-size: 16px; }
  .main-nav {
    top: 0;
    left: 10px;
    right: 10px;
    gap: 12px;
  }
  .main-nav.scrolled {
    top: 0;
    left: 10px;
    right: 10px;
  }
  .nav-left-pill {
    flex: 1;
    min-width: 0;
    padding: 8px 10px;
    gap: 10px;
  }
  .nav-logo-icon {
    height: 20px;
    min-width: 20px;
  }
  .nav-logo-icon img {
    max-width: 94px;
  }
  .nav-logo span {
    max-width: 94px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav-links { display: none; }
  .nav-right-pill {
    padding: 8px 10px;
    min-width: 48px;
  }
  .nav-action-link,
  .nav-cart,
  .nav-end-dot { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(18px);
    border-radius: 24px;
    padding: 18px 20px;
    gap: 16px;
    box-shadow: 0 18px 46px rgba(0,0,0,0.14);
  }
  .nav-links.mobile-open a {
    color: #141414;
    font-size: 14px;
  }
  .products-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 30px;
  }
  .products-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 32px 12px;
    scrollbar-width: none;
  }
  .products-grid::-webkit-scrollbar { display: none; }
  .products-grid .product-card {
    flex: 0 0 calc(50% - 10px);
    scroll-snap-align: center;
  }
  .section-intro {
    max-width: none;
    font-size: 14px;
  }
  .shop-shell {
    padding: 0 10px 16px;
  }
  .shop-main {
    padding-top: 82px;
  }
  .shop-hero {
    padding: 28px 20px 24px;
    border-radius: 16px;
  }
  .shop-title {
    font-size: 34px;
  }
  .shop-intro {
    font-size: 14px;
  }
  .shop-products-wrap {
    padding: 12px;
    border-radius: 16px;
  }
  .blog-hero,
  .blog-list-wrap {
    border-radius: 16px;
  }
  .blog-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-story-video {
    padding: 0 0 16px;
  }
  .story-video-shell,
  .story-video-content {
    min-height: 620px;
  }
  .story-video-shell {
    border-radius: 0;
  }
  .story-video-content {
    padding: 120px 20px 96px;
  }
  .story-video-title {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.02;
  }
  .story-video-text {
    font-size: 15px;
  }
  .story-video-pills {
    gap: 8px;
    margin-bottom: 22px;
  }
  .story-video-pill {
    font-size: 12px;
    min-height: 28px;
    padding: 0 12px;
  }
  .story-video-btn {
    width: 100%;
    max-width: 280px;
  }
  .story-video-toggle {
    left: 18px;
    bottom: 18px;
  }
  .post-hero {
    min-height: 56vh;
  }
  .post-hero-inner {
    padding: 100px 20px 56px;
  }
  .post-title {
    font-size: clamp(30px, 7vw, 44px);
    line-height: 1.02;
  }
  .post-body-shell {
    padding: 34px 20px 56px;
  }
  .post-excerpt,
  .post-content {
    font-size: 15px;
  }
  .post-content h2 {
    font-size: 24px;
  }
  .shop-toolbar {
    padding: 14px 16px;
    border-radius: 12px;
  }
  .shop-toolbar-title {
    font-size: 20px;
  }
  .shop-count {
    font-size: 12px;
  }
  .shop-products-grid { gap: 10px; }
  .section-products {
    padding: 14px 10px 16px;
  }
  .products-headline {
    height: 44px;
    border-radius: 10px;
  }
  .products-headline span {
    font-size: 20px;
  }
  .product-card {
    min-height: 350px;
  }
  .card-name-pill {
    max-width: 72%;
  }
  .card-badge {
    top: 12px;
    right: 12px;
  }
  .card-hover-info {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 9px 12px;
    border-radius: 12px;
  }
  .card-hover-title,
  .card-hover-price { font-size: 12px; }
  .card-bottom {
    padding: 0 10px 12px;
  }
  .card-view-btn {
    font-size: 12px;
  }
  .tech-card {
    border-radius: 22px;
  }
  .tech-visual-frame,
  .tech-visual-frame img {
    min-height: 320px;
  }
  .tech-card-label {
    font-size: 16px;
    padding: 8px 14px 10px 12px;
  }
  .tech-content {
    padding: 18px;
  }
  .blog-card h3 {
    font-size: 20px;
  }
  .connect-panel {
    border-radius: 22px;
    padding: 18px;
  }
  .connect-gallery-card {
    border-radius: 18px;
  }
  .hero {
    min-height: 520px;
    height: calc(100vh - 88px);
  }
  .hero-info-card {
    left: 14px;
    right: 14px;
    bottom: 28px;
    width: auto;
    padding: 18px 16px;
    border-radius: 12px;
  }
  .hero-info-card h1 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.04;
  }
  .hero-info-card p {
    font-size: 13px;
    line-height: 1.45;
  }
  .hero-prev,
  .hero-next {
    top: auto;
    bottom: 142px;
    transform: none;
  }
  .hero-prev { left: 20px; }
  .hero-next { right: 20px; }
  .hero-badges {
    display: none;
  }
  .marquee-strip {
    padding: 16px 18px;
  }
  .marquee-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 12px 18px;
    width: 100%;
  }
  .marquee-item {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 20px; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .produto-page {
    padding: 10px;
  }
  .produto-gallery {
    padding-top: 64px;
  }
}

@media (max-width: 480px) {
  .gallery-main-wrap,
  .gallery-extra-img {
    height: 360px;
  }

  .section-fjord-footer {
    padding-bottom: 8px;
  }
  .fjord-social-row {
    grid-template-columns: 1fr;
  }
  .nav-logo span {
    max-width: 96px;
  }
  .blog-card-image {
    height: 360px;
  }
  .story-video-shell,
  .story-video-content {
    min-height: 560px;
  }
  .story-video-content {
    padding: 104px 16px 88px;
  }
  .shop-products-grid { grid-template-columns: 1fr; }
  .blog-grid-page { grid-template-columns: 1fr; }
  .shop-title {
    font-size: 28px;
  }
  .shop-kicker {
    font-size: 11px;
  }
  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .products-grid .product-card {
    flex: 0 0 78%;
  }
  .tech-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .blog-carousel-track { gap: 12px; }
  .blog-carousel .blog-card { width: min(280px, calc(100vw - 44px)); }
  .post-hero {
    min-height: 50vh;
  }
  .post-hero-inner {
    padding: 92px 16px 44px;
  }
  .post-hero-taxonomy {
    gap: 8px;
    margin-bottom: 14px;
  }
  .post-page .blog-card-kicker {
    min-height: 30px;
    font-size: 12px;
  }
  .products-headline {
    height: 38px;
  }
  .products-headline span {
    font-size: 16px;
  }
  .product-card {
    min-height: 280px;
    border-radius: 10px;
  }
  .card-img-wrap {
    margin: 6px;
    border-radius: 8px;
  }
  .card-name-pill {
    font-size: 12px;
    padding: 3px 9px 4px 8px;
    border-radius: 0 0 10px 0;
  }
  .card-name-pill::after {
    right: -10px;
    width: 10px;
    height: 10px;
    border-top-left-radius: 10px;
    box-shadow: -5px -5px 0 5px #ffffff;
  }
  .card-badge {
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 5px;
  }
  .card-hover-info {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
    border-radius: 10px;
  }
  .card-hover-title,
  .card-hover-price { font-size: 11px; }
  .tech-tags span {
    font-size: 12px;
    min-height: 34px;
    padding: 0 12px;
  }
  .blog-card-body {
    padding: 18px;
  }
  .blog-card h3 {
    font-size: 18px;
  }
  .connect-actions {
    gap: 10px;
  }
  .footer-top { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 16px; }
}

/* Home mobile refinado (referência enviada) */
@media (max-width: 768px) {
  .section-products {
    padding: 12px 8px 14px;
  }

  .products-headline {
    height: 42px;
    border-radius: 10px;
    margin-bottom: 8px;
  }

  .products-headline span {
    font-size: 16px;
  }

  .section-products .products-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 10px 12px;
    -webkit-overflow-scrolling: touch;
  }

  .section-products .products-grid .product-card {
    flex: 0 0 calc(50% - 8px);
    min-height: 300px;
    scroll-snap-align: start;
  }

  .section-products .products-grid.products-grid-static,
  .products-grid.products-grid-static {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    gap: 12px !important;
    padding: 6px 10px 12px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .section-products .products-grid.products-grid-static::-webkit-scrollbar,
  .products-grid.products-grid-static::-webkit-scrollbar {
    display: none;
  }

  .section-products .products-grid.products-grid-static .product-card,
  .products-grid.products-grid-static .product-card {
    flex: 0 0 calc(50% - 8px) !important;
    width: calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
    min-width: calc(50% - 8px) !important;
    scroll-snap-align: start;
  }

  .section-header-centered {
    height: 44px;
    border-radius: 10px;
    background: #e7e7e7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .section-header-centered .section-title {
    font-size: 16px;
    line-height: 1;
    margin: 0;
    color: #2f2f2f;
    letter-spacing: 0;
    font-weight: 500;
  }

  .section-fjord-collections .section-inner,
  .section-fjord-about .section-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .fjord-collections-layout {
    grid-template-columns: 1fr !important;
    gap: 12px;
    min-height: auto;
  }

  .fjord-col-left,
  .fjord-col-right {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }

  .fjord-col-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .fjord-col-row,
  .fjord-col-row-reverse {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 10px;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }

  .fjord-col-image-wrap {
    border-radius: 10px;
    height: auto;
  }

  .fjord-col-image-wrap img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
  }

  .fjord-col-overlay-card {
    position: static;
    width: 100%;
    border-radius: 10px;
    padding: 20px 18px;
    background: #efefef;
    border: 1px solid #e2e2e2;
  }

  .fjord-col-row-reverse .fjord-col-image-wrap {
    order: 1;
  }

  .fjord-col-row-reverse .fjord-col-text-card {
    order: 2;
  }

  .fjord-col-text-card {
    min-height: auto;
    border-radius: 10px;
    padding: 20px 18px;
    background: #efefef;
    border: 1px solid #e2e2e2;
    color: #1a1a1a;
  }

  .fjord-col-overlay-card h3,
  .fjord-col-text-card h3 {
    font-size: clamp(30px, 8vw, 34px);
    line-height: 0.98;
    margin-bottom: 10px;
  }

  .fjord-col-text-card p {
    color: #666;
  }

  .fjord-col-text-card a {
    color: #1a1a1a;
  }

  .fjord-about-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .fjord-about-image {
    order: 1 !important;
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
    border-radius: 10px;
  }

  .fjord-about-image img {
    height: 320px !important;
    object-fit: cover;
  }

  .fjord-about-copy {
    order: 2 !important;
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    border-radius: 10px;
    padding: 24px 20px;
  }

  .fjord-about-title {
    font-size: 28px;
    line-height: 0.95;
  }
}

/* Pixel-perfect por breakpoint (desktop/tablet) */
@media (max-width: 1366px) {
  .hero-info-card {
    width: clamp(260px, 25vw, 360px);
    padding: clamp(14px, 1.5vw, 26px);
    left: clamp(12px, 1.8vw, 28px);
    bottom: clamp(12px, 1.8vw, 28px);
  }
  .hero-info-card h1 {
    font-size: clamp(24px, 2vw, 30px);
    margin-bottom: 12px;
  }
  .hero-info-card p {
    font-size: clamp(12px, 0.95vw, 14px);
    margin-bottom: 14px;
    line-height: 1.5;
  }

  .fjord-col-overlay-card {
    width: clamp(165px, 13.5vw, 210px);
    padding: clamp(12px, 1.05vw, 18px);
    left: clamp(10px, 1.1vw, 18px);
    bottom: clamp(10px, 1.1vw, 18px);
  }
  .fjord-col-overlay-card h3,
  .fjord-col-text-card h3 {
    font-size: clamp(34px, 2.7vw, 40px);
  }
  .fjord-col-text-card {
    padding: clamp(16px, 2vw, 32px);
  }
}

@media (max-width: 1280px) {
  .hero-info-card {
    width: clamp(240px, 24vw, 330px);
    padding: 14px 14px;
    left: 14px;
    bottom: 14px;
  }
  .hero-info-card h1 { font-size: clamp(22px, 1.9vw, 28px); }
  .hero-info-card p {
    font-size: 12px;
    max-width: 220px;
  }

  .fjord-col-overlay-card {
    width: clamp(150px, 12.5vw, 190px);
    padding: 12px 12px;
  }
  .fjord-col-overlay-card h3,
  .fjord-col-text-card h3 {
    font-size: clamp(30px, 2.5vw, 36px);
  }
  .fjord-col-text-card {
    padding: 16px;
  }
}

@media (max-width: 1024px) {
  .hero-info-card {
    width: clamp(220px, 30vw, 300px);
    padding: 12px;
  }
  .hero-info-card h1 {
    font-size: clamp(20px, 2.2vw, 24px);
    line-height: 1.05;
  }
  .hero-info-card p {
    font-size: 11px;
    line-height: 1.45;
    max-width: 200px;
  }

  .fjord-col-overlay-card {
    width: clamp(138px, 15.5vw, 170px);
    padding: 10px;
  }
  .fjord-col-overlay-card h3,
  .fjord-col-text-card h3 {
    font-size: clamp(26px, 2.6vw, 32px);
    margin-bottom: 8px;
  }
  .fjord-col-text-card p,
  .fjord-col-overlay-card p {
    font-size: 12px;
    line-height: 1.35;
  }
}

/* Override final mobile: 1 card por vez + Collections em coluna 100% */
@media (max-width: 768px) {
  .section-products .products-grid,
  .products-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 10px !important;
    padding: 8px 8px 14px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .section-products .products-grid::-webkit-scrollbar,
  .products-grid::-webkit-scrollbar {
    display: none;
  }
  .section-products .products-grid.products-grid-slider .product-card,
  .products-grid.products-grid-slider .product-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    scroll-snap-align: start;
  }

  .section-fjord-collections .section-inner {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .fjord-collections-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .fjord-col-left,
  .fjord-col-right {
    width: 100% !important;
    max-width: 100% !important;
  }

  .fjord-col-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* Ordem pedida no mobile: Colchões, Camas, Poltronas */
  .fjord-col-right .fjord-col-row-reverse { order: 1; }
  .fjord-col-right .fjord-col-row { order: 2; }

  .fjord-col-row,
  .fjord-col-row-reverse {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .fjord-col-image-wrap,
  .fjord-about-image {
    width: 100% !important;
    border-radius: 10px !important;
    overflow: hidden;
  }

  .fjord-col-image-wrap img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .fjord-col-overlay-card,
  .fjord-col-text-card {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 10px !important;
    padding: 20px 16px !important;
    min-height: 0 !important;
  }

  .fjord-col-overlay-card h3,
  .fjord-col-text-card h3 {
    font-size: clamp(24px, 7vw, 34px) !important;
    line-height: 1.06 !important;
    margin-bottom: 10px !important;
  }

  .products-carousel {
    overflow: hidden;
  }

  .products-carousel .products-grid,
  .section-products .products-grid,
  .products-grid {
    padding: 8px 10px 14px !important;
    gap: 12px !important;
  }

  .products-carousel .product-card {
    flex: 0 0 calc((100vw - 56px) / 2) !important;
    width: calc((100vw - 56px) / 2) !important;
    max-width: calc((100vw - 56px) / 2) !important;
    min-width: calc((100vw - 56px) / 2) !important;
    scroll-snap-align: start;
  }

  .section-products .products-grid.products-grid-slider .product-card,
  .products-grid.products-grid-slider .product-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    scroll-snap-align: start;
  }

  .shop-filters-container {
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-bottom: 2px !important;
    margin-bottom: 14px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .shop-filters-container::-webkit-scrollbar {
    display: none;
  }

  .shop-filters {
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    min-width: max-content !important;
    max-width: none !important;
    gap: 6px !important;
    padding: 5px !important;
    border-radius: 999px !important;
  }

  .filter-btn {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    padding: 9px 14px !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }

  .shop-toolbar,
  .blog-list-wrap .shop-toolbar {
    gap: 8px !important;
    align-items: center !important;
  }

  .shop-toolbar-title {
    font-size: 14px !important;
  }

  .shop-count {
    font-size: 11px !important;
  }

  .blog-grid-page {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    gap: 12px !important;
    padding: 4px 2px 6px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .blog-grid-page::-webkit-scrollbar {
    display: none;
  }

  .blog-grid-page .blog-card {
    flex: 0 0 calc(100vw - 56px) !important;
    width: calc(100vw - 56px) !important;
    max-width: calc(100vw - 56px) !important;
    min-width: calc(100vw - 56px) !important;
    scroll-snap-align: start;
  }

  .blog-grid-page .blog-card-image {
    height: 420px !important;
  }

  html[data-theme="dark"] .nav-links.mobile-open {
    background: rgba(18, 26, 35, 0.98) !important;
    border: 1px solid #263241;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
  }

  html[data-theme="dark"] .nav-links.mobile-open a {
    color: #e7edf5 !important;
  }

  html[data-theme="dark"] .section-header-centered {
    background: #121a23 !important;
  }

  html[data-theme="dark"] .section-header-centered .section-title {
    color: #e7edf5 !important;
  }

  html[data-theme="dark"] .fjord-col-overlay-card,
  html[data-theme="dark"] .fjord-col-text-card,
  html[data-theme="dark"] .fjord-about-copy {
    background: #121a23 !important;
    border: 1px solid #263241 !important;
    color: #e7edf5 !important;
  }

  html[data-theme="dark"] .fjord-col-overlay-card h3,
  html[data-theme="dark"] .fjord-col-text-card h3,
  html[data-theme="dark"] .fjord-about-title,
  html[data-theme="dark"] .fjord-about-copy p,
  html[data-theme="dark"] .fjord-col-text-card p,
  html[data-theme="dark"] .fjord-col-overlay-card p,
  html[data-theme="dark"] .fjord-col-overlay-card a,
  html[data-theme="dark"] .fjord-col-text-card a {
    color: #e7edf5 !important;
  }
}

@media (max-width: 768px) {
  .global-search-panel {
    width: calc(100vw - 20px);
    margin-top: 72px;
    border-radius: 18px;
  }

  .global-search-head {
    padding: 14px;
  }

  .global-search-result {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
  }

  .global-search-meta {
    text-align: left;
  }

  .marquee-strip {
    margin: 8px 10px 14px !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
  }

  .marquee-track {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 14px !important;
    width: 100% !important;
    justify-content: stretch !important;
  }

  .marquee-item {
    min-width: 0 !important;
    width: 100% !important;
    color: #ffffff !important;
    justify-content: flex-start !important;
    gap: 8px !important;
  }

  .marquee-item svg {
    color: #ffffff !important;
    stroke: currentColor !important;
    flex: 0 0 14px !important;
    width: 14px !important;
    height: 14px !important;
  }

  .marquee-label {
    color: #ffffff !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  .nav-links.mobile-open {
    width: min(100%, 308px) !important;
    right: auto !important;
    padding: 16px 18px !important;
    border-radius: 22px !important;
    gap: 8px !important;
  }

  .nav-links.mobile-open a {
    display: flex !important;
    align-items: center !important;
    min-height: 42px !important;
    width: 100% !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
    color: #141414 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    opacity: 1 !important;
  }

  .nav-links.mobile-open a:hover,
  .nav-links.mobile-open a.is-active {
    background: rgba(9, 60, 89, 0.08) !important;
    color: #0b2234 !important;
  }

  .section-header-centered,
  .products-headline,
  .fjord-about-topbar {
    border-radius: 12px !important;
  }

  .products-headline span,
  .section-header-centered .section-title,
  .fjord-about-topbar {
    color: #1a1a1a !important;
  }

  .fjord-col-overlay-card,
  .fjord-col-text-card,
  .fjord-about-copy {
    border-radius: 12px !important;
  }

  .fjord-col-overlay-card h3,
  .fjord-col-text-card h3,
  .fjord-about-title {
    font-size: clamp(20px, 6vw, 28px) !important;
    line-height: 1.08 !important;
  }

  .fjord-col-overlay-card p,
  .fjord-col-text-card p,
  .fjord-about-copy p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .fjord-col-overlay-card a,
  .fjord-col-text-card a,
  .fjord-about-copy .btn-text-link {
    font-size: 14px !important;
  }

  html[data-theme="dark"] .nav-links.mobile-open {
    background: rgba(18, 26, 35, 0.99) !important;
    border: 1px solid #263241 !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42) !important;
  }

  html[data-theme="dark"] .nav-links.mobile-open a {
    color: #f2f6fb !important;
    opacity: 1 !important;
  }

  html[data-theme="dark"] .nav-links.mobile-open a:hover,
  html[data-theme="dark"] .nav-links.mobile-open a.is-active {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
  }

  html[data-theme="dark"] .products-headline,
  html[data-theme="dark"] .section-header-centered,
  html[data-theme="dark"] .fjord-about-topbar {
    background: #121a23 !important;
    border: 1px solid #263241 !important;
    color: #e7edf5 !important;
  }

  html[data-theme="dark"] .products-headline span,
  html[data-theme="dark"] .section-header-centered .section-title,
  html[data-theme="dark"] .fjord-about-topbar {
    color: #e7edf5 !important;
  }

  html[data-theme="dark"] .fjord-col-overlay-card,
  html[data-theme="dark"] .fjord-about-copy {
    background: #121a23 !important;
    border: 1px solid #263241 !important;
    color: #e7edf5 !important;
  }

  html[data-theme="dark"] .fjord-col-text-card {
    background: #093C59 !important;
    border: 1px solid #1c5777 !important;
    color: #f5f7fa !important;
  }

  html[data-theme="dark"] .fjord-col-overlay-card h3,
  html[data-theme="dark"] .fjord-col-overlay-card p,
  html[data-theme="dark"] .fjord-col-overlay-card a,
  html[data-theme="dark"] .fjord-about-title,
  html[data-theme="dark"] .fjord-about-copy p,
  html[data-theme="dark"] .fjord-about-copy .btn-text-link,
  html[data-theme="dark"] .fjord-col-text-card h3,
  html[data-theme="dark"] .fjord-col-text-card p,
  html[data-theme="dark"] .fjord-col-text-card a {
    color: #f2f6fb !important;
  }
}
