/*
  Fit with Puneet — Cookbook Website
  Premium, feminine, conversion-focused.
  This stylesheet matches the classnames in:
  - /index.html
  - /fitwpuneet/index.html (link-in-bio)
  - /privacy.html /terms.html /refund.html (legal pages)
*/

:root{
  --bg: #f6efe6;          /* beige */
  --bg-2: #fbf7f2;
  --ink: #1c1418;
  --muted: #6b5c63;
  --soft: #8b7a82;
  --pink: #e6a0bf;
  --pink-2: #d47aa6;
  --pink-3: #b95e86;
  --leaf: #8aa27a;
  --panel: rgba(255,255,255,0.76);
  --panel-strong: rgba(255,255,255,0.90);
  --stroke: rgba(25,12,18,0.10);
  --stroke-2: rgba(25,12,18,0.06);
  --shadow: 0 18px 46px rgba(25, 12, 18, 0.12);
  --shadow-soft: 0 10px 22px rgba(25, 12, 18, 0.10);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1120px;
  --topbar-h: 0px;  /* set by JS */
  --nav-h: 0px;     /* set by JS */
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 18% 8%, rgba(230,160,191,0.25), transparent 60%),
    radial-gradient(900px 500px at 86% 0%, rgba(212,122,166,0.20), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 65%, var(--bg));
}

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

::selection{ background: rgba(230,160,191,0.35); }

.container{
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

@media (max-width: 520px){
  .container{ width: calc(100% - 28px); }
}

/* Accessible skip link */
.skip{
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--panel-strong);
  border: 1px solid var(--stroke);
  z-index: 999;
}
.skip:focus{ left: 12px; }

/* Focus ring */
:focus-visible{
  outline: 3px solid rgba(212,122,166,0.50);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(246,239,230,0.74);
  border-bottom: 1px solid var(--stroke-2);
}

.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.topbar__text{
  color: rgba(28,20,24,0.76);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  flex: 1;
}

.topbar__link{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.55);
  white-space: nowrap;
}

/* General pill (used in multiple places) */
.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.60);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 720px){
  .topbar__inner{ flex-wrap: wrap; }
  .topbar__text{ flex: 0 0 100%; order: 3; text-align: left; }
}

/* Nav */
header.nav{
  position: sticky;
  top: var(--topbar-h);
  z-index: 55;
  background: rgba(246,239,230,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke-2);
}

.nav__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}

.brand__text{ line-height: 1.0; }

.brand__script{
  font-family: "Great Vibes", cursive;
  font-size: 22px;
  color: rgba(185,94,134,0.90);
  transform: translateY(2px);
}

.brand__name{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 18px;
}

.nav__links{
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-wrap: wrap;
}

.nav__links a{
  font-size: 13px;
  color: rgba(28,20,24,0.78);
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}

.nav__links a:hover{
  background: rgba(255,255,255,0.60);
  box-shadow: 0 10px 22px rgba(25,12,18,0.08);
  transform: translateY(-1px);
}

.nav__links a.is-active{
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(185,94,134,0.18);
}

.nav__actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 220px;
}

/* Mobile menu button */
.iconbtn{
  appearance: none;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.55);
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
  display: none; /* enabled on small screens */
}

.iconbtn span{
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(28,20,24,0.80);
  margin: 4px 0;
  border-radius: 2px;
  transition: transform .18s ease, opacity .18s ease;
}

.iconbtn.is-open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.iconbtn.is-open span:nth-child(2){ opacity: 0; }
.iconbtn.is-open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* Buttons */
.btn{
  appearance: none;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.68);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btn--ghost{
  background: rgba(255,255,255,0.38);
  box-shadow: none;
}

.btn--soft{
  background: rgba(255,255,255,0.58);
  box-shadow: none;
}

.btn--small{
  padding: 10px 12px;
  font-size: 12px;
  box-shadow: none;
}

/* Mobile menu */
.mobile{
  border-top: 1px solid var(--stroke-2);
  background: rgba(246,239,230,0.86);
}

.mobile__inner{
  padding: 14px 0 18px;
  display: grid;
  gap: 10px;
}

.mobile a{
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--stroke-2);
}

.mobile__cta{
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

/* Make anchors not hide under sticky header */
section[id]{
  scroll-margin-top: calc(var(--topbar-h) + var(--nav-h) + 16px);
}

/* Hero */
.hero{
  position: relative;
  padding: 56px 0 26px;
  overflow: hidden;
}

.hero__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 28px;
  align-items: start;
}

.kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.58);
  border: 1px solid var(--stroke-2);
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(28,20,24,0.80);
  font-size: 12px;
}

.hero h1{
  margin: 18px 0 12px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.3px;
}

.accent{
  display: inline;
  color: rgba(185,94,134,0.95);
}

.lead{
  margin: 0 0 18px;
  color: rgba(28,20,24,0.76);
  font-size: 15px;
  line-height: 1.65;
  max-width: 62ch;
}

.hero__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.trust{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust__item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--stroke-2);
  box-shadow: 0 10px 20px rgba(25,12,18,0.06);
}

.trust__icon{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(230,160,191,0.92), rgba(212,122,166,0.92));
  display: grid;
  place-items: center;
  color: rgba(28,20,24,0.92);
  font-weight: 800;
  flex: 0 0 auto;
}

.trust__title{
  font-weight: 700;
  font-size: 13px;
}

.trust__text{
  font-size: 12px;
  color: rgba(28,20,24,0.72);
  margin-top: 2px;
  line-height: 1.4;
}

.socialstrip{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.55);
  font-size: 12px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.chip:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(25,12,18,0.08);
}

.preview{
  position: relative;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview__badge{
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--stroke);
  font-size: 12px;
}

.preview img{ width: 100%; height: auto; display: block; }

.hero__bg{
  position: absolute;
  inset: -120px -120px auto -120px;
  height: 380px;
  background:
    radial-gradient(320px 220px at 15% 30%, rgba(230,160,191,0.45), transparent 70%),
    radial-gradient(320px 220px at 75% 20%, rgba(212,122,166,0.35), transparent 70%),
    radial-gradient(260px 180px at 70% 70%, rgba(138,162,122,0.18), transparent 70%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}

.hero__left, .hero__right{ position: relative; z-index: 1; }

/* Sections */
.section{ padding: 48px 0; }

.section__head{
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.section__head h2{
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.2vw, 32px);
  margin: 0;
}

.section__head p{
  margin: 0;
  color: rgba(28,20,24,0.74);
  font-size: 14px;
  line-height: 1.7;
}

.grid2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card{
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card h3{
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.card p{
  margin: 0 0 10px;
  color: rgba(28,20,24,0.78);
  line-height: 1.75;
  font-size: 14px;
}

.card .soft{ color: rgba(28,20,24,0.70); }

.card--pink{
  background: linear-gradient(180deg, rgba(230,160,191,0.18), rgba(255,255,255,0.72));
}

.list{
  margin: 0;
  padding-left: 18px;
  color: rgba(28,20,24,0.78);
  line-height: 1.8;
  font-size: 14px;
}

.mini{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini__pill{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.66);
  border: 1px solid var(--stroke-2);
}

/* Inside */
.inside{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: start;
}

.feature{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--stroke-2);
  margin-bottom: 12px;
}

.feature__icon{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(230,160,191,0.28);
  border: 1px solid rgba(185,94,134,0.16);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.feature__title{ font-weight: 800; font-size: 13px; line-height: 1.35; }
.feature__text{ font-size: 12px; color: rgba(28,20,24,0.70); margin-top: 4px; line-height: 1.45; }

.callout{
  margin-top: 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(185,94,134,0.18);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 14px 28px rgba(185,94,134,0.10);
  padding: 16px;
}

.callout__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.callout__title{ font-weight: 800; }
.callout__text{ font-size: 13px; color: rgba(28,20,24,0.72); margin-top: 2px; }

.fine{ font-size: 12px; color: rgba(28,20,24,0.70); line-height: 1.6; }
.fine a{ text-decoration: underline; text-underline-offset: 3px; }
.center{ text-align: center; }

/* Slider */
.slider{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.74);
  box-shadow: var(--shadow-soft);
}

.slider__frame{
  position: relative;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.7);
}

.slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .28s ease, transform .28s ease;
}

.slide.is-active{
  opacity: 1;
  transform: scale(1);
}

.slider__controls{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
}

.slider__caption {
  display: block;
  margin-top: 14px; /* adjust: 18px if you want lower */
}

.sbtn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.70);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: 0 10px 22px rgba(25,12,18,0.10);
}

.dots{
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(185,94,134,0.35);
  background: rgba(255,255,255,0.55);
  cursor: pointer;
}

.dot.is-active{
  background: rgba(212,122,166,0.95);
  box-shadow: 0 0 0 6px rgba(212,122,166,0.14);
}

/* Recipe highlights */
.pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pills .pill{
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--stroke-2);
  box-shadow: 0 10px 20px rgba(25,12,18,0.06);
}

.gallery{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gcard{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.70);
  box-shadow: var(--shadow-soft);

  aspect-ratio: 4 / 5; /* consistent card height */
}

.gcard > img{
  width: 100%;
  height: 100% !important; /* forces fill even if other img rules exist */
  object-fit: cover;        /* removes the white bar */
  display: block;
}




/*
.gcard{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.70);
  box-shadow: var(--shadow-soft);
}
  */


.note{
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke-2);
  background: rgba(255,255,255,0.64);
}

.note__icon{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(230,160,191,0.25);
  display: grid;
  place-items: center;
}

.note__title{ font-weight: 800; }
.note__text{ font-size: 13px; color: rgba(28,20,24,0.70); margin-top: 2px; line-height: 1.5; }

/* Buy */
.buy{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: start;
}

.price{
  margin: 18px 0;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.price__amount{
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.4px;
}

.price__amount span{ font-size: 14px; color: rgba(28,20,24,0.70); font-family: "Poppins", sans-serif; margin-left: 6px; }

.price__meta{
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: rgba(28,20,24,0.72);
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--stroke-2);
  background: rgba(255,255,255,0.65);
}

.buy__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.quick{
  display: grid;
  gap: 10px;
}

.quick__row{
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.quick__k{ font-weight: 800; font-size: 12px; color: rgba(28,20,24,0.72); }
.quick__v{ font-size: 12px; color: rgba(28,20,24,0.78); line-height: 1.5; }

.divider{
  height: 1px;
  background: var(--stroke-2);
  margin: 14px 0;
}

/* Testimonials */
.testimonials{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tcard{
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.tquote{ color: rgba(28,20,24,0.82); line-height: 1.7; font-size: 13px; }
.tmeta{ margin-top: 10px; font-size: 12px; color: var(--muted); }

/* FAQ */
.faq{
  border-radius: var(--radius);
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--stroke);
  overflow: hidden;
}

.qa{ border-top: 1px solid var(--stroke-2); }
.qa:first-child{ border-top: none; }

.qa__q{
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  color: rgba(28,20,24,0.92);
}

.qa__q::after{
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--stroke);
  flex: 0 0 auto;
}

.qa.is-open .qa__q::after{ content: "–"; }

.qa__a{
  padding: 0 16px 16px;
  color: rgba(28,20,24,0.74);
  font-size: 13px;
  line-height: 1.7;
}

.policylinks{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.policylinks a{
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.60);
}

/* Contact */
.contact{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: start;
}

.contact__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.contact__card{
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
  padding: 18px;
}

.stamp{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(185,94,134,0.18);
  background: rgba(230,160,191,0.18);
  font-weight: 800;
  font-size: 12px;
  color: rgba(185,94,134,0.95);
}

/* Footer */
.footer{
  padding: 26px 0 44px;
  border-top: 1px solid var(--stroke-2);
}

.footer__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__left{
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__brand{
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.footer__fine{
  font-size: 12px;
  color: rgba(28,20,24,0.68);
}

.footer__links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer__links a{
  font-size: 12px;
  color: rgba(28,20,24,0.74);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.footer__links a:hover{
  background: rgba(255,255,255,0.58);
  border-color: var(--stroke-2);
}

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(10px);
  background: rgba(28,20,24,0.92);
  color: rgba(255,255,255,0.94);
  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  max-width: min(520px, calc(100% - 32px));
  text-align: center;
}

.toast.is-show{ opacity: 1; transform: translateX(-50%) translateY(0px); }

/* Scroll reveal */
[data-reveal]{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}

[data-reveal].is-revealed{
  opacity: 1;
  transform: translateY(0);
}

/* Link-in-bio page */
body.bio{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 0;
}

.bioWrap{ width: min(520px, calc(100% - 32px)); }

.bioCard{
  border-radius: 28px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
  padding: 22px;
  text-align: center;
}

.bioLogo{
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 22px rgba(0,0,0,0.10);
}

.bioTitle{
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 24px;
}

.bioSubtitle{ color: rgba(28,20,24,0.72); font-size: 13px; line-height: 1.6; margin-top: 8px; }

.bioButtons{ margin-top: 16px; display: grid; gap: 10px; }

.bioBtn{
  display: block;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.70);
  font-weight: 700;
}

.bioBtn.primary{
  background: linear-gradient(135deg, rgba(230,160,191,0.95), rgba(212,122,166,0.95));
  border: 1px solid rgba(185,94,134,0.18);
}

.bioSmall{ margin-top: 14px; font-size: 12px; color: rgba(28,20,24,0.70); }
.bioSmall a{ text-decoration: underline; text-underline-offset: 3px; }

.bioFooter{ margin-top: 14px; font-size: 12px; color: rgba(28,20,24,0.70); display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.bioFooter a{ text-decoration: underline; text-underline-offset: 3px; }

/* Legal pages */
.nav--simple{ background: rgba(246,239,230,0.80); position: sticky; top: 0; z-index: 50; }

.legal{
  padding: 30px 0 48px;
}

.legal h1{
  font-family: "Playfair Display", serif;
  margin: 18px 0 10px;
  font-size: 34px;
}

.legal h2{
  font-family: "Playfair Display", serif;
  margin: 22px 0 10px;
  font-size: 20px;
}

.legal p, .legal li{
  color: rgba(28,20,24,0.78);
  line-height: 1.75;
  font-size: 14px;
}

.legal__footer{ margin-top: 22px; }

.footer--simple{ padding: 18px 0 30px; }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .inside{ grid-template-columns: 1fr; }
  .buy{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .testimonials{ grid-template-columns: 1fr; }
  .trust{ grid-template-columns: 1fr; }
  .nav__links{ display: none; }
  .iconbtn{ display: inline-flex; }
  .brand{ min-width: auto; }
  .nav__actions{ min-width: auto; }
  .footer__inner{ flex-direction: column; align-items: flex-start; }
  .footer__links{ justify-content: flex-start; }
}

@media (max-width: 520px){
  .btn{ width: 100%; }
  .topbar__link{ width: 100%; text-align: center; }
  .brand__script{ font-size: 20px; }
  .brand__name{ font-size: 16px; }
  .quick__row{ grid-template-columns: 90px minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ transition: none !important; animation: none !important; }
}

/* Swipe carousel (replaces the old "one-image" slider behavior) */
.slider--carousel { position: relative; }

.slider__track{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 14px 54px 14px; /* space for arrows so images never sit under them */
  border-radius: 20px;
}

.slider__track::-webkit-scrollbar { height: 8px; }
.slider__track::-webkit-scrollbar-thumb { border-radius: 999px; }

.preview__img{
  flex: 0 0 88%;
  max-width: 440px;
  width: 88%;
  height: auto;
  scroll-snap-align: center;
  border-radius: 18px;
  display: block;
}

@media (min-width: 900px){
  .preview__img{ flex-basis: 420px; width: 420px; }
}

/* Floating arrows */
.slider__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.slider__nav--prev{ left: 10px; }
.slider__nav--next{ right: 10px; }

/* No-text hint (just arrows + dots) */
.slider__hint{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  opacity: 0.65;
}

.hintDots{ display:flex; gap:6px; }
.hdot{
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
}

