:root {
  --pink: #E4177E;
  --pink-dark: #A11557;
  --sage: #7C9885;
  --peach: #F0B8D0;
  --cream: #FBEDE8;
  --ink: #3A2A2E;
  --ink-soft: #8A7373;
  --card: #ffffff;
  --radius: 20px;
  --shadow: 0 8px 24px rgba(161, 21, 87, 0.14);
  --shadow-hover: 0 16px 32px rgba(161, 21, 87, 0.24);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream) url('bg-pattern.webp') repeat;
  background-size: 340px auto;
  color: var(--ink);
  font-family: 'Lato', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, .brand-name { font-family: 'Dancing Script', cursive; }
h2 { font-family: 'Playfair Display', serif; font-style: italic; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 249, 243, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(230, 140, 170, 0.15);
}
.topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.4rem; color: var(--pink-dark); }
.brand-mark { display: inline-block; }

.insta-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  color: var(--pink-dark); background: rgba(246, 168, 198, 0.15);
  transition: transform 0.15s, background 0.2s;
  flex-shrink: 0;
}
.insta-link:hover { transform: translateY(-2px) scale(1.05); background: rgba(246, 168, 198, 0.3); }
.insta-link svg { width: 20px; height: 20px; }

.social-links { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.search-wrap { flex: 1; min-width: 220px; }

@media (max-width: 480px) {
  .brand { order: 1; }
  .social-links { order: 2; margin-left: auto; }
  .search-wrap { order: 3; flex-basis: 100%; min-width: 0; }
}
#searchInput {
  width: 100%;
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid rgba(230, 140, 170, 0.25);
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
#searchInput:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(246, 168, 198, 0.2);
  transform: translateY(-1px);
}

/* ---------- Novidades (vitrine) ---------- */
.novidades { padding: 16px 0 4px; }
.novidades-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.novidades-title { font-size: 1.3rem; margin: 0 0 10px; color: var(--pink-dark); }
.novidades-track-wrap { position: relative; display: flex; align-items: center; gap: 6px; }
.novidades-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2px;
}
.novidades-track::-webkit-scrollbar { display: none; }
.novidade-card {
  flex: 0 0 110px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
}
.novidade-thumb-wrap {
  position: relative;
  width: 110px;
  aspect-ratio: 1/1.2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #ffe9f2, #fff3e0);
  transition: transform 0.2s ease;
}
.novidade-card:hover .novidade-thumb-wrap { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.novidade-thumb-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  -webkit-user-select: none; user-select: none; -webkit-user-drag: none;
}
.novidade-cat-ribbon {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  text-align: center;
  padding: 5px 4px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.novidade-cat-ribbon:hover { filter: brightness(1.1); }
.novidades-arrow {
  flex: 0 0 auto;
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: #fff; color: var(--pink-dark); box-shadow: var(--shadow);
  font-size: 1.3rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s, background 0.2s;
}
.novidades-arrow:hover { transform: scale(1.08); background: var(--peach); }

/* ---------- Prateleira inicial (configurável no admin) ---------- */
.home-shelf { padding: 16px 0 4px; }
.home-shelf .novidades-track { align-items: stretch; }
.home-shelf .product-card {
  flex: 0 0 190px;
  opacity: 1;
  transform: none;
  animation: none;
}
.home-shelf .product-card .thumb { aspect-ratio: 1 / 1.15; }

/* ---------- Banner do topo ---------- */
.top-banner-wrap {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 0 20px;
}
.top-banner-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 562;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.top-banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2.2s ease;
}
.top-banner-slide.active { opacity: 1; }
.top-banner-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}
.top-banner-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transition: background 0.3s, transform 0.3s;
}
.top-banner-dots .dot.active { background: #fff; transform: scale(1.3); }

/* ---------- Hero ---------- */
.hero {
  max-width: 1000px;
  margin: 30px auto 20px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.hero-text { position: relative; flex: 1; min-width: 240px; text-align: center; max-width: 640px; margin: 0 auto; }
.hero-text::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 108%;
  height: 78%;
  transform: translate(-50%, -50%) rotate(-1.6deg);
  background: linear-gradient(100deg, rgba(240, 184, 208, 0) 0%, rgba(240, 184, 208, 0.55) 18%, rgba(228, 23, 126, 0.22) 50%, rgba(240, 184, 208, 0.55) 82%, rgba(240, 184, 208, 0) 100%);
  border-radius: 44% 56% 62% 38% / 52% 45% 55% 48%;
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
}
.hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--pink-dark);
}
.hero p { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }
.hero-butterfly { vertical-align: -4px; }
/* ---------- Ticker de novidades ---------- */
.news-ticker {
  max-width: 1100px;
  margin: 14px auto 0;
  overflow: hidden;
  background: linear-gradient(90deg, var(--peach), var(--cream));
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.news-ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  gap: 14px;
  padding: 10px 0;
  animation: newsScroll 26s linear infinite;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--pink-dark);
  font-size: 1rem;
}
.news-ticker-track span:not(.sep) { padding: 0 6px; }
.news-ticker-track .sep { color: var(--pink); font-style: normal; }
@keyframes newsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Categorias ---------- */
.categories {
  max-width: 1100px;
  margin: 24px auto;
  padding: 0 20px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.chip {
  flex: none;
  padding: 8px 18px;
  border-radius: 999px;
  border: 2px solid rgba(230, 140, 170, 0.3);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.chip:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.chip.active {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border-color: transparent;
  color: #fff;
}

/* ---------- Categorias em destaque (círculos) ---------- */
.category-spotlight {
  max-width: 1100px;
  margin: 0 auto 8px;
  padding: 0 20px;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.spot-item {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 84px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
}
.spot-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.spot-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
.spot-item:hover .spot-circle { transform: translateY(-4px) scale(1.06); box-shadow: var(--shadow-hover); }
.spot-item span.label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  line-height: 1.2;
}

/* ---------- Dropdown de categorias ---------- */
.category-select-wrap {
  max-width: 1100px;
  margin: 8px auto 20px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.category-select-wrap label { font-weight: 700; font-size: 0.85rem; color: var(--pink-dark); }
#categorySelect {
  flex: 1;
  max-width: 320px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid rgba(230, 140, 170, 0.3);
  background: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#categorySelect:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(228, 23, 126, 0.15); }

/* ---------- Faixa de confiança ---------- */
.trust-strip {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  flex: 1;
  min-width: 150px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sage);
}
.trust-item .icon-svg { width: 26px; height: 26px; display: block; margin: 0 auto 6px; color: var(--pink-dark); }

/* ---------- Faixa de cupom ---------- */
.coupon-banner {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 0 20px;
}
.coupon-banner-inner {
  background: linear-gradient(90deg, var(--pink-dark), var(--pink));
  color: #fff;
  border-radius: 999px;
  padding: 10px 24px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.coupon-banner-inner .code {
  background: rgba(255,255,255,0.25);
  padding: 3px 12px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  z-index: 40;
  animation: pulseWa 2.4s ease-in-out infinite;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

/* ---------- Grid ---------- */
.grid-wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px 60px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  animation: cardIn 0.5s ease forwards;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-hover);
}
@keyframes cardIn {
  to { opacity: 1; transform: translateY(0); }
}

.product-card .thumb {
  width: 100%;
  aspect-ratio: 1 / 1.2;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #ffe9f2, #fff3e0);
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.45s ease;
  will-change: transform;
}
.product-card:hover .thumb,
.product-card:active .thumb {
  transform: scale(1.09);
}
.modal-card img { -webkit-user-select: none; user-select: none; -webkit-user-drag: none; }
.product-card .info { padding: 12px 14px 16px; }
.cat-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 6px;
  box-shadow: 0 2px 6px rgba(161, 21, 87, 0.25);
}
.modal-card .cat-tag { font-size: 0.72rem; margin-bottom: 10px; }
.product-card h3 {
  font-size: 0.95rem;
  margin: 4px 0 8px;
  line-height: 1.3;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .price { font-weight: 800; color: var(--pink-dark); font-size: 1.05rem; }

/* ---------- Load more ---------- */
.load-more-wrap { text-align: center; margin-top: 36px; }
.btn-load-more {
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}
.btn-load-more:hover { transform: translateY(-3px) scale(1.03); box-shadow: var(--shadow-hover); }
.btn-load-more:active { transform: translateY(0) scale(0.98); }
.btn-load-more:disabled { opacity: 0.5; cursor: default; transform: none; }
.status-text { color: var(--ink-soft); font-size: 0.85rem; margin-top: 10px; min-height: 1.2em; }
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: var(--ink-soft);
}
.empty-state img { border-radius: 16px; margin-bottom: 14px; }
.empty-suggestions-title {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1.05rem;
  color: var(--pink-dark);
  margin: 6px 0 2px;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0;
  background: rgba(74, 58, 58, 0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  z-index: 50;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.modal.hidden { opacity: 0; pointer-events: none; }
.modal-card {
  background: #fff;
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 28px 24px 24px;
  transform: scale(1);
  transition: transform 0.2s ease;
}
.modal.hidden .modal-card { transform: scale(0.94); }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(74, 58, 58, 0.08);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.modal-close:hover { background: rgba(74, 58, 58, 0.15); transform: rotate(90deg); }
.modal-card img { width: 100%; border-radius: 16px; margin-bottom: 14px; }
.modal-gallery { position: relative; width: 100%; aspect-ratio: 560/780; border-radius: 16px; overflow: hidden; margin-bottom: 14px; background: linear-gradient(135deg, #ffe9f2, #fff3e0); }
.modal-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; margin: 0; opacity: 0; transition: opacity 0.3s ease; border-radius: 0; }
.modal-slide.active { opacity: 1; }
.modal-gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.85); color: var(--pink-dark);
  font-size: 1.3rem; line-height: 1; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.15s;
}
.modal-gallery-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.modal-gallery-arrow.prev { left: 10px; }
.modal-gallery-arrow.next { right: 10px; }
.modal-gallery-dots {
  position: absolute; bottom: 10px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px; z-index: 2;
}
.modal-gallery-dots .dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.6); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.modal-gallery-dots .dot.active { background: #fff; transform: scale(1.3); }
.modal-card h2 { font-size: 1.2rem; margin: 0 0 8px; color: var(--ink); }
.modal-card .price { font-size: 1.4rem; margin-bottom: 12px; display: block; }
.modal-card .desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; max-height: 160px; overflow-y: auto; margin-bottom: 16px; }
.modal-card .desc a { color: var(--pink-dark); font-weight: 700; }
.modal-card .btn-buy {
  width: 100%;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s;
}
.modal-card .btn-buy:hover { transform: translateY(-2px); }
.modal-card .btn-buy:active { transform: translateY(0) scale(0.98); }
.coming-soon { text-align: center; font-size: 0.8rem; color: var(--ink-soft); margin-top: 8px; }

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 30px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.verse {
  max-width: 560px;
  margin: 0 auto 18px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--pink-dark);
}
.verse cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  color: var(--sage);
}

/* ---------- Idealizado por Carla ---------- */
.carla-box {
  max-width: 560px;
  margin: 0 auto 30px;
  padding: 26px 22px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--ink), var(--pink-dark));
  box-shadow: var(--shadow);
}
.carla-box-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 6px;
}
.carla-box h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.7rem;
  color: #fff;
  margin: 0 0 8px;
}
.carla-box p:not(.carla-box-label) {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0 0 18px;
}
.carla-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: var(--ink);
  font-weight: 800;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
}

/* ---------- Nav rodapé (páginas institucionais) ---------- */
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0 0 18px;
  font-size: 0.85rem;
}
.footer-nav a { color: var(--pink-dark); text-decoration: none; font-weight: 700; }
.footer-nav a:hover { text-decoration: underline; }

/* ---------- Páginas de conteúdo (Sobre, Como comprar, Fornecedores) ---------- */
.page-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 46px 20px 10px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem;
  color: var(--pink-dark);
  margin: 0 0 8px;
}
.page-hero p { color: var(--ink-soft); font-size: 1rem; margin: 0; }

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 20px 50px;
}
.page-content h2 {
  font-size: 1.3rem;
  color: var(--pink-dark);
  margin: 34px 0 14px;
}
.page-content p { line-height: 1.7; margin: 0 0 14px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pink-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}
.back-link:hover { text-decoration: underline; }

.step-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.step-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.step-num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
}
.step-card h3 { margin: 0 0 4px; font-size: 1.02rem; color: var(--ink); }
.step-card p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }

.faq-item { background: var(--card); border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow); margin-bottom: 12px; }
.faq-item h3 { margin: 0 0 6px; font-size: 0.98rem; color: var(--pink-dark); }
.faq-item p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }

.about-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin: 18px 0; }
.about-value { text-align: center; padding: 16px 10px; background: rgba(246, 168, 198, 0.12); border-radius: 16px; }
.about-value strong { display: block; color: var(--pink-dark); margin-bottom: 4px; font-family: 'Playfair Display', serif; }

.supplier-category { margin-bottom: 30px; }
.supplier-category h2 { margin-top: 0; }
.supplier-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.supplier-card {
  background: var(--card);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.supplier-card h3 { margin: 0; font-size: 0.98rem; color: var(--ink); }
.supplier-card a {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: var(--ink);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
}
.empty-hint { text-align: center; color: var(--ink-soft); padding: 20px 0; }
.supplier-note {
  background: rgba(124, 152, 133, 0.12);
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 26px;
  line-height: 1.6;
}

.hidden { display: none !important; }

/* ---------- Carrinho flutuante ---------- */
.cart-float {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(161, 21, 87, 0.4);
  z-index: 40;
  cursor: pointer;
  transition: transform 0.2s;
}
.cart-float:hover { transform: scale(1.08); }
.cart-float svg { width: 26px; height: 26px; stroke: #fff; }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--sage);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--cream);
}

/* ---------- Carrinho / checkout (modal) ---------- */
.cart-card { max-width: 440px; }
.cart-items { display: flex; flex-direction: column; gap: 10px; margin: 14px 0; max-height: 300px; overflow-y: auto; }
.cart-item { display: flex; align-items: center; gap: 10px; }
.cart-item img, .cart-item-noimg {
  width: 52px; height: 60px; object-fit: cover; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, #ffe9f2, #fff3e0);
}
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cart-item-name { font-size: 0.85rem; font-weight: 700; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-item-price { font-size: 0.82rem; font-weight: 800; color: var(--pink-dark); }
.cart-item-remove {
  background: rgba(192,57,43,0.1); border: none; color: #c0392b; border-radius: 50%;
  width: 26px; height: 26px; cursor: pointer; font-size: 0.9rem; flex-shrink: 0;
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-top: 2px dashed rgba(230,140,170,0.3); margin-bottom: 14px;
  font-size: 1rem;
}
.cart-total strong { color: var(--pink-dark); font-size: 1.2rem; }

.checkout-field { text-align: left; margin-bottom: 12px; }
.checkout-field label, .checkout-field-label {
  display: block; font-size: 0.78rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 5px;
}
.checkout-field input {
  width: 100%; padding: 11px 14px; border-radius: 12px;
  border: 2px solid rgba(230, 140, 170, 0.25); font-family: inherit; font-size: 0.95rem; outline: none;
}
.checkout-field input:focus { border-color: var(--pink); }
.field-hint { font-size: 0.72rem; color: var(--ink-soft); opacity: 0.75; margin: 4px 0 0; }
.resend-box { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 10px; padding-top: 10px; border-top: 1px dashed rgba(230, 140, 170, 0.3); }
.resend-box .resend-email { flex: 1; min-width: 180px; padding: 6px 10px; border-radius: 8px; border: 2px solid rgba(230, 140, 170, 0.25); font-size: 0.82rem; }
.resend-wpp { font-size: 0.78rem; color: var(--ink-soft); display: flex; align-items: center; gap: 4px; }
.order-number { font-family: monospace; font-size: 0.75rem; font-weight: 700; color: var(--pink-dark); background: rgba(230, 140, 170, 0.12); padding: 2px 8px; border-radius: 6px; }

.checkout-field-checkbox label {
  display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem;
  font-weight: 400; color: var(--ink); cursor: pointer;
}
.checkout-field-checkbox input {
  width: auto; flex-shrink: 0; margin-top: 2px; accent-color: var(--pink);
}

.btn-back {
  display: block; width: 100%; text-align: center; background: none; border: none;
  color: var(--ink-soft); font-size: 0.82rem; padding: 10px; cursor: pointer; margin-top: 6px;
}
.status-msg-checkout { font-size: 0.85rem; margin-top: 8px; min-height: 1.2em; text-align: center; }
.status-msg-checkout.error { color: #c0392b; }
.status-msg-checkout.ok { color: var(--sage); }

.pix-qr { width: 200px; height: 200px; display: block; margin: 10px auto; border-radius: 12px; }
.pix-copy-code {
  width: 100%; border-radius: 12px; border: 2px solid rgba(230,140,170,0.25);
  padding: 10px 12px; font-size: 0.78rem; font-family: monospace; resize: none; color: var(--ink-soft);
}

.download-list { display: flex; flex-direction: column; gap: 8px; margin: 14px 0; }
.download-item {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  background: var(--cream); border-radius: 12px; padding: 12px 16px; text-decoration: none;
  color: var(--ink); font-weight: 700; font-size: 0.88rem; transition: transform 0.15s;
}
.download-item:hover { transform: translateY(-2px); }
.download-icon { color: var(--pink-dark); font-size: 1.1rem; }
.hint-checkout { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin-bottom: 14px; }

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero { margin-top: 24px; }
}
