/* ===== PLACEMAT PRODUCT PAGE ===== */

/* HERO */
.pm-hero {
  padding: 100px 24px 60px;
  background: var(--cream);
}
.pm-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.pm-product-image-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pm-product-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(45, 80, 22, 0.18);
  display: block;
}
.pm-trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--cream-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-mid);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.pm-product-info { padding-top: 20px; }
.pm-h1 {
  font-family: 'Frank Ruhl Libre', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--green);
  margin-bottom: 12px;
  line-height: 1.15;
}
.pm-tagline {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.7;
}
.pm-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.pm-price {
  font-family: 'Frank Ruhl Libre', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--green);
}
.pm-price-note {
  font-size: 0.9rem;
  color: var(--text-light);
}
.pm-description {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.pm-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pm-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.pm-feature-check {
  color: var(--green-mid);
  font-size: 1.1rem;
  font-weight: 700;
}
.pm-cta-area { display: flex; flex-direction: column; gap: 12px; }
.pm-cta-btn {
  background: var(--green);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 10px;
  font-family: 'Heebo', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
}
.pm-cta-btn:hover { background: var(--green-mid); transform: translateY(-1px); }
.pm-cta-btn:active { transform: translateY(0); }
.pm-cta-btn-lg { padding: 20px 48px; font-size: 1.2rem; }
.pm-shipping-note {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

/* SECTIONS */
.pm-edu-section,
.pm-about-section,
.pm-faq-section,
.pm-final-cta-section { padding: 70px 24px; }
.pm-edu-section { background: white; }
.pm-about-section { background: var(--cream); }
.pm-faq-section { background: white; }
.pm-final-cta-section { background: var(--green); }

.pm-section-inner { max-width: 1100px; margin: 0 auto; }
.pm-h2 {
  font-family: 'Frank Ruhl Libre', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--green);
  margin-bottom: 40px;
  line-height: 1.25;
}
.pm-about-section .pm-h2 { color: var(--green); }
.pm-final-cta-section .pm-h2 { color: var(--cream); }

/* EDUCATIONAL GRID */
.pm-edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.pm-edu-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--cream-dark);
}
.pm-edu-icon { font-size: 2rem; margin-bottom: 16px; }
.pm-edu-card h3 {
  font-family: 'Frank Ruhl Libre', Georgia, serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.pm-edu-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ABOUT */
.pm-about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pm-about-text { display: flex; flex-direction: column; gap: 16px; }
.pm-about-text p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; }

/* FAQ */
.pm-faq-inner { max-width: 800px; margin: 0 auto; }
.pm-faq-list { display: flex; flex-direction: column; gap: 12px; }
.pm-faq-item {
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}
.pm-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
  gap: 16px;
}
.pm-faq-question:hover { background: rgba(45,80,22,0.04); }
.pm-faq-arrow {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--text-light);
}
.pm-faq-question.open .pm-faq-arrow { transform: rotate(180deg); }
.pm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.pm-faq-answer.open { max-height: 300px; }
.pm-faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* FINAL CTA */
.pm-final-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pm-final-heading {
  font-family: 'Frank Ruhl Libre', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--cream);
}
.pm-final-sub {
  font-size: 1.05rem;
  color: rgba(253,248,240,0.8);
  line-height: 1.7;
}
.pm-final-cta-section .pm-cta-btn { background: var(--terracotta); color: white; }
.pm-final-cta-section .pm-cta-btn:hover { background: #b5622e; }
.pm-final-trust {
  font-size: 0.85rem;
  color: rgba(253,248,240,0.6);
  margin-top: 8px;
}

/* CART DRAWER */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 200;
  pointer-events: none;
  width: 100%;
}
.cart-drawer.open { pointer-events: all; }
.cart-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.cart-drawer.open .cart-drawer-overlay { opacity: 1; }
.cart-drawer-panel {
  position: absolute;
  top: 0; left: 0;
  width: 380px;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: 4px 0 24px rgba(0,0,0,0.15);
}
.cart-drawer.open .cart-drawer-panel { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-drawer-header h3 {
  font-family: 'Frank Ruhl Libre', Georgia, serif;
  font-size: 1.2rem;
  color: var(--text-dark);
}
.cart-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 4px;
  display: flex;
}
.cart-close-btn:hover { color: var(--text-dark); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.cart-item-price { font-size: 0.9rem; color: var(--green-mid); font-weight: 600; }
.cart-item-remove {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.cart-item-remove:hover { color: var(--terracotta); }
.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}
.cart-total-row span:last-child { color: var(--green); }

/* TOAST */
.pm-toast {
  position: fixed;
  bottom: 30px;
  right: 50%;
  transform: translateX(50%) translateY(80px);
  background: var(--green);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(45,80,22,0.3);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
  pointer-events: none;
  z-index: 300;
}
.pm-toast.visible {
  transform: translateX(50%) translateY(0);
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pm-hero-inner,
  .pm-about-inner { grid-template-columns: 1fr; gap: 32px; }
  .pm-edu-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pm-hero { padding: 90px 16px 48px; }
  .pm-product-image-wrap { order: -1; }
  .cart-drawer-panel { width: 100%; }
}