/* ── SHARED LANDING PAGE STYLES ── */
/* Used by: /fathers-day-mugs, /white-elephant-gifts, /office-coworker-gifts, /gamer-gifts */

/* Hero */
.lp-hero {
  background: #FFD600;
  padding: 140px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: #1a1a1a;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.lp-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #333;
  margin-bottom: 16px;
}
.lp-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  max-width: 860px;
  margin: 0 auto 24px;
}
.lp-hero p {
  font-size: 20px;
  color: #333;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.lp-hero-cta {
  display: inline-block;
  background: #1a1a1a;
  color: #FFD600;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  padding: 18px 48px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s;
}
.lp-hero-cta:hover { transform: translateY(-2px); }

/* Body copy */
.lp-body { max-width: 860px; margin: 64px auto; padding: 0 24px; }
.lp-body p { font-size: 17px; line-height: 1.75; color: #ccc; margin-bottom: 24px; }
.lp-body h2 { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: #FFD600; letter-spacing: 0.03em; margin: 48px 0 16px; }

/* Product grid */
.product-grid { max-width: 1100px; margin: 64px auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.product-card { background: #222; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); transition: transform 0.2s, box-shadow 0.2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.product-img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.mug-visual { width: 100%; aspect-ratio: 1; background: #1a1a1a; display: flex; align-items: center; justify-content: center; }
.mug-body { width: 100px; height: 80px; border-radius: 6px 6px 10px 10px; border: 3px solid #FFD600; display: flex; align-items: center; justify-content: center; padding: 8px; position: relative; }
.mug-handle { position: absolute; right: -16px; top: 50%; transform: translateY(-50%); width: 16px; height: 36px; border: 4px solid #FFD600; border-left: none; border-radius: 0 16px 16px 0; opacity: 0.7; }
.mug-copy { font-family: 'Arial Black', sans-serif; font-size: 7px; font-weight: 900; text-align: center; line-height: 1.2; color: #FFD600; text-transform: uppercase; }
.product-info { padding: 16px 20px 20px; }
.product-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: #fff; }
.product-tagline { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.product-desc { font-size: 13px; color: #aaa; margin-top: 8px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08); }
.price { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: #FFD600; }
.buy-btn { background: #FFD600; color: #1a1a1a; border: none; padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; text-decoration: none; transition: background 0.15s; }
.buy-btn:hover { background: #fff; }
.notify-btn { background: transparent; color: #FFD600; border: 2px solid #FFD600; padding: 9px 14px; border-radius: 8px; font-size: 11px; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.notify-btn:hover { background: #FFD600; color: #1a1a1a; }

/* Section divider */
.section-divider { text-align: center; padding: 24px 0 8px; }
.section-divider span { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: #FFD600; letter-spacing: 0.04em; }

/* FAQ */
.faq-section { max-width: 760px; margin: 64px auto 80px; padding: 0 24px; }
.faq-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: #FFD600; margin-bottom: 32px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.faq-q { font-size: 17px; font-weight: 700; color: #fff; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q::after { content: '+'; font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: #FFD600; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: 15px; color: #999; line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding-top 0.2s; }
.faq-item.open .faq-a { max-height: 200px; padding-top: 12px; }

/* Waitlist strip */
.waitlist-strip { background: #FFD600; padding: 64px 48px; text-align: center; }
.waitlist-strip h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 64px); color: #1a1a1a; margin-bottom: 12px; }
.waitlist-strip p { font-size: 16px; color: #333; margin-bottom: 32px; }
.waitlist-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.waitlist-form input[type="email"] { flex: 1; min-width: 220px; padding: 14px 20px; border-radius: 10px; border: 2px solid #1a1a1a; background: #fff; font-size: 16px; font-family: 'DM Sans', sans-serif; color: #1a1a1a; }
.waitlist-form input:focus { outline: none; border-color: #333; }
.waitlist-submit { background: #1a1a1a; color: #FFD600; border: none; padding: 14px 28px; border-radius: 10px; font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.05em; cursor: pointer; transition: background 0.15s; white-space: nowrap; }
.waitlist-submit:hover { background: #333; }
.waitlist-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.waitlist-result { font-size: 14px; margin-top: 12px; }
.waitlist-result.success { color: #1a6614; }
.waitlist-result.error { color: #c0392b; }

@media (max-width: 600px) {
  .lp-hero { padding: 120px 24px 60px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
