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

/* =============================================
   HONEYPEZIL-EN.COM — WARM CHARCOAL / AMBER
   CSS: gruvex.css (unique — zero fingerprint)
   ============================================= */
:root {
  --char:    #1c1610;
  --char2:   #271e14;
  --char3:   #332918;
  --char4:   #f5f0e8;
  --char5:   #e0d5c0;
  --amber:   #c87820;
  --amber2:  #a86018;
  --amber3:  #fff8ec;
  --amber4:  #fde0a0;
  --copper:  #b05a28;
  --white:   #ffffff;
  --light:   #faf8f4;
  --light2:  #f2ece0;
  --text:    #1c1610;
  --muted:   #5a4a30;
  --border:  #d5c8a8;
  --gray:    #9a8868;
}

*, *::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: 'Plus Jakarta Sans', 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(--char); }
h2 { font-size: clamp(28px,3.4vw,46px); font-weight: 800; line-height: 1.2; color: var(--char); }
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; }

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

/* ═══════════════════════════════
   NAV — STICKY, ONE LINE
   ═══════════════════════════════ */
.gx-nav {
  background: var(--char);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(28,22,16,0.4);
  width: 100%;
}
.gx-nav-row {
  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;
}
.gx-brand {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
}
.gx-brand em { color: var(--amber4); font-style: normal; }
.gx-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  flex: 1;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.gx-nav-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all .15s;
}
.gx-nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.gx-nav-btn {
  flex-shrink: 0;
  background: var(--amber);
  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;
}
.gx-nav-btn:hover { background: var(--amber2); color: var(--white) !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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