/* ============================================================
   KUPTEE — Shared Stylesheet
   Used by: https://kuptee.com/, product.html
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #a61e1e;
  --red-bg: #f8eeee;
  --black: #1a1a1a;
  --grey: #6b6b6b;
  --grey-lt: #b0b0b0;
  --line: #e8e8e8;
  --bg: #ffffff;
  --bgf: #fafaf8;
  --font: "Poppins", sans-serif;
  --r: 10px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── ANNOUNCE BAR ── */
.announce {
  background: var(--black);
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  padding: 8px 1rem;
}
.announce strong {
  color: #fff;
  font-weight: 500;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 400;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 62px;
}
.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo svg {
  height: 28px;
  width: auto;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--grey);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.18s;
}
.nav-links a:hover {
  color: var(--black);
}
.nav-r {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--black);
  border: 1.5px solid var(--line);
  padding: 6px 14px;
  border-radius: 40px;
  background: none;
  cursor: pointer;
  font-family: var(--font);
  transition: border-color 0.18s;
}
.nav-cart:hover {
  border-color: var(--black);
}
.cart-pill {
  background: var(--red);
  color: #fff;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--black);
  border-radius: 2px;
}

/* ── SECTIONS COMMON ── */
.sec {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5.5rem 2rem;
}
.sec-label {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.sec-title {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 5px;
}
.sec-sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.85;
  max-width: 460px;
}
.sec-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.lnk {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--grey);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition:
    color 0.18s,
    gap 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.lnk:hover {
  color: var(--black);
  gap: 8px;
}

/* ── BUTTONS ── */
.btn-fill {
  background: var(--black);
  color: #fff;
  padding: 12px 26px;
  border-radius: 40px;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-fill:hover {
  background: var(--red);
  transform: translateY(-1px);
}
.btn-ol {
  color: var(--black);
  padding: 11px 22px;
  border-radius: 40px;
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1.5px solid var(--line);
  display: inline-block;
  transition: border-color 0.18s;
}
.btn-ol:hover {
  border-color: var(--black);
}

/* ── MARQUEE ── */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 12px 0;
}
.marquee-t {
  display: inline-flex;
  animation: scroll 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.mdot {
  color: var(--red);
  font-size: 0.45rem;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── PROMISE STRIP ── */
.promise-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.promise-g {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.promise-item {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--line);
}
.promise-item:last-child {
  border-right: none;
}
.pi-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.pi-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.pi-title2 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.pi-text {
  font-size: 0.71rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.6;
}

/* ── PRODUCT GRID ── */
.prod-bg {
  background: var(--bgf);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.prod-bg2 {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.pcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.pcard:hover {
  border-color: #ccc;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}
.badge {
  position: absolute;
  top: 9px;
  z-index: 5;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 40px;
}
.bl {
  left: 9px;
  background: #e8f5e9;
  color: #2e7d32;
}
.br {
  right: 9px;
}
.bmild {
  background: #e8f5e9;
  color: #2e7d32;
}
.bmed {
  background: #fff3e0;
  color: #e65100;
}
.bhot {
  background: #ffebee;
  color: #b71c1c;
}
.bxhot {
  background: #1a1a1a;
  color: #fff;
}
.pimg {
  height: 154px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.3s;
}
.pcard:hover .pimg {
  transform: scale(1.05);
}
.t1 {
  background: #fff5f5;
}
.t2 {
  background: #fff8f0;
}
.t3 {
  background: #fff0f5;
}
.t4 {
  background: #fffbf0;
}
.t5 {
  background: #fff0f0;
}
.t6 {
  background: #fffff0;
}
.t7 {
  background: #faf0ff;
}
.t8 {
  background: #f0fff4;
}
.t9 {
  background: #fffef0;
}
.ta {
  background: #f8fef0;
}
.tb {
  background: #fff0f5;
}
.tc {
  background: #f5f0ff;
}
.td {
  background: #fffbf0;
}
.te {
  background: #fff8f0;
}
.tf {
  background: #f0fff8;
}
.pbody {
  padding: 0.9rem;
}
.pname {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3px;
  line-height: 1.3;
}
.pdesc {
  font-size: 0.69rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.55;
  margin-bottom: 10px;
}
.pfoot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.pw {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
}
.price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
}
.punit {
  font-size: 0.62rem;
  color: var(--grey-lt);
}
.szel {
  font-family: var(--font);
  font-size: 0.63rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 3px 7px;
  background: #fff;
  cursor: pointer;
  color: var(--black);
}
.szel:focus {
  outline: none;
  border-color: var(--black);
}
.abtn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  border: none;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font);
  transition:
    background 0.18s,
    transform 0.15s;
}
.abtn:hover {
  background: var(--red);
  transform: scale(1.08);
}
.abtn:disabled {
  background: var(--line);
  color: var(--grey-lt);
  cursor: not-allowed;
  transform: none;
}

/* ── HOW IT WORKS STEPS ── */
.sgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.step {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.snum {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.stitle {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.stext {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.65;
}

/* ── STORY ── */
.story-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-box {
  aspect-ratio: 4/5;
  background: var(--bgf);
  border: 1px solid var(--line);
  border-radius: 120px 120px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  background: url("kupeet-kitchen.jpg") center center / cover no-repeat;
}

.story-pill {
  position: absolute;
  bottom: 1.5rem;
  right: -1.5rem;
  background: var(--black);
  color: #fff;
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  text-align: right;
}
.sp-n {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.sp-l {
  font-size: 0.58rem;
  opacity: 0.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.story-t p {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.9;
  margin-top: 0.9rem;
}
.vals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.75rem;
}
.vitem {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.vicon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.vtitle {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--black);
}
.vtext {
  font-size: 0.69rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.5;
  margin-top: 2px;
}

/* ── TESTIMONIALS ── */
.testi-bg {
  background: var(--bgf);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2.25rem;
}
.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem;
}
.tstars {
  color: var(--red);
  font-size: 0.78rem;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}
.ttext {
  font-size: 0.82rem;
  font-weight: 300;
  font-style: italic;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.tauth {
  display: flex;
  align-items: center;
  gap: 9px;
}
.tavatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.tname {
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--black);
}
.tloc {
  font-size: 0.65rem;
  color: var(--grey-lt);
  margin-top: 1px;
}

/* ── FEEDBACK SECTION ── */
.feedback-wrap {
  background: var(--bgf);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feedback-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.feedback-in h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 6px;
}
.feedback-in .fb-sub {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 0;
}
.fb-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fb-row {
  display: flex;
  gap: 10px;
}
.fb-input,
.fb-textarea,
.fb-select {
  font-family: var(--font);
  font-size: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 10px 14px;
  background: #fff;
  color: var(--black);
  transition: border-color 0.18s;
  width: 100%;
}
.fb-input:focus,
.fb-textarea:focus,
.fb-select:focus {
  outline: none;
  border-color: var(--black);
}
.fb-textarea {
  resize: vertical;
  min-height: 90px;
}
.fb-select {
  cursor: pointer;
}
.fb-star-row {
  display: flex;
  gap: 4px;
  align-items: center;
}
.fb-star {
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--line);
  transition:
    color 0.15s,
    transform 0.15s;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}
.fb-star.active,
.fb-star:hover {
  color: #f5a623;
  transform: scale(1.15);
}
.fb-star-label {
  font-size: 0.7rem;
  color: var(--grey);
  margin-left: 6px;
}
.fb-submit {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 11px 24px;
  border-radius: 40px;
  background: var(--black);
  color: #fff;
  border: none;
  cursor: pointer;
  transition:
    background 0.18s,
    transform 0.15s;
  align-self: flex-start;
}
.fb-submit:hover {
  background: var(--red);
  transform: translateY(-1px);
}
.fb-status {
  font-size: 0.75rem;
  font-weight: 500;
  color: #2e7d32;
  margin-top: 4px;
  min-height: 18px;
}
.fb-status.err {
  color: var(--red);
}

/* ── NEWSLETTER / SUBSCRIBE ── */
.nl-wrap {
  background: var(--black);
}
.nl-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.nl-in h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}
.nl-in p {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}
.email-row {
  display: flex;
  gap: 8px;
}
.einput {
  flex: 1;
  padding: 12px 16px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font);
  font-size: 0.8rem;
}
.einput::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.einput:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
}
.esubmit {
  padding: 12px 20px;
  border-radius: 40px;
  background: var(--red);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.18s;
}
.esubmit:hover {
  background: #8a1818;
}
.nl-status {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  min-height: 16px;
}
.nl-status.ok {
  color: #7ce89f;
}
.nl-status.err {
  color: #f4a0a0;
}

/* ── COUPON SECTION (inside cart) ── */
.coupon-wrap {
  padding: 0.75rem 1.4rem;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.coupon-row {
  display: flex;
  gap: 7px;
}
.coupon-input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 40px;
  border: 1px solid var(--line);
  font-family: var(--font);
  font-size: 0.75rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: border-color 0.18s;
}
.coupon-input:focus {
  outline: none;
  border-color: var(--black);
}
.coupon-input::placeholder {
  text-transform: none;
  letter-spacing: 0;
}
.coupon-btn {
  padding: 8px 14px;
  border-radius: 40px;
  background: var(--black);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
}
.coupon-btn:hover {
  background: var(--red);
}
.coupon-msg {
  font-size: 0.68rem;
  margin-top: 6px;
  min-height: 14px;
  font-weight: 500;
}
.coupon-msg.ok {
  color: #2e7d32;
}
.coupon-msg.err {
  color: var(--red);
}
.coupon-applied {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: #e8f5e9;
  border-radius: 8px;
  padding: 6px 10px;
  margin-top: 6px;
}
.coupon-applied.show {
  display: flex;
}
.coupon-applied span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #2e7d32;
}
.coupon-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.65rem;
  color: #2e7d32;
  font-family: var(--font);
  text-decoration: underline;
}

/* ── FOOTER ── */
footer {
  background: #0f0f0f;
}
.foot-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
}
.ftop {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.flogo {
  margin-bottom: 0.9rem;
}
.flogo svg {
  height: 24px;
  width: auto;
}
.fabout {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.85;
  max-width: 210px;
}
.fcol h5 {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.9rem;
}
.fcol ul {
  list-style: none;
}
.fcol ul li {
  margin-bottom: 0.55rem;
}
.fcol ul li a {
  font-size: 0.77rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.18s;
}
.fcol ul li a:hover {
  color: #fff;
}
.fbot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.fcopy {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.16);
}
.socials {
  display: flex;
  gap: 7px;
}
.soc {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 600;
  transition:
    border-color 0.18s,
    color 0.18s;
}
.soc:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ── CART PANEL ── */
.cov {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  z-index: 500;
  backdrop-filter: blur(2px);
}
.cov.open {
  display: block;
}
.cpanel {
  position: fixed;
  right: -410px;
  top: 0;
  width: 390px;
  height: 100%;
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -10px 0 36px rgba(0, 0, 0, 0.07);
  transition: right 0.36s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 600;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
}
.cpanel.open {
  right: 0;
}
.chead {
  padding: 1.1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.chead h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
}
.cclose {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--grey);
  transition: 0.18s;
  font-family: var(--font);
}
.cclose:hover {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.cbody {
  flex: 1;
  overflow-y: auto;
}
.cbody::-webkit-scrollbar {
  width: 3px;
}
.cbody::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}
.cempty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 220px;
  gap: 8px;
  color: var(--grey-lt);
  font-size: 0.8rem;
}
.cempty span {
  font-size: 2.2rem;
}
.citem {
  padding: 0.9rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.cr1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 5px;
}
.cname {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
}
.cprice {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.cr2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.csize {
  font-size: 0.65rem;
  color: var(--grey-lt);
}
.qrow {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bgf);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2px 9px;
}
.qbtn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  font-family: var(--font);
  line-height: 1;
  padding: 0;
  width: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s;
}
.qbtn:hover {
  color: var(--red);
}
.qval {
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--black);
  min-width: 14px;
  text-align: center;
}
.cbill {
  padding: 0.9rem 1.4rem;
  border-top: 1px dashed var(--line);
  background: var(--bgf);
}
.bill-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.77rem;
  font-weight: 400;
  color: var(--grey);
  margin-bottom: 6px;
}
.bill-row.discount span:last-child {
  color: #2e7d32;
  font-weight: 600;
}
.bill-tot {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
  padding-top: 9px;
  border-top: 1px solid var(--line);
  margin-top: 3px;
}
.fdnote {
  font-size: 0.63rem;
  color: #2e7d32;
  margin-top: 7px;
  font-weight: 500;
}
.cfoot {
  padding: 1.1rem 1.4rem;
  flex-shrink: 0;
}
.cfoot img {
  display: block;
  margin: 0 auto 0.9rem;
  border-radius: 7px;
}
.wabtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: 0.04em;
  transition: background 0.18s;
}
.wabtn:hover {
  background: #1da855;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.3s;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.vis {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════
   HOME PAGE SPECIFIC
   ════════════════════════════════════ */
.hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 86px);
  align-items: center;
  gap: 2rem;
}
.hero-text {
  padding: 3rem 2rem 3rem 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-bg);
  padding: 5px 12px;
  border-radius: 40px;
  margin-bottom: 1.5rem;
}
.hero-h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-h1 em {
  color: var(--red);
  font-style: normal;
}
.hero-p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--grey);
  max-width: 400px;
  margin-bottom: 2.25rem;
}
.hero-ctas {
  display: flex;
  gap: 10px;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.stat-n {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}
.stat-l {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--grey-lt);
  margin-top: 4px;
  letter-spacing: 0.06em;
}
.hero-vis {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero-circle {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: var(--bgf);
  border: 1px solid var(--line);
}
.floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.floater {
  position: absolute;
  font-size: 1.3rem;
  opacity: 0.22;
  animation: flt 7s ease-in-out infinite;
}
@keyframes flt {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
.slideshow {
  position: relative;
  z-index: 2;
  width: 240px;
  height: 360px;
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.slide img {
  max-width: 420px;
  max-height: 460px;
  object-fit: contain;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.07));
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.slide-lbl {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--grey-lt);
  margin-top: 10px;
  letter-spacing: 0.08em;
}
.hdots {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.hdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}
.hdot.active {
  background: var(--black);
  transform: scale(1.5);
}

/* ════════════════════════════════════
   PRODUCT PAGE SPECIFIC
   ════════════════════════════════════ */
.breadcrumb-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--grey-lt);
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--grey);
  text-decoration: none;
  transition: color 0.18s;
}
.breadcrumb a:hover {
  color: var(--black);
}

.product-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Gallery */
.gallery {
  position: sticky;
  top: 82px;
}
.main-img-wrap {
  aspect-ratio: 1/1;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bgf);
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}
.gslide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  pointer-events: none;
}
.gslide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.gslide img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  display: block;
}
.gfallback {
  display: none;
  font-size: 7rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.badge-strip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pbadge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 40px;
}
.pbadge-hot {
  background: #ffebee;
  color: #b71c1c;
}
.pbadge-veg {
  background: #e8f5e9;
  color: #2e7d32;
}
.gal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.18s,
    border-color 0.18s;
  font-family: var(--font);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.gal-arrow:hover {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.gal-prev {
  left: 10px;
}
.gal-next {
  right: 10px;
}
.gal-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.gdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s;
}
.gdot.active {
  background: var(--black);
  transform: scale(1.4);
}
.thumbs {
  display: flex;
  gap: 8px;
}
.thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--bgf);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
  flex-shrink: 0;
}
.thumb:hover {
  border-color: var(--grey-lt);
}
.thumb.active {
  border-color: var(--black);
  box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.12);
}
.thumb img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  display: block;
}
.thumb span {
  font-size: 1.8rem;
}
.thumb-add {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  border: 1.5px dashed var(--line);
  background: var(--bgf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--grey-lt);
  flex-shrink: 0;
}

/* Product info */
.product-info {
  padding-top: 0.5rem;
}
.pi-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.pi-subtitle {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--grey);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.pi-tagline {
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding-left: 12px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.pi-desc {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.stars {
  color: var(--red);
  font-size: 0.82rem;
  letter-spacing: 1px;
}
.rating-count {
  font-size: 0.72rem;
  color: var(--grey);
}
.pi-sec-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.65rem;
}
.size-opts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.size-opt {
  padding: 7px 16px;
  border-radius: 40px;
  border: 1.5px solid var(--line);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey);
  cursor: pointer;
  background: #fff;
  transition:
    border-color 0.18s,
    color 0.18s,
    background 0.18s;
  font-family: var(--font);
}
.size-opt:hover {
  border-color: var(--black);
  color: var(--black);
}
.size-opt.active {
  border-color: var(--black);
  background: var(--black);
  color: #fff;
}
.opt-price {
  font-size: 0.68rem;
  opacity: 0.7;
  margin-left: 4px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 0.4rem;
}
.pi-weight {
  font-size: 1.2rem;
  color: var(--red);
  font-weight: 500;
}
.pi-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.pi-price-sub {
  font-size: 0.72rem;
  color: var(--grey-lt);
}
.free-del-tag {
  font-size: 0.68rem;
  font-weight: 500;
  color: #2e7d32;
  margin-bottom: 1.5rem;
}
.add-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 40px;
  overflow: hidden;
}
.qty-btn {
  width: 38px;
  height: 42px;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--black);
  font-family: var(--font);
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover {
  background: var(--bgf);
}
.qty-num {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 32px;
  text-align: center;
  color: var(--black);
}
.btn-add-cart {
  flex: 1;
  padding: 0 24px;
  height: 42px;
  border-radius: 40px;
  background: var(--black);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition:
    background 0.18s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-add-cart:hover {
  background: var(--red);
  transform: translateY(-1px);
}
.btn-add-cart.added {
  background: #2e7d32;
}
.trust-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.67rem;
  font-weight: 500;
  color: var(--grey);
  background: var(--bgf);
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: 40px;
}
.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 1.75rem 0;
}
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.75rem;
}
.tab {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey);
  padding: 10px 18px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition:
    color 0.18s,
    border-color 0.18s;
  font-family: var(--font);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  letter-spacing: 0.03em;
}
.tab.active {
  color: var(--black);
  border-bottom-color: var(--black);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.ing-text {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.85;
}
.nutri-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
.nutri-table th {
  background: var(--bgf);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.nutri-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--black);
}
.nutri-table td:last-child {
  text-align: right;
  color: var(--grey);
}
.nutri-table tr.bold td {
  font-weight: 600;
}
.nutri-table tr.sub td:first-child {
  padding-left: 24px;
  color: var(--grey);
  font-size: 0.76rem;
}
.nutri-note {
  font-size: 0.68rem;
  color: var(--grey-lt);
  margin-top: 8px;
  line-height: 1.6;
}
.use-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 0.5rem;
}
.use-item {
  text-align: center;
}
.use-icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.use-label {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.05em;
}
.cert-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--grey);
}
.cert-icon {
  font-size: 1.1rem;
}
.related-wrap {
  border-top: 1px solid var(--line);
  background: var(--bgf);
}
.related-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.rpgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.rcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.18s,
    box-shadow 0.18s,
    transform 0.18s;
  text-decoration: none;
  display: block;
}
.rcard:hover {
  border-color: #ccc;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.rimg {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.rbody {
  padding: 0.75rem;
}
.rname {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3px;
}
.rprice {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
}

/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media (max-width: 1100px) {
  .pgrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .promise-g {
    grid-template-columns: repeat(2, 1fr);
  }
  .promise-item:nth-child(2) {
    border-right: none;
  }
  .promise-item {
    border-bottom: 1px solid var(--line);
  }
  .sgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ftop {
    grid-template-columns: 1fr 1fr;
  }
  .rpgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feedback-in {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 960px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .gallery {
    position: static;
  }
  .rpgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .use-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
  }
  .hero-text {
    padding: 3rem 0 1.5rem;
    order: 1;
  }
  .hero-vis {
    order: 0;
    min-height: 300px;
    padding: 2.5rem 0;
  }
  .hero-circle {
    width: 300px;
    height: 300px;
  }
  .slideshow {
    width: 190px;
    height: 280px;
  }
  .slide img {
    max-width: 260px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--line);
    gap: 0.9rem;
    z-index: 100;
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .pgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-g {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .story-pill {
    right: 0;
  }
  .tgrid {
    grid-template-columns: 1fr;
  }
  .nl-in {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .vals {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 580px) {
  .nav-in {
    padding: 0 1rem;
    height: 56px;
  }
  .hdots {
    bottom: 0px;
  }
  .sec {
    padding: 3.5rem 1.2rem;
  }
  .hero-h1 {
    font-size: 1.85rem;
  }
  .hero-circle {
    width: 260px;
    height: 260px;
  }
  .pgrid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .pimg {
    height: 130px;
    font-size: 2.6rem;
  }
  .promise-g {
    grid-template-columns: 1fr;
  }
  .promise-item {
    border-right: none;
  }
  .sgrid {
    grid-template-columns: 1fr;
  }
  .tgrid {
    grid-template-columns: 1fr;
  }
  .ftop {
    grid-template-columns: 1fr;
  }
  .email-row {
    flex-direction: column;
  }
  .cpanel {
    width: 100%;
    right: -100%;
  }
  .nl-in {
    padding: 3rem 1.2rem;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .feedback-in {
    padding: 2.5rem 1.2rem;
  }
  .fb-row {
    flex-direction: column;
  }
  .product-wrap {
    padding: 1.5rem 1rem 4rem;
  }
  .breadcrumb-wrap {
    padding: 1rem 1rem 0;
  }
  .size-opts {
    gap: 6px;
  }
  .rpgrid {
    grid-template-columns: 1fr 1fr;
  }
}
.policy-hero {
  background: var(--bgf);
  border-bottom: 1px solid var(--line);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
}
.policy-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}
.policy-hero .breadcrumb {
  justify-content: center;
  margin-bottom: 1.5rem;
}
.policy-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.policy-hero p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}
.policy-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-lt);
  background: #fff;
  border: 1px solid var(--line);
  padding: 5px 14px;
  border-radius: 40px;
}
.policy-updated span {
  color: var(--red);
}

/* Layout */
.policy-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Sticky sidebar nav */
.policy-sidebar {
  position: sticky;
  top: 82px;
}
.sidebar-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-lt);
  margin-bottom: 0.75rem;
  padding-left: 4px;
}
.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-nav a {
  display: block;
  font-size: 0.77rem;
  font-weight: 400;
  color: var(--grey);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition:
    color 0.18s,
    background 0.18s,
    border-color 0.18s;
  line-height: 1.4;
}
.sidebar-nav a:hover {
  color: var(--black);
  background: var(--bgf);
}
.sidebar-nav a.active {
  color: var(--black);
  font-weight: 600;
  border-left-color: var(--red);
  background: var(--bgf);
}

.sidebar-cta {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--red-bg);
  border: 1px solid rgba(166, 30, 30, 0.12);
  border-radius: var(--r);
}
.sidebar-cta p {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 0.9rem;
}
.sidebar-cta a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  transition: opacity 0.18s;
}
.sidebar-cta a:hover {
  opacity: 0.75;
}

/* Content */
.policy-content {
  min-width: 0;
}

/* Summary cards */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.summary-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.25rem 1.1rem;
  text-align: center;
  transition: box-shadow 0.18s;
}
.summary-card:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}
.sc-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.sc-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
}
.sc-value {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--grey);
  line-height: 1.5;
}
.sc-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 40px;
}
.sc-tag.green {
  background: #e8f5e9;
  color: #2e7d32;
}
.sc-tag.red {
  background: #ffebee;
  color: #b71c1c;
}
.sc-tag.grey {
  background: var(--bgf);
  color: var(--grey);
}

/* Policy sections */
.policy-section {
  margin-bottom: 3rem;
  scroll-margin-top: 90px;
}
.policy-section:last-child {
  margin-bottom: 0;
}

.ps-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.ps-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ps-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}
.ps-num {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-lt);
  flex-shrink: 0;
}

.ps-body p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.9;
  margin-bottom: 0.85rem;
}
.ps-body p:last-child {
  margin-bottom: 0;
}
.ps-body strong {
  color: var(--black);
  font-weight: 600;
}

/* Checklist */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0.85rem 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.65;
}
.check-list li .ck {
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 2px;
}
.check-list li .ck.yes {
  color: #2e7d32;
}
.check-list li .ck.no {
  color: #b71c1c;
}

/* Steps timeline */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1rem 0;
}
.st-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
  padding-bottom: 1.5rem;
}
.st-item:last-child {
  padding-bottom: 0;
}
.st-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.st-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.st-body {
  padding-top: 5px;
}
.st-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3px;
}
.st-text {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.65;
}

/* Highlight box */
.highlight-box {
  background: var(--bgf);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--r);
  padding: 1.1rem 1.25rem;
  margin: 1rem 0;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.8;
}
.highlight-box strong {
  color: var(--black);
  font-weight: 600;
}
.highlight-box.green-left {
  border-left-color: #2e7d32;
}
.highlight-box.info-left {
  border-left-color: #1565c0;
}

/* Two-col grid for comparisons */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
}
.compare-col {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.compare-col-head {
  padding: 0.7rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.compare-col-head.eligible {
  background: #e8f5e9;
  color: #2e7d32;
}
.compare-col-head.ineligible {
  background: #ffebee;
  color: #b71c1c;
}
.compare-col ul {
  list-style: none;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.compare-col ul li {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.compare-col ul li span {
  flex-shrink: 0;
  font-size: 0.72rem;
  margin-top: 1px;
}

/* Contact card */
.contact-card {
  background: var(--black);
  border-radius: var(--r);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
}
.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.18s;
}
.contact-method:hover {
  color: #fff;
}
.cm-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Table */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  margin: 1rem 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.policy-table th {
  background: var(--bgf);
  padding: 10px 14px;
  text-align: left;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  border-bottom: 1px solid var(--line);
}
.policy-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--black);
  font-weight: 300;
  vertical-align: top;
  line-height: 1.55;
}
.policy-table tr:last-child td {
  border-bottom: none;
}
.policy-table td:first-child {
  font-weight: 500;
  color: var(--black);
}
.td-yes {
  color: #2e7d32 !important;
  font-weight: 600 !important;
}
.td-no {
  color: #b71c1c !important;
  font-weight: 600 !important;
}

/* Mobile */
@media (max-width: 900px) {
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .policy-sidebar {
    position: static;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 1.25rem;
    margin-bottom: 2.5rem;
  }
  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }
  .sidebar-nav a {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
  }
  .sidebar-nav a.active {
    border-bottom-color: var(--red);
    border-left: none;
  }
  .sidebar-cta {
    display: none;
  }
  .summary-grid {
    grid-template-columns: 1fr 1fr;
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
@media (max-width: 580px) {
  .policy-layout {
    padding: 2rem 1.2rem 4rem;
  }
  .policy-hero {
    padding: 2.5rem 1.2rem 2.5rem;
  }
  .summary-grid {
    grid-template-columns: 1fr;
  }
  .policy-table {
    font-size: 0.72rem;
  }
  .policy-table th,
  .policy-table td {
    padding: 8px 10px;
  }
}

/* ══════════════════════════════════════════════════════
   NAV DROPDOWN — multilevel
   ══════════════════════════════════════════════════════ */

/* Parent <li> that has children */
.nav-links li.has-dropdown {
  position: relative;
}

/* The caret chevron */
.nav-caret {
  display: inline-block;
  font-size: 0.55rem;
  margin-left: 3px;
  vertical-align: middle;
  transition: transform 0.2s;
  line-height: 1;
}
.nav-links li.has-dropdown:hover .nav-caret,
.nav-links li.has-dropdown.open .nav-caret {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  display: none;
  list-style: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  padding: 6px 0;
  z-index: 500;
  /* Pointer bridge so hovering the gap doesn't close it */
  margin-top: 0;
}
/* Invisible bridge between nav link and dropdown */
.nav-links li.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

/* Show on hover (desktop) */
.nav-links li.has-dropdown:hover > .nav-dropdown {
  display: block;
}

/* Keep open when .open class set (for JS toggle on mobile) */
.nav-links li.has-dropdown.open > .nav-dropdown {
  display: block;
}

/* Dropdown items */
.nav-dropdown li a {
  display: block;
  padding: 8px 18px;
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--grey);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown li a:hover {
  background: var(--bgf);
  color: var(--black);
}

/* Mobile: dropdown becomes an indented block inside the flyout */
@media (max-width: 900px) {
  .nav-links li.has-dropdown {
    position: static;
  }
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--line);
    border-radius: 0;
    padding: 0 0 0 12px;
    margin-top: 4px;
    margin-bottom: 4px;
    min-width: 0;
    /* hidden by default on mobile; JS toggles .open */
    display: none;
  }
  .nav-links li.has-dropdown.open > .nav-dropdown {
    display: block;
  }
  /* On mobile, hover shouldn't trigger dropdown — only tap */
  .nav-links li.has-dropdown:hover > .nav-dropdown {
    display: none;
  }
  .nav-links li.has-dropdown.open > .nav-dropdown {
    display: block;
  }
  .nav-dropdown li a {
    padding: 6px 8px;
    font-size: 0.78rem;
  }
  /* Make the parent link + caret row tappable */
  .nav-links li.has-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
