/* =========================================================
   DEHATI GHEE — MAIN WEBSITE CSS
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {
  --gold: #D99A16;
  --gold2: #F4C95D;

  --deep: #1D2B20;
  --deep2: #263A2A;

  --cream: #FBF7ED;
  --paper: #FFFFFF;

  --ink: #172019;
  --muted: #68726A;

  --line: #E7E0D2;

  --green: #69B51D;
  --orange: #F36B16;

  --shadow:
    0 18px 50px rgba(29, 43, 32, .10);

  --radius: 24px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;

  color: var(--ink);
  background: var(--cream);

  line-height: 1.7;

  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  line-height: 1.15;
  color: var(--deep);
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.topbar {
  background: var(--deep);
  color: #fff;
  font-size: 13px;
}

.topbar .inner {
  min-height: 38px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  opacity: .95;
}

.topbar a:hover {
  opacity: 1;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {
  position: sticky;
  top: 0;

  z-index: 1000;

  background: rgba(255, 255, 255, .96);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom:
    1px solid rgba(231, 224, 210, .8);
}

.nav .inner {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 22px;
}


/* =========================================================
   BRAND / LOGO
   ========================================================= */

.brand {
  display: flex;
  align-items: center;

  flex-shrink: 0;

  text-decoration: none;
}

.brand-logo {
  width: 145px;
  height: 70px;

  display: block;

  object-fit: contain;
  object-position: center;

  background: transparent;
}


/* Old brand styles retained safely */
.brand-mark {
  width: 44px;
  height: 44px;

  border-radius: 50%;

  display: grid;
  place-items: center;

  background:
    linear-gradient(
      145deg,
      var(--gold2),
      var(--gold)
    );

  font-size: 23px;

  box-shadow:
    0 8px 20px rgba(217, 154, 22, .25);
}

.brand strong {
  font-family: Georgia, serif;
  font-size: 23px;
  color: var(--deep);
}

.brand small {
  display: block;

  font-size: 10px;
  letter-spacing: 2px;

  color: var(--muted);

  font-family: Inter, sans-serif;
}


/* =========================================================
   NAV LINKS
   ========================================================= */

.navlinks {
  display: flex;
  align-items: center;

  gap: 4px;
}

.navlinks a {
  padding: 10px 12px;

  text-decoration: none;

  font-weight: 600;
  font-size: 14px;

  border-radius: 12px;

  transition:
    background .25s ease,
    color .25s ease;
}

.navlinks a:hover,
.navlinks a.active {
  background: #F7EAC9;
  color: #8B5E0B;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.menu {
  display: none;

  border: 0;
  background: transparent;

  font-size: 28px;
  color: var(--deep);

  cursor: pointer;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  border: 0;
  border-radius: 999px;

  padding: 13px 22px;

  font-weight: 800;

  text-decoration: none;

  cursor: pointer;

  transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.btn-primary {
  background: var(--gold);
  color: #17120A;

  box-shadow:
    0 10px 25px rgba(217, 154, 22, .25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gold2);
}

.btn-dark {
  background: var(--deep);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--deep);

  border:
    1px solid var(--line);
}


/* =========================================================
   EYEBROW
   ========================================================= */

.eyebrow {
  display: inline-flex;

  align-items: center;
  gap: 8px;

  text-transform: uppercase;

  letter-spacing: 2px;

  font-weight: 800;
  font-size: 12px;

  color: #8B5E0B;

  margin-bottom: 13px;
}

.eyebrow::before {
  content: "";

  width: 28px;
  height: 2px;

  background: var(--gold);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  padding: 72px 0 55px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 30%,
      #F5E5B4 0,
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #FBF7ED,
      #F3E8CB
    );
}

.hero-grid {
  display: grid;

  grid-template-columns:
    1.03fr .97fr;

  align-items: center;

  gap: 55px;
}

.hero h1 {
  font-size:
    clamp(42px, 5vw, 68px);

  margin:
    0 0 18px;
}

.hero h1 span {
  color: #A86E09;
}

.hero p {
  font-size: 18px;

  color: var(--muted);

  max-width: 650px;
}

.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin: 25px 0;
}

.trust-row {
  display: flex;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 24px;

  color: var(--deep);

  font-size: 13px;

  font-weight: 700;
}

.trust-row span {
  display: flex;
  align-items: center;

  gap: 7px;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.hero-media {
  position: relative;
  width: 100%;
}

.hero-media img {
  width: 100%;
  height: 540px;

  object-fit: cover;
  object-position: center;

  border-radius: 34px;

  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;

  left: -18px;
  bottom: 25px;

  background: #fff;

  border:
    1px solid var(--line);

  padding: 15px 18px;

  border-radius: 18px;

  box-shadow: var(--shadow);

  font-weight: 800;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  padding: 82px 0;
}

.section.alt {
  background: #F3E9D3;
}

.section.dark {
  background: var(--deep);
  color: #fff;
}

.section.dark h2,
.section.dark h3 {
  color: #fff;
}

.section-head {
  max-width: 720px;

  margin:
    0 auto 42px;

  text-align: center;
}

.section-head h2 {
  font-size:
    clamp(31px, 4vw, 48px);

  margin:
    0 0 12px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.dark .section-head p {
  color: #CFD7D0;
}


/* =========================================================
   GENERAL CARDS
   ========================================================= */

.cards {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.card {
  background: #fff;

  border:
    1px solid var(--line);

  border-radius: var(--radius);

  padding: 28px;

  box-shadow:
    0 8px 28px rgba(29, 43, 32, .06);
}

.card h3 {
  font-size: 23px;

  margin:
    14px 0 8px;
}

.card p {
  color: var(--muted);

  margin: 0;
}

.icon {
  width: 52px;
  height: 52px;

  border-radius: 16px;

  background: #F8EAC6;

  display: grid;
  place-items: center;

  font-size: 25px;
}


/* =========================================================
   IMAGE CARD
   ========================================================= */

.image-card {
  padding: 0;

  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 230px;

  object-fit: cover;
}

.image-card .pad {
  padding: 25px;
}


/* =========================================================
   SPLIT SECTION
   ========================================================= */

.split {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 55px;

  align-items: center;
}

.split img {
  width: 100%;
  height: 500px;

  object-fit: cover;
  object-position: center;

  border-radius: 30px;

  box-shadow: var(--shadow);
}

.split h2 {
  font-size:
    clamp(32px, 4vw, 48px);

  margin:
    0 0 15px;
}


/* =========================================================
   CHECK LIST
   ========================================================= */

.checks {
  list-style: none;

  padding: 0;
  margin: 24px 0;
}

.checks li {
  margin: 12px 0;

  padding-left: 28px;

  position: relative;
}

.checks li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: 0;

  color: #A86E09;

  font-weight: 900;
}


/* =========================================================
   STATS
   ========================================================= */

.stats {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 14px;
}

.stat {
  background: #fff;

  border:
    1px solid var(--line);

  padding: 24px;

  border-radius: 20px;

  text-align: center;
}

.stat strong {
  font:
    700 32px Georgia, serif;

  color: var(--deep);

  display: block;
}

.stat span {
  color: var(--muted);

  font-size: 13px;
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.product-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;
}

.product-card {
  background: #fff;

  border:
    1px solid var(--line);

  border-radius: 24px;

  padding: 16px;

  box-shadow:
    0 8px 28px rgba(29, 43, 32, .07);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 280px;

  object-fit: contain;

  background: #FBF7ED;

  border-radius: 18px;
}

.product-card h3 {
  font-size: 22px;

  margin:
    18px 5px 5px;
}

.product-card p {
  color: var(--muted);

  font-size: 14px;

  margin:
    0 5px;
}

.price {
  font-size: 24px;

  font-weight: 900;

  color: #8B5E0B;

  margin:
    10px 5px;
}

.product-card .btn {
  width: 100%;
}


/* =========================================================
   PROCESS GRID
   ========================================================= */

.process-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 16px;
}

.step {
  background: #fff;

  border-radius: 22px;

  overflow: hidden;

  border:
    1px solid var(--line);
}

.step img {
  width: 100%;
  height: 190px;

  object-fit: cover;
}

.step .pad {
  padding: 22px;
}

.step-num {
  display: inline-grid;

  place-items: center;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: var(--gold);

  font-weight: 900;

  margin-bottom: 12px;
}


/* =========================================================
   =========================================================
   HEALTHY USES SECTION
   =========================================================
   ========================================================= */

.healthy-uses-section {
  width: 100%;

  padding:
    90px 20px;

  background: #fff;

  overflow: hidden;
}

.healthy-uses-section .container {
  width: 100%;

  max-width: 1200px;

  margin: 0 auto;

  padding-left: 0;
  padding-right: 0;
}


/* =========================================================
   HEALTHY USES HEADING
   ========================================================= */

.section-heading {
  text-align: center;

  margin-bottom: 55px;
}

.section-label {
  display: block;

  margin-bottom: 12px;

  font-size: 18px;

  font-weight: 800;

  letter-spacing: 1px;

  color: var(--green);
}

.section-heading h2 {
  margin: 0;

  color: #3B1D0E;

  font-size:
    clamp(36px, 5vw, 58px);

  line-height: 1.1;

  font-weight: 800;
}

.heading-line {
  width: 130px;
  height: 4px;

  margin:
    24px auto 25px;

  border-radius: 50px;

  background: var(--orange);
}

.section-heading p {
  max-width: 700px;

  margin: 0 auto;

  color: #555;

  font-size: 20px;

  line-height: 1.6;
}


/* =========================================================
   HEALTH GRID
   ========================================================= */

.health-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 30px;

  align-items: stretch;

  width: 100%;
}


/* =========================================================
   HEALTH CARD
   ========================================================= */

.health-card {
  position: relative;

  min-width: 0;

  overflow: hidden;

  background: #fff;

  border-radius: 22px;

  box-shadow:
    0 12px 35px rgba(0, 0, 0, .10);

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.health-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, .15);
}


/* =========================================================
   HEALTH IMAGE
   IMPORTANT:
   contain = full image visible, no crop
   ========================================================= */

.health-image {
  position: relative;

  width: 100%;

  /*
    Fixed ratio keeps all 3 cards exactly equal.
  */
  aspect-ratio: 3 / 2;

  height: auto;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #F5EBDD,
      #EADBC4
    );
}


/*
  IMPORTANT:
  Do NOT use object-fit: cover here.
  contain keeps the complete generated photo visible.
*/

.health-image img {
  width: 100%;
  height: 100%;

  max-width: none;

  display: block;

  object-fit: contain;

  object-position: center center;

  background: #F5EBDD;

  transition:
    transform .35s ease;
}


/*
  Very small zoom only.
  This prevents important food/product areas
  from getting cut.
*/

.health-card:hover .health-image img {
  transform: scale(1.015);
}


/* =========================================================
   HEALTH CONTENT
   ========================================================= */

.health-content {
  position: relative;

  min-height: 230px;

  padding:
    70px 30px 30px;

  text-align: center;

  background: #fff;
}

.health-content h3 {
  margin:
    8px 0 14px;

  color: #3B1D0E;

  font-size: 28px;

  line-height: 1.25;

  font-weight: 800;
}

.health-content p {
  max-width: 340px;

  margin: 0 auto;

  color: #555;

  font-size: 17px;

  line-height: 1.7;
}


/* =========================================================
   HEALTH ROUND ICON
   ========================================================= */

.health-icon {
  position: absolute;

  top: -42px;

  left: 50%;

  transform:
    translateX(-50%);

  width: 84px;
  height: 84px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: var(--green);

  border:
    6px solid #fff;

  border-radius: 50%;

  font-size: 34px;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, .14);

  z-index: 2;
}


/* =========================================================
   NOTICE / DISCLAIMER
   ========================================================= */

.notice {
  padding:
    18px 20px;

  border-left:
    4px solid var(--gold);

  background: #FFF8E8;

  border-radius: 12px;

  color: #5E4A1D;
}

.disclaimer {
  font-size: 13px;

  color: #74766F;

  background: #F1EEE5;

  border:
    1px solid var(--line);

  padding: 18px;

  border-radius: 14px;
}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {
  padding: 70px 0;

  background:
    linear-gradient(
      135deg,
      #F5E7BF,
      #FBF7ED
    );

  text-align: center;
}

.page-hero h1 {
  font-size:
    clamp(38px, 5vw, 58px);

  margin:
    0 0 12px;
}

.page-hero p {
  max-width: 720px;

  margin: auto;

  color: var(--muted);

  font-size: 17px;
}


/* =========================================================
   ARTICLE
   ========================================================= */

.article {
  max-width: 850px;

  margin: auto;

  background: #fff;

  border:
    1px solid var(--line);

  border-radius: 28px;

  padding: 42px;

  box-shadow:
    0 10px 35px rgba(29, 43, 32, .06);
}

.article h2 {
  font-size: 30px;

  margin-top: 35px;
}

.article h3 {
  font-size: 22px;

  margin-top: 26px;
}

.article p,
.article li {
  color: #465149;
}

.article img {
  width: 100%;
  height: 400px;

  object-fit: cover;

  border-radius: 22px;

  margin:
    20px 0 28px;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq {
  max-width: 900px;

  margin: auto;
}

details {
  background: #fff;

  border:
    1px solid var(--line);

  border-radius: 16px;

  margin: 12px 0;

  padding:
    18px 20px;
}

summary {
  cursor: pointer;

  font-weight: 800;

  color: var(--deep);
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 22px;
}

.contact-card {
  background: #fff;

  border:
    1px solid var(--line);

  border-radius: 24px;

  padding: 30px;

  box-shadow:
    0 8px 30px rgba(29, 43, 32, .06);
}

.info {
  display: grid;

  gap: 12px;
}

.info a {
  text-decoration: none;

  color: #8B5E0B;

  font-weight: 700;
}

.form-grid {
  display: grid;

  gap: 14px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;

  border:
    1px solid var(--line);

  border-radius: 14px;

  padding: 14px;

  font: inherit;

  background: #fff;
}

.form-grid textarea {
  min-height: 150px;

  resize: vertical;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 300px;

  object-fit: cover;

  border-radius: 20px;

  transition:
    transform .25s ease;
}

.gallery img:hover {
  transform: scale(1.015);
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
  padding: 70px 0;

  background:
    linear-gradient(
      120deg,
      var(--deep),
      #304733
    );

  color: #fff;
}

.cta .inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;
}

.cta h2 {
  color: #fff;

  font-size:
    clamp(30px, 4vw, 45px);

  margin: 0;
}

.cta p {
  color: #D7DED8;

  margin:
    8px 0 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: #121A14;

  color: #DCE3DD;

  padding:
    60px 0 22px;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.4fr 1fr 1fr 1.1fr;

  gap: 35px;
}

.footer h3 {
  color: #F4C95D;

  font-size: 18px;

  margin:
    0 0 15px;
}

.footer p,
.footer li {
  font-size: 14px;

  color: #B9C3BB;
}

.footer ul {
  list-style: none;

  padding: 0;
  margin: 0;
}

.footer li {
  margin: 8px 0;
}

.footer a {
  text-decoration: none;

  color: #DCE3DD;
}

.footer a:hover {
  color: #F4C95D;
}

.footer-bottom {
  border-top:
    1px solid rgba(255, 255, 255, .1);

  margin-top: 35px;

  padding-top: 18px;

  display: flex;

  justify-content: space-between;

  gap: 15px;

  font-size: 12px;

  color: #8E9A91;
}


/* =========================================================
   FOOTER WHATSAPP BUTTON
   ========================================================= */

.footer-wa-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;
}

.footer-wa-btn svg {
  width: 19px;
  height: 19px;

  flex-shrink: 0;
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.float-wa {
  position: fixed;

  right: 20px;
  bottom: 20px;

  z-index: 1100;

  width: 58px;
  height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #25D366;

  color: #fff;

  border-radius: 50%;

  text-decoration: none;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, .20);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.float-wa:hover {
  transform:
    translateY(-4px)
    scale(1.04);

  box-shadow:
    0 16px 32px rgba(0, 0, 0, .25);
}

.float-wa svg {
  width: 31px;
  height: 31px;

  display: block;

  flex-shrink: 0;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.breadcrumb {
  font-size: 13px;

  color: var(--muted);

  margin-bottom: 20px;
}


/* =========================================================
   BADGE
   ========================================================= */

.badge {
  display: inline-block;

  padding:
    7px 11px;

  background: #F8EAC6;

  border-radius: 999px;

  font-size: 12px;

  font-weight: 800;

  color: #8B5E0B;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .navlinks {
    display: none;

    position: absolute;

    left: 0;
    right: 0;

    top: 76px;

    background: #fff;

    border-bottom:
      1px solid var(--line);

    padding:
      12px 22px;

    flex-direction: column;

    align-items: stretch;
  }

  .navlinks.open {
    display: flex;
  }

  .navlinks a {
    padding: 13px;
  }

  .menu {
    display: block;
  }


  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    height: 420px;
  }


  .cards {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .health-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 24px;
  }

  .health-card:last-child {
    grid-column:
      1 / -1;

    max-width: 560px;

    width: 100%;

    margin: 0 auto;
  }


  .product-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .process-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .stats {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .footer-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .brand-logo {
    width: 135px;
    height: 66px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }


  .topbar .inner {
    justify-content: center;

    text-align: center;
  }

  .topbar .hide-m {
    display: none;
  }


  /* Logo */

  .nav .inner {
    min-height: 70px;
  }

  .brand-logo {
    width: 120px;
    height: 60px;
  }


  /* Hero */

  .hero {
    padding-top: 42px;
  }

  .hero-media img {
    height: 330px;

    border-radius: 24px;
  }

  .hero-badge {
    left: 12px;
  }


  /* General sections */

  .section {
    padding: 58px 0;
  }


  /* General cards */

  .cards {
    grid-template-columns: 1fr;
  }


  /* Healthy Uses */

  .healthy-uses-section {
    padding:
      60px 16px;
  }

  .healthy-uses-section .container {
    padding-left: 0;
    padding-right: 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-label {
    font-size: 15px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .heading-line {
    width: 100px;

    height: 3px;

    margin:
      18px auto 20px;
  }

  .section-heading p {
    font-size: 16px;

    line-height: 1.5;
  }


  .health-grid {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .health-card:last-child {
    grid-column: auto;

    max-width: none;
  }


  /*
    Mobile image ratio.
    Full image stays visible.
  */

  .health-image {
    aspect-ratio: 3 / 2;

    height: auto;

    min-height: 0;
  }

  .health-image img {
    object-fit: contain;

    object-position: center;
  }


  .health-content {
    min-height: auto;

    padding:
      65px 22px 30px;
  }

  .health-content h3 {
    font-size: 25px;
  }

  .health-content p {
    font-size: 16px;
  }


  /* Products */

  .product-grid,
  .process-grid,
  .gallery,
  .stats {
    grid-template-columns: 1fr;
  }


  /* Footer */

  .footer-grid {
    grid-template-columns: 1fr;
  }


  /* CTA */

  .cta .inner {
    flex-direction: column;

    align-items: flex-start;
  }


  /* Split */

  .split img {
    height: 340px;

    border-radius: 24px;
  }


  /* Article */

  .article {
    padding: 24px;
  }

  .article img {
    height: 260px;
  }


  /* Floating WhatsApp */

  .float-wa {
    width: 54px;
    height: 54px;

    right: 15px;
    bottom: 15px;
  }

  .float-wa svg {
    width: 29px;
    height: 29px;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .brand-logo {
    width: 108px;
    height: 54px;
  }


  .section-heading h2 {
    font-size: 30px;
  }


  .health-image {
    aspect-ratio: 3 / 2;
  }


  .health-content {
    padding-left: 18px;
    padding-right: 18px;
  }


  .health-content h3 {
    font-size: 23px;
  }


  .float-wa {
    width: 52px;
    height: 52px;

    right: 13px;
    bottom: 13px;
  }

  .float-wa svg {
    width: 28px;
    height: 28px;
  }
}


/* =========================================================
   EXTRA SAFETY
   ========================================================= */

.health-card img,
.product-card img,
.hero-media img,
.split img {
  max-width: 100%;
}

.health-card,
.product-card,
.hero-media,
.split {
  min-width: 0;
}


/* Prevent accidental horizontal overflow */

section,
nav,
footer,
header {
  max-width: 100%;
}
/* =========================================================
   DEHATI GHEE — HEALTH GUIDE PAGE
   COMPLETE RESPONSIVE CSS
   ========================================================= */


/* =========================================================
   HEALTH HERO
   ========================================================= */

.health-hero {
  position: relative;
  width: 100%;
  padding: 72px 0 78px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(105, 181, 29, 0.12),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #fffaf0 0%,
      #f5e9d0 100%
    );
}

.health-hero-grid {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.92fr 1.08fr;

  align-items: center;

  gap: 52px;

  padding-left: 22px;
  padding-right: 22px;
}


/* =========================================================
   HEALTH HERO CONTENT
   ========================================================= */

.health-hero-content {
  position: relative;
  z-index: 2;
}

.health-hero-content .eyebrow {
  margin-bottom: 15px;
}

.health-hero-content h1 {
  margin: 0 0 20px;

  color: #3b1d0e;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(42px, 5vw, 68px);

  font-weight: 800;

  line-height: 1.08;

  letter-spacing: -1.2px;
}

.health-hero-content h1 span {
  display: inline;

  color: #5d991b;
}

.health-hero-content > p {
  max-width: 600px;

  margin: 0;

  color: #626961;

  font-size: 18px;

  line-height: 1.75;
}


/* =========================================================
   HERO ACTIONS
   ========================================================= */

.health-hero-actions {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 28px;
}

.health-hero-actions .btn {
  white-space: nowrap;
}


/* =========================================================
   HERO POINTS
   ========================================================= */

.health-hero-points {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 25px;
}

.health-hero-points span {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  color: #42513f;

  font-size: 13px;

  font-weight: 700;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.health-hero-image {
  position: relative;

  width: 100%;

  min-width: 0;

  overflow: hidden;

  border-radius: 32px;

  background:
    linear-gradient(
      135deg,
      #f5e9d5,
      #e7d6b7
    );

  box-shadow:
    0 25px 60px rgba(49, 39, 19, 0.18);
}

.health-hero-image::after {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  border-radius: inherit;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.30);
}

.health-hero-image img {
  width: 100%;

  height: 520px;

  display: block;

  object-fit: cover;

  object-position: center center;

  transition:
    transform .5s ease;
}

.health-hero-image:hover img {
  transform: scale(1.012);
}


/* =========================================================
   HEALTH TOPICS SECTION
   ========================================================= */

.health-topics-section {
  width: 100%;

  padding:
    88px 0 95px;

  background: #ffffff;

  overflow: hidden;
}

.health-section-heading {
  max-width: 780px;

  margin:
    0 auto 52px;

  text-align: center;
}

.health-section-heading h2 {
  margin: 0 0 14px;

  color: #3b1d0e;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(34px, 4.5vw, 50px);

  line-height: 1.15;
}

.health-section-heading p {
  max-width: 720px;

  margin: 0 auto;

  color: #666d67;

  font-size: 17px;

  line-height: 1.7;
}


/* =========================================================
   HEALTH TOPIC GRID
   ========================================================= */

.health-topic-grid {
  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 28px;

  align-items: stretch;
}


/* =========================================================
   HEALTH TOPIC CARD
   ========================================================= */

.health-topic-card {
  position: relative;

  min-width: 0;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  background: #ffffff;

  border:
    1px solid #e8dfcf;

  border-radius: 24px;

  box-shadow:
    0 12px 35px rgba(38, 44, 30, .08);

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.health-topic-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 22px 50px rgba(38, 44, 30, .14);
}


/* =========================================================
   TOPIC IMAGE
   ========================================================= */

.health-topic-image {
  position: relative;

  width: 100%;

  aspect-ratio: 16 / 10;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #f6ecda,
      #e9dac0
    );
}

.health-topic-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center center;

  transition:
    transform .45s ease;
}

.health-topic-card:hover
.health-topic-image img {
  transform: scale(1.018);
}


/* =========================================================
   TOPIC ICON
   ========================================================= */

.health-topic-icon {
  position: absolute;

  left: 22px;

  bottom: -26px;

  width: 64px;
  height: 64px;

  display: flex;

  align-items: center;
  justify-content: center;

  border:
    5px solid #ffffff;

  border-radius: 50%;

  font-size: 27px;

  line-height: 1;

  box-shadow:
    0 8px 22px rgba(0, 0, 0, .16);

  z-index: 5;
}


/* =========================================================
   TOPIC ICON COLORS
   ========================================================= */

.heart-icon {
  background: #d83a35;
}

.weight-icon {
  background: #7fa91d;
}

.digestion-icon {
  background: #5b9e20;
}

.kids-icon {
  background: #e5a116;
}

.cooking-icon {
  background: #e87913;
}

.portion-icon {
  background: #d39a12;
}


/* =========================================================
   TOPIC CONTENT
   ========================================================= */

.health-topic-content {
  min-height: 255px;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  padding:
    50px 27px 27px;
}

.health-topic-content h3 {
  margin:
    0 0 11px;

  color: #3b1d0e;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 25px;

  line-height: 1.25;
}

.health-topic-content p {
  margin:
    0 0 20px;

  color: #626962;

  font-size: 15px;

  line-height: 1.68;
}

.health-topic-content .btn {
  margin-top: auto;

  padding:
    10px 17px;

  font-size: 13px;
}


/* =========================================================
   BALANCED DIET SECTION
   ========================================================= */

.health-balanced-section {
  background:
    linear-gradient(
      135deg,
      #f7eedc 0%,
      #fffaf1 100%
    );
}

.health-balanced-box {
  width: 100%;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  align-items: stretch;

  overflow: hidden;

  background: #ffffff;

  border:
    1px solid #e8dfcf;

  border-radius: 30px;

  box-shadow:
    0 18px 45px rgba(38, 44, 30, .09);
}


/* =========================================================
   FAMILY IMAGE
   ========================================================= */

.health-family-image {
  position: relative;

  width: 100%;

  min-width: 0;

  min-height: 480px;

  overflow: hidden;

  background: #eee2cd;
}

.health-family-image img {
  width: 100%;

  height: 100%;

  min-height: 480px;

  display: block;

  object-fit: cover;

  object-position: center center;

  transition:
    transform .5s ease;
}

.health-balanced-box:hover
.health-family-image img {
  transform: scale(1.012);
}


/* =========================================================
   BALANCED CONTENT
   ========================================================= */

.health-balanced-content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding:
    55px 50px;
}

.health-balanced-content h2 {
  margin:
    0 0 18px;

  color: #3b1d0e;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(31px, 4vw, 46px);

  line-height: 1.15;
}

.health-balanced-content p {
  margin:
    0 0 15px;

  color: #5f665f;

  font-size: 16px;

  line-height: 1.75;
}

.health-balanced-content .btn {
  align-self: flex-start;

  margin-top: 10px;
}


/* =========================================================
   RESPONSIBLE HEALTH SECTION
   ========================================================= */

.health-responsible-section {
  background: #ffffff;
}

.health-responsible-grid {
  width: 100%;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  align-items: center;

  gap: 52px;
}


/* =========================================================
   RESPONSIBLE CONTENT
   ========================================================= */

.health-responsible-content h2 {
  margin:
    0 0 18px;

  color: #3b1d0e;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(32px, 4vw, 48px);

  line-height: 1.15;
}

.health-responsible-content > p {
  max-width: 600px;

  margin: 0;

  color: #606860;

  font-size: 17px;

  line-height: 1.75;
}


/* =========================================================
   RESPONSIBLE POINTS
   ========================================================= */

.health-responsible-points {
  display: grid;

  gap: 13px;

  margin-top: 28px;
}

.health-responsible-points > div {
  display: flex;

  align-items: center;

  gap: 15px;

  padding:
    13px 16px;

  background:
    #faf6ec;

  border:
    1px solid #eee4d0;

  border-radius: 14px;
}

.health-responsible-points strong {
  width: 38px;
  height: 38px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #69b51d;

  color: #ffffff;

  font-size: 12px;

  font-weight: 800;
}

.health-responsible-points span {
  color: #414b42;

  font-size: 14px;

  font-weight: 700;
}


/* =========================================================
   RESPONSIBLE IMAGE
   ========================================================= */

.health-responsible-image {
  position: relative;

  width: 100%;

  min-width: 0;

  height: 450px;

  overflow: hidden;

  border-radius: 28px;

  background: #f0e5d0;

  box-shadow:
    0 18px 45px rgba(38, 44, 30, .12);
}

.health-responsible-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center center;

  transition:
    transform .5s ease;
}

.health-responsible-image:hover img {
  transform: scale(1.012);
}


/* =========================================================
   DISCLAIMER
   ========================================================= */

.health-disclaimer-section {
  padding:
    45px 0 75px;

  background: #ffffff;
}

.health-disclaimer {
  position: relative;

  display: flex;

  align-items: flex-start;

  gap: 18px;

  padding:
    22px 25px;

  border:
    1px solid #e4d7b7;

  border-left:
    5px solid #d99a16;

  border-radius: 17px;

  background:
    linear-gradient(
      135deg,
      #fffaf0,
      #fff6dc
    );

  color: #5c512f;

  box-shadow:
    0 8px 25px rgba(38, 44, 30, .05);
}

.health-disclaimer strong {
  color: #3b1d0e;

  margin-right: 5px;
}

.health-disclaimer span {
  color: #655d45;

  font-size: 13px;

  line-height: 1.7;
}

.disclaimer-icon {
  width: 46px;
  height: 46px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #69b51d;

  color: #ffffff;

  font-size: 20px;
}


/* =========================================================
   FOOTER WHATSAPP
   ========================================================= */

.footer-wa-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;
}

.footer-wa-btn svg {
  width: 19px;
  height: 19px;

  display: block;

  flex-shrink: 0;
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.float-wa {
  position: fixed;

  right: 20px;
  bottom: 20px;

  z-index: 9999;

  width: 58px;
  height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #25D366;

  color: #ffffff;

  text-decoration: none;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, .22);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.float-wa:hover {
  transform:
    translateY(-4px)
    scale(1.04);

  box-shadow:
    0 16px 35px rgba(0, 0, 0, .26);
}

.float-wa svg {
  width: 31px;
  height: 31px;

  display: block;

  flex-shrink: 0;
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .health-hero-grid {
    grid-template-columns:
      1fr 1fr;

    gap: 32px;
  }

  .health-hero-content h1 {
    font-size: 50px;
  }

  .health-topic-grid {
    gap: 22px;
  }

  .health-topic-content {
    padding-left: 22px;
    padding-right: 22px;
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  /* HERO */

  .health-hero {
    padding:
      60px 0 65px;
  }

  .health-hero-grid {
    grid-template-columns: 1fr;

    gap: 35px;

    text-align: center;
  }

  .health-hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .health-hero-actions {
    justify-content: center;
  }

  .health-hero-points {
    justify-content: center;
  }

  .health-hero-image img {
    height: 480px;
  }


  /* TOPICS */

  .health-topic-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 24px;
  }

  .health-topic-card:last-child {
    grid-column:
      1 / -1;

    width: 100%;

    max-width: 480px;

    margin: 0 auto;
  }


  /* BALANCED */

  .health-balanced-box {
    grid-template-columns: 1fr;
  }

  .health-family-image {
    min-height: 400px;
  }

  .health-family-image img {
    height: 400px;

    min-height: 400px;
  }


  /* RESPONSIBLE */

  .health-responsible-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .health-responsible-content > p {
    max-width: 800px;
  }

  .health-responsible-image {
    height: 420px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

  /* =======================================================
     HERO
  ======================================================= */

  .health-hero {
    padding:
      48px 0 55px;
  }

  .health-hero-grid {
    padding-left: 16px;
    padding-right: 16px;

    gap: 30px;
  }

  .health-hero-content h1 {
    font-size:
      clamp(35px, 10vw, 48px);

    line-height: 1.1;

    letter-spacing: -.6px;
  }

  .health-hero-content > p {
    font-size: 16px;

    line-height: 1.65;
  }


  /* HERO BUTTONS */

  .health-hero-actions {
    width: 100%;

    flex-direction: column;

    align-items: stretch;
  }

  .health-hero-actions .btn {
    width: 100%;
  }


  /* HERO POINTS */

  .health-hero-points {
    display: grid;

    grid-template-columns: 1fr;

    justify-items: start;

    gap: 8px;

    max-width: 270px;

    margin-left: auto;
    margin-right: auto;

    text-align: left;
  }


  /* HERO IMAGE */

  .health-hero-image {
    border-radius: 23px;
  }

  .health-hero-image img {
    width: 100%;

    height: auto;

    min-height: 0;

    aspect-ratio: 16 / 11;

    object-fit: cover;

    object-position: center;
  }


  /* =======================================================
     TOPICS
  ======================================================= */

  .health-topics-section {
    padding:
      60px 0 65px;
  }

  .health-section-heading {
    margin-bottom: 36px;

    padding:
      0 16px;
  }

  .health-section-heading h2 {
    font-size: 32px;
  }

  .health-section-heading p {
    font-size: 15px;

    line-height: 1.65;
  }


  .health-topic-grid {
    grid-template-columns: 1fr;

    gap: 23px;

    padding:
      0 16px;
  }

  .health-topic-card:last-child {
    grid-column: auto;

    max-width: none;
  }


  /* TOPIC IMAGE */

  .health-topic-image {
    aspect-ratio: 16 / 10;

    height: auto;
  }

  .health-topic-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;
  }


  /* TOPIC ICON */

  .health-topic-icon {
    left: 18px;

    bottom: -24px;

    width: 58px;
    height: 58px;

    font-size: 24px;
  }


  /* TOPIC CONTENT */

  .health-topic-content {
    min-height: 225px;

    padding:
      45px 22px 24px;
  }

  .health-topic-content h3 {
    font-size: 24px;
  }

  .health-topic-content p {
    font-size: 15px;

    line-height: 1.65;
  }

  .health-topic-content .btn {
    width: 100%;
  }


  /* =======================================================
     BALANCED SECTION
  ======================================================= */

  .health-balanced-section {
    padding:
      55px 0;
  }

  .health-balanced-box {
    margin:
      0 16px;

    width: auto;

    border-radius: 22px;
  }


  .health-family-image {
    min-height: 0;

    height: auto;

    aspect-ratio: 16 / 10;
  }

  .health-family-image img {
    width: 100%;

    height: 100%;

    min-height: 0;

    object-fit: cover;

    object-position: center center;
  }


  .health-balanced-content {
    padding:
      35px 23px 30px;
  }

  .health-balanced-content h2 {
    font-size: 31px;
  }

  .health-balanced-content p {
    font-size: 15px;

    line-height: 1.7;
  }

  .health-balanced-content .btn {
    width: 100%;
  }


  /* =======================================================
     RESPONSIBLE SECTION
  ======================================================= */

  .health-responsible-section {
    padding:
      55px 0;
  }

  .health-responsible-grid {
    padding:
      0 16px;

    gap: 30px;
  }

  .health-responsible-content h2 {
    font-size: 32px;
  }

  .health-responsible-content > p {
    font-size: 15px;

    line-height: 1.7;
  }


  /* RESPONSIBLE POINTS */

  .health-responsible-points {
    gap: 10px;

    margin-top: 23px;
  }

  .health-responsible-points > div {
    padding:
      11px 13px;

    gap: 12px;
  }

  .health-responsible-points strong {
    width: 36px;
    height: 36px;
  }

  .health-responsible-points span {
    font-size: 13px;
  }


  /* RESPONSIBLE IMAGE */

  .health-responsible-image {
    width: 100%;

    height: auto;

    aspect-ratio: 16 / 10;

    border-radius: 22px;
  }

  .health-responsible-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;
  }


  /* =======================================================
     DISCLAIMER
  ======================================================= */

  .health-disclaimer-section {
    padding:
      35px 0 55px;
  }

  .health-disclaimer {
    margin:
      0 16px;

    padding:
      20px;

    flex-direction: column;

    gap: 13px;
  }

  .health-disclaimer span {
    font-size: 12px;

    line-height: 1.65;
  }


  /* =======================================================
     WHATSAPP
  ======================================================= */

  .float-wa {
    width: 54px;
    height: 54px;

    right: 15px;
    bottom: 15px;
  }

  .float-wa svg {
    width: 29px;
    height: 29px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .health-hero {
    padding-top: 40px;
  }

  .health-hero-content h1 {
    font-size: 34px;
  }

  .health-hero-image img {
    aspect-ratio: 4 / 3;
  }


  .health-topic-image {
    aspect-ratio: 4 / 3;
  }


  .health-topic-content {
    min-height: auto;

    padding:
      43px 18px 22px;
  }

  .health-topic-content h3 {
    font-size: 22px;
  }


  .health-balanced-box {
    margin:
      0 12px;
  }

  .health-balanced-content {
    padding:
      30px 18px;
  }

  .health-balanced-content h2 {
    font-size: 28px;
  }


  .health-responsible-grid {
    padding:
      0 12px;
  }

  .health-responsible-content h2 {
    font-size: 29px;
  }


  .health-disclaimer {
    margin:
      0 12px;

    padding:
      17px;
  }


  .float-wa {
    width: 52px;
    height: 52px;

    right: 13px;
    bottom: 13px;
  }

  .float-wa svg {
    width: 28px;
    height: 28px;
  }

}


/* =========================================================
   IMAGE SAFETY / OVERFLOW PROTECTION
   ========================================================= */

.health-hero,
.health-topics-section,
.health-balanced-section,
.health-responsible-section,
.health-disclaimer-section {
  max-width: 100%;

  overflow-x: hidden;
}

.health-hero-grid,
.health-topic-grid,
.health-balanced-box,
.health-responsible-grid {
  min-width: 0;
}

.health-hero-image,
.health-topic-image,
.health-family-image,
.health-responsible-image {
  min-width: 0;
}

.health-hero-image img,
.health-topic-image img,
.health-family-image img,
.health-responsible-image img {
  max-width: 100%;
}


/* =========================================================
   END HEALTH GUIDE CSS
   ========================================================= */
   /* =========================================================
   HEALTH IMAGE FINAL FIX
   FULL IMAGE VISIBLE — NO CROPPING
   ========================================================= */

.health-hero-image {
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: #f5ead7;
}

.health-hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  display: block;

  object-fit: contain;
  object-position: center;

  background: #f5ead7;
}


/* =========================================================
   HEALTH TOPIC CARDS
   ========================================================= */

.health-topic-image {
  position: relative;

  width: 100%;
  height: 300px;

  overflow: hidden;

  background: #f5ead7;

  border-radius: 0;
}

.health-topic-image img {
  width: 100%;
  height: 100%;

  display: block;

  /*
    IMPORTANT:
    contain = complete generated image visible
    cover = image crop
  */
  object-fit: contain;
  object-position: center;

  background: #f5ead7;

  transform: none !important;
}


/* =========================================================
   TOPIC CARD
   ========================================================= */

.health-topic-card {
  overflow: hidden;
}


/* =========================================================
   BALANCED / FAMILY IMAGE
   ========================================================= */

.health-family-image {
  width: 100%;
  min-height: 480px;

  overflow: hidden;

  background: #f5ead7;
}

.health-family-image img {
  width: 100%;
  height: 100%;

  min-height: 480px;

  display: block;

  object-fit: contain;
  object-position: center;

  background: #f5ead7;

  transform: none !important;
}


/* =========================================================
   RESPONSIBLE HEALTH IMAGE
   ========================================================= */

.health-responsible-image {
  width: 100%;
  height: 450px;

  overflow: hidden;

  border-radius: 28px;

  background: #f5ead7;
}

.health-responsible-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
  object-position: center;

  background: #f5ead7;

  transform: none !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

  .health-hero-image img {
    width: 100%;
    height: auto;

    aspect-ratio: 4 / 3;

    object-fit: contain;
  }


  .health-topic-image {
    height: auto;

    aspect-ratio: 4 / 3;
  }

  .health-topic-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
  }


  .health-family-image {
    min-height: 0;

    height: auto;

    aspect-ratio: 4 / 3;
  }

  .health-family-image img {
    min-height: 0;

    height: 100%;

    object-fit: contain;
  }


  .health-responsible-image {
    height: auto;

    aspect-ratio: 4 / 3;
  }

  .health-responsible-image img {
    height: 100%;

    object-fit: contain;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .health-topic-image {
    aspect-ratio: 1 / 1;
  }

  .health-topic-image img {
    object-fit: contain;
  }

}
/* =========================================================
   HEALTH CARD ICON — FINAL NO-CROP FIX
   ========================================================= */

.health-topic-card {
  overflow: visible !important;
  position: relative;
}


/* Image ko rounded rakho, lekin icon ko crop mat karo */

.health-topic-image {
  position: relative;
  overflow: hidden;

  border-radius: 24px 24px 0 0;
}


/* All health icons */

.health-topic-icon {
  position: absolute;

  left: 22px;
  bottom: -26px;

  width: 64px;
  height: 64px;

  min-width: 64px;
  min-height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;

  border: 5px solid #ffffff;
  border-radius: 50%;

  font-size: 27px;
  line-height: 1;

  overflow: visible;

  z-index: 20;

  box-shadow:
    0 8px 22px rgba(0, 0, 0, .16);
}


/* Icon itself */

.health-topic-icon::before {
  display: block;

  line-height: 1;

  transform: none;
}


/* Content stays below the icon */

.health-topic-content {
  position: relative;
  z-index: 2;

  background: #ffffff;

  border-radius: 0 0 24px 24px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

  .health-topic-card {
    overflow: visible !important;
  }

  .health-topic-image {
    border-radius: 22px 22px 0 0;
  }

  .health-topic-icon {
    left: 18px;
    bottom: -24px;

    width: 58px;
    height: 58px;

    min-width: 58px;
    min-height: 58px;

    border-width: 4px;

    font-size: 24px;

    z-index: 20;
  }

  .health-topic-content {
    border-radius: 0 0 22px 22px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .health-topic-icon {
    left: 16px;
    bottom: -22px;

    width: 54px;
    height: 54px;

    min-width: 54px;
    min-height: 54px;

    font-size: 22px;
  }

}
/* =========================================================
   HEALTH CARDS — FINAL ICON FIX
   ICON MUST BE 100% VISIBLE
   ========================================================= */

/* Card itself */
.health-topic-card {
  position: relative !important;
  overflow: visible !important;
  isolation: isolate;
}


/* Image wrapper:
   IMPORTANT = overflow MUST be visible
*/
.health-topic-image {
  position: relative !important;

  width: 100%;

  overflow: visible !important;

  aspect-ratio: 16 / 10;

  background: #f5ead7;

  border-radius: 24px 24px 0 0;

  z-index: 1;
}


/* Actual image gets the rounded corners.
   This replaces overflow:hidden on wrapper.
*/
.health-topic-image > img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  border-radius: 24px 24px 0 0;

  background: #f5ead7;

  max-width: 100%;

  transform: none !important;
}


/* =========================================================
   ICON
   ========================================================= */

.health-topic-icon {
  position: absolute !important;

  left: 22px !important;
  bottom: -32px !important;

  width: 64px !important;
  height: 64px !important;

  min-width: 64px !important;
  min-height: 64px !important;

  display: flex !important;

  align-items: center !important;
  justify-content: center !important;

  box-sizing: border-box;

  border: 5px solid #ffffff !important;

  border-radius: 50% !important;

  font-size: 27px !important;

  line-height: 1 !important;

  z-index: 50 !important;

  overflow: visible !important;

  box-shadow:
    0 8px 22px rgba(0, 0, 0, .18);

  transform: none !important;
}


/* Icon emoji itself */
.health-topic-icon::before {
  line-height: 1;
}


/* =========================================================
   CONTENT
   Keep content behind the floating icon
   ========================================================= */

.health-topic-content {
  position: relative !important;

  z-index: 2 !important;

  background: #ffffff;

  border-radius: 0 0 24px 24px;

  padding-top: 55px !important;
}


/* Icon must remain above content */
.health-topic-icon {
  z-index: 100 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .health-topic-image {
    overflow: visible !important;
  }

  .health-topic-icon {
    left: 20px !important;

    bottom: -30px !important;

    width: 62px !important;
    height: 62px !important;

    min-width: 62px !important;
    min-height: 62px !important;

    font-size: 26px !important;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

  .health-topic-card {
    overflow: visible !important;
  }

  .health-topic-image {
    aspect-ratio: 16 / 10;

    overflow: visible !important;

    border-radius: 22px 22px 0 0;
  }

  .health-topic-image > img {
    border-radius: 22px 22px 0 0;
  }

  .health-topic-icon {
    left: 18px !important;

    bottom: -29px !important;

    width: 58px !important;
    height: 58px !important;

    min-width: 58px !important;
    min-height: 58px !important;

    border-width: 4px !important;

    font-size: 24px !important;

    z-index: 100 !important;
  }

  .health-topic-content {
    padding-top: 52px !important;

    border-radius: 0 0 22px 22px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .health-topic-image {
    aspect-ratio: 4 / 3;

    overflow: visible !important;
  }

  .health-topic-icon {
    left: 16px !important;

    bottom: -27px !important;

    width: 54px !important;
    height: 54px !important;

    min-width: 54px !important;
    min-height: 54px !important;

    font-size: 22px !important;
  }

  .health-topic-content {
    padding-top: 49px !important;
  }

}
/* =========================================================
   DEHATI GHEE HEALTH CARDS
   FINAL IMAGE + ICON FIX
   NO CROPPING / NO ICON CUTTING
   ========================================================= */


/* ---------------------------------------------------------
   CARD
--------------------------------------------------------- */

.health-topic-card {
  position: relative !important;

  overflow: visible !important;

  isolation: isolate;

  min-width: 0;
}


/* ---------------------------------------------------------
   IMAGE AREA
--------------------------------------------------------- */

.health-topic-image {
  position: relative !important;

  width: 100% !important;

  height: auto !important;

  aspect-ratio: 16 / 10 !important;

  overflow: visible !important;

  background: #f5ead7;

  border-radius: 24px 24px 0 0;

  /*
    IMPORTANT:
    Image + floating icon ko content ke upar rakhenge
  */
  z-index: 3 !important;
}


/* ---------------------------------------------------------
   ACTUAL HEALTH IMAGE
--------------------------------------------------------- */

.health-topic-image > img {
  display: block !important;

  width: 100% !important;

  height: 100% !important;

  max-width: 100% !important;

  /*
    CONTAIN = complete image visible
    COVER = image crop
  */
  object-fit: contain !important;

  object-position: center center !important;

  background: #f5ead7;

  border-radius: 24px 24px 0 0;

  transform: none !important;

  transition: none !important;
}


/* ---------------------------------------------------------
   ICON
--------------------------------------------------------- */

.health-topic-icon {
  position: absolute !important;

  left: 22px !important;

  bottom: -32px !important;

  width: 64px !important;

  height: 64px !important;

  min-width: 64px !important;

  min-height: 64px !important;

  display: flex !important;

  align-items: center !important;

  justify-content: center !important;

  box-sizing: border-box !important;

  border: 5px solid #ffffff !important;

  border-radius: 50% !important;

  font-size: 27px !important;

  line-height: 1 !important;

  overflow: visible !important;

  /*
    Icon image ke upar rahega
  */
  z-index: 999 !important;

  box-shadow:
    0 8px 22px rgba(0, 0, 0, .18);

  transform: none !important;
}


/* ---------------------------------------------------------
   ICON EMOJI
--------------------------------------------------------- */

.health-topic-icon::before {
  display: block;

  line-height: 1;

  transform: none !important;
}


/* ---------------------------------------------------------
   ICON COLORS
--------------------------------------------------------- */

.heart-icon {
  background: #d83a35 !important;
}

.weight-icon {
  background: #7fa91d !important;
}

.digestion-icon {
  background: #5b9e20 !important;
}

.kids-icon {
  background: #e5a116 !important;
}

.cooking-icon {
  background: #e87913 !important;
}

.portion-icon {
  background: #d39a12 !important;
}


/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.health-topic-content {
  position: relative !important;

  z-index: 2 !important;

  background: #ffffff;

  border-radius: 0 0 24px 24px;

  min-height: 255px;

  padding:
    55px 27px 27px !important;
}


/*
  IMPORTANT:
  Image parent z-index 3
  Content z-index 2
  Icon z-index 999
*/


/* ---------------------------------------------------------
   DESKTOP
--------------------------------------------------------- */

@media (min-width: 1001px) {

  .health-topic-image {
    aspect-ratio: 16 / 10 !important;
  }

  .health-topic-image > img {
    object-fit: contain !important;
  }

  .health-topic-icon {
    left: 22px !important;
    bottom: -32px !important;

    width: 64px !important;
    height: 64px !important;

    min-width: 64px !important;
    min-height: 64px !important;
  }

}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 1000px) {

  .health-topic-image {
    aspect-ratio: 16 / 10 !important;

    overflow: visible !important;
  }

  .health-topic-image > img {
    object-fit: contain !important;
  }

  .health-topic-icon {
    left: 20px !important;

    bottom: -31px !important;

    width: 62px !important;
    height: 62px !important;

    min-width: 62px !important;
    min-height: 62px !important;

    font-size: 26px !important;

    z-index: 999 !important;
  }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 680px) {

  .health-topic-card {
    overflow: visible !important;
  }

  .health-topic-image {
    width: 100% !important;

    height: auto !important;

    aspect-ratio: 16 / 10 !important;

    overflow: visible !important;

    border-radius: 22px 22px 0 0;

    z-index: 3 !important;
  }

  .health-topic-image > img {
    width: 100% !important;

    height: 100% !important;

    object-fit: contain !important;

    border-radius: 22px 22px 0 0;
  }

  .health-topic-icon {
    left: 18px !important;

    bottom: -29px !important;

    width: 58px !important;

    height: 58px !important;

    min-width: 58px !important;

    min-height: 58px !important;

    border-width: 4px !important;

    font-size: 24px !important;

    z-index: 999 !important;
  }

  .health-topic-content {
    z-index: 2 !important;

    padding:
      52px 22px 24px !important;

    border-radius:
      0 0 22px 22px;
  }

}


/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 420px) {

  .health-topic-image {
    aspect-ratio: 4 / 3 !important;

    overflow: visible !important;
  }

  .health-topic-image > img {
    object-fit: contain !important;
  }

  .health-topic-icon {
    left: 16px !important;

    bottom: -27px !important;

    width: 54px !important;

    height: 54px !important;

    min-width: 54px !important;

    min-height: 54px !important;

    font-size: 22px !important;

    z-index: 999 !important;
  }

  .health-topic-content {
    padding-top: 49px !important;
  }

}