:root{
  --roxo:#6A0DAD;
  --roxo-2:#4A0780;
  --amarelo:#FFD400;

  --bg:#f7f7fc;
  --card:#ffffff;
  --text:#17171c;
  --muted:#666778;

  --border: rgba(10,10,20,.10);
  --shadow: 0 18px 45px rgba(10,10,20,.12);
  --shadow-soft: 0 10px 26px rgba(10,10,20,.08);

  --radius: 18px;
  --radius-xl: 26px;

  --topbarH: 52px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
a{ color: inherit; text-decoration:none; }
img{ max-width: 100%; display:block; }

body{
  background-color: #e2d3f5; /* um pouco mais escuro */

  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='%236a2dbb' fill-opacity='0.09'%3E%3Cellipse cx='52' cy='40' rx='10' ry='13'/%3E%3Cellipse cx='78' cy='40' rx='10' ry='13'/%3E%3Cellipse cx='44' cy='64' rx='9' ry='12'/%3E%3Cellipse cx='86' cy='64' rx='9' ry='12'/%3E%3Cellipse cx='65' cy='78' rx='18' ry='14'/%3E%3Cg transform='translate(120 110) rotate(-12)'%3E%3Cellipse cx='0' cy='-18' rx='10' ry='13'/%3E%3Cellipse cx='26' cy='-18' rx='10' ry='13'/%3E%3Cellipse cx='-8' cy='6' rx='9' ry='12'/%3E%3Cellipse cx='34' cy='6' rx='9' ry='12'/%3E%3Cellipse cx='13' cy='20' rx='18' ry='14'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(900px 500px at 20% 0%, rgba(255,212,0,.22), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(106,13,173,.18), transparent 55%);

  background-repeat: repeat, no-repeat, no-repeat;
  background-size: 260px 260px, cover, cover;
  background-attachment: fixed, fixed, fixed;

  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  min-height: 100vh;
  display:flex;
  flex-direction: column;
}

main{ flex:1; }
.container{ width: min(1120px, 92%); margin: 0 auto; }

[hidden]{ display:none !important; }
body.cart-open{ overflow:hidden; }

/* ===========================
   TOPBAR
=========================== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 3000;
  background: rgba(20, 20, 28, .92);
  color: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.topbar-content{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.topbar-left{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
}

.topbar-dot{ opacity:.55; }
.topbar-item{ opacity:.95; }

.topbar-right{ display:flex; align-items:center; gap: 10px; }

.topbar-btn{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  font-weight: 800;
  font-size: 13px;
  transition: .2s ease;
}

.topbar-btn:hover{
  background: rgba(255,255,255,.14);
  transform: translateY(-1px);
}

.topbar-btn.primary{
  background: #25D366;
  border-color: rgba(0,0,0,.12);
  color:#fff;
}

.topbar-icon{
  width: 36px;
  height: 36px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff;
  transition:.2s ease;
}
.topbar-icon:hover{ background: rgba(255,255,255,.14); transform: translateY(-1px); }

/* ===========================
   HEADER
=========================== */
.site-header{
  position: sticky;
  top: var(--topbarH);
  z-index: 2500;
  background: rgba(106,13,173,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.header-content{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 260px;
}

.brand-badge{
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(255,212,0,.22);
  border: 1px solid rgba(255,212,0,.40);
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.brand-logo{ width:100%; height:100%; object-fit: cover; }

.brand-text strong{
  color:#fff;
  display:block;
  letter-spacing:.3px;
  font-family: "Fredoka", "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.brand-text small{
  color: rgba(255,255,255,.78);
  display:block;
  margin-top: 2px;
  font-weight: 600;
}

.nav{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link{
  color: rgba(255,255,255,.90);
  padding: 10px 12px;
  border-radius: 14px;
  transition: .2s ease;
  font-weight: 800;
  font-size: 14px;
}

.nav-link:hover{ background: rgba(255,255,255,.12); color: #fff; }
.nav-link.active{ background: rgba(255,212,0,.22); color:#fff; }

.cart-button{
  border: none;
  background: var(--amarelo);
  color: var(--roxo);
  padding: 9px 14px;
  border-radius: 14px;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap: 7px;
  font-weight: 800;
  font-size: 15px;
  transition: .2s ease;
}
.cart-button:hover{ background: #f0c000; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.15); }

.cart-badge{
  display:inline-grid;
  place-items:center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--roxo);
  color: #fff;
  font-weight: 900;
  font-size: 11px;
}

.hamburger{
  display:none;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: #fff;
  padding: 10px 12px;
  border-radius: 14px;
  cursor:pointer;
}
.cart-btn-label{
  font-size: 13px;
  font-weight: 800;
}
@media (max-width: 640px){ .cart-btn-label{ display:none; } }



.mobile-nav{
  display:none;
  padding: 10px 0 16px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.mobile-nav.show{ display:block; }

.mobile-link, .mobile-cart{
  display:block;
  width: 92%;
  margin: 8px auto 0;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
}
.mobile-cart{ cursor:pointer; }

/* ===========================
   HERO (home)
=========================== */
.hero{ padding: 44px 0 22px; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
}

.hero-panel{
  position: relative;
  overflow:hidden;
  background: linear-gradient(135deg, rgba(255,212,0,.18), rgba(106,13,173,.10));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-panel::after{
  content:"";
  position:absolute;
  inset:-60px;
  background: radial-gradient(500px 260px at 25% 20%, rgba(255,212,0,.35), transparent 60%),
              radial-gradient(520px 280px at 85% 35%, rgba(106,13,173,.28), transparent 62%);
  pointer-events:none;
  filter: blur(0px);
}

.hero-content{ position:relative; z-index: 1; }

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(10,10,20,.08);
  font-weight: 900;
}

.hero-content h1{
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.08;
  margin-top: 12px;
  margin-bottom: 12px;
  font-family: "Fredoka", "Inter", Arial, sans-serif;
}

.hero-content p{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 58ch;
}

.hero-actions{ display:flex; gap: 10px; flex-wrap: wrap; }

.hero-badges{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(10,10,20,.08);
  font-weight: 800;
  font-size: 13px;
}

.hero-side{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction: column;
}

.hero-side-top{
  padding: 22px;
  background: linear-gradient(135deg, rgba(106,13,173,.18), rgba(255,212,0,.18));
  border-bottom: 1px solid var(--border);
}

.tag{
  display:inline-block;
  background: rgba(106,13,173,.14);
  border: 1px solid rgba(106,13,173,.22);
  color: var(--roxo);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 10px;
}

.hero-side-top h3{ margin-bottom: 6px; font-weight: 900; }
.hero-side-top p{ color: var(--muted); line-height: 1.5; }

.hero-side-mid{
  padding: 18px 22px 0;
}

.hero-photo{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-soft);

}

.hero-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
   HERO SLIDER (CARROSSEL)
=========================== */
.hero-photo.slider{
  position: relative;
  height: 500px;            /* ajuste a altura no desktop */
}

.hero-photo.slider .slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;        /* preenche (pode cortar) */
  object-position: center 30%;
  opacity: 0;
  transform: scale(1);
  transition: opacity .8s ease, transform .6s ease, filter .6s ease;
}

.hero-photo.slider .slide.active{
  opacity: 1;
}

.hero-photo.slider:hover .slide.active{
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.03);
}
/* Zoom leve + animação suave no destaque (hero) */
.hero-photo{
  overflow: hidden; /* garante que o zoom não vaze */
}

.hero-photo:not(.slider) img{
  transform: scale(1);
  transition: transform .35s ease, filter .35s ease;
  will-change: transform;
}

.hero-photo:not(.slider):hover img{
  transform: scale(1.06);     /* zoom leve */
  filter: saturate(1.05) contrast(1.03); /* bem sutil */
}

/* Animação suave ao aparecer na tela */
.hero-photo{
  opacity: 0;
  transform: translateY(10px);
  animation: heroFadeUp .6s ease forwards;
}

@keyframes heroFadeUp{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-photo .placeholder{
  padding: 18px;
  text-align:center;
  color: var(--muted);
  font-weight: 700;
}

.hero-side-bottom{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 18px 22px 22px;
}

.stat{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
}

.stat-title{ display:block; color: var(--muted); font-size: 12px; font-weight: 700; }
.stat-value{ display:block; margin-top: 4px; font-weight: 900; color: var(--roxo); }

/* ===========================
   CTA stripe
=========================== */
.stripe{ padding: 8px 0 26px; }
.stripe-box{
  background: linear-gradient(135deg, rgba(106,13,173,.92), rgba(74, 8, 128, .92));
  color:#fff;
  border-radius: var(--radius-xl);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

.stripe-box::after{
  content:"";
  position:absolute;
  right:-120px;
  top:-120px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255,212,0,.25);
  filter: blur(0px);
}

.stripe-text{ position:relative; z-index: 1; }
.stripe-text h2{
  font-size: 22px;
  margin-bottom: 6px;
  font-family: "Fredoka", "Inter", Arial, sans-serif;
}
.stripe-text p{ color: rgba(255,255,255,.85); }

.stripe-actions{ position:relative; z-index: 1; display:flex; gap: 10px; flex-wrap: wrap; }

/* ===========================
   Sections + cards
=========================== */
.section{ padding: 30px 0; }

.section-title{ margin-bottom: 16px; }
.section-title h1, .section-title h2{
  font-size: 30px;
  font-family: "Fredoka", "Inter", Arial, sans-serif;
}
.section-title p{ color: var(--muted); margin-top: 6px; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  transition: .22s ease;
}

.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10,10,20,.12);
}

.card h3{ color: var(--roxo); margin-bottom: 8px; font-weight: 900; }
.card p{ color: var(--muted); line-height: 1.6; }

.card-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }

/* ===========================
   Gallery (premium)
=========================== */
.gallery{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
  align-items: stretch;
}

.gallery-main,
.gallery-thumb{
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition: .22s ease;
}

.gallery-main{
  min-height: 520px;
}

.gallery-side{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gallery-thumb{
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
}

.gallery-media,
.gallery-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-main:hover,
.gallery-thumb:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(10,10,20,.12);
}


/* ===========================
   Testimonials
=========================== */
.stars{ letter-spacing: 2px; font-weight: 900; color: #f0b400; }
.quote{
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.person{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.person strong{ color: var(--text); }
.pill-mini{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(106,13,173,.08);
  border: 1px solid rgba(106,13,173,.14);
  color: var(--roxo);
  font-weight: 900;
  font-size: 12px;
}

/* ===========================
   Pages (internal)
=========================== */
.page-hero{ padding: 34px 0 12px; }
.page-hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  align-items: stretch;
}

.page-hero h1{
  font-size: clamp(26px, 3.2vw, 40px);
  font-family: "Fredoka", "Inter", Arial, sans-serif;
}

.muted{ color: var(--muted); }

.page-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 16px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.page-card-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
}
.page-card-row span{ color: var(--muted); font-weight: 700; }

.page-hero-media{
  border-radius: var(--radius-xl);
  overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background:#fff;
  aspect-ratio: 16/10;
}
.page-hero-media img{ width:100%; height:100%; object-fit: cover; }
.page-hero-media .ph{
  width:100%; height:100%;
  display:grid; place-items:center;
  text-align:center;
  padding: 20px;
  color: var(--muted);
  font-weight: 800;
}

/* ===========================
   Toolbar / Search
=========================== */
.toolbar{
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content: space-between;
  margin: 14px 0 18px;
  flex-wrap: wrap;
}

.search{
  flex: 1;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  outline: none;
  background: rgba(255,255,255,.75);
}

/* ===========================
   Products
=========================== */
.product-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 18px;
}

.product{
  background: #fff;
  border: 1px solid rgba(106,13,173,.1);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(106,13,173,.07);
  transition: transform .22s ease, box-shadow .22s ease;
}
.product:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(106,13,173,.13);
}

/* Imagem */
.product-img{
  width: 100%;
  height: 170px;
  overflow: hidden;
  background: #f7f3ff;
  flex-shrink: 0;
}
.product-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  display: block;
  transition: transform .3s ease;
}
.product:hover .product-img img{ transform: scale(1.04); }

/* Ícone emoji (sem imagem) */
.product-icon-wrap{
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,212,0,.10);
  font-size: 2.8rem;
  flex-shrink: 0;
}

/* Área de texto */
.product-info{
  padding: 12px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.product-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 4px;
}

.chip{
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(106,13,173,.08);
  color: var(--roxo);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.chip-out{ background: rgba(200,0,0,.08); color: #b00; }
.chip-low{ background: rgba(200,120,0,.10); color: #a05000; }

.product-name{
  font-size: .95rem;
  font-weight: 800;
  color: #17171c;
  line-height: 1.3;
  margin: 0;
}
.product-desc{
  font-size: .80rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

/* Rodapé */
.product-bottom{
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(106,13,173,.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.product-price-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price{
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--roxo);
}
.stock-label{
  font-size: .74rem;
  color: var(--muted);
  font-weight: 600;
}
.product-bottom .btn{
  width: 100%;
  justify-content: center;
  font-size: .88rem;
  padding: 10px 12px;
  border-radius: 12px;
}


/* ===========================
   Buttons
=========================== */
.btn{
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 900;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  transition: .2s ease;
}

.btn.primary{
  background: var(--amarelo);
  color: var(--roxo);
  box-shadow: 0 12px 22px rgba(255,212,0,.26);
}
.btn.primary:hover{ transform: translateY(-1px); opacity: .95; }

.btn.ghost{
  background: rgba(255,255,255,.55);
  border-color: var(--border);
  color: var(--text);
}
.btn.ghost:hover{ background: rgba(255,255,255,.75); transform: translateY(-1px); }

.btn.full{ width: 100%; }

/* ===========================
   Footer
=========================== */
.site-footer{
  background: rgba(106,13,173,.95);
  color: #fff;
  padding: 22px 0;
  margin-top: 26px;
}

.footer-grid{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a{ color: rgba(255,255,255,.85); }
.footer-links a:hover{ color: #fff; text-decoration: underline; }

/* ===========================
   Whats floating
=========================== */
.whats-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  z-index: 10000;
  transition: .25s ease;
}

.whats-float img{
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.whats-float:hover{
  transform: translateY(-4px) scale(1.05);
}

/* ===========================
   Drawer Cart
=========================== */
.drawer-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9998;
}

.drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: #fff;
  border-left: 1px solid var(--border);
  z-index: 9999;
  display:flex;
  flex-direction: column;
}

.drawer-header{
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background:#fff;
}

.icon-btn{
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 8px 10px;
  cursor:pointer;
}

.drawer-content{
  padding: 14px 16px;
  overflow:auto;
  flex: 1;
}

.drawer-footer{
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.total-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(106,13,173,.06);
}

.cart-item{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 10px;
}

.cart-item strong{ color: var(--roxo); }

.qty-controls{
  display:flex;
  align-items:center;
  gap: 8px;
  justify-content: flex-end;
}
.qty-controls button{
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 8px 10px;
  cursor:pointer;
}
.qty{ min-width: 26px; text-align:center; font-weight: 900; }

/* ===========================
   Responsive
=========================== */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: 1fr 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .stripe-box{ flex-direction: column; align-items:flex-start; }
  .page-hero-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .nav{ display:none; }
  .hamburger{ display:inline-flex; }
  .product-grid{ grid-template-columns: 1fr; }

  .footer-grid{ flex-direction: column; align-items:flex-start; }

  .brand-badge{ width: 56px; height: 56px; }
  .brand-text strong{ font-size: 18px; }

  .topbar-left{ font-size: 12px; }
  .hero-photo.slider{ height: 360px; }
  .gallery-main{ min-height: 380px; }

}

/* ===========================
   Footer - Cartões
=========================== */
.footer-payments{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
  text-align: center;
}

.footer-payments p{
  font-weight: 700;
  margin-bottom: 10px;
  color: rgba(255,255,255,.9);
}

.payment-icons{
  display:flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.payment-icons img{
  height: 36px;
  object-fit: contain;
  opacity: .95;
  transition: .2s ease;
}

.payment-icons img:hover{
  opacity: 1;
  transform: translateY(-2px);
}
/* ===========================
   Foto - Onde estamos
=========================== */
.location-image{
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.location-image img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: .3s ease;
}

.location-image img:hover{
  transform: scale(1.04);
}
.topbar-whats{
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25D366;
  border: 1px solid rgba(0,0,0,.12);
  transition: .2s ease;
}

.topbar-whats img{
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.topbar-whats:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.2);
}
/* ===== FIX: garantir logo visível no header ===== */
.brand-badge { flex: 0 0 auto; }
.brand-logo { display:block; }

/* Se você ainda usar cart-btn em algum lugar, mantém compatível */
.cart-btn{ 
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: #fff;
  padding: 10px 12px;
  border-radius: 14px;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap: 8px;
  transition: .2s ease;
}
.cart-btn:hover{ background: rgba(255,255,255,.14); transform: translateY(-1px); }
/* ===== Instagram Icon Header ===== */
.insta-icon{
  width: 18px;
  height: 18px;
  object-fit: contain;
  display:block;
}

/* ===== Instagram (igual ao print) ===== */
.topbar-icon{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: .2s ease;
}

.topbar-icon:hover{
  background: rgba(255,255,255,.20);
  transform: translateY(-1px);
}

.insta-icon{
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}
/* ===== NAV ATIVO ===== */
.nav-link.active{
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.20);
  padding: 8px 12px;
  border-radius: 999px;
}
/* ===== ANIMAÇÃO DO CARRINHO (DRAWER) ===== */

/* Backdrop animado */
.drawer-backdrop{
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.drawer-backdrop.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* Drawer animado (desliza da direita) */
.drawer{
  transform: translateX(110%);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
  will-change: transform;
}

.drawer.is-open{
  transform: translateX(0);
  opacity: 1;
}
/* =========================
   CATEGORIAS - PRODUTOS
========================= */

.category-filter{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 25px 0 30px;
}

/* botão padrão */
.cat-btn{
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

/* hover */
.cat-btn:hover{
  transform: translateY(-2px);
  background: rgba(255, 204, 0, 0.15);
  border-color: #ffcc00;
  color: #ffcc00;
}

/* botão ativo */
.cat-btn.is-active{
  background: #ffcc00;
  color: #2b1248; /* roxo escuro */
  border-color: #ffcc00;
  box-shadow: 0 8px 18px rgba(255,204,0,0.35);
  transform: translateY(-2px);
}

/* animação suave ao aparecer */
.category-filter{
  animation: fadeSlideUp 0.4s ease;
}

@keyframes fadeSlideUp{
  from{
    opacity: 0;
    transform: translateY(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* responsivo */
@media (max-width: 600px){
  .category-filter{
    gap: 8px;
  }

  .cat-btn{
    padding: 8px 14px;
    font-size: 13px;
  }
}



/* ===========================
   HEADER AÇÕES — Login / Conta / Carrinho
=========================== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Botão "Entrar" (deslogado) */
.header-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  transition: .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.header-login-btn:hover {
  background: rgba(255,212,0,.22);
  border-color: rgba(255,212,0,.45);
  color: #FFD400;
  transform: translateY(-1px);
}

/* Botão "Minha Conta" / "Admin" (logado) */
.header-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 14px;
  background: rgba(255,212,0,.18);
  border: 1px solid rgba(255,212,0,.40);
  color: #FFD400;
  font-weight: 700;
  font-size: 13.5px;
  transition: .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.header-account-btn:hover {
  background: rgba(255,212,0,.28);
  transform: translateY(-1px);
}

/* Badge Admin */
.header-admin-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,212,0,.15);
  border: 1px solid rgba(255,212,0,.3);
  color: #FFD400;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

/* Telas menores: esconde label de texto */
@media (max-width: 820px) {
  .header-login-btn .btn-label { display: none; }
  .header-login-btn { padding: 9px 11px; }
  .header-account-btn span:last-child { display: none; }
  .header-account-btn { padding: 9px 11px; }
  .header-admin-badge { display: none !important; }
}

/* ===========================
   DROPDOWN DE CONTA — Header
=========================== */
.header-dropdown-wrap {
  position: relative;
}

/* Botão gatilho */
.header-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 14px;
  background: rgba(255,212,0,.18);
  border: 1px solid rgba(255,212,0,.40);
  color: #FFD400;
  font-family: inherit;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap;
}
.header-account-btn:hover,
.header-account-btn.open {
  background: rgba(255,212,0,.30);
  transform: translateY(-1px);
}

.header-avatar-circle {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,212,0,.25);
  flex-shrink: 0;
}

.header-chevron {
  transition: transform .2s ease;
  opacity: .8;
}
.header-account-btn.open .header-chevron {
  transform: rotate(180deg);
}

/* Dropdown painel */
.header-dropdown {
  position: fixed;
  top: 70px; /* vai ser ajustado pelo JS */
  right: 16px;
  width: 240px;
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 20px 60px rgba(106,13,173,.18),
    0 4px 16px rgba(0,0,0,.08),
    0 0 0 1px rgba(106,13,173,.08);
  padding: .5rem;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(.97);
  transform-origin: top right;
  transition: opacity .18s ease, transform .18s ease;
}
.header-dropdown.show {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

/* Seta apontando para cima */
.dropdown-arrow {
  position: absolute;
  top: -7px; right: 18px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 3px 0 0 0;
  transform: rotate(45deg);
  box-shadow: -2px -2px 5px rgba(106,13,173,.06);
}

/* Info do usuário no topo */
.dropdown-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .7rem .9rem .6rem;
}
.dropdown-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6A0DAD, #b54aff);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.dropdown-name {
  font-weight: 800;
  font-size: .88rem;
  color: #17171c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}
.dropdown-email {
  font-size: .75rem;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

/* Divisor */
.dropdown-divider {
  height: 1px;
  background: rgba(106,13,173,.07);
  margin: .3rem .4rem;
}

/* Itens do menu */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .65rem .9rem;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: background .15s, color .15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  text-decoration: none;
}
.dropdown-item:hover {
  background: rgba(106,13,173,.07);
  color: #6A0DAD;
}
.dropdown-item-icon {
  font-size: 1rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

/* Sair — destaque vermelho */
.dropdown-logout {
  color: #c0392b;
}
.dropdown-logout:hover {
  background: rgba(255,90,90,.08);
  color: #c0392b;
}

/* Esconde label em telas pequenas */
@media (max-width: 820px) {
  .header-account-btn span:not(.header-avatar-circle) { display: none; }
  .header-account-btn { padding: 8px 10px; }
  .header-chevron { display: none; }
  .header-dropdown { right: -8px; }
}

/* ===========================
   PRODUTO — Foto e Sem Estoque
=========================== */
.product-img {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: .4rem;
  background: #f5f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform .3s ease;
  padding: .4rem;
}
.product:hover .product-img img { transform: scale(1.03); }

/* Produto sem estoque */
.product.out-of-stock {
  opacity: .7;
  position: relative;
}
.product.out-of-stock::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,.3);
  pointer-events: none;
}
.out-chip {
  background: rgba(255,90,90,.15) !important;
  color: #c0392b !important;
  font-size: .7rem !important;
}
.add-btn:disabled {
  background: #ccc !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  opacity: .7;
}
