/* Conversion-focused design — trust, urgency, premium shop feel */

/* —— Announcement & promo strip —— */
.announcement-bar {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-soft) 50%, var(--green) 100%);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.promo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #fff9f0, #fff5f8);
  border-bottom: 1px solid rgba(201, 169, 98, 0.25);
  font-size: 0.82rem;
}
.promo-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  font-weight: 500;
}
.promo-strip svg,
.promo-strip [class^="ri-"] { color: var(--champagne); flex-shrink: 0; }
.promo-strip [class^="ri-"] { font-size: 1rem; line-height: 1; }

/* —— Header polish —— */
.site-header {
  background: rgba(255, 252, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 74, 62, 0.06);
  box-shadow: 0 4px 24px rgba(45, 74, 62, 0.04);
}

/* —— Buttons —— */
.btn-gold {
  background: linear-gradient(135deg, #c9a962 0%, #b8924a 50%, #d4b76a 100%);
  box-shadow: 0 4px 14px rgba(201, 169, 98, 0.35);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.btn-gold:hover {
  box-shadow: 0 6px 20px rgba(201, 169, 98, 0.45);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
.btn-whatsapp:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

/* —— Product cards —— */
.product-card {
  border: 1px solid rgba(201, 169, 98, 0.12);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(45, 74, 62, 0.12), 0 0 0 1px rgba(201, 169, 98, 0.2);
  border-color: rgba(201, 169, 98, 0.35);
}
.product-card .badge-sale {
  animation: pulseSale 2.5s ease-in-out infinite;
}
@keyframes pulseSale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.product-card-actions {
  gap: 0.4rem;
}
.product-card-actions .btn-gold-quick {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-soft) 100%);
  color: #fff;
  border: none;
  font-size: 0.78rem;
  padding: 0.4rem 0.65rem;
}
.product-card-actions .btn-gold-quick:hover {
  filter: brightness(1.08);
}

/* —— Product detail —— */
.product-detail {
  gap: 2.5rem;
}
.product-info h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.product-price-lg strong {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--green);
}
.product-price-lg .badge-sale {
  vertical-align: middle;
  margin-left: 0.5rem;
}
.buy-urgency {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: linear-gradient(90deg, #fff5f5, #fff9f0);
  border-radius: 10px;
  border-left: 3px solid #e57373;
  font-size: 0.9rem;
  margin: 0.75rem 0;
}
.buy-urgency strong { color: #c62828; }
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.product-actions .btn-lg {
  flex: 1;
  min-width: 160px;
  padding: 0.85rem 1.25rem;
}
.gallery-main {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

/* Sticky buy bar (mobile) */
.product-sticky-bar {
  display: none;
  position: fixed;
  bottom: 4.25rem;
  left: 0;
  right: 0;
  z-index: 140;
  background: rgba(255, 252, 250, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(45, 74, 62, 0.1);
  padding: 0.65rem 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
}
.sticky-price strong { font-size: 1.15rem; font-family: var(--font-display); }
.sticky-price .price-mrp { font-size: 0.8rem; margin-left: 0.35rem; }
.sticky-actions { display: flex; gap: 0.5rem; }
@media (max-width: 900px) {
  .product-sticky-bar { display: flex; }
  body.has-mobile-nav .product-sticky-bar { bottom: 4.25rem; }
}

/* —— Section headers —— */
.section-header-premium {
  text-align: center;
  margin-bottom: 2rem;
}
.section-header-premium .eyebrow {
  color: var(--champagne);
  font-weight: 600;
  letter-spacing: 0.15em;
}
.section-header-premium h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0.35rem 0 0.5rem;
}

/* —— Social proof bar —— */

/* —— Flash messages storefront —— */
.site-main > .flash {
  max-width: 720px;
  margin: 1rem auto;
  text-align: center;
}

/* —— Cart checkout —— */
.cart-total-box {
  background: linear-gradient(165deg, #fff, #faf6f2);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
}
.cart-total-amount {
  font-size: 2rem !important;
  font-family: var(--font-display);
  color: var(--green);
}

/* —— Review cards —— */
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(45, 74, 62, 0.08);
  box-shadow: 0 4px 16px rgba(45, 74, 62, 0.04);
}
.review-card .stars { color: var(--champagne); letter-spacing: 2px; }

/* —— Empty states —— */
.empty-state {
  padding: 3rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  border: 1px dashed rgba(201, 169, 98, 0.3);
}
