/* ========================================
   Design System — Colmeia Real
   ======================================== */
:root {
  --honey:    #F4B400;
  --gold:     #D4920A;
  --gold-dark:#A86C00;
  /* Texto âmbar AA-compliant (≥4.5:1) em fundos claros (branco, cream). Usado em titulos, tags e price-label. */
  --gold-text:#7A5500;
  --cream:    #FFF8E7;
  --cream-2:  #FFF3C4;
  --dark:     #2C1810;
  --dark-2:   #6B4A08;
  --gray:     #6B7280;
  /* Cinza claro AA-compliant (≥4.5:1) para texto sobre fundo --dark (footer). */
  --text-on-dark: #B8BCC2;
  --white:    #FFFFFF;
  --green:    #2C7A2C;
  --orange:   #EE4D2D;
  /* Variante AA-compliant do orange Shopee para uso como background com texto branco. */
  --orange-aa:#B73617;
  --ml-yellow:#FFE600;
  /* WhatsApp Teal Green oficial — ~7.5:1 com texto branco (AAA). #25D366 falha 1.98:1, #128C7E so chega 4.13:1. */
  --whatsapp: #075E54;

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(44,24,16,.08);
  --shadow:    0 6px 24px rgba(44,24,16,.12);
  --shadow-lg: 0 12px 48px rgba(44,24,16,.16);

  --container: 1140px;
  --transition: 260ms cubic-bezier(.4,0,.2,1);
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: var(--gray); }

/* ========================================
   Layout utilities
   ======================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section--cream {
  background: var(--cream);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__subtitle {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: .5rem;
}

.section__title {
  margin-bottom: 1rem;
}

.section__desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--honey);
  color: var(--dark);
}
.btn--primary:hover { background: var(--gold); }

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn--outline:hover { background: var(--dark); color: var(--white); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn--outline-white:hover { background: rgba(255,255,255,.12); }

.btn--shopee {
  background: var(--orange-aa);
  color: var(--white);
}
.btn--shopee:hover { background: #9C2C12; }

.btn--ml {
  background: #FFF159;
  color: #333;
  border: 1px solid #D4B800;
}
.btn--ml:hover { background: #F0E030; }

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn--whatsapp:hover { background: #1DA851; }

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

body:not(.page-home) .header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: .75rem 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 64px;
  width: auto;
}

.header.scrolled .header__logo img {
  height: 48px;
  transition: height var(--transition);
}

body.page-home .header:not(.scrolled) .header__logo img {
  filter: brightness(0) invert(1);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .3px;
  color: var(--dark);
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--honey);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }


body.page-home .header:not(.scrolled) .nav__link { color: var(--white); }
body.page-home .header:not(.scrolled) .nav__link::after { background: var(--white); }

.header__cta { margin-left: 1rem; }

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}

.header__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

body.page-home .header:not(.scrolled) .header__hamburger span { background: var(--white); }

/* Mobile nav */
.header__mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  padding: 1.5rem;
  border-top: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
}

.header__mobile-nav.open { display: flex; }

.header__mobile-nav .nav__link {
  font-size: 1rem;
  color: var(--dark);
  padding: .5rem 0;
}

/* ========================================
   Hero — premium
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, #0D0500 0%, #1A0A00 25%, #2C1200 50%, #4A1E00 75%, #7A3A00 100%);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

/* Favo de abelha cobrindo todo o hero */
.hero__honeycomb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Brilho dourado radiante à direita */
.hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(244,180,0,.22) 0%, rgba(180,100,0,.08) 50%, transparent 70%);
  pointer-events: none;
}

/* Linha dourada decorativa na base do hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--honey), transparent);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.hero__content {
  flex: 1;
  min-width: 0;
  max-width: 600px;
}

.hero__logo-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-visual img {
  width: clamp(300px, 34vw, 522px);
  height: auto;
  filter: drop-shadow(0 0 48px rgba(244,180,0,.35));
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(244,180,0,.12);
  border: 1px solid rgba(244,180,0,.35);
  color: var(--honey);
  padding: .45rem 1.1rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(4px);
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero__title em {
  color: var(--honey);
  font-style: normal;
  position: relative;
}

.hero__desc {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.35);
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Imagem do produto flutuando no hero */
.hero__image {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 38%;
  max-width: 420px;
  pointer-events: none;
  filter: drop-shadow(0 20px 60px rgba(244,180,0,.25));
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(-50%) translateY(0px); }
  50% { transform: translateY(-50%) translateY(-14px); }
}

/* Abelhas decorativas no hero */
.hero__bee {
  position: absolute;
  z-index: 2;
  opacity: .35;
  animation: beeFly 8s ease-in-out infinite;
  pointer-events: none;
}

.hero__bee--1 { top: 12%; right: 6%; animation-delay: 0s; }
.hero__bee--2 { top: 70%; right: 18%; animation-delay: 2.5s; }

@keyframes beeFly {
  0%, 100% { transform: translate(0,0) rotate(-5deg); }
  25% { transform: translate(12px,-8px) rotate(5deg); }
  50% { transform: translate(6px,4px) rotate(-3deg); }
  75% { transform: translate(-8px,-6px) rotate(3deg); }
}

/* ========================================
   Category Cards — Compre por Categoria
   ======================================== */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.cat-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.4,0,.2,1), filter 500ms;
}

.cat-card:hover .cat-card__bg {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Overlay gradiente */
.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,10,2,.85) 0%,
    rgba(20,10,2,.35) 55%,
    rgba(20,10,2,.1) 100%
  );
  transition: background var(--transition);
}

.cat-card:hover .cat-card__overlay {
  background: linear-gradient(
    to top,
    rgba(20,10,2,.75) 0%,
    rgba(20,10,2,.25) 55%,
    rgba(20,10,2,.05) 100%
  );
}

/* Brilho dourado no hover */
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(244,180,0,.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.cat-card:hover::after { opacity: 1; }

.cat-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem;
  z-index: 2;
}

.cat-card__label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: .4rem;
}

.cat-card__name {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--honey);
  transition: gap var(--transition);
}

.cat-card:hover .cat-card__cta { gap: .7rem; }

.cat-card__cta svg {
  transition: transform var(--transition);
}
.cat-card:hover .cat-card__cta svg { transform: translateX(4px); }

/* Badge "em breve" para categorias sem produtos */
.cat-card__badge-soon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(244,180,0,.9);
  color: var(--dark);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 50px;
  z-index: 3;
}

@media (max-width: 900px) {
  .categories { grid-template-columns: repeat(2, 1fr); }
  .cat-card { aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
  .categories { grid-template-columns: 1fr; }
  .cat-card { aspect-ratio: 16/9; }
}

/* ========================================
   Features (destaques)
   ======================================== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(244,180,0,.12);
  transition: box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
}

.feature-card__title {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

/* ========================================
   Product Cards
   ======================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(244,180,0,.1);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.product-card__image {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  overflow: hidden;
  position: relative;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  mix-blend-mode: multiply;
  transition: transform 400ms cubic-bezier(.4,0,.2,1);
}

.product-card:hover .product-card__image img {
  transform: scale(1.07);
}

/* Badge sobre a imagem do card */
.product-card__image-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--green);
  color: white;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 50px;
  z-index: 2;
}

.product-card__image-badge.badge--silvestre  { background: #2C7A2C; }
.product-card__image-badge.badge--laranjeira { background: #C97000; }
.product-card__image-badge.badge--jatai      { background: #7C3AED; }

.product-card__cart-icon {
  position: absolute;
  bottom: .6rem;
  right: .6rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--dark);
  border: 2px solid rgba(255,255,255,.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(44,24,16,.22);
  transition: transform .2s, box-shadow .2s, background .15s;
  z-index: 3;
}
.product-card__cart-icon:hover {
  transform: scale(1.13);
  background: var(--gold);
  box-shadow: 0 4px 16px rgba(44,24,16,.32);
}
.product-card__cart-icon:active { transform: scale(.93); }
.product-card__cart-icon:disabled { opacity: .65; cursor: not-allowed; transform: none; box-shadow: none; }
.product-card__cart-plus {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 16px;
  height: 16px;
  background: var(--dark);
  color: var(--honey);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  line-height: 16px;
  text-align: center;
  pointer-events: none;
}

.product-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__tags {
  display: flex;
  gap: .5rem;
  margin-bottom: .75rem;
}

.tag {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
}

.tag--type {
  background: rgba(244,180,0,.15);
  color: var(--gold-text);
}

.tag--weight {
  background: rgba(44,24,16,.07);
  color: var(--dark);
}

.product-card__name {
  font-size: 1.1rem;
  font-family: var(--font-head);
  margin-bottom: .5rem;
  color: var(--dark);
}

.product-card__desc {
  font-size: .9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-card__price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
}

.product-card__price span {
  font-size: .8rem;
  font-weight: 400;
  color: var(--gray);
}

/* ========================================
   Filtros de produtos
   ======================================== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.filter-group:first-child {
  flex: 0 0 100%;
}

.filter-group__label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark-2);
  white-space: nowrap;
}

.filter-btn {
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark-2);
  background: var(--white);
  border: 1.5px solid rgba(244,180,0,.3);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--honey);
  color: var(--dark);
  border-color: var(--honey);
}

.no-results {
  display: none;
  text-align: center;
  padding: 3rem;
  color: var(--gray);
  grid-column: 1 / -1;
}

.no-results.visible { display: block; }

/* Mobile optimizations for filters */
@media (max-width: 640px) {
  .filters {
    gap: .75rem;
    padding: .75rem;
  }

  .filter-group {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: .4rem;
    width: 100%;
    padding-bottom: .25rem;
  }

  .filter-group:first-child {
    flex: none;
  }

  @supports selector(::-webkit-scrollbar) {
    .filter-group::-webkit-scrollbar { display: none; }
  }

  .filter-group__label {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: .78rem;
    margin-bottom: 0;
  }

  .filter-btn {
    flex-shrink: 0;
    padding: .35rem .7rem;
    font-size: .78rem;
    min-width: unset;
  }
}

/* ========================================
   Sobre / Institucional
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-content .section__subtitle { text-align: left; display: block; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p + p { margin-top: 1rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.stat__value {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--honey);
  display: block;
}

.stat__label {
  font-size: .8rem;
  color: var(--gray);
  margin-top: .2rem;
}

/* ========================================
   Página Produto (detalhe)
   ======================================== */
.product-detail {
  padding: 7rem 0 5rem;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-detail__image-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  position: sticky;
  top: 6rem;
}

.product-detail__image-wrap img {
  max-height: 380px;
  width: auto;
}

.product-detail__tags { margin-bottom: 1rem; }

.product-detail__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: .75rem;
}

.product-detail__price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.product-detail__price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
}

.price-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gold-text);
  margin-bottom: .35rem;
}

.marketplace-note {
  font-size: .8rem;
  color: var(--gray);
  margin-top: .75rem;
  line-height: 1.4;
}

.product-detail__desc {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  color: var(--gray);
}

.product-detail__meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.meta-item__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}

.meta-item__value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
}

.product-detail__features {
  margin-bottom: 2.5rem;
}

.product-detail__features h4 {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.feature-list__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--dark);
}

.feature-list__item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  min-width: 22px;
  background: rgba(244,180,0,.2);
  border-radius: 50%;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: .72rem;
}

.product-detail__actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.product-detail__actions .btn {
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 2rem;
}

#marketplace-buttons {
  display: flex;
  gap: .75rem;
}

#marketplace-buttons .btn {
  flex: 1;
  white-space: nowrap;
}

#marketplace-buttons .btn img {
  height: 20px;
  width: auto;
  vertical-align: middle;
}

@media (max-width: 500px) {
  #marketplace-buttons { flex-direction: column; }
}

/* ========================================
   Breadcrumb
   ======================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.breadcrumb a { color: var(--gray); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--honey); }
.breadcrumb span { color: var(--dark); font-weight: 600; }

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--honey), var(--gold));
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner__title {
  color: var(--dark);
  margin-bottom: 1rem;
}

.cta-banner__desc {
  color: rgba(44,24,16,.7);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ========================================
   Certificação
   ======================================== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.cert-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(244,180,0,.1);
}

.cert-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cert-card h4 { margin-bottom: .5rem; }
.cert-card p { font-size: .9rem; }

/* ========================================
   Contato
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.contact-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-card__icon--wa { background: var(--whatsapp); }
.contact-card__icon--ig { background: linear-gradient(135deg, #405DE6, #E1306C, #F77737); }

.contact-card__label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}

.contact-card__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

/* Formulário */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(244,180,0,.1);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(44,24,16,.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(244,180,0,.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

body.page-checkout .footer__grid { display: none; }

.footer__logos img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer__desc { font-size: .9rem; color: var(--text-on-dark); }

/* Override do "p { color: var(--gray) }" global — gray padrao falha WCAG sobre --dark. */
.footer p, .footer__bottom p, .footer .js-year { color: var(--text-on-dark); }

.footer__col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.footer__col ul li a {
  font-size: .9rem;
  transition: color var(--transition);
}

.footer__col ul li a:hover { color: var(--honey); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p { font-size: .85rem; }

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition), border-color var(--transition);
}

.footer__social a:hover {
  background: var(--honey);
  border-color: var(--honey);
}

/* ========================================
   Page Hero (páginas internas)
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, var(--dark), #4A2C10);
  padding: 8rem 0 5rem;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; }

/* ========================================
   Fade-in animation
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in--delay-1 { transition-delay: .1s; }
.fade-in--delay-2 { transition-delay: .2s; }
.fade-in--delay-3 { transition-delay: .3s; }
.fade-in--delay-4 { transition-delay: .4s; }

/* ========================================
   Out-of-stock overlay
   ======================================== */
.product-card--out-of-stock {
  pointer-events: none;
}

.product-card--out-of-stock a,
.product-card--out-of-stock button {
  pointer-events: auto;
  opacity: .5;
  cursor: not-allowed;
}

.product-card--out-of-stock .product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 14, 4, .52);
  border-radius: inherit;
  pointer-events: none;
}

.product-card__unavailable {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.product-card--out-of-stock .product-card__unavailable {
  display: flex;
}

.product-card__unavailable span {
  background: rgba(180, 20, 20, .88);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: 4px;
}

/* Clickable card */
.product-card { cursor: pointer; }

/* Footer social icon sizing */
.footer__social a svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* ========================================
   Accessibility
   ======================================== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 900px) {
  .hero__image { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .product-detail__grid { grid-template-columns: 1fr; }
  .product-detail__image-wrap { position: static; min-height: 300px; }
}

@media (max-width: 640px) {
  .header__nav { display: none; }
  .header__cta { display: none !important; }
  .header__hamburger { display: flex; }
  .hero { min-height: auto; padding: 7rem 0 4rem; }
  .hero__logo-visual { display: none; }
  .hero__content { max-width: 100%; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .section { padding: 3.5rem 0; }
}

/* ========================================
   WhatsApp — botão flutuante
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50px;
  padding: .85rem 1.25rem .85rem 1rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), padding var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}

.whatsapp-float svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

@keyframes whatsapp-pulse {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(37,211,102,.55);
  animation: whatsapp-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

.whatsapp-float:hover::before {
  animation-play-state: paused;
}

@media (max-width: 480px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: .9rem; border-radius: 50%; }
}

/* === Ícone Carrinho no Header === */
.header__cart {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--dark);
  margin-left: .75rem;
  flex-shrink: 0;
}
body.page-home .header:not(.scrolled) .header__cart { color: var(--white); }
.cart-badge {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--honey);
  color: var(--dark);
  font-size: .62rem;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  pointer-events: none;
}

/* === Botões Adicionar ao Carrinho === */
.btn--add-to-cart {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(22,163,74,.28);
  transition: box-shadow .2s, transform .15s, background .2s;
}
.btn--add-to-cart:hover    { background: linear-gradient(135deg, #15803d 0%, #166534 100%); color: #fff; box-shadow: 0 6px 20px rgba(22,163,74,.4); transform: translateY(-1px); }
.btn--add-to-cart:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }

.btn--cart-add {
  background: var(--cream);
  color: var(--dark);
  border: 1.5px solid var(--honey);
  font-size: .8rem;
  padding: .45rem .85rem;
  font-weight: 600;
}
.btn--cart-add:hover    { background: #f0e8d0; }
.btn--cart-add:disabled { opacity: .6; cursor: not-allowed; }

/* === Página do Carrinho === */
.cart-page { min-height: 60vh; padding: 3rem 0; }
.cart-page__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 2rem;
}
#cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray);
}
#cart-empty p { margin-bottom: 1.5rem; }
#cart-empty a { color: var(--honey); font-weight: 700; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(44,24,16,.06);
}
.cart-item__img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--cream);
  flex-shrink: 0;
  border: 1px solid rgba(44,24,16,.06);
  padding: 4px;
}
.cart-item__info {
  flex: 1;
  min-width: 0;
}
.cart-item__name {
  font-weight: 700;
  color: var(--dark);
  font-size: .95rem;
  margin-bottom: .15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item__price { font-size: .85rem; color: var(--gray); }
.cart-item__qty { flex-shrink: 0; }
.cart-item__total {
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
  min-width: 72px;
  text-align: right;
  flex-shrink: 0;
}
.cart-item__remove {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 1.2rem;
  padding: .25rem;
  border-radius: 4px;
  line-height: 1;
  transition: color .15s;
  flex-shrink: 0;
}
.cart-item__remove:hover { color: #dc2626; }
.cart-summary {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--honey);
  flex-wrap: wrap;
}
.cart-summary__total { font-size: 1.1rem; color: var(--dark); }
.cart-summary__total strong { font-size: 1.4rem; font-family: 'Playfair Display', serif; }

@media (max-width: 480px) {
  /* Cart item: linha 1 = imagem + info + botão remover
                linha 2 = seletor qty + total (indentado sob info) */
  .cart-item {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: .5rem;
    padding: 1rem 0;
  }
  .cart-item__img { width: 60px; height: 60px; padding: 3px; }
  .cart-item__info { flex: 1; min-width: 0; }
  .cart-item__name { white-space: normal; font-size: .875rem; line-height: 1.35; }
  .cart-item__remove { align-self: flex-start; margin-top: .2rem; }
  /* Segunda linha: qty indentado e total à direita */
  .cart-item__qty { margin-left: calc(60px + .5rem); }
  .cart-item__total { flex: 1; min-width: 0; font-size: .9rem; align-self: center; }
  .cart-summary { justify-content: stretch; flex-direction: column; align-items: stretch; gap: 1rem; }
  .cart-page__title { font-size: 1.5rem; margin-bottom: 1.25rem; }
}

/* === Layout da página do carrinho === */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}
.cart-layout__items {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44,24,16,.06);
  padding: 0 1.5rem;
}
.cart-summary-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44,24,16,.06);
  padding: 1.5rem;
  position: sticky;
  top: 5rem;
}
.cart-summary-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(44,24,16,.06);
}
.cart-summary-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .5rem;
}
.cart-summary-card__row span { color: var(--gray); font-size: .9rem; }
.cart-summary-card__row strong {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--dark);
}
.cart-summary-card__shipping {
  font-size: .8rem;
  color: var(--gray);
  margin: .75rem 0 1.25rem;
  padding: .5rem .75rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid var(--honey);
}
@media (max-width: 768px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-layout__items { padding: 0 1rem; }
  .cart-summary-card { position: static; }
}

/* === Mercado Pago Checkout === */
.btn--mp-checkout {
  background: #009ee3;
  color: #fff;
  border: none;
}
.btn--mp-checkout:hover    { background: #0080c7; color: #fff; }
.btn--mp-checkout:disabled { background: #b0d9f1; cursor: not-allowed; }

.qty-selector {
  display: flex;
  align-items: center;
  margin-bottom: .75rem;
}
.qty-selector__btn {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid #ccc;
  background: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: background .15s;
}
.qty-selector__btn:hover { background: var(--cream); }
.qty-selector__btn--minus { border-radius: var(--radius) 0 0 var(--radius); }
.qty-selector__btn--plus  { border-radius: 0 var(--radius) var(--radius) 0; }
.qty-selector__input {
  width: 3rem;
  height: 2.25rem;
  border: 1px solid #ccc;
  border-left: 0;
  border-right: 0;
  text-align: center;
  font-size: 1rem;
  -moz-appearance: textfield;
}
.qty-selector__input::-webkit-inner-spin-button,
.qty-selector__input::-webkit-outer-spin-button { -webkit-appearance: none; }
.qty-selector__label {
  font-size: .85rem;
  color: var(--gray);
  margin-right: .75rem;
}

/* === Modal de endereço (Fase 3) === */
.mp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,24,16,.62);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  overflow: hidden;
}
.mp-modal {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(44,24,16,.28);
  width: 100%;
  max-width: 460px;
  max-height: 88vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  border-top: 4px solid var(--honey);
}
.mp-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray);
  line-height: 1;
  padding: .25rem .5rem;
  border-radius: 4px;
  z-index: 1;
}
.mp-modal__close:hover { color: var(--dark); background: #f0f0f0; }
.mp-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--dark);
  margin: 0;
  padding: 1.6rem 1.75rem 1.2rem;
  border-bottom: 1px solid #f0f0f0;
}
.mp-modal__body {
  padding: 1.25rem 1.75rem 1.75rem;
}
.mp-modal__field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-bottom: .9rem;
}
.mp-modal__field label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.mp-modal__input {
  padding: .65rem .85rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: .97rem;
  color: var(--dark);
  background: var(--white);
  box-sizing: border-box;
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.mp-modal__input:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(244,180,0,.15);
}
.mp-modal__input[readonly] {
  background: #f8f9fa;
  color: var(--gray);
  cursor: default;
}
.mp-modal__cep-link {
  font-size: .75rem;
  color: var(--gray);
  text-decoration: underline;
  align-self: flex-start;
}
.mp-modal__cep-link:hover { color: var(--dark); }
.mp-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.mp-modal__required { color: #e53e3e; }
.mp-modal__divider {
  height: 1px;
  background: #f0f0f0;
  margin: .5rem 0 1rem;
}
.mp-shipping-options {
  background: #fafafa;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: .9rem;
  margin-bottom: .9rem;
}
.mp-shipping-title {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 .65rem;
}
.mp-shipping-option {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .85rem;
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: .4rem;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.mp-shipping-option:last-child { margin-bottom: 0; }
.mp-shipping-option:hover { border-color: var(--honey); box-shadow: 0 0 0 3px rgba(244,180,0,.1); }
.mp-shipping-option.selected { border-color: var(--honey); background: #fffdf0; box-shadow: 0 0 0 3px rgba(244,180,0,.15); }
.mp-shipping-radio { accent-color: var(--honey); flex-shrink: 0; width: 1rem; height: 1rem; }
.mp-shipping-label { flex: 1; font-size: .88rem; color: var(--dark); line-height: 1.3; }
.mp-shipping-price { font-weight: 700; color: var(--dark); font-size: .95rem; white-space: nowrap; }
.mp-modal__msg {
  font-size: .85rem;
  padding: .55rem .85rem;
  border-radius: 8px;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  background: #f3f4f6;
  color: var(--gray);
}
.mp-modal__msg--erro { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.mp-modal__actions {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  padding-top: .75rem;
  border-top: 1px solid #f0f0f0;
}
.mp-modal__btn-cancel {
  background: transparent;
  color: var(--gray);
  border: 1.5px solid #e5e7eb;
  font-size: .9rem;
}
.mp-modal__btn-cancel:hover { background: #f3f4f6; color: var(--dark); border-color: #d1d5db; }
.mp-modal__btn-calcular {
  background: var(--cream);
  color: var(--dark);
  border: 1.5px solid var(--honey);
  font-size: .9rem;
}
.mp-modal__btn-calcular:hover { background: #f0e8d0; }
.mp-modal__btn-calcular:disabled { opacity: .6; cursor: not-allowed; }
.mp-modal__btn-pagar {
  flex: 1;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  border-color: #16a34a;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .01em;
  padding: .85rem 1.5rem;
  box-shadow: 0 4px 16px rgba(22,163,74,.35);
  transition: box-shadow .2s, transform .15s, background .2s;
}
.mp-modal__btn-pagar:hover {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  border-color: #15803d;
  color: #fff;
  box-shadow: 0 6px 24px rgba(22,163,74,.45);
  transform: translateY(-1px);
}
.mp-modal__btn-pagar:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(22,163,74,.3); }
.mp-modal__btn-pagar:disabled { background: #d1d5db; border-color: #d1d5db; color: #9ca3af; cursor: not-allowed; box-shadow: none; transform: none; }
@media (max-width: 480px) {
  .mp-modal { border-radius: 16px 16px 0 0; max-height: 95vh; align-self: flex-end; }
  .mp-modal-overlay { align-items: flex-end; padding: 0; }
  .mp-modal__row { grid-template-columns: 1fr; }
}

/* ========================================
   Skip-link (acessibilidade WCAG 2.1)
   ======================================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 9999;
  background: var(--dark, #2C1810);
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: top 0.15s ease-out;
}
.skip-link:focus {
  top: 8px;
  outline: 2px solid var(--honey, #F4B400);
  outline-offset: 2px;
}

/* === Modo Marketplace — remover esta classe do <body> para reexibir ===
   Oculta: preço (detalhe + cards), botão carrinho, ícone carrinho no topo,
   seletor de quantidade e nota de preço dos marketplaces.             */
body.modo-marketplace .product-detail__price,
body.modo-marketplace .product-card__price,
body.modo-marketplace .product-card__cart-icon,
body.modo-marketplace .btn--add-to-cart,
body.modo-marketplace .header__cart,
body.modo-marketplace .qty-selector,
body.modo-marketplace .marketplace-note { display: none !important; }
