/* Shop Page Styles */
.filter-bar {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: white; border-radius: 12px; padding: 14px 20px;
  border: 1px solid rgba(13,92,74,0.08);
  box-shadow: var(--shadow-sm);
}
.filter-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; white-space: nowrap; }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 6px 16px; border-radius: 20px; font-size: 0.82rem; font-weight: 500;
  border: 1.5px solid rgba(13,92,74,0.12); color: var(--text-muted);
  background: transparent; cursor: pointer; transition: var(--transition);
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active { background: var(--teal-deep); color: white; border-color: var(--teal-deep); }

/* Products */
.products-section { padding-top: 32px; }
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.product-card {
  background: white; border-radius: 20px;
  border: 1.5px solid rgba(13,92,74,0.08);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(201,168,76,0.3); }
.product-badge-wrap { position: absolute; top: 16px; left: 16px; z-index: 3; }
.product-badge {
  display: inline-block; padding: 5px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px;
}
.bestseller { background: var(--gold); color: var(--dark); }
.value { background: var(--teal); color: white; }

.product-img-area {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
  padding: 40px 24px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  position: relative;
}
.product-jar-display {
  position: relative; display: flex; flex-direction: column; align-items: center;
}
.pj-glow {
  position: absolute; inset: -30%; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
  pointer-events: none;
}
.pj-lid {
  width: 130px; height: 30px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-radius: 60px 60px 8px 8px;
  margin-bottom: -5px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Yatra One', cursive; color: var(--dark); font-size: 0.85rem;
  box-shadow: 0 -4px 16px rgba(201,168,76,0.3);
  position: relative; z-index: 2;
}
.pj-body {
  width: 140px; height: 150px;
  background: linear-gradient(180deg, #fffef8, #f8f0e0);
  border-radius: 12px 12px 24px 24px;
  border: 2px solid var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 14px; text-align: center;
}
.pj-brand { font-family: 'Yatra One', cursive; font-size: 0.88rem; color: var(--teal-deep); line-height: 1.2; }
.pj-type { font-size: 0.65rem; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.5px; }
.pj-dots { width: 30px; height: 2px; background: var(--gold); margin: 6px 0; border-radius: 2px; }
.pj-net { font-size: 0.7rem; color: #aaa; }
.pj-100 .pj-body { width: 160px; height: 180px; }

.product-ingredients-row {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.product-ingredients-row span {
  background: white; border: 1px solid rgba(201,168,76,0.3);
  padding: 3px 10px; border-radius: 20px;
  font-size: 0.72rem; color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.product-info { padding: 24px; }
.product-stars { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.review-count { font-size: 0.78rem; color: var(--text-muted); }
.product-name { font-family: 'Vesper Libre', serif; font-size: 1.2rem; color: var(--teal-deep); margin-bottom: 4px; }
.product-size { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.savings-tag {
  background: rgba(26,122,110,0.1); color: var(--teal);
  border: 1px solid rgba(26,122,110,0.25);
  padding: 2px 8px; border-radius: 10px; font-size: 0.7rem; font-weight: 700;
}
.product-highlights {
  list-style: none; margin-bottom: 16px;
  display: flex; flex-direction: column; gap: 7px;
}
.product-highlights li { font-size: 0.86rem; color: var(--text-muted); }
.product-skin-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 20px; }
.skin-tag {
  background: rgba(13,92,74,0.05); border: 1px solid rgba(13,92,74,0.1);
  color: var(--text-muted); padding: 3px 10px; border-radius: 12px; font-size: 0.72rem;
}
.teal-tag { background: rgba(26,122,110,0.08); border-color: rgba(26,122,110,0.2); color: var(--teal); }
.product-order-area { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.qty-selector {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid rgba(13,92,74,0.15); border-radius: 8px; overflow: hidden;
}
.qty-btn {
  width: 36px; height: 40px;
  background: var(--ivory); color: var(--teal-deep);
  font-size: 1.2rem; font-weight: 700; border: none;
  cursor: pointer; transition: var(--transition);
}
.qty-btn:hover { background: var(--teal-deep); color: white; }
.qty-val {
  width: 44px; text-align: center;
  font-weight: 700; font-size: 0.95rem; color: var(--text);
  background: white; display: flex; align-items: center; justify-content: center;
  height: 40px;
}
.order-btn { flex: 1; justify-content: center; min-width: 180px; }
.product-call-link {
  font-size: 0.8rem; color: var(--text-muted);
  display: block; text-align: center; margin-top: 8px;
  transition: var(--transition);
}
.product-call-link:hover { color: var(--teal-deep); }

/* How to Use */
.how-to-use {
  background: linear-gradient(135deg, var(--maroon-dark), var(--teal-deep));
  position: relative;
  overflow: hidden;
}
.how-to-use .section-heading { color: white; }
.how-to-use .section-eyebrow { color: var(--gold); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px;
}
.step {
  text-align: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 28px 20px;
  position: relative; transition: var(--transition);
}
.step:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.step-num {
  font-family: 'Yatra One', cursive;
  font-size: 2.5rem; color: rgba(201,168,76,0.2);
  position: absolute; top: 12px; right: 16px;
}
.step-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.step h3 { font-family: 'Vesper Libre', serif; color: var(--gold); margin-bottom: 10px; font-size: 1rem; }
.step p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.how-tip {
  margin-top: 28px; background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25); border-radius: 10px;
  padding: 14px 20px; font-size: 0.88rem; color: rgba(255,255,255,0.7);
}
.how-tip span { color: var(--gold); font-weight: 600; margin-right: 6px; }

/* FAQ */
.faq-section { background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 40px; }
.accordion-item {
  background: white; border-radius: 12px;
  border: 1px solid rgba(13,92,74,0.08);
  overflow: hidden; transition: var(--transition);
}
.accordion-item:hover { border-color: rgba(201,168,76,0.25); }
.accordion-trigger {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; cursor: pointer;
  font-weight: 600; font-size: 0.92rem; color: var(--teal-deep);
}
.acc-icon { font-size: 1.3rem; color: var(--gold); transition: var(--transition); flex-shrink: 0; }
.accordion-item.open .acc-icon { transform: rotate(45deg); }
.accordion-content {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.accordion-content p { padding: 0 20px 18px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .product-order-area { flex-direction: column; }
  .order-btn { width: 100%; justify-content: center; }
}
