/*
Theme Name: Fina Camada
Author: Webtagger
Description: Tema personalizado para Fina Camada.
Version: 1.0
*/

:root {
  --roxo:      #7b3f7a;
  --roxo-dark: #5c2e5b;
  --rosa:      #b87aa8;
  --rosa-light:#f7eef5;
  --creme:     #fdf9fc;
  --texto:     #2a2a2a;
  --cinza:     #888;
  --borda:     #ede8ec;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; color: var(--texto); background: #fff; }

/* ─── UTILIDADES ─── */
.btn-roxo {
  background: var(--roxo);
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}
.btn-roxo:hover { background: var(--roxo-dark); color: #fff; }
.btn-outline-roxo {
  background: transparent;
  color: var(--roxo);
  border: 2px solid var(--roxo);
  padding: 9px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}
.btn-outline-roxo:hover { background: var(--roxo); color: #fff; }

/* ─── TOPBAR ─── */
.topbar {
  background: #2a2a2a;
  color: rgba(255,255,255,.85);
  text-align: center;
  font-size: 12px;
  padding: 7px 15px;
  letter-spacing: .5px;
}

/* ─── NAVBAR ─── */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--borda);
  padding: 0 0;
}
.navbar .container { padding: 12px 20px; }
.nav-logo img { height: 48px; }
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--roxo);
  font-weight: 700;
  margin-left: 8px;
  vertical-align: middle;
}
.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--texto);
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: .25s;
}
.navbar-nav .nav-link:hover { color: var(--roxo); background: var(--rosa-light); }
.search-wrap {
  position: relative;
  max-width: 220px;
}
.search-wrap input {
  border: 1px solid var(--borda);
  border-radius: 50px;
  padding: 7px 16px 7px 36px;
  font-size: 13px;
  outline: none;
  width: 100%;
  background: var(--creme);
  color: var(--texto);
}
.search-wrap input:focus { border-color: var(--rosa); }
.search-wrap .s-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cinza);
  pointer-events: none;
}
.nav-icons a {
  color: var(--texto);
  text-decoration: none;
  font-size: 20px;
  transition: .25s;
  position: relative;
}
.nav-icons a:hover { color: var(--roxo); }
.badge-cart {
  position: absolute;
  top: -6px; right: -7px;
  background: var(--rosa);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
}

/* ─── HERO SLIDER ─── */
.hero { position: relative; overflow: hidden; }
.hero-slides { display: flex; transition: transform .6s cubic-bezier(.77,0,.18,1); }
.hero-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

/* foto em tela cheia */
.desktop-bg {
  position: relative;
  height: 560px;
  overflow: hidden;
  display: block !important;
}
.desktop-bg .bg-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.desktop-bg .bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.18) 55%, transparent 100%);
}
.banner-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 80px;
  z-index: 2;
  max-width: 560px;
}
.banner-tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,.88);
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,.2);
}

.hero-slide .mobile-bg { display: none; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: .3s;
  color: #fff;
  font-size: 20px;
  backdrop-filter: blur(6px);
}
.hero-arrow:hover { background: #fff; color: var(--roxo); }
.hero-arrow.left  { left: 18px; }
.hero-arrow.right { right: 18px; }

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: .3s;
}
.dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* ─── BENEFÍCIOS ─── */
.benefits {
  background: #f7f2f6;
  border-bottom: 1px solid var(--borda);
  padding: 14px 0;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--texto);
  font-size: 13px;
  font-weight: 500;
}
.benefit-item .bicon {
  width: 34px; height: 34px;
  background: var(--rosa-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.benefit-divider {
  width: 1px;
  height: 40px;
  background: var(--borda);
}

/* ─── SEÇÕES ─── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--roxo-dark);
  font-weight: 700;
}
.section-sub {
  font-size: 14px;
  color: var(--cinza);
}

/* ─── CATEGORIAS ─── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--rosa-light);
  transition: transform .3s, box-shadow .3s;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 30px rgba(123,63,122,.18); }
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(113, 68, 112, 0.85));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 28px 8px 10px;
  font-family: 'Playfair Display', serif;
}

/* ─── BANNER CENTRAL ─── */
.mid-banner {
  background: #f7f2f6;
  border: 1px solid var(--borda);
  border-radius: 20px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.mid-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.2;
}
.mid-banner p { font-size: 15px; color: #666; margin: 12px 0 24px; }
.mid-banner-deco {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  opacity: .08;
  line-height: 1;
}

/* ─── PRODUTOS ─── */
.products { background: #fff; }
.product-card {
  border-radius: 14px;
  border: 1px solid var(--borda);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  background: #fff;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(123,63,122,.12);
}
.product-card .img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--creme);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .5s;
}
.product-card:hover img { transform: scale(1.07); }
.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--roxo);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  letter-spacing: .5px;
}
.product-badge.novo { background: var(--rosa); }
.product-fav {
  position: absolute;
  top: 10px; right: 10px;
  width: 30px; height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: .3s;
}
.product-fav:hover { background: var(--rosa-light); }
.product-info { padding: 14px 14px 16px; }
.product-cat {
  font-size: 10px;
  color: var(--rosa);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--roxo);
  font-family: 'Playfair Display', serif;
}
.product-parcel { font-size: 11px; color: var(--cinza); }
.product-pix {
  font-size: 11px;
  color: var(--rosa);
  font-weight: 600;
  margin-top: 2px;
}
.btn-carrinho {
  width: 100%;
  background: var(--creme);
  color: var(--roxo);
  border: 1px solid var(--borda);
  border-radius: 8px;
  padding: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  margin-top: 10px;
}
.btn-carrinho:hover { background: var(--roxo); color: #fff; border-color: var(--roxo); }

/* ─── DEPOIMENTOS ─── */
.testimonials { background: var(--creme); }
.test-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--borda);
  height: 100%;
}
.stars { color: #f5a623; font-size: 13px; margin-bottom: 10px; }
.test-text {
  font-size: 14px;
  color: var(--cinza);
  line-height: 1.6;
  margin-bottom: 16px;
}
.test-user { display: flex; align-items: center; gap: 10px; }
.test-user img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.test-user strong { font-size: 14px; display: block; }
.test-user span { font-size: 12px; color: var(--cinza); }

/* ─── FOOTER ─── */
footer {
  background: #2e1d2e;
  color: rgba(255,255,255,.8);
  padding: 60px 0 30px;
}
footer h5 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #fff;
  margin-bottom: 18px;
}
footer a {
  display: block;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: .25s;
}
footer a:hover { color: var(--rosa); }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--rosa);
  font-weight: 700;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: .3s;
  margin-right: 8px;
}
.footer-social a:hover { background: var(--rosa); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-icon {
  background: rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}

/* ─── WHATSAPP ─── */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 1000;
  animation: pulse-wa 3s infinite;
  transition: transform .2s;
}
.whatsapp-btn:hover { transform: scale(1.1); color: #fff; }
@keyframes pulse-wa {
  0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4);}
  50%{box-shadow:0 4px 32px rgba(37,211,102,.7);}
}

/* ─── MOBILE ─── */
@media(max-width:768px){
  .hero-slide .desktop-bg { display: none !important; }
  .hero-slide .mobile-bg  { display: block !important; }

  .mobile-bg {
    position: relative;
    height: 400px;
    overflow: hidden;
  }
  .mobile-bg .bg-photo {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .mobile-bg .bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
  }
  .mobile-bg .banner-content {
    position: absolute;
    bottom: 32px;
    left: 0; right: 0;
    top: auto;
    transform: none;
    padding: 0 28px;
    max-width: 100%;
  }
  .mobile-bg .banner-title { font-size: 32px; }

  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .mid-banner { flex-direction: column; padding: 36px 28px; text-align: center; }
  .mid-banner h2 { font-size: 26px; }
  .mid-banner-deco { display: none; }
  .benefit-divider { display: none; }
}
@media(max-width:576px){
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── HEADER MOBILE ─── */
.navbar-mobile {
  display: none;
}
@media(max-width:768px){
  .navbar-desktop { display: none !important; }
  .navbar-mobile  { display: block !important; }
  .navbar-mobile {
    display: block;
    background: #fff;
    border-bottom: 1px solid var(--borda);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .navbar-mobile .top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
  }
  .navbar-mobile .nav-logo-mobile {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--roxo);
    font-weight: 700;
    text-align: center;
    flex: 1;
    line-height: 1.1;
  }
  .navbar-mobile .nav-logo-mobile small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    font-weight: 400;
    color: var(--cinza);
    text-transform: uppercase;
  }
  .navbar-mobile .mob-icon {
    color: var(--texto);
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
  }
  .navbar-mobile .search-row {
    padding: 0 16px 12px;
    display: flex;
    align-items: center;
    background: var(--creme);
    margin: 0 16px 12px;
    border-radius: 50px;
    border: 1px solid var(--borda);
    gap: 8px;
  }
  .navbar-mobile .search-row input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 13px;
    color: var(--texto);
    width: 100%;
    padding: 8px 0;
  }
  .navbar-mobile .search-row svg { color: var(--cinza); flex-shrink: 0; }

  .mob-drawer {
    display: none;
    flex-direction: column;
    padding: 16px;
    border-top: 1px solid var(--borda);
    gap: 4px;
  }
  .mob-drawer.open { display: flex; }
  .mob-drawer a {
    font-size: 15px;
    font-weight: 500;
    color: var(--texto);
    padding: 10px 0;
    border-bottom: 1px solid var(--borda);
    text-decoration: none;
  }
  .mob-drawer a:last-child { border-bottom: none; }

  .cat-scroll-wrap {
    display: flex !important;
    overflow-x: auto;
    gap: 16px;
    padding: 8px 16px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .cat-scroll-wrap::-webkit-scrollbar { display: none; }
  .cat-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    cursor: pointer;
  }
  .cat-circle .circle-img {
    width: 90px; height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--borda);
    transition: border-color .3s;
  }
  .cat-circle:hover .circle-img { border-color: var(--rosa); }
  .cat-circle .circle-img img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .cat-circle span {
    font-size: 11px;
    font-weight: 700;
    color: var(--roxo);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
  }
  .cat-grid-desktop { display: none !important; }
  .cat-scroll-mobile { display: block !important; }
}

.navbar-mobile {
  display: none;
}

/* garante que o desktop some no mobile mesmo com Bootstrap */
@media(min-width:769px){
  .navbar-mobile { display: none !important; }
  .navbar-desktop { display: flex !important; }
}

@media (min-width: 769px) {
  .cat-grid-desktop {
    display: none !important;
  }

  .cat-scroll-mobile {
    display: block !important;
  }

  .cat-scroll-wrap {
    display: flex !important;
    justify-content: center;
    align-items: flex-start;
    gap: 34px;
    overflow-x: visible;
    padding: 20px 0 30px;
    flex-wrap: wrap;
  }

  .cat-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    cursor: pointer;
  }

  .cat-circle .circle-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--borda);
    transition: border-color 0.3s;
  }

  .cat-circle:hover .circle-img {
    border-color: var(--rosa);
  }

  .cat-circle .circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cat-circle span {
    font-size: 14px;
    font-weight: 700;
    color: var(--roxo);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
  }
}

/* =========================
   CATEGORIAS - DESKTOP
========================= */
.cat-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.cat-scroll-wrap {
  display: flex;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 18px 0 26px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cat-scroll-wrap::-webkit-scrollbar {
  display: none;
}

.cat-circle {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.cat-circle .circle-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--borda);
  transition: 0.3s;
}

.cat-circle .circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cat-circle:hover .circle-img {
  border-color: var(--rosa);
}

.cat-circle span {
  font-size: 14px;
  font-weight: 700;
  color: var(--roxo);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.cat-arrow {
  position: absolute;
  top: 84px;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid var(--borda);
  border-radius: 50%;
  background: #fff;
  color: var(--roxo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.cat-arrow:hover {
  background: var(--roxo);
  color: #fff;
}

.cat-prev {
  left: 0;
}

.cat-next {
  right: 0;
}

.cat-arrow.is-hidden {
  display: none !important;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .cat-carousel {
    padding: 0;
  }

  .cat-scroll-wrap {
    gap: 16px;
    padding: 8px 16px 16px;
  }

  .cat-circle .circle-img {
    width: 90px;
    height: 90px;
    border-width: 3px;
  }

  .cat-circle span {
    font-size: 11px;
  }

  .cat-arrow {
    display: none !important;
  }
}

/* ===============================
   WOOCOMMERCE - LISTAGEM PRODUTOS
================================ */

.archive-products-page,
.category-products-page {
  background: #fff;
  min-height: 70vh;
}

.archive-products-page .section-title,
.category-products-page .section-title {
  font-family: "Playfair Display", serif;
  color: var(--roxo-dark, #3b2340);
  font-weight: 700;
}

/* Card do produto */
.archive-products-page .product-card,
.category-products-page .product-card {
  background: #fff;
  border: 1px solid rgba(120, 70, 120, 0.15);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.archive-products-page .product-card:hover,
.category-products-page .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

/* Imagem */
.archive-products-page .product-img,
.category-products-page .product-img {
  display: block;
  width: 100%;
  height: 260px;
  background: #faf5fa;
  overflow: hidden;
}

.archive-products-page .product-img img,
.category-products-page .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Informações */
.archive-products-page .product-info,
.category-products-page .product-info {
  padding: 18px;
  text-align: center;
}

.archive-products-page .product-info h3,
.category-products-page .product-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.archive-products-page .product-info h3 a,
.category-products-page .product-info h3 a {
  color: #2d2d2d;
  text-decoration: none;
}

.archive-products-page .product-info h3 a:hover,
.category-products-page .product-info h3 a:hover {
  color: var(--rosa, #c76a9d);
}

/* Preço */
.archive-products-page .product-price,
.category-products-page .product-price {
  color: var(--roxo-dark, #3b2340);
  font-weight: 700;
  font-size: 18px;
  margin: 10px 0 14px;
}

/* Botão */
.archive-products-page .btn-roxo,
.category-products-page .btn-roxo {
  display: inline-block;
  background: var(--roxo, #6b3fa0) !important;
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
}

.archive-products-page .btn-roxo:hover,
.category-products-page .btn-roxo:hover {
  background: var(--roxo-dark, #3b2340) !important;
  color: #fff !important;
}

/* Responsivo */
@media (max-width: 768px) {
  .archive-products-page .product-img,
  .category-products-page .product-img {
    height: 190px;
  }

  .archive-products-page .product-info,
  .category-products-page .product-info {
    padding: 14px;
  }

  .archive-products-page .product-info h3,
  .category-products-page .product-info h3 {
    font-size: 16px;
  }
}

/* ===============================
   WOOCOMMERCE - PRODUTO INDIVIDUAL
================================ */

.single-product-page {
  background: #fff;
  min-height: 70vh;
}

/* Área geral do produto */
.single-product-page .woocommerce div.product,
body.single-product .woocommerce div.product {
  background: #fff;
}

/* Imagem principal */
.single-product-page .woocommerce div.product div.images,
body.single-product .woocommerce div.product div.images {
  margin-bottom: 30px;
}

.single-product-page .woocommerce div.product div.images img,
body.single-product .woocommerce div.product div.images img {
  border-radius: 22px;
  background: #faf5fa;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* Galeria */
.single-product-page .woocommerce-product-gallery .flex-control-thumbs li img,
body.single-product .woocommerce-product-gallery .flex-control-thumbs li img {
  border-radius: 12px;
  border: 1px solid rgba(120, 70, 120, 0.15);
}

/* Conteúdo ao lado da imagem */
.single-product-page .summary,
body.single-product .summary {
  padding: 10px 0 0;
}

/* Título */
.single-product-page .product_title,
body.single-product .product_title {
  font-family: "Playfair Display", serif;
  color: var(--roxo-dark, #3b2340);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}

/* Preço */
.single-product-page .price,
body.single-product .price {
  color: var(--roxo-dark, #3b2340) !important;
  font-size: 26px !important;
  font-weight: 700;
  margin-bottom: 18px;
}

.single-product-page .woocommerce-Price-amount,
body.single-product .woocommerce-Price-amount {
  color: var(--roxo-dark, #3b2340);
  font-weight: 700;
}

/* Descrição curta */
.single-product-page .woocommerce-product-details__short-description,
body.single-product .woocommerce-product-details__short-description {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 20px;
}

/* Quantidade */
.single-product-page .quantity input,
body.single-product .quantity input {
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(120, 70, 120, 0.22);
  padding: 0 10px;
}

/* Botão adicionar ao carrinho */
.single-product-page .single_add_to_cart_button,
body.single-product .single_add_to_cart_button {
  background: var(--roxo, #6b3fa0) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 13px 28px !important;
  font-weight: 700 !important;
  border: none !important;
  transition: all 0.25s ease;
}

.single-product-page .single_add_to_cart_button:hover,
body.single-product .single_add_to_cart_button:hover {
  background: var(--roxo-dark, #3b2340) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Meta: categoria */
.single-product-page .product_meta,
body.single-product .product_meta {
  margin-top: 22px;
  font-size: 14px;
  color: #777;
}

.single-product-page .product_meta a,
body.single-product .product_meta a {
  color: var(--rosa, #c76a9d);
  text-decoration: none;
  font-weight: 600;
}

/* Abas descrição/avaliação */
.single-product-page .woocommerce-tabs,
body.single-product .woocommerce-tabs {
  margin-top: 55px;
}

.single-product-page .woocommerce div.product .woocommerce-tabs ul.tabs,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs {
  padding-left: 0;
  margin-bottom: 0;
}

.single-product-page .woocommerce div.product .woocommerce-tabs ul.tabs li,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: #faf5fa;
  border: 1px solid rgba(120, 70, 120, 0.15);
  border-radius: 14px 14px 0 0;
}

.single-product-page .woocommerce div.product .woocommerce-tabs ul.tabs li.active,
body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: #fff;
}

.single-product-page .woocommerce div.product .woocommerce-tabs .panel,
body.single-product .woocommerce div.product .woocommerce-tabs .panel {
  border: 1px solid rgba(120, 70, 120, 0.15);
  border-radius: 0 18px 18px 18px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.single-product-page .woocommerce-tabs h2,
body.single-product .woocommerce-tabs h2 {
  font-family: "Playfair Display", serif;
  color: var(--roxo-dark, #3b2340);
  font-weight: 700;
}

/* Produtos relacionados */
.single-product-page .related.products,
body.single-product .related.products {
  margin-top: 60px;
}

.single-product-page .related.products h2,
body.single-product .related.products h2 {
  font-family: "Playfair Display", serif;
  color: var(--roxo-dark, #3b2340);
  font-weight: 700;
  margin-bottom: 25px;
}

/* Responsivo */
@media (max-width: 768px) {
  .single-product-page .product_title,
  body.single-product .product_title {
    font-size: 32px;
  }

  .single-product-page .price,
  body.single-product .price {
    font-size: 22px !important;
  }

  .single-product-page .woocommerce div.product .woocommerce-tabs .panel,
  body.single-product .woocommerce div.product .woocommerce-tabs .panel {
    padding: 18px;
  }
}

/* Busca desktop/mobile */
.search-wrap,
.search-row {
  display: flex;
  align-items: center;
}

.search-submit {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  color: inherit;
  cursor: pointer;
}

.search-wrap input,
.search-row input {
  outline: none;
}

/* Menu mobile vindo do WordPress */
.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li {
  margin: 0;
  padding: 0;
}

.mobile-menu-list a {
  display: block;
  text-decoration: none;
}

/* ===============================
   GALERIA PRODUTO - AJUSTE SEGURO
================================ */

body.single-product .woocommerce-product-gallery,
.single-product-page .woocommerce-product-gallery {
  max-width: 100%;
}

body.single-product .woocommerce-product-gallery__wrapper,
.single-product-page .woocommerce-product-gallery__wrapper {
  margin: 0;
}

body.single-product .woocommerce-product-gallery__image,
.single-product-page .woocommerce-product-gallery__image {
  background: #faf5fa;
  overflow: hidden;
}

body.single-product .woocommerce-product-gallery__image img,
.single-product-page .woocommerce-product-gallery__image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

body.single-product .flex-control-thumbs,
.single-product-page .flex-control-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding: 0;
  list-style: none;
}

body.single-product .flex-control-thumbs li,
.single-product-page .flex-control-thumbs li {
  width: 72px !important;
  height: 72px !important;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(120, 70, 120, 0.18);
}

body.single-product .flex-control-thumbs li img,
.single-product-page .flex-control-thumbs li img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  cursor: pointer;
  opacity: 0.65;
}

body.single-product .flex-control-thumbs li img.flex-active,
.single-product-page .flex-control-thumbs li img.flex-active {
  opacity: 1;
}

/* ===============================
   GALERIA PRODUTO - VISUAL FINAL
================================ */

/* Imagem principal */
body.single-product .woocommerce-product-gallery__image,
.single-product-page .woocommerce-product-gallery__image {
  border-radius: 22px;
  overflow: hidden;
  background: #faf5fa;
  box-shadow: 0 14px 35px rgba(60, 30, 60, 0.10);
}

/* Foto principal */
body.single-product .woocommerce-product-gallery__image img,
.single-product-page .woocommerce-product-gallery__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

/* Miniaturas */
body.single-product .flex-control-thumbs,
.single-product-page .flex-control-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  padding: 0;
  list-style: none;
}

/* Cada quadradinho da miniatura */
body.single-product .flex-control-thumbs li,
.single-product-page .flex-control-thumbs li {
  width: 74px !important;
  height: 74px !important;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(120, 70, 120, 0.18);
  background: #faf5fa;
  box-shadow: 0 6px 16px rgba(60, 30, 60, 0.08);
}

/* Imagem da miniatura */
body.single-product .flex-control-thumbs li img,
.single-product-page .flex-control-thumbs li img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 14px;
  opacity: 0.65;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Miniatura ativa/hover */
body.single-product .flex-control-thumbs li img:hover,
body.single-product .flex-control-thumbs li img.flex-active,
.single-product-page .flex-control-thumbs li img:hover,
.single-product-page .flex-control-thumbs li img.flex-active {
  opacity: 1;
  transform: scale(1.04);
  border: 2px solid var(--roxo, #7e3f83);
}

/* Responsivo */
@media (max-width: 768px) {
  body.single-product .woocommerce-product-gallery__image img,
  .single-product-page .woocommerce-product-gallery__image img {
    height: 360px;
  }

  body.single-product .flex-control-thumbs li,
  .single-product-page .flex-control-thumbs li {
    width: 62px !important;
    height: 62px !important;
  }
}

/* ===============================
   PRODUTOS RELACIONADOS - SINGLE PRODUCT
================================ */

body.single-product .related.products,
.single-product-page .related.products {
  margin-top: 70px;
  padding-top: 35px;
  border-top: 1px solid rgba(120, 70, 120, 0.14);
}

body.single-product .related.products > h2,
.single-product-page .related.products > h2 {
  font-family: "Playfair Display", serif;
  color: var(--roxo-dark, #3b2340);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 28px;
}

/* Grid dos produtos relacionados */
body.single-product .related.products ul.products,
.single-product-page .related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0;
  margin: 0;
}

/* Card */
body.single-product .related.products ul.products li.product,
.single-product-page .related.products ul.products li.product {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  background: #fff;
  border: 1px solid rgba(120, 70, 120, 0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(60, 30, 60, 0.07);
  transition: all 0.25s ease;
  text-align: center;
}

body.single-product .related.products ul.products li.product:hover,
.single-product-page .related.products ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(60, 30, 60, 0.12);
}

/* Imagem */
body.single-product .related.products ul.products li.product a img,
.single-product-page .related.products ul.products li.product a img {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: #faf5fa;
}

/* Título */
body.single-product .related.products .woocommerce-loop-product__title,
.single-product-page .related.products .woocommerce-loop-product__title {
  font-family: "DM Sans", sans-serif;
  color: #2b2b2b;
  font-size: 16px !important;
  font-weight: 700;
  padding: 16px 16px 6px !important;
  margin: 0 !important;
}

/* Preço */
body.single-product .related.products .price,
.single-product-page .related.products .price {
  color: var(--roxo-dark, #3b2340) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin: 6px 0 14px !important;
  display: block;
}

/* Botão */
body.single-product .related.products a.button,
.single-product-page .related.products a.button {
  display: inline-block;
  background: var(--roxo, #7e3f83) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 10px 22px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  margin: 0 0 18px !important;
  text-decoration: none !important;
  border: none !important;
}

body.single-product .related.products a.button:hover,
.single-product-page .related.products a.button:hover {
  background: var(--roxo-dark, #3b2340) !important;
  color: #fff !important;
}

/* Responsivo */
@media (max-width: 992px) {
  body.single-product .related.products ul.products,
  .single-product-page .related.products ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  body.single-product .related.products ul.products,
  .single-product-page .related.products ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  body.single-product .related.products ul.products li.product a img,
  .single-product-page .related.products ul.products li.product a img {
    height: 170px !important;
  }

  body.single-product .related.products > h2,
  .single-product-page .related.products > h2 {
    font-size: 28px;
  }

  body.single-product .related.products a.button,
  .single-product-page .related.products a.button {
    font-size: 12px !important;
    padding: 9px 14px !important;
  }
}

/* Forçar produtos relacionados alinhados à esquerda */
body.single-product .related.products ul.products,
.single-product-page .related.products ul.products {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  gap: 24px !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Tamanho fixo do card relacionado */
body.single-product .related.products ul.products li.product,
.single-product-page .related.products ul.products li.product {
  width: 260px !important;
  max-width: 280px !important;
  flex: 0 0 260px !important;
  margin: 0 !important;
}

/* ===============================
   CATEGORIAS LATERAIS - LOJA
================================ */

.product-sidebar {
  background: #fff;
  border: 1px solid rgba(120, 70, 120, 0.14);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(60, 30, 60, 0.06);
  position: sticky;
  top: 100px;
}

.product-sidebar h3 {
  font-family: "Playfair Display", serif;
  color: var(--roxo-dark, #3b2340);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
}

.product-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-sidebar-list li {
  margin-bottom: 10px;
}

.product-sidebar-list a {
  display: block;
  padding: 10px 14px;
  border-radius: 999px;
  color: #3b2340;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.product-sidebar-list a:hover,
.product-sidebar-list a.active {
  background: var(--roxo, #7e3f83);
  color: #fff;
}

/* Categorias dentro dos cards */
.product-card .product-cat,
.product-card .product-cat a {
  color: var(--rosa, #c76a9d);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card .product-cat a:hover {
  color: var(--roxo-dark, #3b2340);
}

/* Ajuste dos cards com lateral */
.archive-products-page .product-card,
.category-products-page .product-card {
  height: 100%;
}

/* Mobile: categorias laterais viram lista horizontal */
@media (max-width: 991px) {
  .product-sidebar {
    position: static;
    margin-bottom: 28px;
  }

  .product-sidebar-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .product-sidebar-list li {
    margin-bottom: 0;
    flex: 0 0 auto;
  }

  .product-sidebar-list a {
    white-space: nowrap;
  }
}

/* ===============================
   ALINHAR BOTÕES DOS CARDS
================================ */

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card .img-wrap {
  flex-shrink: 0;
}

.product-card .product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .product-cat {
  min-height: 34px;
}

.product-card .product-name {
  min-height: 28px;
  display: block;
}

.product-card .btn-carrinho {
  margin-top: auto;
  align-self: center;
  width: auto;
  min-width: 150px;
  max-width: 220px;
  padding: 10px 18px;
  text-align: center;
  border-radius: 12px;
  font-size: 14px;
}

/* Espaçamento entre informações do produto e botão */
.product-card .product-pix {
  margin-bottom: 16px;
}

.product-card .btn-carrinho {
  margin-top: 12px;
}

/* ===============================
   PADRÃO FINAL DOS CARDS DE PRODUTO
================================ */

.product-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(120, 70, 120, 0.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(60, 30, 60, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(60, 30, 60, 0.10);
}

/* Imagem do produto */
.product-card .img-wrap {
  display: block;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #faf5fa;
  flex-shrink: 0;
}

.product-card .img-wrap img,
.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Remove selo e coração dos cards */
.product-card .product-badge,
.product-card .product-fav {
  display: none !important;
}

/* Área de informações */
.product-card .product-info {
  flex: 1;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
}

/* Categorias */
.product-card .product-cat,
.product-card .product-cat a {
  color: var(--rosa, #c76a9d);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 1.3;
}

.product-card .product-cat {
  min-height: 34px;
  margin-bottom: 14px;
}

/* Nome do produto */
.product-card .product-name,
.product-card .product-name a,
.product-card h3 a {
  color: #111;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.product-card .product-name {
  min-height: 30px;
  margin-bottom: 24px;
}

/* Preço */
.product-card .product-price,
.product-card .price {
  color: var(--roxo-dark, #3b2340) !important;
  font-family: "Playfair Display", serif;
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 1;
  margin-bottom: 8px;
}

/* Parcelamento */
.product-card .product-parcel {
  color: #777;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 4px;
}

/* Pix */
.product-card .product-pix {
  color: var(--rosa, #c76a9d);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Botão */
.product-card .btn-carrinho,
.product-card .btn-roxo,
.product-card a.button {
  margin-top: auto;
  align-self: center;
  width: auto;
  min-width: 190px;
  max-width: 240px;
  padding: 12px 24px !important;
  border-radius: 14px !important;
  background: #fffafd !important;
  border: 1px solid rgba(120, 70, 120, 0.16) !important;
  color: var(--roxo, #7e3f83) !important;
  text-align: center;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.product-card .btn-carrinho:hover,
.product-card .btn-roxo:hover,
.product-card a.button:hover {
  background: var(--roxo, #7e3f83) !important;
  color: #fff !important;
}

/* Responsivo */
@media (max-width: 768px) {
  .product-card .img-wrap {
    height: 210px;
  }

  .product-card .product-info {
    padding: 18px;
  }

  .product-card .product-price,
  .product-card .price {
    font-size: 24px !important;
  }

  .product-card .btn-carrinho,
  .product-card .btn-roxo,
  .product-card a.button {
    min-width: 150px;
    max-width: 210px;
    font-size: 14px !important;
    padding: 10px 18px !important;
  }
}

/* ===============================
   AJUSTE FINAL - CARD IGUAL HOME
================================ */

/* Conteúdo do card alinhado à esquerda */
.product-card .product-info {
  text-align: left !important;
  align-items: flex-start !important;
  padding: 22px 24px 24px !important;
}

/* Categoria alinhada à esquerda */
.product-card .product-cat {
  width: 100%;
  text-align: left !important;
  min-height: 34px;
  margin-bottom: 16px !important;
}

/* Nome do produto alinhado à esquerda */
.product-card .product-name,
.product-card .product-name a,
.product-card h3,
.product-card h3 a {
  width: 100%;
  text-align: left !important;
  display: block;
  margin-bottom: 26px !important;
}

/* Preço alinhado à esquerda */
.product-card .product-price,
.product-card .price {
  width: 100%;
  text-align: left !important;
  margin-bottom: 6px !important;
}

/* Parcelamento e Pix alinhados à esquerda */
.product-card .product-parcel,
.product-card .product-pix {
  width: 100%;
  text-align: left !important;
}

/* Espaço antes do botão */
.product-card .product-pix {
  margin-bottom: 28px !important;
}

/* Botão centralizado embaixo */
.product-card .btn-carrinho,
.product-card .btn-roxo,
.product-card a.button {
  align-self: center !important;
  margin-top: auto !important;
  min-width: 190px;
  max-width: 240px;
  text-align: center !important;
}

/* Imagem mais parecida com o card da home */
.product-card .img-wrap {
  height: 250px !important;
}

.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 768px) {
  .product-card .product-info {
    padding: 18px !important;
  }

  .product-card .img-wrap {
    height: 220px !important;
  }

  .product-card .btn-carrinho,
  .product-card .btn-roxo,
  .product-card a.button {
    min-width: 160px;
  }
}

.product-sidebar h3 {
  font-size: 22px !important;
}

.product-sidebar-list a {
  font-size: 14px !important;
  padding: 8px 13px !important;
}

.product-sidebar-list a.active {
  font-size: 14px !important;
  padding: 9px 15px !important;
}

a.added_to_cart.wc-forward {
  display: none !important;
}

/* ===============================
   AVISOS WOOCOMMERCE - COR DO SITE
================================ */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--roxo, #7e3f83) !important;
  background: #fffafd !important;
  color: #3b2340 !important;
  border-radius: 12px;
  padding: 18px 22px !important;
}

/* Ícone do aviso */
.woocommerce-message::before {
  color: var(--roxo, #7e3f83) !important;
}

/* Botão "Ver carrinho" dentro do aviso */
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
  background: var(--roxo, #7e3f83) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 10px 18px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border: none !important;
}

/* Hover do botão */
.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.woocommerce-error .button:hover {
  background: var(--roxo-dark, #3b2340) !important;
  color: #fff !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  position: relative;
  border-top: 2px solid var(--roxo, #7e3f83) !important;
  background: #fffafd !important;
  color: #3b2340 !important;
  border-radius: 12px;
  padding: 18px 22px 18px 52px !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  color: var(--roxo, #7e3f83) !important;
  top: 42% !important;
  left: 20px !important;
  transform: translateY(-50%) !important;
  font-size: 18px !important;
}

/* ===============================
   AJUSTE ESPAÇAMENTO GALERIA PRODUTO
================================ */

/* Dá respiro geral na área do produto */
body.single-product .product,
.single-product-page {
  padding-top: 40px;
}

/* Espaço entre imagem principal e miniaturas */
body.single-product .woocommerce-product-gallery,
.single-product-page .woocommerce-product-gallery {
  margin-top: 20px;
}

/* Imagem principal */
body.single-product .woocommerce-product-gallery__image,
.single-product-page .woocommerce-product-gallery__image {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 18px !important;
}

/* Foto principal */
body.single-product .woocommerce-product-gallery__image img,
.single-product-page .woocommerce-product-gallery__image img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
}

/* Lista das miniaturas */
body.single-product .flex-control-thumbs,
.single-product-page .flex-control-thumbs {
  display: flex;
  gap: 14px;
  margin-top: 16px !important;
  padding: 0 !important;
  list-style: none;
}

/* Miniaturas */
body.single-product .flex-control-thumbs li,
.single-product-page .flex-control-thumbs li {
  width: 82px !important;
  height: 82px !important;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(120, 70, 120, 0.18);
  background: #faf5fa;
}

/* Imagem da miniatura */
body.single-product .flex-control-thumbs li img,
.single-product-page .flex-control-thumbs li img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  body.single-product .product,
  .single-product-page {
    padding-top: 24px;
  }

  body.single-product .woocommerce-product-gallery__image img,
  .single-product-page .woocommerce-product-gallery__image img {
    height: 360px;
  }

  body.single-product .flex-control-thumbs li,
  .single-product-page .flex-control-thumbs li {
    width: 66px !important;
    height: 66px !important;
  }
}

/* ===============================
   SELECT DE VARIAÇÕES DO PRODUTO
================================ */

/* Tabela/linha das variações */
.single-product-page table.variations,
body.single-product table.variations {
  margin-bottom: 18px !important;
  width: 100%;
}

.single-product-page table.variations tr,
body.single-product table.variations tr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.single-product-page table.variations th,
body.single-product table.variations th {
  min-width: 60px;
  padding: 0 !important;
  text-align: left;
}

.single-product-page table.variations label,
body.single-product table.variations label {
  font-size: 17px;
  font-weight: 700;
  color: #2b2b2b;
}

/* Select */
.single-product-page table.variations select,
body.single-product table.variations select {
  width: 100%;
  max-width: 520px;
  height: 52px;
  border: 1px solid rgba(126, 63, 131, 0.22);
  border-radius: 14px;
  background: #fffafd;
  color: #3b2340;
  padding: 0 44px 0 16px;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  box-shadow: 0 8px 22px rgba(60, 30, 60, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Hover/focus */
.single-product-page table.variations select:hover,
body.single-product table.variations select:hover,
.single-product-page table.variations select:focus,
body.single-product table.variations select:focus {
  border-color: var(--roxo, #7e3f83);
  box-shadow: 0 10px 26px rgba(126, 63, 131, 0.10);
}

/* Link limpar variação */
.single-product-page .reset_variations,
body.single-product .reset_variations {
  display: inline-block !important;
  margin-top: 8px;
  color: var(--rosa, #c76a9d) !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
}

/* Botão desabilitado antes de escolher opção */
.single-product-page .single_add_to_cart_button.disabled,
body.single-product .single_add_to_cart_button.disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Mobile */
@media (max-width: 768px) {
  .single-product-page table.variations tr,
  body.single-product table.variations tr {
    display: block;
  }

  .single-product-page table.variations th,
  body.single-product table.variations th {
    display: block;
    margin-bottom: 8px;
  }

  .single-product-page table.variations td,
  body.single-product table.variations td {
    display: block;
    width: 100%;
  }

  .single-product-page table.variations select,
  body.single-product table.variations select {
    max-width: 100%;
  }
}

/* ===============================
   CORRIGIR ALINHAMENTO DO SELECT DE VARIAÇÃO
================================ */

.single-product-page table.variations,
body.single-product table.variations {
  width: 100%;
  max-width: 600px;
  margin: 24px 0 28px !important;
}

.single-product-page table.variations tbody,
body.single-product table.variations tbody {
  width: 100%;
}

.single-product-page table.variations tr,
body.single-product table.variations tr {
  display: grid !important;
  grid-template-columns: 70px 1fr;
  align-items: center !important;
  gap: 18px;
  margin-bottom: 16px;
}

.single-product-page table.variations th,
.single-product-page table.variations td,
body.single-product table.variations th,
body.single-product table.variations td {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  vertical-align: middle !important;
}

.single-product-page table.variations label,
body.single-product table.variations label {
  margin: 0 !important;
  font-size: 17px;
  font-weight: 700;
  color: #111;
}

.single-product-page table.variations select,
body.single-product table.variations select {
  width: 100% !important;
  max-width: 420px !important;
  height: 52px;
  margin: 0 !important;
  border: 1px solid rgba(126, 63, 131, 0.22);
  border-radius: 14px;
  background: #fffafd;
  color: #3b2340;
  padding: 0 44px 0 18px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(60, 30, 60, 0.05);
}

/* Mobile: label em cima e select embaixo */
@media (max-width: 768px) {
  .single-product-page table.variations tr,
  body.single-product table.variations tr {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .single-product-page table.variations select,
  body.single-product table.variations select {
    max-width: 100% !important;
  }
}

/* ===============================
   AJUSTE FINO - SELECT DE VARIAÇÃO MAIS COMPACTO
================================ */

.single-product-page table.variations,
body.single-product table.variations {
  max-width: 430px !important;
  margin: 20px 0 24px !important;
}

.single-product-page table.variations tr,
body.single-product table.variations tr {
  display: grid !important;
  grid-template-columns: 45px 1fr !important;
  gap: 10px !important;
  align-items: center !important;
}

.single-product-page table.variations select,
body.single-product table.variations select {
  max-width: 300px !important;
  height: 48px !important;
  padding: 0 38px 0 16px !important;
  border-radius: 14px !important;
  font-size: 15px !important;
}

.single-product-page table.variations label,
body.single-product table.variations label {
  font-size: 16px !important;
  margin: 0 !important;
}

/* Mobile */
@media (max-width: 768px) {
  .single-product-page table.variations,
  body.single-product table.variations {
    max-width: 100% !important;
  }

  .single-product-page table.variations tr,
  body.single-product table.variations tr {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .single-product-page table.variations select,
  body.single-product table.variations select {
    max-width: 100% !important;
  }
}

/* Espaçamento entre quantidade e botão adicionar ao carrinho */
.single-product-page .variations_button,
body.single-product .variations_button,
.single-product-page form.cart,
body.single-product form.cart {
  gap: 8px !important;
}

/* Se o botão estiver muito longe da quantidade */
.single-product-page .quantity,
body.single-product .quantity {
  margin-right: 8px !important;
}

/* Alinha melhor quantidade + botão */
.single-product-page .variations_button,
body.single-product .variations_button {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap;
}

/* ===============================
   CHECKOUT - ESPAÇAMENTO ENTRE CAMPOS
================================ */

/* Dá respiro no campo País e Estado */
.wc-block-checkout .wc-block-components-address-form__country,
.wc-block-checkout .wc-block-components-address-form__state {
  margin-top: 12px !important;
  margin-bottom: 14px !important;
}

/* Dá respiro entre todos os campos do endereço */
.wc-block-checkout .wc-block-components-address-form > div {
  margin-bottom: 14px !important;
}

/* Evita que Nome/Sobrenome grudem no País */
.wc-block-checkout .wc-block-components-address-form__last_name,
.wc-block-checkout .wc-block-components-address-form__first_name {
  margin-bottom: 14px !important;
}

/* ===============================
   CHECKOUT - CORRIGIR PAÍS E ESTADO
================================ */

/* Volta com o label País/Estado */
.wc-block-checkout .wc-block-components-address-form__country label,
.wc-block-checkout .wc-block-components-address-form__state label {
  display: block !important;
  position: absolute !important;
  top: 8px !important;
  left: 12px !important;
  transform: none !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  color: #555 !important;
  pointer-events: none !important;
}

/* Deixa País/Estado com altura parecida com os outros campos */
.wc-block-checkout .wc-block-components-address-form__country select,
.wc-block-checkout .wc-block-components-address-form__state select,
.wc-block-checkout .wc-block-components-address-form__country input,
.wc-block-checkout .wc-block-components-address-form__state input {
  height: 62px !important;
  min-height: 62px !important;
  padding: 24px 44px 8px 12px !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  border-radius: 6px !important;
}

/* Garante o espaçamento entre os campos */
.wc-block-checkout .wc-block-components-address-form__country,
.wc-block-checkout .wc-block-components-address-form__state {
  margin-top: 12px !important;
  margin-bottom: 14px !important;
}

/* Seta centralizada */
.wc-block-checkout .wc-block-components-address-form__country svg,
.wc-block-checkout .wc-block-components-address-form__state svg {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

/* ===============================
   CHECKOUT - CORRIGIR SELECT ESTADO/PAÍS
================================ */

/* Caixa dos selects País e Estado */
.wc-block-checkout .wc-block-components-address-form__country,
.wc-block-checkout .wc-block-components-address-form__state {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
}

/* Container interno */
.wc-block-checkout .wc-block-components-address-form__country .wc-block-components-combobox,
.wc-block-checkout .wc-block-components-address-form__state .wc-block-components-combobox,
.wc-block-checkout .wc-block-components-address-form__country .wc-block-components-select,
.wc-block-checkout .wc-block-components-address-form__state .wc-block-components-select {
  height: 62px !important;
}

/* Campo */
.wc-block-checkout .wc-block-components-address-form__country input,
.wc-block-checkout .wc-block-components-address-form__state input,
.wc-block-checkout .wc-block-components-address-form__country select,
.wc-block-checkout .wc-block-components-address-form__state select {
  height: 62px !important;
  min-height: 62px !important;
  padding: 18px 44px 0 12px !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  border-radius: 6px !important;
  box-sizing: border-box !important;
}

/* Label pequeno no topo */
.wc-block-checkout .wc-block-components-address-form__country label,
.wc-block-checkout .wc-block-components-address-form__state label {
  display: block !important;
  position: absolute !important;
  top: 7px !important;
  left: 12px !important;
  transform: none !important;
  font-size: 12px !important;
  line-height: 1 !important;
  color: #555 !important;
  z-index: 2 !important;
}

/* Seta centralizada */
.wc-block-checkout .wc-block-components-address-form__country svg,
.wc-block-checkout .wc-block-components-address-form__state svg {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

/* ===============================
   CHECKOUT - PADRONIZAR ALTURA DOS CAMPOS
================================ */

/* Inputs comuns do checkout */
.wc-block-checkout .wc-block-components-text-input input {
  height: 62px !important;
  min-height: 62px !important;
  padding: 0 12px !important;
  font-size: 18px !important;
  line-height: 62px !important;
  border-radius: 6px !important;
  box-sizing: border-box !important;
}

/* Labels/placeholders dos inputs comuns */
.wc-block-checkout .wc-block-components-text-input label {
  font-size: 18px !important;
  line-height: 1 !important;
}

/* Ajusta o espaçamento entre todos os campos */
.wc-block-checkout .wc-block-components-address-form > div {
  margin-bottom: 14px !important;
}

/* Mantém País e Estado no mesmo padrão de altura */
.wc-block-checkout .wc-block-components-address-form__country input,
.wc-block-checkout .wc-block-components-address-form__state input,
.wc-block-checkout .wc-block-components-address-form__country select,
.wc-block-checkout .wc-block-components-address-form__state select {
  height: 62px !important;
  min-height: 62px !important;
}

/* ===============================
   CHECKOUT - RESPIRO NOS CAMPOS PREENCHIDOS
================================ */

/* Todos os inputs de texto do checkout */
.wc-block-checkout .wc-block-components-text-input input {
  height: 70px !important;
  min-height: 70px !important;
  padding: 30px 12px 10px 12px !important;
  line-height: 1.2 !important;
  font-size: 18px !important;
  box-sizing: border-box !important;
}

/* Label flutuante dos campos preenchidos */
.wc-block-checkout .wc-block-components-text-input label {
  top: 10px !important;
  left: 12px !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  transform: none !important;
}

/* Quando o campo estiver vazio, mantém o placeholder mais centralizado */
.wc-block-checkout .wc-block-components-text-input input:placeholder-shown + label {
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 18px !important;
}

/* Quando estiver focado ou preenchido, label sobe */
.wc-block-checkout .wc-block-components-text-input input:focus + label,
.wc-block-checkout .wc-block-components-text-input input:not(:placeholder-shown) + label {
  top: 10px !important;
  transform: none !important;
  font-size: 13px !important;
}

/* ===============================
   PAGINAÇÃO DOS PRODUTOS
================================ */

.woocommerce-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.woocommerce-pagination ul.page-numbers {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.woocommerce-pagination ul.page-numbers li {
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(126, 63, 131, 0.18);
  background: #fffafd;
  color: var(--roxo, #7e3f83);
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.woocommerce-pagination .page-numbers li span.current {
  background: var(--roxo, #7e3f83) !important;
  color: #fff !important;
  border-color: var(--roxo, #7e3f83) !important;
}

.woocommerce-pagination .page-numbers li a:hover {
  background: var(--roxo, #7e3f83);
  color: #fff !important;
  border-color: var(--roxo, #7e3f83);
}

.woocommerce-pagination .page-numbers li a.next,
.woocommerce-pagination .page-numbers li a.prev {
  width: auto;
  min-width: 42px;
  padding: 0 16px;
  border-radius: 999px;
}

/* Mobile */
@media (max-width: 576px) {
  .woocommerce-pagination ul.page-numbers {
    gap: 8px;
  }

  .woocommerce-pagination .page-numbers li a,
  .woocommerce-pagination .page-numbers li span {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

.product_meta .sku_wrapper {
  display: none !important;
}

/* ===============================
   CHECKOUT - PADRONIZAÇÃO FINAL DOS CAMPOS
================================ */

/* Espaçamento uniforme entre os campos */
.wc-block-checkout .wc-block-components-address-form {
  row-gap: 16px !important;
  column-gap: 16px !important;
}

.wc-block-checkout .wc-block-components-address-form > div,
.wc-block-checkout .wc-block-components-text-input,
.wc-block-checkout .wc-block-components-select,
.wc-block-checkout .wc-block-components-combobox {
  margin-bottom: 0 !important;
}

/* Todos os campos com mesma altura */
.wc-block-checkout .wc-block-components-text-input input,
.wc-block-checkout .wc-block-components-select select,
.wc-block-checkout .wc-block-components-combobox input {
  height: 70px !important;
  min-height: 70px !important;
  padding: 30px 14px 10px 14px !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
}

/* Labels no mesmo padrão */
.wc-block-checkout .wc-block-components-text-input label,
.wc-block-checkout .wc-block-components-select label,
.wc-block-checkout .wc-block-components-combobox label {
  top: 10px !important;
  left: 14px !important;
  transform: none !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  color: #555 !important;
}

/* País e Estado alinhados com os demais */
.wc-block-checkout .wc-block-components-address-form__country input,
.wc-block-checkout .wc-block-components-address-form__state input,
.wc-block-checkout .wc-block-components-address-form__country select,
.wc-block-checkout .wc-block-components-address-form__state select {
  height: 70px !important;
  min-height: 70px !important;
  padding: 30px 44px 10px 14px !important;
}

/* Seta dos selects */
.wc-block-checkout .wc-block-components-address-form__country svg,
.wc-block-checkout .wc-block-components-address-form__state svg {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

/* Espaço antes de opções de pagamento */
.wc-block-checkout .wc-block-checkout__payment-method,
.wc-block-checkout .wc-block-components-checkout-step {
  margin-top: 22px;
}

.footer-bottom {
  align-items: center !important;
}

.footer-copy {
  white-space: nowrap !important;
  display: inline-block !important;
  line-height: 1.4;
}

.footer-webtagger-link {
  display: inline !important;
  color: inherit !important;
  text-decoration: none;
  font-weight: inherit;
  vertical-align: baseline;
}

.footer-webtagger-link:hover {
  text-decoration: underline;
}

.btn-outline-roxo,
.btn-outline-roxo:visited,
.btn-outline-roxo:hover,
.btn-outline-roxo:focus {
  text-decoration: none !important;
}

/* Layout principal */
.fc-contact-layout {
  max-width: 1180px;
  margin: 50px auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: stretch; /* deixa as duas colunas com mesma altura visual */
}

.fc-contact-info,
.fc-contact-form {
  background: #fff7fb;
  border: 1px solid rgba(179, 91, 143, 0.18);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(58, 29, 58, 0.08);
  height: 100%;
  box-sizing: border-box;
}

/* Cards da esquerda */
.fc-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fc-contact-card {
  display: flex !important;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(179, 91, 143, 0.16);
  border-radius: 16px;
  padding: 14px 16px;
  color: #321932 !important;
  text-decoration: none !important;
  box-sizing: border-box;
  transition: 0.2s ease;
  min-height: 88px; /* diminui a altura */
}

.fc-contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(58, 29, 58, 0.08);
}

.fc-contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #b35b8f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.fc-contact-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.fc-contact-text strong {
  font-size: 15px;
  color: #321932;
  line-height: 1.2;
}

.fc-contact-text small {
  font-size: 14px;
  color: rgba(50, 25, 50, 0.68);
  line-height: 1.3;
}

/* Formulário */
.fc-contact-form .wpcf7 {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  max-width: 100%;
}

.fc-contact-form .wpcf7-form label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #3a1d3a;
  margin-bottom: 16px;
}

.fc-contact-form .wpcf7-form input,
.fc-contact-form .wpcf7-form textarea {
  width: 100%;
  border: 1px solid rgba(58, 29, 58, 0.18);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 15px;
  color: #2b1830;
  background: #fff;
  margin-top: 6px;
  outline: none;
  box-sizing: border-box;
}

.fc-contact-form .wpcf7-form textarea {
  min-height: 170px;
  resize: vertical;
}

.fc-contact-form .wpcf7-form input[type="submit"] {
  width: auto;
  background: #b35b8f;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 30px;
  font-weight: 700;
  cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
  .fc-contact-layout {
    grid-template-columns: 1fr;
    margin: 30px auto 60px;
  }

  .fc-contact-info,
  .fc-contact-form {
    padding: 24px;
    height: auto;
  }

  .fc-contact-form .wpcf7-form input[type="submit"] {
    width: 100%;
  }
}

/* ===============================
   Página FAQ - Fina Camada
================================ */

.fc-faq-section {
  max-width: 980px;
  margin: 50px auto 80px;
  padding: 0 20px;
}

.fc-faq-header {
  text-align: center;
  margin-bottom: 36px;
}

.fc-faq-header span {
  display: inline-block;
  color: #b35b8f;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 10px;
}

.fc-faq-header h2 {
  color: #4a2148;
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 12px;
}

.fc-faq-header p {
  color: #5a465a;
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.fc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fc-faq-item {
  background: #fff7fb;
  border: 1px solid rgba(179, 91, 143, 0.18);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 10px 28px rgba(58, 29, 58, 0.06);
  overflow: hidden;
}

.fc-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  color: #321932;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.fc-faq-item summary::-webkit-details-marker {
  display: none;
}

.fc-faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #b35b8f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  transition: 0.2s ease;
}

.fc-faq-item[open] summary::after {
  content: "–";
  background: #4a2148;
}

.fc-faq-item p {
  padding: 0 24px 22px;
  margin: 0;
  color: #4b3a4b;
  font-size: 15px;
  line-height: 1.7;
}

.fc-faq-item[open] {
  border-color: rgba(179, 91, 143, 0.35);
}

@media (max-width: 768px) {
  .fc-faq-section {
    margin: 35px auto 60px;
    padding: 0 18px;
  }

  .fc-faq-header h2 {
    font-size: 28px;
  }

  .fc-faq-item summary {
    padding: 18px;
    font-size: 15px;
  }

  .fc-faq-item p {
    padding: 0 18px 18px;
  }
}

/* FAQ - força estilo nos details mesmo se a classe não pegar */
.fc-faq-section {
  max-width: 980px;
  margin: 50px auto 80px;
  padding: 0 20px;
}

.fc-faq-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.fc-faq-section details,
.fc-faq-list details {
  background: #fff7fb !important;
  border: 1px solid rgba(179, 91, 143, 0.22) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 28px rgba(58, 29, 58, 0.06) !important;
  overflow: hidden !important;
  padding: 0 !important;
}

.fc-faq-section summary,
.fc-faq-list summary {
  list-style: none !important;
  cursor: pointer !important;
  padding: 20px 24px !important;
  color: #321932 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
}

.fc-faq-section summary::-webkit-details-marker,
.fc-faq-list summary::-webkit-details-marker {
  display: none !important;
}

.fc-faq-section summary::marker,
.fc-faq-list summary::marker {
  content: "" !important;
}

.fc-faq-section summary::after,
.fc-faq-list summary::after {
  content: "+" !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border-radius: 50% !important;
  background: #b35b8f !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

.fc-faq-section details[open] summary::after,
.fc-faq-list details[open] summary::after {
  content: "–" !important;
  background: #4a2148 !important;
}

.fc-faq-section details p,
.fc-faq-list details p {
  padding: 0 24px 22px !important;
  margin: 0 !important;
  color: #4b3a4b !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.fc-faq-section details[open],
.fc-faq-list details[open] {
  border-color: rgba(179, 91, 143, 0.4) !important;
}

/* Aviso de produto adicionado ao carrinho */
.fina-toast-cart {
  position: fixed;
  top: 110px;
  right: 24px;
  z-index: 99999;
  background: #fff;
  color: #6b255c;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(107, 37, 92, 0.18);
  border: 1px solid #ead3e3;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.fina-toast-cart a {
  color: #6b255c;
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 575px) {
  .fina-toast-cart {
    top: 90px;
    left: 15px;
    right: 15px;
    bottom: auto;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 768px) {
  .hero-slide:nth-child(2) .mobile-bg .bg-photo {
    object-position: 80% center !important;
  }
}