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

/* =============================================
   HONEYPEZILUSA.COM — DEEP NAVY / HONEY GOLD
   CSS: parvex.css (unique)
   ============================================= */
:root {
  --navy:    #0f1e3c;
  --navy2:   #162850;
  --navy3:   #1e3566;
  --navy4:   #e8edf8;
  --navy5:   #c5d0ea;
  --honey:   #d4900a;
  --honey2:  #b87c08;
  --honey3:  #fff8e6;
  --honey4:  #ffe0a0;
  --white:   #ffffff;
  --light:   #f6f8fc;
  --light2:  #edf1f8;
  --text:    #0c1730;
  --muted:   #3a5080;
  --border:  #c8d4e8;
  --gray:    #7890b8;
}

*, *::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: 'Nunito', 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,58px); font-weight: 900; line-height: 1.1; color: var(--navy); }
h2 { font-size: clamp(28px,3.4vw,44px); font-weight: 800; line-height: 1.2; color: var(--navy); }
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; }

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

/* ═══════════════════════════════════════
   NAV — STICKY ALWAYS, ONE LINE
   ═══════════════════════════════════════ */
.px-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(15,30,60,0.3);
  width: 100%;
}
.px-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;
}
.px-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  font-size: 19px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
}
.px-brand span { color: var(--honey4); }
.px-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  flex: 1;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.px-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all .15s;
}
.px-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.px-order {
  flex-shrink: 0;
  background: var(--honey);
  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;
}
.px-order:hover { background: var(--honey2); color: var(--white) !important; }

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

/* ── BUTTONS ── */
.px-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; }
.px-btn-honey  { background: var(--honey);  color: var(--white); }
.px-btn-honey:hover  { background: var(--honey2); color: var(--white); }
.px-btn-navy   { background: var(--navy);   color: var(--white); }
.px-btn-navy:hover   { background: var(--navy2); color: var(--white); }
.px-btn-out  { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.px-btn-out:hover  { background: var(--navy); color: var(--white); }
.px-btn-out-w { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.px-btn-out-w:hover { background: var(--white); color: var(--navy); }

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

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

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

/* ── SPLIT ── */
.px-split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.px-split img { border-radius: 20px; width: 100%; box-shadow: 0 12px 40px rgba(15,30,60,0.1); }
.px-split h2 { margin-bottom: 16px; }
.px-split p  { margin-bottom: 14px; }
.px-split-ul { list-style: none; margin: 16px 0; }
.px-split-ul 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; }
.px-split-ul li:last-child { border-bottom: none; }
.px-split-ul li::before { content: "✔"; color: var(--honey); font-weight: 900; flex-shrink: 0; margin-top: 3px; }

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

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

/* ── INGREDIENTS ── */
.px-ing { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.px-ing-c { 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; }
.px-ing-c:hover { box-shadow: 0 8px 24px rgba(15,30,60,0.1); }
.px-ing-c img { width: 68px; height: 68px; border-radius: 10px; object-fit: cover; flex-shrink: 0; border: 2px solid var(--border); }
.px-ing-c h3 { font-size: 19px; margin-bottom: 7px; }
.px-ing-c p  { font-size: 16px; }

/* ── BENEFITS ── */
.px-ben { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.px-ben-c { padding: 28px; background: var(--white); border: 2px solid var(--border); border-radius: 16px; transition: box-shadow .2s; }
.px-ben-c:hover { box-shadow: 0 8px 24px rgba(15,30,60,0.08); }
.px-ben-ico { width: 52px; height: 52px; background: var(--navy4); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; border: 2px solid var(--navy5); }
.px-ben-ico svg { width: 28px; height: 28px; stroke: var(--navy); fill: none; stroke-width: 2; }
.px-ben-c h3 { font-size: 20px; margin-bottom: 8px; }
.px-ben-c p  { font-size: 17px; }

/* ── PRICING ── */
.px-price-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.px-price-c { padding: 34px 24px; background: var(--white); border: 2px solid var(--border); border-radius: 20px; text-align: center; transition: box-shadow .2s, transform .2s; }
.px-price-c:hover { box-shadow: 0 12px 36px rgba(15,30,60,0.12); transform: translateY(-3px); }
.px-price-c.px-feat { border-color: var(--honey); box-shadow: 0 8px 32px rgba(212,144,10,0.15); }
.px-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(--honey); color: var(--white); margin-bottom: 14px; }
.px-badge.px-b2 { background: var(--navy); }
.px-price-c img { max-width: 150px; margin: 0 auto 16px; }
.px-price-c h3 { font-size: 22px; color: var(--text); margin-bottom: 6px; }
.px-supply { font-size: 16px; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.px-amt { font-size: 50px; font-weight: 900; color: var(--navy); line-height: 1; }
.px-per { font-size: 16px; font-weight: 500; color: var(--muted); }
.px-was { font-size: 15px; color: var(--gray); text-decoration: line-through; margin: 6px 0 4px; }
.px-tot { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.px-cklist { list-style: none; text-align: left; margin-bottom: 20px; }
.px-cklist li { font-size: 16px; color: var(--muted); padding: 5px 0; display: flex; gap: 10px; align-items: flex-start; font-weight: 600; }
.px-cklist li::before { content: "✔"; color: var(--honey); font-weight: 900; flex-shrink: 0; }

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

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

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

/* ── FAQ ── */
.px-faq-wrap { margin-bottom: 10px; border: 2px solid var(--border); border-radius: 14px; overflow: hidden; }
.px-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: 'Nunito', sans-serif; }
.px-fq .px-ico { font-size: 24px; color: var(--honey); flex-shrink: 0; transition: transform .2s; }
.px-fq[aria-expanded="true"] { background: var(--navy); color: var(--white); }
.px-fq[aria-expanded="true"] .px-ico { color: var(--honey4); transform: rotate(45deg); }
.px-fa { padding: 20px 28px; font-size: 18px; color: var(--muted); line-height: 1.9; background: var(--light); display: none; }
.px-fa.px-open { display: block; }

/* ── PAGE CTA ── */
.px-cta { background: var(--navy); padding: 70px 0; }
.px-cta h2 { color: var(--white); margin-bottom: 14px; }
.px-cta p  { color: rgba(255,255,255,0.72); font-size: 19px; margin-bottom: 24px; }

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

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

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

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