/*
Theme Name: Monabu
Theme URI: https://monabu.com.br
Author: Monabu
Description: Tema oficial Monabu — Maquiagem, Bijouteria & Bolsas
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
Text Domain: monabu
WC requires at least: 7.0
WC tested up to: 8.9
*/

/* ============================================================
   TOKENS
============================================================ */
:root {
  --coral:       #f8434a;
  --coral-dark:  #d63038;
  --coral-light: #f69994;
  --cream:       #faf6f0;
  --cream-dark:  #f0e8d8;
  --slate:       #738998;
  --slate-light: #9fb3be;
  --rose:        #f5e0e0;
  --white:       #ffffff;
  --black:       #1a1a1a;
  --ink:         #2d2d2d;
  --gray-50:     #fafafa;
  --gray-100:    #f5f5f5;
  --gray-200:    #ebebeb;
  --gray-300:    #d9d9d9;
  --gray-400:    #b3b3b3;
  --gray-500:    #888888;
  --gray-700:    #555555;
  --gold:        #c9a96e;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-serif:   'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'DM Sans', 'Inter', sans-serif;
  --font-script:  'Alex Brush', cursive;

  --r-xs:   2px;
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-2xl:  48px;
  --r-full: 9999px;

  --sh-xs:  0 1px 4px rgba(0,0,0,.06);
  --sh-sm:  0 2px 12px rgba(0,0,0,.08);
  --sh-md:  0 6px 24px rgba(0,0,0,.10);
  --sh-lg:  0 12px 48px rgba(0,0,0,.14);

  --nav-h:     68px;
  --container: 1320px;
  --ease:      cubic-bezier(.4,0,.2,1);
  --t:         0.26s;
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; max-width: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--coral-light); color: var(--white); }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1,h2,h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.01em;
}
h4,h5,h6 { font-family: var(--font-body); font-weight: 600; }
h1 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.6rem); }
h4 { font-size: .95rem; }
p  { color: var(--gray-700); line-height: 1.75; }

.t-serif {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coral);
  display: block;
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header .eyebrow { margin-bottom: 10px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  max-width: 500px;
  margin: 0 auto;
  font-size: .93rem;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(248,67,74,.3);
}
.btn-outline {
  background: transparent;
  color: var(--coral);
  border-color: var(--coral);
}
.btn-outline:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--gray-300);
}
.btn-ghost:hover {
  border-color: var(--coral);
  color: var(--coral);
}
.btn-white {
  background: var(--white);
  color: var(--coral);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-sm  { padding: 9px 18px; font-size: .72rem; }
.btn-lg  { padding: 16px 40px; font-size: .82rem; }
.btn-xl  { padding: 18px 52px; font-size: .85rem; }
.btn svg { flex-shrink: 0; }

/* ============================================================
   ANNOUNCEMENT BAR
============================================================ */
.ann-bar {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  text-align: center;
  padding: 9px 24px;
  font-size: .72rem;
  letter-spacing: .06em;
  font-weight: 400;
}
.ann-bar strong { color: var(--coral-light); font-weight: 600; }

/* ============================================================
   HEADER
============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  transition: box-shadow var(--t);
}
#site-header.scrolled { box-shadow: var(--sh-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-700);
  letter-spacing: .04em;
  position: relative;
  transition: color var(--t);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--coral);
  transition: width var(--t) var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--coral); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hdr-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-full);
  color: var(--gray-700);
  transition: all var(--t);
  cursor: pointer;
  border: none;
  background: transparent;
  position: relative;
}
.hdr-icon:hover { background: var(--gray-100); color: var(--coral); }
.cart-bubble {
  position: absolute;
  top: 5px; right: 5px;
  width: 15px; height: 15px;
  background: var(--coral);
  color: var(--white);
  font-size: .55rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--t);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  flex-direction: column;
  padding: 0 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 16px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 0;
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--gray-500);
  padding: 6px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.mobile-nav a {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--t);
  letter-spacing: .01em;
}
.mobile-nav a:hover { color: var(--coral); }

/* ============================================================
   HERO SLIDER
============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  user-select: none;
}
.slider-track {
  display: flex;
  transition: transform .65s var(--ease);
  will-change: transform;
}
.slide {
  flex: 0 0 100%;
  position: relative;
  line-height: 0;
}
.slide img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.88);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink);
  box-shadow: var(--sh-md);
  transition: all var(--t);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--coral); color: var(--white); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.slider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  border: none;
  cursor: pointer;
  transition: all var(--t);
  padding: 0;
}
.slider-dot.active {
  background: var(--white);
  transform: scale(1.25);
}

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  color: var(--gray-700);
  font-weight: 500;
  letter-spacing: .03em;
}
.trust-item svg { color: var(--coral); flex-shrink: 0; }

/* ============================================================
   BRAND CARDS (slider carousel)
============================================================ */
.brands-section { padding: 64px 0; background: var(--white); }
.brand-cards-wrap { position: relative; }
.brand-cards-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 16px;
  -webkit-overflow-scrolling: touch;
}
.brand-cards-scroll::-webkit-scrollbar { display: none; }

.brand-card {
  flex: 0 0 180px;
  scroll-snap-align: start;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  transition: all var(--t) var(--ease);
  cursor: pointer;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px 20px;
  gap: 12px;
  text-align: center;
}
.brand-card:hover {
  border-color: var(--coral-light);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.brand-card-img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  filter: grayscale(1) opacity(.7);
  transition: filter var(--t);
}
.brand-card:hover .brand-card-img { filter: none; }
.brand-card-name {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-700);
  transition: color var(--t);
}
.brand-card:hover .brand-card-name { color: var(--coral); }
.brand-cards-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--gray-700);
  box-shadow: var(--sh-sm);
  transition: all var(--t);
  z-index: 5;
}
.brand-cards-arrow:hover { background: var(--coral); color: var(--white); border-color: var(--coral); }
.brand-cards-arrow.prev { left: -18px; }
.brand-cards-arrow.next { right: -18px; }

/* ============================================================
   CATEGORY CARDS
============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.cat-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,.72) 0%, rgba(26,26,26,.05) 60%);
}
.cat-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  color: var(--white);
}
.cat-card-body .eyebrow { color: rgba(255,255,255,.65); margin-bottom: 4px; }
.cat-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.cat-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 2px;
  transition: border-color var(--t);
}
.cat-card:hover .cat-card-btn { border-color: var(--white); }

/* ============================================================
   PRODUCT CARD
============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.products-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--t), transform var(--t);
}
.product-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}
.product-card-img {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-50);
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.pc-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--coral);
  color: var(--white);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--r-full);
  z-index: 2;
}
.pc-badge.new-badge { background: var(--slate); }
.pc-wish {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-xs);
  cursor: pointer;
  z-index: 2;
  border: none;
  color: var(--gray-400);
  transition: all var(--t);
}
.pc-wish:hover, .pc-wish.active {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(248,67,74,.3);
}
.pc-quick {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--white);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-align: center;
  padding: 11px;
  transform: translateY(100%);
  transition: transform var(--t) var(--ease);
  cursor: pointer;
  border: none;
  z-index: 3;
}
.product-card:hover .pc-quick { transform: translateY(0); }

.product-card-body { padding: 14px 16px 16px; }
.pc-brand {
  font-size: .62rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.pc-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pc-name a { color: inherit; }
.pc-price { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.pc-price-now {
  font-size: .98rem;
  font-weight: 700;
  color: var(--coral);
}
.pc-price-old {
  font-size: .75rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.pc-inst {
  font-size: .68rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-section { padding: 80px 0; background: var(--cream); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow var(--t);
}
.faq-item.open { box-shadow: var(--sh-sm); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--t);
}
.faq-q:hover, .faq-item.open .faq-q { color: var(--coral); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--t);
  color: var(--gray-500);
}
.faq-item.open .faq-icon {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding var(--t);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 22px 20px;
  font-size: .88rem;
  color: var(--gray-700);
  line-height: 1.75;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

/* ============================================================
   PROMO BANNER
============================================================ */
.promo-strip {
  background: var(--coral);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.promo-strip::before, .promo-strip::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.promo-strip::before { width: 500px; height: 500px; top: -200px; right: 100px; }
.promo-strip::after  { width: 300px; height: 300px; bottom: -150px; left: 50px; }
.promo-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.promo-strip .eyebrow { color: rgba(255,255,255,.65); }
.promo-strip h2 { color: var(--white); margin: 10px 0 12px; }
.promo-strip p { color: rgba(255,255,255,.82); max-width: 460px; }
@media (max-width: 768px) {
  .promo-strip { padding: 48px 0; }
  .promo-strip-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 22px;
  }
  .promo-strip p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .promo-strip-inner .btn { justify-self: center; }
}

/* ============================================================
   INSTAGRAM STRIP
============================================================ */
.insta-strip { padding: 60px 0 0; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  margin-top: 40px;
}
.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(248,67,74,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
  color: var(--white);
}
.insta-item:hover .insta-overlay { opacity: 1; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 30px;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--cream-dark);
  line-height: 1;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--coral); }
.testi-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--rose);
  overflow: hidden;
  border: 2px solid var(--cream-dark);
  flex-shrink: 0;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: .84rem; font-weight: 600; color: var(--ink); }
.testi-role { font-size: .72rem; color: var(--gray-500); }

/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter-section {
  background: var(--ink);
  padding: 80px 0;
  text-align: center;
}
.newsletter-section .eyebrow { color: var(--coral-light); }
.newsletter-section h2 { color: var(--white); margin: 10px 0 12px; }
.newsletter-section p { color: rgba(255,255,255,.6); max-width: 440px; margin: 0 auto 36px; }
.nl-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.nl-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--r-full);
  border: none;
  font-family: var(--font-body);
  font-size: .88rem;
  background: rgba(255,255,255,.1);
  color: var(--white);
  transition: background var(--t);
  outline: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,.4); }
.nl-form input:focus { background: rgba(255,255,255,.16); }

/* ============================================================
   STORES PREVIEW
============================================================ */
.store-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.store-mini-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  transition: all var(--t);
}
.store-mini-card:hover {
  border-color: var(--coral-light);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.store-mini-icon {
  width: 40px; height: 40px;
  background: var(--rose);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--coral);
  margin-bottom: 14px;
}
.store-mini-card h4 { font-size: .88rem; margin-bottom: 5px; }
.store-mini-card .city { font-size: .75rem; color: var(--gray-500); margin-bottom: 8px; }
.store-mini-card .phone {
  font-size: .8rem;
  color: var(--coral);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   WOOCOMMERCE — SHOP PAGE
============================================================ */
.shop-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
}
.shop-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.filter-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-bottom: 16px;
}
.filter-box-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}
.filter-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  font-size: .84rem;
  color: var(--gray-700);
  cursor: pointer;
  transition: color var(--t);
}
.filter-opt:hover { color: var(--coral); }
.filter-opt input { accent-color: var(--coral); cursor: pointer; }
.filter-opt-count {
  margin-left: auto;
  font-size: .68rem;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 1px 6px;
  border-radius: var(--r-full);
}
.price-slider { display: flex; flex-direction: column; gap: 10px; }
.price-slider input[type=range] { accent-color: var(--coral); width: 100%; }
.price-vals {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--gray-500);
}
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap;
}

/* Faixa intermediária (tablet) que faltava: evita cards espremidos entre 769px e 1100px */
@media (max-width: 1100px) {
  .shop-wrap { grid-template-columns: 200px 1fr; gap: 24px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 900px) {
  .shop-wrap { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
}
.shop-count { font-size: .82rem; color: var(--gray-500); }
.shop-count strong { color: var(--ink); }
.sort-select {
  padding: 9px 36px 9px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--r-full);
  font-size: .8rem;
  font-family: var(--font-body);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none;
  cursor: pointer;
  color: var(--gray-700);
}
.sort-select:focus { outline: none; border-color: var(--coral); }

/* ============================================================
   SINGLE PRODUCT v3 — novo layout
============================================================ */

/* Gallery */
.sp-gallery { display: flex; flex-direction: column; gap: 10px; }
.sp-gallery-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--gray-50);
  aspect-ratio: 1;
  border: 1px solid var(--gray-100);
}
.sp-gallery-main img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s var(--ease); }
.sp-gallery-main:hover img { transform:scale(1.04); }
.sp-thumbs { display:flex; gap:8px; flex-wrap:wrap; }
.sp-thumb {
  width:68px; height:68px;
  border-radius:var(--r-md);
  overflow:hidden;
  cursor:pointer;
  border:2px solid transparent;
  transition:border-color var(--t);
  padding:0; background:none;
}
.sp-thumb.active { border-color:var(--coral); }
.sp-thumb img { width:100%; height:100%; object-fit:cover; }

/* Info column */
.sp-brand {
  font-size:.65rem; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--slate); margin-bottom:8px;
}
.sp-title {
  font-family:var(--font-display); font-size:clamp(1.4rem,2.2vw,2rem);
  font-weight:400; line-height:1.2; margin-bottom:14px; color:var(--ink);
}

/* Price */
.sp-price-block { margin-bottom:16px; }
.sp-price-block .woocommerce-Price-amount { font-size:1.6rem; font-weight:700; color:var(--coral); }
.sp-inst { font-size:.78rem; color:var(--gray-500); margin-top:4px; }
.sp-inst strong { color:var(--ink); }

/* Short desc */
.sp-short-desc {
  font-size:.88rem; color:var(--gray-600); line-height:1.75;
  margin-bottom:22px; padding-bottom:20px;
  border-bottom:1px solid var(--gray-100);
}

/* CTA row: qty + ATC side by side */
.sp-cta-row {
  display:flex; gap:10px; align-items:stretch;
  margin-bottom:18px; flex-wrap:wrap;
}
.sp-qty {
  display:flex; align-items:center;
  border:1.5px solid var(--gray-300); border-radius:var(--r-full);
  overflow:hidden; height:46px; flex-shrink:0; background:var(--white);
}
.sp-qty button {
  width:38px; height:100%; background:none; border:none;
  cursor:pointer; font-size:1rem; color:var(--gray-600);
  transition:background var(--t); line-height:1;
}
.sp-qty button:hover { background:var(--gray-100); }
.sp-qty input {
  width:42px; text-align:center; border:none;
  font-size:.9rem; font-weight:600; outline:none;
  color:var(--ink); background:transparent;
  -moz-appearance:textfield;
}
.sp-qty input::-webkit-outer-spin-button,
.sp-qty input::-webkit-inner-spin-button { -webkit-appearance:none; }
.sp-atc {
  flex:1; min-width:180px; height:46px;
  font-size:.75rem; letter-spacing:.06em;
  display:flex; align-items:center; justify-content:center; gap:8px;
}

/* Shipping sim */
.sp-ship-sim {
  background:var(--gray-50); border:1px solid var(--gray-200);
  border-radius:var(--r-md); padding:14px 16px; margin-bottom:18px;
}
.sp-ship-label {
  font-size:.68rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:var(--gray-500); margin-bottom:8px;
}
.sp-ship-row { display:flex; gap:8px; }
.sp-cep-input {
  flex:1; padding:9px 14px;
  border:1.5px solid var(--gray-300); border-radius:var(--r-full);
  font-size:.85rem; font-family:var(--font-body); outline:none;
  transition:border-color var(--t); color:var(--ink); background:var(--white);
}
.sp-cep-input:focus { border-color:var(--coral); }
.sp-cep-input.error { border-color:#ef4444; animation:shake .3s; }
@keyframes shake {
  0%,100%{transform:translateX(0)} 25%{transform:translateX(-4px)} 75%{transform:translateX(4px)}
}

/* Unavailable */
.sp-unavail {
  padding:14px 18px; background:var(--gray-50);
  border-radius:var(--r-md); color:var(--gray-500);
  font-size:.88rem; font-weight:500; margin-bottom:18px;
}

/* Trust perks */
.sp-perks { display:flex; flex-direction:column; gap:8px; padding-top:16px; border-top:1px solid var(--gray-100); }
.sp-perk  { display:flex; align-items:center; gap:9px; font-size:.78rem; color:var(--gray-700); }
.sp-perk svg { color:var(--coral); flex-shrink:0; width:16px; height:16px; }

/* Full description */
.sp-full-desc {
  margin:52px 0 0; padding:40px 0 0; border-top:1px solid var(--gray-200);
  max-width:780px; font-size:.9rem; color:var(--gray-700); line-height:1.8;
}
.sp-section-label {
  font-size:.68rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--gray-500); margin-bottom:14px; font-family:var(--font-body);
}

/* Related */
.sp-related { margin-top:64px; padding-top:48px; border-top:1px solid var(--gray-200); }

/* Hide WC default review elements */
#reviews, .woocommerce-Reviews, #comments, .commentlist,
.comment-form, #review_form_wrapper, #review_form { display:none !important; }

/* Responsive */
@media (max-width: 768px) {
  .sp-cta-row { gap:8px; }
  .sp-atc { min-width:140px; font-size:.72rem; }
  .rev-form-wrap { padding:22px 20px; }
  .rev-fields-2col { grid-template-columns:1fr; }
  .rev-avg-big { font-size:2.4rem; }
  .rev-header { flex-direction:column; align-items:flex-start; gap:14px; }
}

/* ============================================================
   SINGLE PRODUCT — sp-layout grid (desktop 2 col)
============================================================ */
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 32px 0 56px;
}
@media (max-width: 900px) {
  .sp-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: #111;
  color: rgba(255,255,255,.6);
  padding: 68px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: .82rem; line-height: 1.75; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.fsoc {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--t);
}
.fsoc:hover { background: var(--coral); border-color: var(--coral); color: var(--white); }
.footer-col h5 {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: .8rem; color: rgba(255,255,255,.55); transition: color var(--t); }
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: .72rem; }
.footer-pay { display: flex; gap: 6px; align-items: center; }
.pay-tag {
  background: rgba(255,255,255,.07); border-radius: var(--r-xs);
  padding: 4px 9px; font-size: .62rem; font-weight: 700;
  letter-spacing: .05em; color: rgba(255,255,255,.5); text-transform: uppercase;
}
@media (max-width: 1200px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 768px)  { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ============================================================
   MOBILE — ÚNICO BLOCO DEFINITIVO
============================================================ */
.mobile-nav-actions { display:flex; gap:8px; margin-top:16px; padding-bottom:20px; }
.mobile-nav-actions .btn { font-size:.65rem; padding:7px 14px; letter-spacing:.06em; }

@media (max-width: 768px) {
  #site-header    { height: 68px; }
  .ann-bar        { font-size: .6rem; padding: 5px 12px; }
  .site-logo img,
  .site-logo .monabu-logo-img { height: 46px !important; max-width: 170px !important; }
  .hdr-icon       { width: 30px; height: 30px; }
  .hdr-icon svg   { width: 16px; height: 16px; }
  .cart-bubble    { width: 12px; height: 12px; font-size: .45rem; top: 3px; right: 3px; }
  .hamburger span { width: 16px; }
  .header-actions > a.btn { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .products-grid  { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .shop-wrap      { grid-template-columns: 1fr; gap: 28px; }
  .shop-sidebar   { position: static; }
  .nl-form        { flex-direction: column; }
  .footer-bottom  { flex-direction: column; text-align: center; }
}

/* ============================================================
   PAGE HERO (usado em Contato e Quem Somos)
============================================================ */
.page-hero {
  padding: 64px 0 44px;
  text-align: center;
  background: var(--cream);
}
.page-hero .eyebrow { justify-content: center; display: flex; }
.page-hero h1 { margin: 12px 0 16px; }
.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  font-size: .95rem;
}

/* ============================================================
   STORES GRID (página Contato / Lojas)
============================================================ */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.store-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.store-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.store-card-cover {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-50);
}
.store-card-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.store-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--coral);
  color: var(--white);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
  z-index: 2;
}
.store-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 22px;
  flex: 1;
}
.store-card-body h3 { font-size: 1.05rem; margin-bottom: 2px; }
.store-detail {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .8rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.store-detail svg { flex-shrink: 0; margin-top: 2px; width: 15px; height: 15px; color: var(--coral); }
.store-detail a { color: var(--gray-700); }
.store-detail a:hover { color: var(--coral); }
.store-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}
.store-actions .btn { flex: 1; justify-content: center; }

@media (max-width: 1100px) {
  .stores-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .page-hero { padding: 40px 0 32px; }
  .stores-grid { grid-template-columns: 1fr; gap: 18px; }
  .store-card-cover { border-radius: 0; }
}

/* ============================================================
   QUEM SOMOS — Banner dividido + assinatura
============================================================ */
.about-banner {
  width: 100%;
  line-height: 0;
  background: var(--gray-100);
}
.about-banner img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.about-signature {
  text-align: center;
  padding: 36px 0 8px;
}
.about-signature span {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--coral-dark);
  line-height: 1;
}
.about-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 0 8px;
}
.about-intro p { font-size: 1rem; line-height: 1.85; }
.about-purpose {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 24px 56px;
}
.about-purpose p { font-size: 1rem; line-height: 1.85; }
.about-purpose strong { color: var(--coral-dark); font-weight: 700; }
@media (max-width: 768px) {
  .about-intro, .about-purpose { padding: 36px 0 4px; }
}

/* ============================================================
   FORMULÁRIO DE CONTATO
============================================================ */
.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-row label {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
}
.form-row textarea { min-height: 128px; resize: vertical; }
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--gray-400); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(248,67,74,.1);
}
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .form-2col { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   VALORES — cards (página Quem Somos)
============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  text-align: center;
  transition: box-shadow var(--t), transform var(--t);
}
.value-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.value-icon {
  width: 58px; height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--rose);
  display: flex; align-items: center; justify-content: center;
  color: var(--coral-dark);
}
.value-icon svg { width: 24px; height: 24px; }
.value-card h4 { font-size: 1rem; margin-bottom: 10px; }
.value-card p { font-size: .84rem; color: var(--gray-700); line-height: 1.7; }

@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   FIX — Garantir visibilidade padrão de nome/preço do produto
   (proteção contra qualquer CSS externo escondendo esses elementos)
============================================================ */
.pc-name, .pc-price, .pc-brand, .pc-inst {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  display: block !important;
}
.pc-price { display: flex !important; }

/* ============================================================
   PÁGINAS INSTITUCIONAIS / LEGAIS (Termos, Privacidade, Trocas)
============================================================ */
.page-content h2 {
  font-family: var(--font-display); font-weight: 400; font-size: 1.4rem;
  color: var(--ink); margin: 36px 0 14px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-size: 1.02rem; font-weight: 700; color: var(--ink);
  margin: 24px 0 10px;
}
.page-content p { margin-bottom: 14px; }
.page-content ul, .page-content ol { margin: 0 0 14px; padding-left: 22px; }
.page-content li { margin-bottom: 6px; }
.page-content strong { color: var(--ink); }
.page-content .legal-updated {
  font-size: .8rem; color: var(--gray-500); font-style: italic; margin-bottom: 28px;
}
