/* Header, navegação e rodapé — Espaço Mulher */

:root {
  --accent: #eb2e7e;
  --accent-hot: #fe1c78;
  --bar-pink: #cf3c7d;
  --header-text: #677279;
  --footer-bg: #fbc8d7;
  --line-pink: #fbc8d7;
}

html { scroll-behavior: smooth; }

.site-topbar {
  background: linear-gradient(310deg, #cf3c7d, #cf3c7d);
  height: 35px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
}
.topbar-msg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  opacity: 0;
  white-space: nowrap;
  animation: topbarFade 9s ease-in-out infinite;
}
.topbar-msg:nth-child(1) { animation-delay: 0s; }
.topbar-msg:nth-child(2) { animation-delay: 3s; }
.topbar-msg:nth-child(3) { animation-delay: 6s; }
@keyframes topbarFade {
  0%, 28% { opacity: 1; transform: translateY(0); }
  33%, 100% { opacity: 0; transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .topbar-msg { animation: none; opacity: 0; }
  .topbar-msg:nth-child(1) { opacity: 1; }
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.site-header .header-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 118px;
}
.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.header-logo img {
  height: 112px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
}
.search-bar {
  display: flex;
  align-items: stretch;
  height: 44px;
  border: 1px solid #dfe3e6;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 14px;
  font-family: inherit;
  color: #1b1b1b;
  min-width: 0;
}
.search-bar input::placeholder { color: #9aa3a8; }
.search-bar select {
  border: none;
  border-left: 1px solid #e6eaec;
  background: #fff;
  color: #677279;
  font-size: 13px;
  padding: 0 10px;
  max-width: 180px;
  font-family: inherit;
  outline: none;
}
.search-bar button {
  width: 48px;
  background: #eb2e7e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
.search-bar button:hover { background: #d41f6d; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-action {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #677279;
  font-size: 13px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.header-action svg { width: 22px; height: 22px; }
.cart-count {
  background: #eb2e7e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
}

.site-nav {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.site-nav ul {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}
.site-nav a {
  color: #677279;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a:hover { color: #eb2e7e; }
.nav-bars { color: #677279; font-size: 16px; }

.color-line {
  background: linear-gradient(to right, #faeef1, #fbc8d7, #fbc8d7, #faeef1);
  height: 6px;
  width: 100%;
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #677279;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.mobile-menu {
  display: none;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 8px 20px 16px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: #677279;
  border-bottom: 1px solid #f4f4f4;
  font-size: 14px;
}

.site-footer {
  background: #fbc8d7;
  color: #1b1b1b;
  padding: 40px 0 24px;
  margin-top: 20px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 32px;
}
.site-footer h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #677279;
  margin-bottom: 14px;
}
.site-footer p, .site-footer a, .site-footer li {
  font-size: 13px;
  line-height: 1.7;
  color: #1b1b1b;
}
.site-footer ul { list-style: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-copy { font-size: 11px; color: #333; max-width: 560px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
  color: #1b1b1b;
}
.footer-social svg { width: 16px; height: 16px; }
.payment-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.payment-row img { height: 22px; width: auto; max-height: 22px; object-fit: contain; }
.pay-pix-off {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 8px;
  padding: 3px 8px 3px 6px;
}
.pay-pix-off img {
  height: 22px;
  width: auto;
  max-height: 22px;
  max-width: 72px;
  object-fit: contain;
}
.pay-pix-off em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  color: #00bdae;
  white-space: nowrap;
}
.seals { display: flex; gap: 12px; align-items: center; margin-top: 10px; }
.seals img { height: 27px; }
.footer-trust {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-trust .footer-ra {
  height: 58px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
.footer-pix-off {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 14px;
}
.footer-pix-off img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.footer-pix-off span {
  font-size: 13px;
  font-weight: 800;
  color: #00bdae;
  white-space: nowrap;
}

.reviews-static { padding: 10px 0 30px; }
.reviews-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.reviews-score-box {
  background: #f371a5;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}
.reviews-meta { font-size: 14px; color: #1b1b1b; }
.reviews-meta strong { display: block; font-size: 16px; }
.review-list { display: flex; flex-direction: column; gap: 16px; }
.review-item {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
}
.review-item .who { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.review-item .who strong { font-size: 14px; }
.verified-pill {
  background: rgba(254,28,120,.1);
  color: #fe1c78;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}
.review-stars { color: #f371a5; font-size: 13px; letter-spacing: 1px; }
.review-item p { font-size: 13px; color: #4a4a4a; line-height: 1.55; margin-top: 6px; }
.review-photos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.review-photos img {
  width: 148px;
  height: 148px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #f7f7f7;
}
.review-art {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 22px;
}
.review-art img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid #eee;
}
.review-item.is-hidden { display: none !important; }
.review-item.is-visible { display: block !important; }
.review-art.is-hidden { display: none !important; }
.review-art.is-visible { display: flex !important; }
.reviews-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 16px;
  flex-wrap: nowrap;
}
.reviews-tabs .reviews-tab {
  flex: 1;
}
.reviews-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.reviews-tab {
  min-width: 44px;
  height: 40px;
  padding: 0 16px;
  border: 1.5px solid #e1e1e1;
  background: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #1b1b1b;
  cursor: pointer;
  font-family: inherit;
}
.reviews-tab.is-active {
  background: #eb2e7e;
  border-color: #eb2e7e;
  color: #fff;
}

.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1b1b1b;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  z-index: 12000;
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 900px) {
  .site-header .header-row {
    min-height: 96px;
    padding: 6px 48px;
  }
  .header-logo img { height: 88px; max-width: 168px; }
  .site-nav { display: none; }
  .mobile-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .site-topbar { font-size: 11px; padding: 0 10px; text-align: center; }
}

.hero-main img#mainImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stars { color: #f371a5; letter-spacing: 1px; font-size: 14px; }
.accordion-body-inner img { width: 100%; height: auto; display: block; margin: 0 auto; }
.gallery-layout { display: flex; flex-direction: column; }

@media (min-width: 768px) {
  .gallery-layout { flex-direction: row; gap: 10px; align-items: flex-start; }
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
}
