/* ==========================================================
   BW Sales Landing Page - Styles
   ========================================================== */

/* Google Font - Cairo */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');

/* ---- CSS Variables ---- */
.bw-landing {
  --bg: #fffaf9;
  --card: #ffffff;
  --soft: #f8edef;
  --line: #ead9dd;
  --text: #3f3136;
  --muted: #7f6a70;
  --primary: #8e6b74;
  --primary-dark: #76555e;
  --accent: #d9b8c1;
  --accent-2: #f3d9e0;
  --success: #4d7b5d;
  --shadow: 0 10px 30px rgba(126, 92, 104, 0.12);
  --radius: 22px;
  --max: 1180px;
}

/* ---- Base Reset for Landing ---- */
.bw-landing {
  font-family: 'Cairo', sans-serif;
  color: var(--text);
  line-height: 1.7;
}

.bw-landing a { color: inherit; text-decoration: none; }
.bw-landing img { max-width: 100%; display: block; }

/* ---- Topbar ---- */
.bw-topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

/* ---- Container ---- */
.bw-container {
  width: min(100% - 24px, var(--max));
  margin-inline: auto;
}

/* ---- Hero ---- */
.bw-hero {
  padding: 10px 0 8px;
}

.bw-hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(180deg, #fff 0%, #fff6f7 100%);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bw-hero-copy {
  padding: 20px 18px 22px;
}

.bw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f7ebee;
  color: var(--primary-dark);
  border: 1px solid #ead4da;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.bw-sale-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.bw-landing h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.12;
  font-weight: 800;
}

.bw-hero p {
  margin: 0 0 18px;
  font-size: 17px;
  color: var(--muted);
  max-width: 60ch;
}

.bw-bullets {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
}

.bw-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.bw-tick {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #eef7f1;
  color: var(--success);
  font-size: 14px;
  flex: 0 0 auto;
}

.bw-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 12px;
}

.bw-btn {
  min-height: 58px;
  padding: 14px 20px;
  border-radius: 16px;
  font-weight: 800;
  font-family: 'Cairo', sans-serif;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  cursor: pointer;
  font-size: 16px;
}

.bw-btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(142, 107, 116, 0.22);
}

.bw-btn-primary:hover { background: var(--primary-dark); }

.bw-btn-soft {
  background: #fff;
  color: var(--primary-dark);
  border-color: var(--line);
}

.bw-trust-inline {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.bw-hero-media {
  min-height: 100%;
  background: radial-gradient(circle at top right, #f9dfe5 0%, #f7edf0 35%, #fff 100%);
  padding: 20px;
  display: grid;
  place-items: center;
}

.bw-hero-card {
  width: 100%;
  max-width: 450px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.bw-hero-product {
  aspect-ratio: 4/4.6;
  border-radius: 22px;
  background: #fff;
  display: grid;
  place-items: center;
  border: 1px solid #ecd9de;
  padding: 10px;
  overflow: hidden;
}

.bw-hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bw-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.bw-mini-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 10px;
  text-align: center;
}

.bw-mini-stat strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.bw-mini-stat span {
  font-size: 12px;
  color: var(--muted);
}

/* ---- Sections ---- */
.bw-section {
  padding: 12px 0;
}

.bw-section-head {
  text-align: center;
  margin-bottom: 18px;
}

.bw-section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
}

.bw-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 760px;
  margin-inline: auto;
}

/* ---- Grids ---- */
.bw-trust-strip,
.bw-benefits,
.bw-stats-grid,
.bw-reviews,
.bw-faq-grid,
.bw-included-grid,
.bw-use-grid,
.bw-why-bw-grid {
  display: grid;
  gap: 16px;
}

.bw-trust-strip { grid-template-columns: repeat(4, 1fr); }
.bw-stats-grid { grid-template-columns: repeat(4, 1fr); }
.bw-included-grid { grid-template-columns: repeat(4, 1fr); }
.bw-use-grid { grid-template-columns: repeat(4, 1fr); }
.bw-why-bw-grid { grid-template-columns: repeat(3, 1fr); }
.bw-reviews { grid-template-columns: repeat(3, 1fr); }
.bw-faq-grid { grid-template-columns: 1fr 1fr; }

/* ---- Cards ---- */
.bw-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.bw-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--primary-dark);
  font-size: 20px;
}

.bw-card.bw-trust-item,
.bw-card.bw-stat-card {
  text-align: center;
}

.bw-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.bw-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* ---- Best Seller ---- */
.bw-best-seller {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: start;
}

.bw-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bw-shot {
  aspect-ratio: 1/1.05;
  border-radius: 20px;
  background: linear-gradient(180deg, #f5e6ea 0%, #fff 100%);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  font-weight: 700;
  text-align: center;
  padding: 12px;
  overflow: hidden;
}

.bw-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bw-shot.large {
  grid-column: span 2;
  aspect-ratio: 1.2/1;
}

.bw-product-info {
  padding: 12px;
}

.bw-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.bw-price-now {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-dark);
}

.bw-price-old {
  font-size: 20px;
  color: #b19199;
  text-decoration: line-through;
}

.bw-badge {
  background: #f7ebee;
  color: var(--primary-dark);
  border: 1px solid #ead4da;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 700;
}

.bw-review-line {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

.bw-list-clean {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.bw-list-clean div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 600;
}

.bw-highlight-box {
  background: linear-gradient(180deg, #fff 0%, #fff7f8 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  margin-top: 14px;
}

/* ---- Timeline ---- */
.bw-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.bw-timeline .bw-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  text-align: center;
  box-shadow: var(--shadow);
}

.bw-timeline .bw-step strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

/* ---- Reviews ---- */
.bw-reviews .bw-review strong {
  display: block;
  margin-top: 8px;
}

/* ---- Offer ---- */
.bw-offer {
  background: linear-gradient(135deg, #8e6b74 0%, #6f5058 100%);
  color: #fff;
  padding: 22px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

.bw-offer h3 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
}

.bw-offer p { margin: 0; color: rgba(255,255,255,0.85); }

.bw-countdown {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.bw-time-box {
  min-width: 74px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 12px 10px;
  text-align: center;
}

.bw-time-box strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.bw-time-box span {
  font-size: 12px;
  opacity: 0.85;
}

/* ---- FAQ ---- */
.bw-landing details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.bw-landing details summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.bw-landing details summary::-webkit-details-marker { display: none; }
.bw-landing details p { margin: 10px 0 0; color: var(--muted); }

/* ---- Sticky Footer CTA ---- */
.bw-footer-cta {
  position: sticky;
  bottom: 0;
  z-index: 9999;
  background: rgba(255, 250, 249, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 10px 12px;
}

.bw-footer-cta-inner {
  width: min(100%, 680px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.bw-footer-price {
  font-size: 14px;
  color: var(--muted);
}

.bw-footer-price strong {
  display: block;
  font-size: 24px;
  color: var(--primary-dark);
  line-height: 1.1;
}

.bw-footer-cta .bw-btn { min-width: 210px; }

/* ==========================================================
   Responsive - Tablet (max-width: 980px)
   ========================================================== */
@media (max-width: 980px) {
  .bw-hero-wrap,
  .bw-best-seller,
  .bw-offer,
  .bw-footer-cta-inner,
  .bw-faq-grid {
    grid-template-columns: 1fr;
  }
  .bw-trust-strip,
  .bw-stats-grid,
  .bw-included-grid,
  .bw-use-grid,
  .bw-why-bw-grid,
  .bw-reviews,
  .bw-timeline {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================
   Responsive - Mobile (max-width: 640px)
   ========================================================== */
@media (max-width: 640px) {
  .bw-topbar {
    font-size: 11px;
    padding: 7px 8px;
  }
  .bw-container {
    width: min(100% - 12px, var(--max));
  }
  .bw-hero {
    padding: 8px 0 6px;
  }
  .bw-hero-wrap,
  .bw-hero-card,
  .bw-card,
  .bw-landing details,
  .bw-offer,
  .bw-timeline .bw-step,
  .bw-list-clean div {
    border-radius: 18px;
  }
  .bw-hero-copy {
    order: 2;
    padding: 14px 12px 14px;
  }
  .bw-hero-media {
    order: 1;
    padding: 10px;
  }
  .bw-hero-card {
    padding: 10px;
  }
  .bw-hero-product {
    aspect-ratio: 1 / 1;
    font-size: 20px;
    padding: 14px;
  }
  .bw-eyebrow,
  .bw-sale-chip,
  .bw-trust-inline {
    font-size: 11px;
  }
  .bw-sale-chip {
    margin-bottom: 8px;
    padding: 6px 10px;
  }
  .bw-landing h1 {
    font-size: 24px;
    line-height: 1.22;
    margin-bottom: 8px;
  }
  .bw-hero p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .bw-bullets {
    gap: 8px;
    margin: 10px 0 12px;
  }
  .bw-bullet {
    font-size: 14px;
    align-items: flex-start;
  }
  .bw-tick {
    width: 20px;
    height: 20px;
    font-size: 12px;
    margin-top: 2px;
  }
  .bw-hero-actions {
    flex-direction: column;
    gap: 8px;
    margin: 10px 0 8px;
  }
  .bw-btn {
    width: 100%;
    min-height: 60px;
    font-size: 17px;
    border-radius: 14px;
  }
  .bw-trust-inline {
    gap: 8px;
  }
  .bw-section {
    padding: 8px 0;
  }
  .bw-section-head {
    margin-bottom: 10px;
  }
  .bw-section-head h2 {
    font-size: 22px;
  }
  .bw-section-head p {
    font-size: 14px;
  }
  .bw-trust-strip,
  .bw-stats-grid,
  .bw-included-grid,
  .bw-use-grid,
  .bw-why-bw-grid,
  .bw-reviews,
  .bw-mini-stats,
  .bw-gallery,
  .bw-timeline,
  .bw-faq-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .bw-shot.large {
    grid-column: span 1;
  }
  .bw-best-seller,
  .bw-offer,
  .bw-footer-cta-inner {
    grid-template-columns: 1fr;
  }
  .bw-product-info {
    padding: 4px;
  }
  .bw-price-row {
    gap: 8px;
    margin: 10px 0;
  }
  .bw-price-now {
    font-size: 28px;
  }
  .bw-price-old {
    font-size: 16px;
  }
  .bw-badge {
    font-size: 11px;
  }
  .bw-review-line {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .bw-list-clean {
    gap: 8px;
    margin: 10px 0;
  }
  .bw-list-clean div,
  .bw-card,
  .bw-landing details,
  .bw-timeline .bw-step {
    padding: 12px;
  }
  .bw-highlight-box {
    padding: 12px;
    margin-top: 10px;
  }
  .bw-offer {
    padding: 16px;
  }
  .bw-offer h3 {
    font-size: 20px;
  }
  .bw-countdown {
    gap: 8px;
  }
  .bw-time-box {
    min-width: 68px;
    padding: 10px 8px;
  }
  .bw-time-box strong {
    font-size: 20px;
  }
  .bw-footer-cta {
    padding: 8px 10px;
  }
  .bw-footer-price {
    font-size: 12px;
  }
  .bw-footer-price strong {
    font-size: 22px;
  }
  .bw-footer-cta .bw-btn {
    min-width: 100%;
  }
  /* Hide less critical sections on mobile - keep FAQ visible */
  .bw-section.bw-hide-mobile {
    display: none;
  }
}
