/* ═══════════════════════════════════════════
   COZY HOOK PATTERNS — cozyhook.css
   Responsive: Mobile / Tablet / Desktop
   SEO-friendly semantic layout
════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --ch-ink:      #1c1812;
  --ch-brown:    #3d2b1f;
  --ch-terra:    #bf6840;
  --ch-terra-l:  #d4845e;
  --ch-terra-d:  #9e4f28;
  --ch-sage:     #5c7a5e;
  --ch-sage-l:   #7a9e7e;
  --ch-cream:    #faf5ee;
  --ch-warm:     #f4ece0;
  --ch-sand:     #e6d4bc;
  --ch-linen:    #ede4d6;
  --ch-white:    #ffffff;
  --ch-mid:      #6b5d52;
  --ch-light:    #a8998c;
  --ch-radius:   12px;
  --ch-shadow:   0 8px 32px rgba(60,35,15,.12);
}

/* ── Reset ── */
.cozyhook-page * { box-sizing: border-box; margin: 0; padding: 0; }
.cozyhook-page, body.cozyhook-page {
  font-family: 'Jost', 'Segoe UI', sans-serif;
  background: var(--ch-cream);
  color: var(--ch-ink);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Top bar ── */
.ch-topbar {
  background: var(--ch-terra);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .04em;
}

/* ── Nav ── */
.ch-nav {
  background: var(--ch-white);
  border-bottom: 1px solid var(--ch-sand);
  padding: 0 40px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 16px rgba(60,35,15,.07);
}
.ch-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--ch-terra);
  text-decoration: none; letter-spacing: -.02em;
}
.ch-logo em { color: var(--ch-sage); font-style: italic; }
.ch-nav-trust {
  display: flex; gap: 18px; align-items: center;
  font-size: .73rem; color: var(--ch-mid); font-weight: 500;
}
.ch-flags { letter-spacing: 3px; }

/* ── Hero ── */
.ch-hero {
  background: var(--ch-warm);
  position: relative; overflow: hidden;
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 1px solid var(--ch-sand);
}
.ch-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(191,104,64,.10), transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(92,122,94,.10), transparent 70%);
  pointer-events: none;
}
.ch-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.ch-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(191,104,64,.12); color: var(--ch-terra);
  border: 1px solid rgba(191,104,64,.25); border-radius: 30px;
  padding: 6px 16px; font-size: .72rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: 20px;
  animation: chFadeDown .5s ease both;
}
.ch-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700;
  line-height: 1.13; color: var(--ch-brown); margin-bottom: 18px;
  animation: chFadeDown .5s .08s ease both;
}
.ch-h1 em { color: var(--ch-terra); font-style: italic; }
.ch-hero-sub {
  font-size: 1rem; color: var(--ch-mid); max-width: 520px;
  margin: 0 auto 28px; font-weight: 300; line-height: 1.75;
  animation: chFadeDown .5s .16s ease both;
}
.ch-stats {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  margin-bottom: 28px;
  animation: chFadeDown .5s .22s ease both;
}
.ch-stat { text-align: center; }
.ch-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem; font-weight: 700; color: var(--ch-terra); line-height: 1;
}
.ch-stat span { font-size: .72rem; color: var(--ch-light); text-transform: uppercase; letter-spacing: .05em; }
.ch-flags-row {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 30px;
  animation: chFadeDown .5s .28s ease both;
}
.ch-flag-pill {
  background: var(--ch-white); border: 1px solid var(--ch-sand);
  border-radius: 20px; padding: 4px 12px;
  font-size: .73rem; color: var(--ch-mid); font-weight: 500;
}
.ch-btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--ch-terra), var(--ch-terra-d));
  color: #fff; border-radius: 10px; padding: 16px 32px;
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(158,79,40,.28);
  transition: all .2s;
  animation: chFadeDown .5s .34s ease both;
}
.ch-btn-hero:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(158,79,40,.36); color: #fff; }

@keyframes chFadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Sections ── */
.ch-section { padding: 70px 20px; }
.ch-section-inner { max-width: 1100px; margin: 0 auto; }
.ch-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ch-terra); margin-bottom: 10px;
}
.ch-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700;
  color: var(--ch-brown); line-height: 1.2; margin-bottom: 12px;
}
.ch-sub { font-size: .92rem; color: var(--ch-mid); max-width: 520px; font-weight: 300; line-height: 1.7; }

/* ── Product ── */
.ch-product-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start; margin-top: 48px;
}
.ch-product-visual {
  background: var(--ch-linen); border-radius: 20px;
  border: 1px solid var(--ch-sand); aspect-ratio: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: var(--ch-shadow);
}
.ch-visual-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(191,104,64,.12), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(92,122,94,.12), transparent 50%);
}
.ch-product-emoji { font-size: 5.5rem; position: relative; z-index: 1; margin-bottom: 12px; }
.ch-visual-label {
  position: relative; z-index: 1;
  background: var(--ch-terra); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px;
}
.ch-visual-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--ch-sage); color: #fff;
  font-size: .68rem; font-weight: 700; padding: 6px 12px;
  border-radius: 8px; line-height: 1.3; text-align: center;
}
.ch-product-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem; font-weight: 700; color: var(--ch-brown);
  line-height: 1.2; margin-bottom: 10px;
}
.ch-product-desc { font-size: .88rem; color: var(--ch-mid); line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.ch-includes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px;
}
.ch-inc {
  background: var(--ch-warm); border: 1px solid var(--ch-sand);
  border-radius: 10px; padding: 11px 13px;
  display: flex; align-items: center; gap: 9px;
}
.ch-inc > span { font-size: 1.25rem; flex-shrink: 0; }
.ch-inc strong { display: block; font-size: .8rem; font-weight: 600; color: var(--ch-brown); }
.ch-inc small { font-size: .7rem; color: var(--ch-light); }
.ch-price-block {
  background: var(--ch-white); border: 1.5px solid var(--ch-sand);
  border-radius: 12px; padding: 20px; margin-bottom: 20px;
}
.ch-price-top { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.ch-price-now {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem; font-weight: 700; color: var(--ch-terra); line-height: 1;
}
.ch-price-save {
  background: rgba(92,122,94,.12); color: var(--ch-sage);
  font-size: .72rem; font-weight: 700; padding: 4px 10px;
  border-radius: 6px; border: 1px solid rgba(92,122,94,.25);
}
.ch-price-was { font-size: .9rem; color: var(--ch-light); text-decoration: line-through; margin-bottom: 8px; }
.ch-price-note { font-size: .76rem; color: var(--ch-mid); line-height: 1.5; }
.ch-price-note strong { color: var(--ch-terra); }
.ch-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--ch-terra), var(--ch-terra-d));
  color: #fff; border-radius: 10px; padding: 15px 28px;
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: .95rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(158,79,40,.26);
  transition: all .2s;
}
.ch-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(158,79,40,.36); color: #fff; }
.ch-btn-note { font-size: .7rem; color: var(--ch-light); margin-top: 8px; }

/* ── Features ── */
.ch-features-bg {
  background: var(--ch-warm);
  border-top: 1px solid var(--ch-sand); border-bottom: 1px solid var(--ch-sand);
  padding: 70px 20px;
}
.ch-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 42px;
}
.ch-feat {
  background: var(--ch-white); border-radius: 12px;
  border: 1px solid var(--ch-sand); padding: 24px 20px;
  transition: transform .2s, box-shadow .2s;
}
.ch-feat:hover { transform: translateY(-4px); box-shadow: var(--ch-shadow); }
.ch-feat-icon {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 13px;
}
.ch-feat-icon.terra { background: rgba(191,104,64,.11); }
.ch-feat-icon.sage  { background: rgba(92,122,94,.11); }
.ch-feat h3 { font-size: .92rem; font-weight: 600; color: var(--ch-brown); margin-bottom: 6px; }
.ch-feat p  { font-size: .78rem; color: var(--ch-mid); line-height: 1.65; font-weight: 300; }

/* ── Reviews ── */
.ch-reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 42px;
}
.ch-review {
  background: var(--ch-white); border: 1px solid var(--ch-sand);
  border-radius: 12px; padding: 20px;
}
.ch-stars { color: #e8a320; font-size: .95rem; margin-bottom: 9px; letter-spacing: 2px; }
.ch-review > p { font-size: .81rem; color: var(--ch-mid); line-height: 1.7; margin-bottom: 13px; font-style: italic; }
.ch-reviewer { display: flex; align-items: center; gap: 9px; }
.ch-av {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ch-linen); border: 2px solid var(--ch-sand);
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.ch-reviewer strong { display: block; font-size: .78rem; font-weight: 600; color: var(--ch-brown); }
.ch-reviewer span   { display: block; font-size: .7rem; color: var(--ch-light); }

/* ── Checkout section ── */
.ch-checkout-section {
  padding: 70px 20px 90px;
  background: var(--ch-cream);
  position: relative;
}
.ch-checkout-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--ch-terra), var(--ch-terra-l), var(--ch-sage-l));
}
.ch-checkout-head { text-align: center; margin-bottom: 40px; }
.ch-checkout-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 340px;
  gap: 28px; align-items: start;
}

/* ── Form card ── */
.ch-form-card {
  background: var(--ch-white); border-radius: 16px;
  border: 1px solid var(--ch-sand); padding: 34px;
  box-shadow: var(--ch-shadow);
}
.ch-form-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 700; color: var(--ch-brown); margin-bottom: 5px;
}
.ch-form-sub { font-size: .8rem; color: var(--ch-mid); margin-bottom: 24px; line-height: 1.5; }
.ch-frow { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 13px; }
.ch-frow.ch-full { grid-template-columns: 1fr; }
.ch-fg { display: flex; flex-direction: column; gap: 5px; }
.ch-fg label {
  font-size: .68rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--ch-mid);
}
.ch-fg input, .ch-fg select {
  height: 44px; padding: 0 13px;
  border: 1.5px solid var(--ch-sand); border-radius: 8px;
  font-family: 'Jost', sans-serif; font-size: .87rem;
  color: var(--ch-ink); background: var(--ch-cream); outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
.ch-fg input:focus, .ch-fg select:focus {
  border-color: var(--ch-terra);
  box-shadow: 0 0 0 3px rgba(191,104,64,.13);
  background: var(--ch-white);
}
.ch-fg input::placeholder { color: var(--ch-light); }
.ch-divider { height: 1px; background: var(--ch-linen); margin: 20px 0; }
.ch-pay-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--ch-mid); margin-bottom: 12px;
}

/* PayPal */
.ch-paypal-wrap {
  min-height: 50px;
  margin-bottom: 12px;
}
.ch-paypal-msg {
  padding: 12px 14px; border-radius: 8px;
  font-size: .82rem; line-height: 1.5; margin-bottom: 10px;
}
.ch-paypal-msg.success {
  background: rgba(92,122,94,.10); border: 1px solid rgba(92,122,94,.30); color: var(--ch-sage);
}
.ch-paypal-msg.error {
  background: rgba(191,64,64,.08); border: 1px solid rgba(191,64,64,.25); color: #a33;
}
.ch-paypal-setup-notice {
  background: #fff8e1; border: 1px solid #ffe082; border-radius: 8px;
  padding: 12px 14px; font-size: .8rem; color: #6d5c00; margin-bottom: 12px;
}
.ch-paypal-setup-notice a { color: var(--ch-terra); }

.ch-trust-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; }
.ch-tchip {
  display: flex; align-items: center; gap: 5px;
  background: var(--ch-warm); border-radius: 20px;
  padding: 4px 10px; font-size: .68rem; font-weight: 500; color: var(--ch-mid);
  border: 1px solid var(--ch-sand);
}
.ch-cbox { display: flex; align-items: flex-start; gap: 8px; margin-top: 12px; }
.ch-cbox input[type=checkbox] {
  margin-top: 3px; accent-color: var(--ch-terra);
  width: 15px; height: 15px; cursor: pointer; flex-shrink: 0;
}
.ch-cbox label { font-size: .76rem; color: var(--ch-mid); line-height: 1.5; cursor: pointer; }
.ch-cbox a { color: var(--ch-terra); text-decoration: none; }
.ch-cbox a:hover { text-decoration: underline; }

/* ── Summary ── */
.ch-summary {
  background: var(--ch-white); border: 1px solid var(--ch-sand);
  border-radius: 16px; padding: 26px;
  box-shadow: var(--ch-shadow); position: sticky; top: 76px;
}
.ch-sum-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem; font-weight: 700; color: var(--ch-brown);
  margin-bottom: 18px; padding-bottom: 13px;
  border-bottom: 1px solid var(--ch-linen);
}
.ch-sum-product {
  display: flex; gap: 11px; align-items: center;
  background: var(--ch-warm); border-radius: 10px; padding: 13px;
  margin-bottom: 16px;
}
.ch-sum-thumb {
  width: 50px; height: 50px; border-radius: 8px;
  background: var(--ch-linen); border: 1px solid var(--ch-sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; flex-shrink: 0;
}
.ch-sum-info strong { display: block; font-size: .83rem; font-weight: 600; color: var(--ch-brown); line-height: 1.3; }
.ch-sum-info span   { display: block; font-size: .7rem; color: var(--ch-light); }
.ch-sum-badge {
  display: inline-block; margin-top: 4px;
  background: rgba(191,104,64,.10); color: var(--ch-terra);
  font-size: .62rem; font-weight: 700; padding: 2px 8px; border-radius: 10px;
}
.ch-coupon-row { display: flex; gap: 7px; margin-bottom: 16px; }
.ch-coupon-row input {
  flex: 1; height: 40px; padding: 0 11px;
  border: 1.5px dashed var(--ch-sand); border-radius: 8px;
  font-family: 'Jost', sans-serif; font-size: .8rem;
  color: var(--ch-ink); background: var(--ch-cream); outline: none;
  transition: all .2s;
}
.ch-coupon-row input:focus { border-style: solid; border-color: var(--ch-terra); }
.ch-coupon-row button {
  height: 40px; padding: 0 13px;
  border: 1.5px solid var(--ch-terra); border-radius: 8px;
  background: transparent; color: var(--ch-terra);
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: .76rem; cursor: pointer;
  transition: all .2s;
}
.ch-coupon-row button:hover { background: var(--ch-terra); color: #fff; }
.ch-price-lines { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.ch-pl { display: flex; justify-content: space-between; font-size: .82rem; }
.ch-pl span:first-child { color: var(--ch-mid); }
.ch-pl span:last-child  { font-weight: 500; }
.ch-pl.ch-save span:last-child { color: var(--ch-sage); font-weight: 600; }
.ch-pl.ch-total { font-size: .98rem; }
.ch-pl.ch-total span:first-child { font-weight: 700; color: var(--ch-brown); }
.ch-pl.ch-total span:last-child  { font-weight: 700; color: var(--ch-terra); font-size: 1.05rem; }
.ch-strike { text-decoration: line-through; color: var(--ch-light) !important; }
.ch-free   { color: var(--ch-sage) !important; font-weight: 600 !important; }
.ch-pdiv   { height: 1px; background: var(--ch-linen); margin: 8px 0; }
.ch-guarantee {
  margin-top: 14px;
  background: rgba(92,122,94,.07); border: 1px solid rgba(92,122,94,.24);
  border-radius: 10px; padding: 12px 13px;
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .74rem; color: var(--ch-mid); line-height: 1.5;
}
.ch-guarantee > span { font-size: 1.2rem; flex-shrink: 0; }
.ch-guarantee strong { display: block; color: var(--ch-sage); margin-bottom: 3px; font-size: .78rem; }
.ch-guarantee p { font-size: .74rem; color: var(--ch-mid); }
.ch-mini-reviews {
  margin-top: 14px; background: var(--ch-warm);
  border-radius: 10px; padding: 13px;
}
.ch-mr-head { font-size: .72rem; font-weight: 700; color: var(--ch-brown); margin-bottom: 8px; }
.ch-mr-item {
  font-size: .72rem; color: var(--ch-mid); line-height: 1.5; font-style: italic;
  padding: 5px 0; border-bottom: 1px solid var(--ch-sand);
}
.ch-mr-item:last-child { border-bottom: none; }
.ch-mr-item strong { color: var(--ch-brown); font-style: normal; }

/* ── Footer ── */
.ch-footer {
  background: var(--ch-brown); color: rgba(255,255,255,.7);
  padding: 30px 20px; text-align: center;
  font-size: .74rem; line-height: 1.8;
}
.ch-footer-links { display: flex; justify-content: center; gap: 18px; margin-bottom: 8px; flex-wrap: wrap; }
.ch-footer a { color: rgba(255,255,255,.6); text-decoration: none; }
.ch-footer a:hover { color: #fff; }
.ch-footer strong { color: rgba(255,255,255,.9); }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (max 900px)
══════════════════════════════════════ */
@media (max-width: 900px) {
  .ch-product-wrap    { grid-template-columns: 1fr; gap: 28px; margin-top: 34px; }
  .ch-product-visual  { max-width: 420px; aspect-ratio: 1; margin: 0 auto; }
  .ch-features-grid   { grid-template-columns: repeat(2, 1fr); }
  .ch-reviews-grid    { grid-template-columns: repeat(2, 1fr); }
  .ch-checkout-grid   { grid-template-columns: 1fr; }
  .ch-summary         { position: static; order: -1; }
  .ch-nav             { padding: 0 20px; }
  .ch-nav-trust .ch-flags { display: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (max 600px)
══════════════════════════════════════ */
@media (max-width: 600px) {
  .ch-topbar          { font-size: .68rem; padding: 8px 12px; }
  .ch-nav             { padding: 0 14px; height: 54px; }
  .ch-nav-trust       { display: none; }
  .ch-logo            { font-size: 1.3rem; }
  .ch-hero            { padding: 44px 16px 36px; }
  .ch-h1              { font-size: 2rem; }
  .ch-stats           { gap: 16px; }
  .ch-stat strong     { font-size: 1.7rem; }
  .ch-flags-row       { gap: 6px; }
  .ch-flag-pill       { font-size: .68rem; padding: 3px 10px; }
  .ch-btn-hero        { padding: 14px 22px; font-size: .9rem; }
  .ch-section         { padding: 44px 16px; }
  .ch-features-bg     { padding: 44px 16px; }
  .ch-checkout-section{ padding: 44px 16px 60px; }
  .ch-features-grid   { grid-template-columns: 1fr; }
  .ch-reviews-grid    { grid-template-columns: 1fr; }
  .ch-includes        { grid-template-columns: 1fr; }
  .ch-frow            { grid-template-columns: 1fr; }
  .ch-form-card       { padding: 20px 16px; }
  .ch-summary         { padding: 20px 16px; }
  .ch-h2              { font-size: 1.6rem; }
  .ch-price-now       { font-size: 2.2rem; }
  .ch-footer-links    { gap: 12px; }
}
