/* ══════════════════════════════════════════════════════
   GLOBAL CSS — Vitrine do Artesão
   Compartilhado por todas as páginas.
   CSS específico de cada tela fica no <style> da própria página.
   ══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Compatibilidade + nova paleta (acentos com moderação) */
  --black:        #1a1a18;
  --brown:        #243a6e; /* navy */
  --orange:       #e07f2e; /* laranja amigável (marca) */
  --orange-light: #f0a45a; /* laranja claro */
  --orange-dark:  #c96b22; /* hover CTA */
  --gray-light:   #e8e6e1;
  --white:        #ffffff;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --gray-mid:     #f3f1ec;
  --text-muted:   #6f6f68;

  --ink:          #1a1a18;
  --paper:        #f6f4ef;
  --navy:         #243a6e;
  --crimson:      #e07f2e; /* CTA legado */
  --gold:         #d4a017;
  --green:        #25D366; /* verde WhatsApp — comprar */
  --green-dark:   #1ebe57;
  --line:         rgba(26, 26, 24, 0.08);
  --shadow-soft:  0 14px 40px rgba(26, 26, 24, 0.07);
  --font-sans:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Header sticky ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

/* ── Navbar ── */
nav,
.topnav {
  background: transparent;
  border-bottom: none;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}

.nav-search {
  flex: 1 1 auto;
  max-width: 460px;
  min-width: 0;
  position: relative;
}

.nav-search input {
  width: 100%;
  height: 44px;
  padding: 0 48px 0 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-md);
  background: #fafafa;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.nav-search input:focus {
  border-color: var(--orange);
  background: var(--white);
}
.nav-search input::placeholder { color: #aaa; }

.nav-search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 44px;
  width: 48px;
  background: var(--navy);
  border: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}
.nav-search-btn:hover { background: #1b2d57; }

/* ── CEP widget ── */
.nav-cep {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-light);
  overflow: hidden;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
}

.nav-cep:focus-within { border-color: var(--orange); background: var(--white); }

.nav-cep-icon {
  color: var(--navy);
  flex-shrink: 0;
  padding: 0 10px;
  display: flex;
  align-items: center;
}

.nav-cep-input {
  width: 118px;
  height: 100%;
  border: none;
  padding: 0 4px 0 0;
  font-size: 0.82rem;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--black);
  background: transparent;
  outline: none;
}

.nav-cep-input::placeholder { color: #bbb; font-weight: 400; }

.nav-cep-detect {
  height: 100%;
  width: 36px;
  border: none;
  border-left: 1px solid var(--gray-light);
  background: transparent;
  color: #999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.nav-cep-detect:hover {
  background: var(--orange);
  color: var(--white);
  border-left-color: var(--orange);
}

/* ── Ações da nav ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.nav-btn-seller {
  background: transparent;
  color: #666;
  border: none;
  padding: 8px 10px;
  font-weight: 600;
  font-size: 0.8rem;
}
.nav-btn-seller:hover {
  color: var(--navy);
  background: transparent;
}

.nav-btn-primary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}
.nav-btn-primary:hover {
  border-color: rgba(36,58,110,0.35);
  color: var(--navy);
}

.nav-btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  background: transparent;
  color: var(--black);
  border-radius: var(--radius-sm);
  border: none;
  position: relative;
}
.nav-btn-icon:hover { background: var(--gray-light); }

.nav-icon-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  pointer-events: none;
}

/* ── Catbar + mega menu profissional ── */
.catbar {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

.catbar-inner {
  display: flex;
  align-items: stretch;
  padding: 0 5%;
  gap: 0;
  overflow: visible;
  min-width: 0;
}

.catbar-item {
  position: relative;
  flex-shrink: 0;
}

.catbar-item:not(.catbar-item-all) {
  z-index: 1;
}

.catbar-item:not(.catbar-item-all):hover,
.catbar-item:not(.catbar-item-all):focus-within {
  z-index: 130;
}

.catbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 13px;
  border: none;
  background: transparent;
  color: #4f4f49;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

.catbar-btn .chevron { color: #a3a39c; transition: transform 0.18s; }

.catbar-all-btn {
  margin-right: 4px;
  padding-left: 0;
  padding-right: 16px;
  font-weight: 800;
  color: var(--ink);
  border-right: 1px solid var(--line);
  border-radius: 0;
}

.catbar-item:hover > .catbar-btn,
.catbar-item:focus-within > .catbar-btn,
.catbar-all-btn[aria-expanded="true"] {
  color: var(--ink);
  border-bottom-color: var(--navy);
}

.catbar-item:hover .chevron,
.catbar-item:focus-within .chevron {
  transform: rotate(180deg);
  color: var(--navy);
}

.catbar-orders {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  height: 42px;
  padding: 0 4px 0 13px;
  flex-shrink: 0;
  color: #4f4f49;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.catbar-orders:hover {
  color: var(--ink);
  border-bottom-color: var(--navy);
}

/* Dropdown simples por item */
.catbar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 248px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(26,26,24,0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 140;
}

/* Ponte de hover entre o botão e o painel */
.catbar-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.catbar-item:hover > .catbar-dropdown,
.catbar-item:focus-within > .catbar-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #3d3d38;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
}

.dropdown-list a:hover {
  background: rgba(36,58,110,0.06);
  color: var(--navy);
}

.dropdown-footer {
  display: block;
  margin-top: 4px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.dropdown-footer:hover { color: var(--crimson); }

/* Overlay + painel split */
.mega-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 110;
  padding: 10px 5% 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.mega-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-overlay[hidden] { display: none !important; }

body.mega-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 16, 0.28);
  backdrop-filter: blur(2px);
  z-index: 90;
}

.mega-panel {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 360px;
  max-height: min(68vh, 520px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(26,26,24,0.16);
  overflow: hidden;
}

.mega-side {
  background: #f7f6f2;
  border-right: 1px solid var(--line);
  padding: 18px 12px;
  overflow: auto;
}

.mega-side-label {
  margin: 0 10px 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9a93;
}

.mega-side-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-side-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: none;
  background: transparent;
  border-radius: 12px;
  padding: 11px 12px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 600;
  color: #454540;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.mega-side-btn svg {
  color: #b0b0a8;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s, color 0.15s;
}

.mega-side-btn:hover,
.mega-side-btn.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(26,26,24,0.04);
}

.mega-side-btn.is-active svg,
.mega-side-btn:hover svg {
  opacity: 1;
  color: var(--navy);
}

.mega-main {
  padding: 22px 26px 26px;
  overflow: auto;
  background:
    radial-gradient(500px 180px at 100% 0%, rgba(36,58,110,0.05), transparent 60%),
    #fff;
}

.mega-pane[hidden] { display: none !important; }

.mega-pane-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.mega-pane-kicker {
  margin: 0 0 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.mega-pane-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
}

.mega-pane-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}

.mega-pane-cta:hover {
  background: rgba(36,58,110,0.05);
  border-color: rgba(36,58,110,0.25);
}

.mega-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 14px;
}

.mega-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f7f6f2;
  color: #333;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.mega-links a:hover {
  background: rgba(36,58,110,0.08);
  color: var(--navy);
  transform: translateY(-1px);
}

.nav-btn-account {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  padding: 8px 12px 8px 8px;
}

.nav-btn-account:hover {
  border-color: rgba(36,58,110,0.35);
  background: rgba(36,58,110,0.03);
  color: var(--navy);
}

.nav-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .mega-panel { grid-template-columns: 200px minmax(0, 1fr); }
  .mega-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .mega-panel {
    grid-template-columns: 1fr;
    max-height: min(75vh, 560px);
  }
  .mega-side {
    border-right: none;
    border-bottom: 1px solid var(--line);
    max-height: 160px;
  }
  .mega-side-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mega-links { grid-template-columns: 1fr; }
}

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 12px 5%;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 400;
  color: #888;
  border-bottom: 1px solid var(--gray-light);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #888;
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb a:hover { color: var(--orange); }

.breadcrumb-sep {
  color: #ccc;
}

.breadcrumb-current {
  color: var(--black);
  font-weight: 500;
}

/* ── Section shell ── */
.section { padding: 72px 5%; }
.section-gray {
  background:
    linear-gradient(180deg, rgba(36, 58, 110, 0.03), transparent 40%),
    #efede7;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 8px;
}

.link-all {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s, color 0.2s;
}
.link-all:hover { gap: 8px; color: var(--crimson); }

/* ── Newsletter ── */
.newsletter {
  background: var(--black);
  padding: 72px 5%;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: var(--orange);
  opacity: 0.06;
  border-radius: 50%;
  pointer-events: none;
}

.newsletter::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 5%;
  width: 260px;
  height: 260px;
  background: var(--brown);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,125,0,0.15);
  border: 1px solid rgba(239,125,0,0.3);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.newsletter-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.newsletter-title span { color: var(--orange); }

.newsletter-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.newsletter-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-avatars { display: flex; }

.newsletter-avatars span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  margin-left: -8px;
}

.newsletter-avatars span:first-child { margin-left: 0; }

.newsletter-proof-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.newsletter-proof-text strong {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}

.newsletter-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  transition: border-color 0.2s;
}

.newsletter-form:focus-within { border-color: var(--orange); }

.newsletter-form input {
  flex: 1;
  height: 52px;
  padding: 0 20px;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  font-weight: 400;
  outline: none;
  color: var(--white);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

.newsletter-form button {
  height: 52px;
  padding: 0 28px;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-size: 0.85rem;
  font-weight: 900;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-form button:hover { background: var(--orange-light); }

.newsletter-fine {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Footer (branco profissional) ── */
.site-footer,
footer {
  background: #ffffff;
  color: #5c5c56;
  border-top: 1px solid var(--line);
}

.footer-accent,
.footer-top-bar {
  display: flex;
  align-items: stretch;
  height: 3px;
}

.footer-accent span:nth-child(1),
.footer-top-bar span:nth-child(1) { flex: 2; background: var(--crimson); }

.footer-accent span:nth-child(2),
.footer-top-bar span:nth-child(2) { flex: 1; background: var(--gold); }

.footer-accent span:nth-child(3),
.footer-top-bar span:nth-child(3) { flex: 5; background: var(--navy); }

.footer-main { padding: 56px 5% 8px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px 28px;
  margin-bottom: 40px;
}

.footer-brand-name {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-brand-name img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: none;
  opacity: 1;
}

.footer-brand p {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 18px;
  max-width: 320px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 18px;
  transition: color 0.2s;
}

.footer-contact-item:hover { color: var(--crimson); }
.footer-contact-item svg { flex-shrink: 0; color: var(--crimson); }

.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f6f4ef;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: #4a4a45;
}

.social-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-col-label::after { display: none; }

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: #5c5c56;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}

.footer-col a::before { display: none; }

.footer-col a:hover { color: var(--navy); }

.footer-payments {
  padding: 22px 5%;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: #fbfaf7;
}

.footer-payments-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-payments-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8a82;
  white-space: nowrap;
}

.footer-payments-methods {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #4a4a45;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.footer-certifications {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: #6f6f68;
  font-weight: 600;
}

.cert-badge svg { color: var(--navy); }

.footer-bottom {
  padding: 18px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-copyright {
  color: #6f6f68;
  font-size: 0.8rem;
  font-weight: 500;
}

.footer-made {
  font-size: 0.74rem;
  color: #9a9a92;
}

.footer-made strong { color: #6f6f68; font-weight: 700; }

.footer-back-top {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f6f4ef;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  flex-shrink: 0;
}

.footer-back-top:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* ── Utilitários comuns ── */
.btn-primary {
  padding: 14px 26px;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(36, 58, 110, 0.28);
}
.btn-primary:hover { background: #1b2d57; transform: translateY(-1px); }

.stars { color: var(--gold); letter-spacing: -1px; }

.tag {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.tag:hover, .tag.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.tags-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }

.brush-divider {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 5%;
  overflow: hidden;
}

.brush-divider::before {
  content: '';
  flex: 1;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.brush-divider::after {
  content: '';
  width: 48px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  margin-left: 6px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVO — componentes globais (nav, catbar, footer)
   ═══════════════════════════════════════════════════════ */

/* ── Laptop / tablet largo ≤1180px ── */
@media (max-width: 1180px) {
  nav,
  .topnav {
    gap: 12px;
    padding: 0 3.5%;
  }
  .nav-search { max-width: 360px; }
  .nav-btn-seller { display: none; }
  .catbar-inner { padding: 0 3.5%; }
}

/* ── Tablet ≤1024px ── */
@media (max-width: 1024px) {
  .nav-cep { display: none; }
  .nav-search { max-width: none; }
  .nav-logo img { max-width: 140px; height: 48px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .newsletter-inner { gap: 36px; }
}

/* ── Tablet / mobile largo ≤900px ── */
@media (max-width: 900px) {
  nav,
  .topnav {
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    padding: 10px 4%;
    gap: 10px 12px;
  }

  .nav-logo { order: 1; }
  .nav-actions { order: 2; margin-left: auto; }
  .nav-search {
    order: 3;
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
  .nav-search input,
  .nav-search-btn { height: 42px; }

  .nav-btn-account-user .nav-account-label { display: none; }
  .nav-btn-account-user {
    padding: 6px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }

  .catbar-inner {
    padding: 0 4%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }
  .catbar-inner::-webkit-scrollbar { display: none; }
  .catbar-dropdown { display: none; }

  .catbar-item-all {
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--white);
    padding-right: 4px;
  }
  .catbar-all-btn {
    padding-left: 0;
    background: var(--white);
  }

  .catbar-orders { display: none; }

  .mega-overlay {
    padding: 8px 4% 20px;
  }
}

/* ── Mobile ≤768px ── */
@media (max-width: 768px) {
  .nav-logo img { height: 44px; max-width: 128px; }
  .nav-actions { gap: 2px; }
  .nav-btn-icon { width: 38px; height: 38px; }

  .catbar-btn { padding: 0 11px; font-size: 0.74rem; }
  .catbar-orders { font-size: 0.74rem; }

  .mega-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 220;
    padding: 0;
    display: flex;
    align-items: stretch;
    transform: none;
  }
  .mega-overlay.is-open { transform: none; }
  .mega-panel {
    width: 100%;
    min-height: 100%;
    max-height: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
  .mega-pane-head {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .mega-pane-head h3 { font-size: 1.25rem; }
  .mega-main { padding: 16px 16px 28px; }

  .section       { padding: 40px 4%; }
  .brush-divider { margin: 0 4%; }
  .breadcrumb    { padding: 10px 4%; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main  { padding: 40px 4% 0; }
  .footer-payments {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 4%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 4%;
  }

  .newsletter         { padding: 48px 4%; }
  .newsletter-inner   { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Small mobile ≤480px ── */
@media (max-width: 480px) {
  nav,
  .topnav {
    padding: 8px 3.5%;
    gap: 8px;
  }
  .nav-logo img { height: 38px; max-width: 112px; }
  .nav-search input {
    height: 40px;
    font-size: 0.82rem;
    padding-left: 12px;
  }
  .nav-search-btn { height: 40px; width: 44px; }

  .catbar-inner { padding: 0 3.5%; }
  .catbar-all-btn {
    padding-right: 12px;
    font-size: 0.74rem;
    gap: 5px;
  }

  .mega-side { max-height: 140px; padding: 12px 8px; }
  .mega-side-btn {
    padding: 9px 10px;
    font-size: 0.78rem;
  }
  .mega-pane-cta { padding: 8px 12px; }

  .footer-grid  { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
}
