@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap');

/* =============================================
   COM-HONEYPEZIL.COM — FOREST GREEN / GOLD
   CSS: woxcel.css (unique — zero overlap)
   ============================================= */
:root {
  --forest:   #1a3d2b;
  --forest2:  #12301f;
  --forest3:  #235238;
  --forest4:  #e6f0ea;
  --forest5:  #bdd5c5;
  --gold:     #c8970f;
  --gold2:    #a87d0c;
  --gold3:    #fff9e6;
  --gold4:    #fde68a;
  --white:    #ffffff;
  --light:    #f5f8f5;
  --light2:   #ebf2ec;
  --text:     #0e2018;
  --muted:    #385040;
  --border:   #c0d4c0;
  --gray:     #789080;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  line-height: 1.9;
  color: var(--text);
  background: var(--white);
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

h1 { font-size: clamp(34px,4.5vw,60px); font-weight: 900; line-height: 1.1; color: var(--forest); }
h2 { font-size: clamp(28px,3.4vw,46px); font-weight: 800; line-height: 1.2; color: var(--forest); }
h3 { font-size: clamp(20px,2.2vw,24px); font-weight: 700; color: var(--text); }
p  { font-size: clamp(18px,1.8vw,20px); color: var(--muted); line-height: 1.9; }

.wx-tag {
  display: inline-block; font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--forest); margin-bottom: 12px;
  background: var(--forest4); padding: 6px 16px; border-radius: 999px;
  border: 1px solid var(--forest5);
}

/* ═══════════════════════════════════════
   NAV — STICKY, ONE LINE, NEVER BREAKS
   ═══════════════════════════════════════ */
.wx-nav {
  background: var(--white);
  border-bottom: 3px solid var(--forest);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(26,61,43,0.12);
  width: 100%;
}
.wx-nav-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 62px;
  flex-wrap: nowrap;
}
.wx-logo {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--forest);
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wx-logo em { color: var(--gold); font-style: normal; }
.wx-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  flex: 1;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.wx-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all .15s;
}
.wx-links a:hover { color: var(--forest); background: var(--forest4); }
.wx-cta {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--white) !important;
  font-weight: 800;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 15px;
  white-space: nowrap;
  display: inline-block;
  transition: background .2s;
}
.wx-cta:hover { background: var(--gold2); color: var(--white) !important; }

@media (max-width: 767px) {
  .wx-links { display: none; }
  .wx-nav-in { padding: 0 14px; height: 56px; gap: 0; justify-content: space-between; }
  .wx-logo { font-size: 15px; }
  .wx-cta { font-size: 13px; padding: 9px 14px; border-radius: 7px; flex-shrink: 0; }
}

/* ── BUTTONS ── */
.wx-btn { display: inline-block; padding: 16px 36px; border-radius: 9px; font-size: 18px; font-weight: 800; cursor: pointer; border: none; transition: all .2s; text-align: center; line-height: 1; }
.wx-btn-gold   { background: var(--gold);   color: var(--white); }
.wx-btn-gold:hover   { background: var(--gold2); color: var(--white); }
.wx-btn-forest { background: var(--forest); color: var(--white); }
.wx-btn-forest:hover { background: var(--forest2); color: var(--white); }
.wx-btn-bdr  { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.wx-btn-bdr:hover  { background: var(--forest); color: var(--white); }
.wx-btn-bdr-w { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55); }
.wx-btn-bdr-w:hover { background: var(--white); color: var(--forest2); }

/* ── LAYOUT ── */
.wx-wrap    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wx-wrap-sm { max-width: 840px;  margin: 0 auto; padding: 0 24px; }
.wx-row { padding: 86px 0; }
.wx-th { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.wx-th p { margin-top: 16px; font-size: 20px; }

/* ── HERO ── */
.wx-hero { background: var(--white); padding: 86px 0 96px; border-bottom: 3px solid var(--forest4); }
.wx-hero-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.wx-hero h1 { margin-bottom: 14px; }
.wx-hero-sub { color: var(--muted); font-size: 20px; line-height: 1.9; margin-bottom: 22px; }
.wx-hero-list { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.wx-hero-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 19px; color: var(--text); font-weight: 600; }
.wx-hero-list li::before { content: "✔"; color: var(--gold); font-weight: 900; flex-shrink: 0; margin-top: 3px; }
.wx-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.wx-hero-pic { width: 310px; flex-shrink: 0; }
.wx-hero-pic img { filter: drop-shadow(0 20px 40px rgba(26,61,43,0.22)); }
.wx-stars-row { display: flex; align-items: center; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.wx-stars { color: var(--gold); font-size: 22px; }
.wx-stars-txt { font-size: 17px; color: var(--muted); font-weight: 700; }
.wx-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--forest4); border: 2px solid var(--forest5); border-radius: 999px; padding: 6px 18px; font-size: 12px; font-weight: 800; color: var(--forest); margin-bottom: 16px; letter-spacing: 1.5px; text-transform: uppercase; }
.wx-badge::before { content: "✔"; }

/* ── WHY ── */
.wx-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.wx-why-item { text-align: center; padding: 30px 16px; border: 2px solid var(--border); border-radius: 16px; background: var(--white); transition: transform .2s, box-shadow .2s; }
.wx-why-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,61,43,0.1); }
.wx-why-item img { height: 56px; width: auto; margin: 0 auto 14px; object-fit: contain; }
.wx-why-item h3 { font-size: 17px; margin-bottom: 8px; }
.wx-why-item p  { font-size: 15px; }

/* ── SPLIT ── */
.wx-split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.wx-split img { border-radius: 20px; width: 100%; box-shadow: 0 12px 40px rgba(26,61,43,0.12); }
.wx-split h2 { margin-bottom: 16px; }
.wx-split p  { margin-bottom: 14px; }
.wx-split-list { list-style: none; margin: 16px 0; }
.wx-split-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 19px; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); font-weight: 600; }
.wx-split-list li:last-child { border-bottom: none; }
.wx-split-list li::before { content: "✔"; color: var(--gold); font-weight: 900; flex-shrink: 0; margin-top: 3px; }

/* ── REVIEWS ── */
.wx-rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.wx-rev-item { padding: 30px; background: var(--white); border: 2px solid var(--border); border-radius: 18px; box-shadow: 0 4px 18px rgba(26,61,43,0.06); }
.wx-rev-item img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; border: 3px solid var(--forest5); }
.wx-rev-stars { color: var(--gold); font-size: 20px; margin-bottom: 10px; }
.wx-rev-name { font-size: 18px; font-weight: 800; color: var(--text); }
.wx-rev-place { font-size: 14px; color: var(--gray); margin-bottom: 14px; font-weight: 600; }
.wx-rev-item p { font-size: 17px; color: var(--muted); font-style: italic; line-height: 1.85; }
.wx-rev-tick { font-size: 13px; color: var(--forest); font-weight: 800; margin-top: 14px; }

/* ── STEPS ── */
.wx-steps { display: flex; flex-direction: column; gap: 14px; }
.wx-step { display: flex; gap: 18px; align-items: flex-start; padding: 24px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; }
.wx-step-n { min-width: 48px; height: 48px; background: var(--forest); color: var(--white); font-size: 18px; font-weight: 900; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wx-step h3 { font-size: 20px; margin-bottom: 6px; }
.wx-step p  { font-size: 17px; }

/* ── INGREDIENTS ── */
.wx-ing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wx-ing-item { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; transition: box-shadow .2s; }
.wx-ing-item:hover { box-shadow: 0 8px 24px rgba(26,61,43,0.1); }
.wx-ing-item img { width: 68px; height: 68px; border-radius: 10px; object-fit: cover; flex-shrink: 0; border: 2px solid var(--border); }
.wx-ing-item h3 { font-size: 19px; margin-bottom: 7px; }
.wx-ing-item p  { font-size: 16px; }

/* ── BENEFITS ── */
.wx-ben-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.wx-ben-item { padding: 28px; background: var(--white); border: 2px solid var(--border); border-radius: 16px; transition: box-shadow .2s; }
.wx-ben-item:hover { box-shadow: 0 8px 24px rgba(26,61,43,0.08); }
.wx-ben-icon { width: 52px; height: 52px; background: var(--forest4); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; border: 2px solid var(--forest5); }
.wx-ben-icon svg { width: 28px; height: 28px; stroke: var(--forest); fill: none; stroke-width: 2; }
.wx-ben-item h3 { font-size: 20px; margin-bottom: 8px; }
.wx-ben-item p  { font-size: 17px; }

/* ── PRICING ── */
.wx-pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.wx-pkg { padding: 34px 24px; background: var(--white); border: 2px solid var(--border); border-radius: 20px; text-align: center; transition: box-shadow .2s, transform .2s; }
.wx-pkg:hover { box-shadow: 0 12px 36px rgba(26,61,43,0.12); transform: translateY(-3px); }
.wx-pkg.wx-top { border-color: var(--gold); box-shadow: 0 8px 32px rgba(200,151,15,0.18); }
.wx-pkg-badge { display: inline-block; font-size: 12px; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; background: var(--gold); color: var(--white); margin-bottom: 14px; }
.wx-pkg-badge.wx-gr { background: var(--forest); }
.wx-pkg img { max-width: 150px; margin: 0 auto 16px; }
.wx-pkg h3 { font-size: 22px; color: var(--text); margin-bottom: 6px; }
.wx-pkg-days { font-size: 16px; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.wx-price { font-size: 52px; font-weight: 900; color: var(--forest); line-height: 1; }
.wx-price-unit { font-size: 16px; font-weight: 500; color: var(--muted); }
.wx-was { font-size: 15px; color: var(--gray); text-decoration: line-through; margin: 6px 0 4px; }
.wx-total { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.wx-feats { list-style: none; text-align: left; margin-bottom: 20px; }
.wx-feats li { font-size: 16px; color: var(--muted); padding: 5px 0; display: flex; gap: 10px; align-items: flex-start; font-weight: 600; }
.wx-feats li::before { content: "✔"; color: var(--gold); font-weight: 900; flex-shrink: 0; }

/* ── BONUS ── */
.wx-bonus-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.wx-bonus-item { padding: 18px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; text-align: center; }
.wx-bonus-item img { max-width: 100px; margin: 0 auto 12px; border-radius: 8px; }
.wx-bonus-item h3 { font-size: 15px; margin-bottom: 6px; }
.wx-bonus-item p { font-size: 13px; }
.wx-bonus-lbl { font-size: 11px; color: var(--gold); font-weight: 900; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── GUARANTEE ── */
.wx-guar { background: var(--forest2); padding: 86px 0; }
.wx-guar-grid { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: center; }
.wx-guar-grid img { max-width: 200px; }
.wx-guar-grid h2 { color: var(--white); margin-bottom: 16px; }
.wx-guar-grid p  { color: rgba(255,255,255,0.72); font-size: 19px; margin-bottom: 12px; }
.wx-guar-ul { list-style: none; margin: 18px 0; }
.wx-guar-ul li { color: rgba(255,255,255,0.9); font-size: 19px; padding: 6px 0; display: flex; gap: 12px; font-weight: 600; }
.wx-guar-ul li::before { content: "✔"; color: var(--gold4); font-weight: 900; }

/* ── HOW TO TAKE ── */
.wx-take-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wx-take-item { padding: 28px; background: var(--white); border: 2px solid var(--border); border-radius: 14px; }
.wx-take-n { width: 48px; height: 48px; background: var(--forest4); color: var(--forest); font-size: 20px; font-weight: 900; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; border: 2px solid var(--forest5); }
.wx-take-item h3 { font-size: 20px; margin-bottom: 8px; }
.wx-take-item p  { font-size: 17px; }

/* ── FAQ ── */
.wx-faq-item { border: 2px solid var(--border); border-radius: 14px; margin-bottom: 10px; overflow: hidden; }
.wx-fq { width: 100%; background: var(--white); border: none; text-align: left; padding: 22px 28px; font-size: 19px; font-weight: 700; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-family: 'Manrope', sans-serif; }
.wx-fq .wx-icon { font-size: 24px; color: var(--gold); flex-shrink: 0; transition: transform .2s; }
.wx-fq[aria-expanded="true"] { background: var(--forest2); color: var(--white); }
.wx-fq[aria-expanded="true"] .wx-icon { color: var(--gold4); transform: rotate(45deg); }
.wx-fa { padding: 20px 28px; font-size: 18px; color: var(--muted); line-height: 1.9; background: var(--light); display: none; }
.wx-fa.wx-open { display: block; }

/* ── PAGE CTA ── */
.wx-pcta { background: linear-gradient(135deg, var(--forest2) 0%, var(--forest3) 100%); padding: 70px 0; }
.wx-pcta h2 { color: var(--white); margin-bottom: 14px; }
.wx-pcta p  { color: rgba(255,255,255,0.72); font-size: 19px; margin-bottom: 24px; }

/* ── FINAL CTA ── */
.wx-final { background: linear-gradient(135deg, var(--forest2) 0%, var(--forest3) 100%); padding: 86px 0; }
.wx-final-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 52px; }
.wx-final h2 { color: var(--white); margin-bottom: 14px; }
.wx-final p  { color: rgba(255,255,255,0.72); font-size: 19px; margin-bottom: 16px; }
.wx-final-price { font-size: 24px; font-weight: 900; color: var(--gold4); margin-bottom: 26px; }
.wx-final img { max-width: 240px; filter: drop-shadow(0 14px 30px rgba(0,0,0,0.25)); }

/* ── STICKY ── */
.wx-stick { background: var(--forest2); border-top: 2px solid var(--gold); padding: 14px 0; position: sticky; bottom: 0; z-index: 99; }
.wx-stick-in { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.wx-stick strong { color: var(--white); font-size: 18px; }
.wx-stick span { color: rgba(255,255,255,0.45); font-size: 15px; margin-left: 10px; font-weight: 600; }

/* ── FOOTER ── */
.wx-foot { background: var(--forest2); border-top: 1px solid rgba(255,255,255,0.08); padding: 60px 0 28px; }
.wx-ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.wx-ft-name { font-size: 19px; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.wx-ft-name em { color: var(--gold4); font-style: normal; }
.wx-foot p { font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.8; }
.wx-foot h4 { font-size: 13px; font-weight: 900; color: var(--white); margin-bottom: 14px; letter-spacing: 1.5px; text-transform: uppercase; }
.wx-foot a { display: block; font-size: 15px; color: rgba(255,255,255,0.45); margin-bottom: 9px; font-weight: 600; }
.wx-foot a:hover { color: var(--gold4); }
.wx-ft-rule { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 22px; }
.wx-disc-txt { font-size: 13px; color: rgba(255,255,255,0.25); line-height: 1.85; }
.wx-info { font-size: 15px; color: var(--muted); font-style: italic; margin-top: 10px; }
.wx-hl-box { background: var(--gold3); border: 2px solid #fde08a; border-radius: 14px; padding: 24px; margin-top: 22px; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .wx-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .wx-hero-pic { width: 260px; margin: 0 auto; }
  .wx-hero-btns { justify-content: center; }
  .wx-stars-row { justify-content: center; }
  .wx-split { grid-template-columns: 1fr; }
  .wx-why-grid { grid-template-columns: repeat(2,1fr); }
  .wx-pkg-grid { grid-template-columns: 1fr 1fr; }
  .wx-ft-grid { grid-template-columns: 1fr 1fr; }
  .wx-guar-grid { grid-template-columns: 1fr; text-align: center; }
  .wx-guar-grid img { margin: 0 auto; }
  .wx-bonus-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 767px) {
  .wx-row { padding: 60px 0; }
  .wx-ing-grid, .wx-take-grid, .wx-ben-grid, .wx-bonus-grid { grid-template-columns: 1fr; }
  .wx-rev-grid { grid-template-columns: 1fr; }
  .wx-pkg-grid { grid-template-columns: 1fr; }
  .wx-final-grid { grid-template-columns: 1fr; text-align: center; }
  .wx-final img { margin: 0 auto; }
  .wx-ft-grid { grid-template-columns: 1fr; }
  .wx-split img { order: -1; }
}
