:root {
  --brand-1: #d6336c;
  --brand-2: #7048e8;
  --brand-bg: #fff8fb;
}
body {
  background: var(--brand-bg);
  overflow-x: hidden;
}
.navbar {
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
}
.tagline-bar {
  background: #fdf1f6;
  color: #8a3b64;
  border-bottom: 1px solid #f6d9e6;
}
#navMain {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  row-gap: .5rem;
  align-items: center;
}
.navbar-nav {
  flex-wrap: wrap;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.product-card {
  border: 1px solid #f1d9e4;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(214, 51, 108, .15);
}
.product-card .photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fdf1f6 center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8b6cc;
  font-size: 2.5rem;
}
.product-card .photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .body {
  padding: .75rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  flex-grow: 1;
}
.occasion-pill {
  display: inline-block;
  font-size: .7rem;
  background: #f3e9fb;
  color: #6c3fa8;
  border-radius: 999px;
  padding: .1rem .55rem;
  margin: 0 .2rem .2rem 0;
}
.price-original {
  text-decoration: line-through;
  color: #adb5bd;
  font-size: .85rem;
}
.price-final {
  font-weight: 700;
  color: var(--brand-1);
  font-size: 1.05rem;
}
.btn-brand {
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  border: none;
  color: #fff;
}
.btn-brand:hover {
  filter: brightness(1.08);
  color: #fff;
}
.btn-whatsapp {
  background: #25D366;
  border: none;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  color: #fff;
}
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1030;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.wa-float:hover { color: #fff; filter: brightness(1.05); }
@media (max-width: 575.98px) {
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .6rem; }
}
