* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #00c853;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  /* box-shadow: 0 5px 15px rgba(0,0,0,0.2); */
  z-index: 100;
}

body {
  /* background: linear-gradient(90deg, #ff4d14 0%, #ffb633 100%); */
  background-color: #fffef2;
  min-height: 200vh;
}

.header-container {
  margin-top: 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 18px;
}

.navbar {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  height: 52px;
  border-radius: 999px;
  /* background: linear-gradient(90deg, #ecd4cb 0%, #f3eddc 100%); */
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 0 26px;
  /* box-shadow: 0 4px 6px rgba(0,0,0,0.05); */
}

/* Equal Space Alignment for Desktop */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  flex: 1;
  /* Both sides take up equal space */
}

.nav-left {
  justify-content: flex-start;
  gap: 120px;
  /* Adjust this to change spacing between Home & Products */
}

.nav-right {
  justify-content: flex-end;
  gap: 120px;
  /* Adjust this to change spacing between Contact & Buy Now */
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 200px;
  /* Equal gap applied */
}

.nav-menu a {
  text-decoration: none;
  color: #4f4946;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.dropdown:hover > a {
  color: #ce0018;
}

/* Arrows */
.arrow {
  border: solid currentColor;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 2.5px;
  margin-left: 7px;
  margin-bottom: 2px;
  transition: transform 0.3s ease;
}

.arrow.down {
  transform: rotate(45deg);
}

.arrow-light {
  border-color: #fff;
}

.dropdown:hover .arrow.down {
  transform: rotate(-135deg) translateY(-2px);
}

/* Dropdown Styling */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: -20px;
  background-color: #fdf6f3;
  list-style: none;
  padding: 10px;
  border-radius: 10px;
  min-width: 180px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10;
}

.dropdown-menu.align-right {
  left: auto;
  right: 0;
  min-width: 220px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin-bottom: 5px;
}

.dropdown-menu li:last-child {
  margin-bottom: 0;
}

.dropdown-menu a {
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 11px;
  color: #4f4946;
  display: block;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active-item {
  background-color: #f05a28;
  color: #ffffff;
}

/* Center Logo */
.nav-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  z-index: 12;
}

.logo {
  height: 112px;
  /* Desktop pop-up size */
  width: auto;
  display: block;
}

/* Buy Now Button */
.buy-now-btn {
  border: none;
  border-radius: 999px;
  background: #d70f14;
  text-decoration: none;

  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  padding: 12px 17px;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.buy-dropdown:hover .buy-now-btn {
  background: #aa0014;
  text-decoration: none;
}

/* White Button with Hover Animation */
.btn-white {
  background: white;
  color: #333;
  padding: 12px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 12px;
  margin: 0 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-white:hover {
  transform: translateY(-3px);
  background-image: url(assets/everygi.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  background-color: #d70f14;
  color: #fff;
  transition: 0.3s;
}

/* --- Mobile Menu & Responsive Styling --- */
.hamburger {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #d70f14;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background-color: #fdf6f3;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding-top: 80px;
  transition: left 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-nav-list {
  list-style: none;
  padding: 0 25px;
}

.mobile-nav-list > li {
  border-bottom: 1px solid #ebd8d0;
}

.mobile-nav-list > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  text-decoration: none;
  color: #4f4946;
  font-size: 14px;
  font-weight: 700;
}

.mobile-dropdown-menu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-dropdown-trigger.active .mobile-dropdown-menu {
  max-height: 250px;
  margin-bottom: 15px;
}

.mobile-dropdown-trigger.active > a .arrow.down {
  transform: rotate(-135deg);
}

.mobile-dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #4f4946;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
}

.mobile-dropdown-menu a.active-item,
.mobile-dropdown-menu a:hover {
  background-color: #f05a28;
  color: white;
}

/* Mobile Media Queries */
@media (max-width: 900px) {
  .desktop-nav-links {
    display: none !important;
    /* Hide standard links */
  }

  .hamburger {
    display: flex;
  }

  /* Resize & realign elements for mobile */
  .navbar {
    padding: 0 6px 0 15px;
    /* Tighter padding for mobile */
  }

  .nav-left {
    flex: 0;
    /* Shrink to fit just the hamburger */
    gap: 0;
  }

  .nav-right {
    flex: 0;
    /* Shrink to fit just the buy button */
    gap: 0;
  }

  /* Keep logo absolute centered but slightly smaller */
  .logo {
    height: 91px;
    width: auto;
  }

  /* Shrink the Buy button slightly so it fits nicely on small phones */
  .buy-now-btn {
    font-size: 11px;
    padding: 10px 14px;
  }
}

/* =============================
   WHY SECTION
============================= */
.why-glucond {
  padding: 60px 5%;
  background: #fffef2;
  font-family: "Poppins", sans-serif;
}

.why-container {
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 1215px;
  margin: 0 auto;
}

.why-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.rounded-img {
  /* width: 100%; */
  width: 675px;

  max-width: 600px;
  border-radius: 20px;
  object-fit: contain;
}

.why-content {
  flex: 1;
}

.section-title-why {
  font-family: "Oswald", sans-serif;
  font-size: 45px;
  font-weight: 500;
  color: #493e34;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.title-img-span {
  display: inline-flex;
  align-items: center;
}

.title-img-span img {
  height: 48px;
  margin-top: -6px;
}

.why-content p {
  font-size: 16px;
  line-height: 23px;
  color: #493e34;
  margin-bottom: 25px;
  font-weight: 400;
}

.desktop-break {
  display: block;
}

.mobile-title {
  display: none;
}

@media (max-width: 900px) {
  .why-glucond {
    padding: 10px 20px;
  }

  .why-container {
    flex-direction: column;
    gap: 10px;
  }

  .why-image {
    justify-content: center;
  }

  .rounded-img {
    max-width: 100%;
  }

  .mobile-title {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 36px;
  }

  .desktop-title {
    display: none;
  }

  .why-content p {
    text-align: center;
    margin-bottom: 20px;
  }

  .desktop-break {
    display: none;
  }
}

@media (max-width: 900px) {
  .header-container {
    padding: 8px 10px 0;
  }

  .navbar {
    height: 50px;
    padding: 0 10px;
  }

  .nav-left,
  .nav-right {
    flex: 1;
  }

  .nav-left {
    justify-content: flex-start;
  }

  .nav-right {
    justify-content: flex-end;
    gap: 0;
  }

  .nav-menu {
    display: none;
  }

  .buy-now-btn {
    display: inline-flex;
    font-size: 11px;
    padding: 10px 14px;
  }

  .hamburger {
    display: flex;
    padding: 8px 10px;
    gap: 6px;
  }

  .hamburger span {
    width: 28px;
  }

  .nav-center {
    top: 0;
    transform: translate(-50%, -38%);
  }

  .logo {
    height: 91px;
    width: auto;
    margin-top: 30px;
  }

  .hero {
    padding-top: 56px;
    background-position: center -10px;
  }
}

/* ________________hero_______________ */

.hero {
  width: 100%;
  min-height: 520px;
  margin-top: 0;
  position: relative;
  /* border: 2px solid #d14c17; */
  padding-top: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("./assets/hero_bg.png");
  background-position: 10% center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  overflow-y: hidden;
}

.hero-sun-wrapper {
  position: absolute;
  right: 8%;
  top: 15%;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  width: 300%;
  height: 300%;
  top: -100%;
  left: -100%;
  object-fit: contain;
  z-index: 1;
  animation: rotateGlow 10s linear infinite;
}

.hero-sun {
  position: relative;
  width: 100%;
  object-fit: contain;
  z-index: 2;
}

.hero-boxes {
  position: absolute;
  /* bottom: -0px; */
  /* bottom: 0px !important; */
  top: 100px;
  right: 6%;
  width: 400px;
  max-width: 650px;
  height: auto;
  object-fit: contain;
  z-index: 3;
}

@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.hero-content {
  position: absolute;
  left: 12%;
  top: 48%;
  transform: translateY(-50%);
  z-index: 5;
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* background: red -600px; */
}

.hero-logo-text {
  height: 90px;
  margin-bottom: -5px;
}

.hero-heading {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  /* text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); */
  font-family: "Oswald", sans-serif;
}

.benefits-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.benefit-badge {
  height: 160px;
}

@media (min-width: 901px) {
  .benefit-badge {
    margin-left: 25px;
  }
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefits-list li {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  font-family: "oswald", sans-serif !important;
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefits-list li img {
  margin-right: 15px;
}

.mock-icon {
  font-size: 16px;
  background: #f76602;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 900px) and (max-width: 960px) {
  .hero {
    min-height: 474px !important;
  }

  .hero-boxes {
    right: 3% !important;
    top: 139px !important;
    width: 37% !important;
  }

  .hero-sun-wrapper {
    right: 5%;
    top: 16% !important;
    width: 140px;
    height: 140px;
  }

  .hero-content {
    left: 3%;
    transform: translateY(-32%);
  }
}

/*@media (max-width: 820px) {
    .hero {
        min-height: 600px;
    }
}*/

/* ── INTERMEDIATE: tablet / small laptop (481px → 899px) ── */
@media (min-width: 481px) and (max-width: 899px) {
  .hero {
    width: 100%;
    min-height: 444px;
  }
  /* Scale down the product boxes so they don't eat into the text */
  .hero-boxes {
    width: clamp(220px, 36vw, 380px);
    right: 4%;
    top: 160px;
  }

  /* Shrink & left-align the text block */
  .hero-content {
    left: 3%;
    top: 45%;
    transform: translateY(-50%);
    max-width: 42%;
  }

  /* Scale badge down proportionally */
  .benefit-badge {
    height: clamp(80px, 12vw, 120px);
  }

  /* Shrink logo text heading */
  .hero-logo-text {
    height: clamp(38px, 6vw, 55px);
  }
}

@media (max-width: 480px) {
  .title-img-span img {
    height: 30px;
  }

  .hero {
    /* top:0; */
    /*min-height: 600px !important;*/
    background-image: url("./assets/mobile_bg_new.png");
    /* background-position: 35% center; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% center;
    /* overflow: visible; */
    /* background-size: 145% auto */
  }

  .hero-boxes {
    position: absolute;
    width: 54%;
    max-width: 320px;
    /* bottom: -15% !important; */
    top: 300px;
    right: 5%;
    left: auto;
    transform: none;
    z-index: 10;
  }

  .hero-content {
    left: 5%;
    gap: 15px;
    top: 20%;
    transform: none;
    align-items: center;
    justify-content: center;
    /* width: 100%; */
    padding: 0;
    z-index: 5;
  }

  .hero-logo-text {
    height: auto;
    width: 139px;
    max-width: 250px;
  }

  .hero-heading {
    font-size: 32px;
    text-align: left;
    margin-bottom: 20px;
  }

  .benefits-container {
    gap: 0;
    margin: 0;
    scale: 1;
    justify-content: flex-start;
  }

  .benefit-badge {
    /* height: 32px !important; */
    width: 133;

    max-width: 170px;
    margin-left: 20px;
  }

  .benefits-list li {
    font-size: 25px;
    gap: 8px;
  }

  .mock-icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .hero-sun-wrapper {
    right: 5%;
    top: 10% !important;
    width: 120px;
    height: 120px;
  }

  .hero-sun-wrapper .hero-sun {
    width: 84px;
    margin-right: -42px !important;
  }

  .hero-glow {
    width: 350%;
    height: 350%;
    top: -150%;
    left: -150%;
  }
}

@media (min-width: 1599px) and (max-width: 2000px) {
  .hero-boxes {
    top: 310px !important;
    width: 437px !important;
    right: 4% !important;
  }
  .hero-content {
    transform: translateY(-50%) scale(1.5);
    transform-origin: left center;
    left: 7%;
    top: 48%;
  }
}

@media (min-width: 1200px) and (max-width: 1290px) {
  .hero-boxes {
    top: 118px;
    right: 5%;
    width: 406px;
  }
}

@media (min-width: 390px) and (max-width: 491px) {
  .hero {
    min-height: 494px;
    top: 0px;
  }

  .hero-boxes {
    top: 293px;
  }
}
@media (min-width: 360px) and (max-width: 362px) {
  .hero {
    min-height: 478px !important;
    top: 0px;
  }

  .hero-boxes {
    top: 288px !important;
    right: 2% !important;
  }
}
@media (min-width: 430px) and (max-width: 435px) {
  .hero {
    min-height: 539px;
    top: 0px;
  }

  .hero-boxes {
    top: 317px;
  }
}
@media (min-width: 300px) and (max-width: 485px) {
  .hero {
    min-height: 552px;
    top: 0px;
  }

  .hero-boxes {
    position: absolute;
    width: 47%;
    max-width: 320px;
    /* bottom: -15% !important; */
    top: 329px;
    right: 7%;
    left: auto;
    transform: none;
    z-index: 10;
  }
  .hero-content {
    left: 0%;
    gap: 15px;
    top: 29%;
  }
}

@media (min-width: 1150px) and (max-width: 1155px) {
  .hero-boxes {
    top: 140px !important;
    right: 4% !important;
    width: 353px !important;
  }

  .hero-content {
    left: 8% !important;
  }
  .why-container {
    gap: 20px;
  }
}
@media (min-width: 1280px) and (max-width: 1282px) {
  .hero-boxes {
    top: 105px !important;
  }
}
/* Widescreen Scaling to prevent content from looking minimized and background from clipping */
@media (min-width: 1400px) and (min-width: 1440px) {
  .hero {
    height: 48vw;
    /* height: 400px !important; */
    max-height: 900px;
  }
  .hero-boxes {
    top: 310px;
    width: 371px;
    right: 4%;
  }

  .hero-content {
    transform: translateY(-50%) scale(1.3);
    transform-origin: left center;
    left: 13% !important;
  }

  .hero-boxes {
    transform: scale(1.3);
    transform-origin: right bottom;
  }

  .hero-sun-wrapper {
    transform: scale(1.3);
    transform-origin: center center;
  }
}

@media (min-width: 1800px) {
  .hero {
    height: 45vw;
    max-height: 1200px;
  }

  .hero-content {
    transform: translateY(-50%) scale(1.6);
  }

  .hero-boxes {
    transform: scale(1.6);
  }

  .hero-sun-wrapper {
    transform: scale(1.6);
  }
}

/* =============================
   BENEFITS SECTION
============================= */
.benefits-powder {
  /* font-weight: 200; */
  padding: 0 5%;
  background: #fffef2;
  font-family: "Poppins", sans-serif;
}

.benefits-container-powder {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.benefits-container-powder h3 {
  font-weight: 400 !important;
  /* font-style: normal !important; */
}

.benefits-text-powder {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-left: 20px;
}

.benefit-item-powder {
  display: flex;
  align-items: center;
  gap: 25px;
}

.icon-circle-powder {
  /* background: #ff4d00; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: -30px;
}

.icon-circle-powder img {
  height: 90px !important;
  width: 90px !important;
  object-fit: cover;
}

.benefit-content-powder {
  display: flex;
  flex-direction: column;
}

.benefit-content-powder h3 {
  font-family: "Oswald", sans-serif;
  color: #f94c1b;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 5%;
}

.benefit-content-powder p {
  color: #493e34;
  font-size: 16px;
  line-height: 22px;
  margin: 0;
}

.benefits-image-powder {
  flex: 1;
  display: flex;
  /* justify-content: flex-end; */
}

.benefits-image-powder img {
  max-width: 95%;
  object-fit: contain;
}

@media (max-width: 900px) {
  .benefits-powder {
    padding: 10px 20px;
  }

  .benefits-container-powder {
    flex-direction: column;
    gap: 50px;
  }

  .benefits-text-powder {
    gap: 40px;
    margin-left: 0;
  }

  .benefit-item-powder {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .icon-circle-powder {
    width: 75px;
    height: 75px;
  }

  .icon-circle-powder img {
    height: 40px;
  }

  .benefit-content-powder h3 {
    font-size: 24px;
  }

  .benefits-image-powder {
    justify-content: center;
    margin-top: 0px;
    margin-bottom: 10px;
  }
}

/* =============================
   WHEN TO USE SECTION
============================= */
.when-use-section {
  margin-top: -10px;
  padding: 0px 5%;
  font-family: "Poppins", sans-serif;
  /* background: #FFFEF2; */
}

.when-use-container {
  background: linear-gradient(to right, #fd8f2e, #ff4a1f);
  border-radius: 20px;
  padding: 50px 50px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 110px;
  color: white;
  margin-top: 50px;
}

@media (min-width: 1400px) {
  .when-use-container {
    max-height: 250px;
  }
  .boost-slide {
    margin: auto;
    max-height: 402px;
    width: 1000px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.when-left {
  flex: 0 0 320px;
}

.when-left h2 {
  font-family: "Oswald", sans-serif;
  font-size: 45px;
  font-weight: 450;
  margin-bottom: 15px;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.when-left p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 350;
}

.when-right {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.use-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* 🔥 important */

  gap: 15px;
  text-align: center;
}

.use-icon {
  width: 90px;
  height: 90px;
  /* background: white; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.use-icon img {
  height: 105px;
  object-fit: contain;
}

.use-item h3 {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 350;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  min-height: 48px; /* 🔥 force equal height */
}

@media (max-width: 900px) {
  .when-use-section {
    padding: 10px 20px;
  }

  .when-use-container {
    flex-direction: column;
    padding: 50px 30px;
    gap: 25px;
  }

  .when-left {
    flex: none;
    text-align: center;
    width: 100%;
  }

  .when-left h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .when-right {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 330px;
    gap: 30px;
    margin: 0 auto;
  }

  .use-item {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 25px;
    width: 100%;
  }

  .use-icon {
    /* width: 100px; */
    /* height: 100px; */
    flex-shrink: 0;
  }

  .use-icon img {
    height: 85px;
    width: 100px;
  }

  .use-item h3 {
    font-size: 19px;
  }
}

/* =============================
   EXPLORE OUR RANGE SECTION
============================= */
.boost-section {
  padding: 60px 5%;
  text-align: center;
  background: #fffef2;
}

.boost-p {
  margin-bottom: 60px;
}

/* SLIDER WRAPPER */
.boost-slider {
  position: relative;
  max-width: 1100px;
  margin: auto;
  height: 450px;
}

.boost-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* STACKED SLIDES */
.boost-slide {
  position: absolute;
  top: 25px;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* ACTIVE SLIDE */
.boost-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Creative Visualization Label */
.creative-visuals {
  position: absolute;
  top: 14px;
  left: 18px;
  z-index: 10;
  font-size: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.4px;
  margin: 0;
  pointer-events: none;
}

/* Background */
.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  transition: all 0.8s ease;
}

/* PRODUCT OVERLAY */
.slide-product {
  position: absolute;
  left: 48%;
  top: -15px;
  /* bottom: -px; */
  transform: translateX(-80%);
  height: auto;
  max-height: 480px;
  scale: 1.08;
  width: auto;
  z-index: 5;
  transition: transform 0.6s ease;
}

/* Slide active product animation */
.boost-slide.active .slide-product {
  transform: translateX(-50%) translateY(0);
}

/* TEXT */
.slide-content {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%) translateX(40px);
  width: 30%;
  color: white;
  opacity: 0;
  transition: all 0.8s ease;
  text-align: left;
}

.boost-slide.active .slide-content {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.slide-content h3 {
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 20px;
}

.slide-content button {
  margin-top: 20px;
  padding: 12px 35px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.slide-content button:hover {
  transform: translateY(-3px);
  background-color: #d70f14;
  color: #fff;
}

.boost-arrows {
  position: absolute;
  top: 50%;
  left: -30px;
  right: -30px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

.arrow-right,
.arrow-left {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.star-icon {
  color: white;
  transform: translate(20px, -40px);
  position: absolute;
}

.arrow-left {
  background-color: #ffffff;
  /* rotate: -45deg; */
  transform: translateX(45px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.arrow-right {
  background-color: #ffcc04;
  /* rotate: -45deg; */
  transform: translateX(-55px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.arrow-left:hover {
  background-color: #d5d3cd;
  transform: translateX(45px) scale(1.1);
}

.arrow-right:hover {
  background-color: #efbf00;
  transform: translateX(-55px) scale(1.1);
}

.arrow-left img,
.arrow-right img {
  height: 18px;
  width: auto;
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 45px;
  color: #3b332b;
}

.section-title span {
  color: #ff4a17;
}

/* DOTS */
.carousel-dots {
  margin: 50px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* margin-top: 45px; */
  height: 20px;
  /* margin: 25px 0 0; */
  position: relative;
  z-index: 5;
  max-width: 1100px;
  width: 100%;
}

.carousel-dots .dot {
  width: 6px;
  height: 6px;
  background: #cbd0d4;
  border-radius: 50%;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s,
    width 0.3s,
    height 0.3s;
}

.carousel-dots .dot.active {
  background: #f94c1b;
  width: 8px;
  height: 8px;
}

/* Mobile image (shown instead of slider on very small screens) */
.boost-mobile-img {
  display: none;
  width: 100%;
  border-radius: 25px;
  margin-top: 20px;
}

/* ================= LARGE TABLET / SMALL LAPTOP ================= */
@media (max-width: 1210px) {
  .boost-slider {
    max-width: 95%;
    height: 420px;
  }

  .slide-product {
    left: 50%;
    bottom: -15px;
    transform: translateX(-70%);
    max-height: 420px;
  }

  .boost-slide.active .slide-product {
    transform: translateX(-50%);
  }

  .slide-content {
    width: 32%;
    right: 40px;
    /* line-height: -1.2; */
  }

  .slide-content h3 {
    font-size: 36px;
    /* line-height: 4//.2 !important; */
  }

  .boost-arrows {
    left: -20px;
    right: -20px;
  }
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .boost-slider {
    max-width: 90%;
    height: 380px;
  }

  .slide-product {
    left: 50%;
    bottom: -10px;
    transform: translateX(-70%);
    max-height: 360px;
  }

  .boost-slide.active .slide-product {
    transform: translateX(-50%);
  }

  .slide-content {
    width: 34%;
    right: 30px;
  }

  .slide-content h3 {
    font-size: 30px;
  }

  .slide-content p {
    font-size: 13px;
  }

  .slide-content button {
    padding: 10px 28px;
    font-size: 14px;
  }

  .boost-arrows {
    left: -15px;
    right: -15px;
  }

  .arrow-left,
  .arrow-right {
    width: 42px;
    height: 42px;
  }
}

/* ================= MOBILE ================= */
/* ================= DEDICATED MOBILE SLIDER ================= */
.boost-slider-mobile {
  display: none;
  /* Hidden on desktop */
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  /* HIDE ALL DESKTOP SLIDER ELEMENTS */
  .boost-slider,
  .boost-arrows,
  .carousel-dots {
    display: none !important;
  }

  .boost-section {
    padding: 0;
    /* background-color: #F8F7F0; */
  }

  .section-title {
    font-size: 35px;
    margin-top: 40px;
    margin-bottom: 25px;
  }

  /* SHOW MOBILE SLIDER */
  .boost-slider-mobile {
    display: block;
    width: 100%;
    max-width: 400px;
    padding: 0px 10px;
    margin: 0 auto;
    /* padding: 10px 20px 40px 20px; */
    /* background-color: #F8F7F0; */
    position: relative;
    overflow: hidden;
  }

  /* Slider Wrapper */
  .slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
  }

  /* Slider Track */
  .slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
  }

  /* Individual Slide */
  .slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    position: relative;
    background-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  /* Top Image Area Wrapper */
  .slide .slide-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    /* Fixed equal height */
    border-radius: 16px 16px 16px 16px;
    overflow: hidden;
    z-index: 1;
  }

  /* Zoomed-in Background Image to crop out the right-side solid color */
  .slide .bg-image {
    width: 260%;
    /* Make image super wide so left edge fills the wrapper */
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
    /* margin-left: 100px; */
    /* padding-left: 10px; */
    /* scale:.98; */
  }

  /* Product Box Overlapping Image */
  .slide .product-image {
    position: absolute;
    right: 25px;
    top: 220px;
    /* Aligned exactly to the seam */
    transform: translateY(-50%);
    /* Perfectly placed on the middle boundary */
    width: 130px;
    height: 220px;
    z-index: 10;
    border-radius: 6px;
    /* box-shadow: -4px 8px 16px rgba(0,0,0,0.25); */
    object-fit: contain;
  }

  /* Bottom Content Area */
  .slide .slide-content {
    background-color: transparent !important;
    width: 100%;
    height: 300px;
    /* Fixed equal height to match the image wrapper */
    border-radius: 0 0 16px 16px;
    /* Round bottom corners only */
    margin-top: 0;
    /* Remove overlapping margin */
    padding: 30px 10px 40px 10px;
    position: relative !important;
    top: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1;
    text-align: center;
    color: white;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    /* Push text down to avoid overlapping the centered product image */
    align-items: center;
    box-sizing: border-box;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .slide-content .desktop-break {
    display: none !important;
  }

  .slide .slide-title {
    font-family: "Oswald", sans-serif;
    font-size: 35px;
    white-space: nowrap;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    box-sizing: border-box;
    font-weight: 500;
  }

  .slide .slide-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 400;
    /* Modified to stick closer to our branding */
    opacity: 0.95;
    max-width: 330px;
  }

  /* Shop Now Button */
  .slide .shop-btn {
    background-color: white;
    color: #3d3d3d;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition:
      background-color 0.2s,
      transform 0.1s;
    margin-top: auto;
  }

  .slide .shop-btn:hover {
    background-color: #f0f0f0;
  }

  .slide .shop-btn:active {
    transform: scale(0.97);
  }

  /* Pagination Dots */
  .slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
    height: 30px;
  }

  .slider-dots .mob-dot {
    width: 8px;
    height: 8px;
    background-color: #d3d3d3;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .slider-dots .mob-dot.active {
    background-color: #f25424;
    width: 16px;
    height: 16px;
  }
}

/* ===============================
   HOW TO USE SECTION
================================ */
.how-to-use {
  padding: 0px 20px;
  text-align: center;
  /* background-color: #F8F7F0;  */
  overflow: hidden;
}

/* Base styles / Desktop */
.steps-container {
  display: flex;
  padding: 0px 10px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1400px;
  /* More room for 4 cards */
  margin: 0 auto;
  position: relative;
  margin-top: 100px;
}

.step-card {
  position: relative;
  width: 23%;
  max-width: 300px;
  /* Allow cards to spread wider */
}

.big-number {
  position: absolute;
  top: -80px;
  left: 25px;
  transform: translateX(-30%);
  font-size: 80px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  color: #f94c1b;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.card-content {
  background: #fff2bd;
  border-radius: 20px;
  height: 180px;
  padding: 25px 15px;
  position: relative;
  z-index: 2;
  overflow: visible;
  clip-path: inset(-200px 0px 0px 0px round 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.card-content h3 {
  color: #f25424;
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  line-height: 1.2;
  position: relative;
  z-index: 10;
  padding-right: 50px;
  /* Provide natural padding without forcing narrow columns */
}

.card-content img {
  position: absolute;
  bottom: 0px;
  right: 5px;
  height: 170px;
  object-fit: contain;
  z-index: 5;
}

/* Specific Image Fixes for Desktop Overlaps */
.step-card:nth-child(1) .card-content img {
  height: 190px;
  right: 15px;
}

.step-card:nth-child(3) .card-content img {
  height: 140px;
  right: 10px;
}

.step-card:nth-child(5) .card-content img {
  height: 190px;
  right: 5px;
}

.step-card:nth-child(7) .card-content img {
  height: 200px;
  /* Scaled cleanly so he sits perfectly inside */
  right: -30px;
  bottom: -10px;
}

.arrow-htu {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.arrow-htu img {
  background: #f25424;
  border-radius: 50%;
  width: 35px;
  padding: 10px;
}

/* ===============================
   HOW TO USE - MOBILE LAYOUT
================================ */
@media (max-width: 900px) {
  .how-to-use {
    padding: 0px 10px;
  }

  .steps-container {
    flex-direction: column;
    align-items: flex-end;
    /* Push cards to right */
    gap: 45px;
    padding-left: 10px;
    padding-right: 15px;
    /* Minimal edge padding */
  }

  .step-card {
    width: calc(100% - 120px);
    /* Fill screen BUT always reserve 120px on left */
    max-width: 380px;
    margin: 0;
  }

  .big-number {
    left: -130px !important;
    top: 5px;
    /* left: auto; */
    /* Clear any left value */
    right: 100%;
    /* Anchor right edge strictly to card's left edge */
    margin-right: 15px;
    /* Gentle space holding it off the card */
    transform: none;
    font-size: 90px;
    /* Big crisp number */
    line-height: 0.8;
  }

  .card-content {
    height: 160px;
    padding: 20px 15px;
  }

  .card-content h3 {
    font-size: 21px;
  }

  .step-card:nth-child(1) .card-content img {
    height: 190px;
    right: 5px;
  }

  .step-card:nth-child(3) .card-content img {
    height: 140px;
    /* Spoon sits above glass */
    right: 5px;
  }

  .step-card:nth-child(5) .card-content img {
    height: 190px;
    right: 5px;
  }

  .step-card:nth-child(7) .card-content img {
    height: 220px;
    right: -15px;
    bottom: -15px;
  }

  .arrow-htu {
    display: none;
    /* Hide arrows on mobile completely */
  }
}

/* ===============================
   WATCH SECTION (VIDEO CAROUSEL)
================================ */
.watch-section-powder {
  margin-top: 40px;
  padding: 0px 20px;
  text-align: center;
  /* background-color: #F8F7F0; Match page background */
  overflow: hidden;
}

.watch-slider-powder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 901px) {
  .how-to-use {
    padding-left: 5%;
    padding-right: 5%;
  }

  .watch-section-powder {
    padding-left: 5%;
    padding-right: 5%;
  }

  .watch-slider-powder {
    max-width: 1200px;
    /* gap: 20px; */
    gap: 5px;
  }

  .slide-side-powder {
    width: 200px;
  }

  .slide-main-powder {
    width: min(560px, 50vw);
  }

  .left-icon button,
  .right-icon button {
    padding: 6px;
  }
}

/* SIDE IMAGES */
.slide-side-powder {
  width: 250px;
  flex-shrink: 0;
}

.slide-side-powder .watch-frame img {
  width: 100%;
  border-radius: 18px;
  opacity: 0.4;
  object-fit: cover;
  display: block;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

/* MAIN IMAGE */
.slide-main-powder {
  position: relative;
  width: 600px;
  flex-shrink: 0;
}

.slide-main-powder .watch-frame img {
  width: 100%;
  border-radius: 20px;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  display: block;
}

.slide-main-powder .watch-frame img:hover {
  transform: scale(1.02);
}

/* PLAY BUTTON */
.play-button-powder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  /* background: white; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.play-button-powder:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button-powder img {
  width: 78px;
  /* Adjust size of play triangle */
}

/* ARROWS */
.left-icon button,
.right-icon button {
  background: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  padding: 10px;
  opacity: 0.7;
}

.left-icon button img,
.right-icon button img {
  width: 35px;
  /* Properly scale the SVG arrows */
  transition: transform 0.2s ease;
}

.right-icon button img {
  transform: scaleX(-1);
  /* Flip the backward arrow to point right */
}

.left-icon button:hover,
.right-icon button:hover {
  transform: scale(1.2);
  opacity: 1;
}

/* ===============================
   FAQ SECTION
================================ */
.faq-section-powder {
  padding: 60px 10px;
  /* background-color: #F8F7F0; */
}

.faq-container-powder {
  background: #feecdc;
  border-radius: 20px;
  padding: 60px 200px;
  max-width: 1200px;
  margin: auto;
}

.faq-title-powder {
  text-align: center;
  font-size: 44px;
  font-family: "Oswald", sans-serif;
  margin-bottom: 40px;
  color: #4b3f35;
  text-transform: uppercase;
  font-weight: 500;
}

.faq-title-powder span {
  font-family: "Oswald", sans-serif;
  color: #f25424;
}

.faq-accordion-powder {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item-powder {
  border-radius: 12px;
  padding: 11px 10px;
  background: transparent;
  transition: 0.3s linear;
}

.faq-item-powder.active {
  background: #f25424;
  color: white;
}

.faq-question-powder {
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question-powder h3 {
  color: #493e34;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

.arrow-powder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon-img {
  width: 24px;
  transition: 0.3s linear;
}

.faq-item-powder.active .faq-icon-img {
  filter: brightness(0) invert(1);
}

.faq-item-powder.active .faq-question-powder h3 {
  color: #fff;
}

/* .faq-answer-powder {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    display: none;
    font-weight: 300;
    
}

.faq-item-powder.active .faq-answer-powder {
    display: block;
} */

/* 1. Set the initial state to hidden but animatable */
.faq-answer-powder {
  max-height: 0;
  overflow: hidden;
  /*transition: all 0.3s linear;*/
  display: block !important; /* Overwrite your display: none */
  padding-top: 0px;
  padding-bottom: 0;
  font-size: 14px;
  font-weight: 350;
}

/* 2. Set the expanded state */
.faq-item-powder.active .faq-answer-powder {
  max-height: 200px;
  padding-top: 15px;
}

/* 3. Ensure the container doesn't snap */
.faq-item-powder {
 /* transition: all 0.3s linear;*/
}

/* ===============================
   FAQ SECTION - MOBILE
================================ */
@media (max-width: 900px) {
  .faq-section-powder {
    margin-top: 20px;
    padding: 0px;
  }

  .faq-container-powder {
    padding: 35px 20px;
    border-radius: 18px;
  }

  .faq-title-powder {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  .faq-question-powder h3 {
    font-weight: 400 !important;
    font-size: 18px;
    line-height: 1.4;
  }

  .faq-answer-powder {
    font-size: 14px;
  }

  .faq-item-powder {
    padding: 15px 15px;
  }

  .faq-accordion-powder {
    gap: 10px;
  }
}

/* ===============================
   WHERE TO BUY SECTION
================================ */
/* ===============================
   WHERE TO BUY SECTION
================================ */
.where-buy {
  padding: 0px 20px 40px;
  background-color: transparent;
  /* Seamless blend */
  text-align: center;
}

.where-title {
  font-family: "Oswald", sans-serif;
  font-size: 45px;
  color: #4b3f35;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.where-title span {
  font-family: "Oswald", sans-serif;
  color: #f25424;
}

.where-subtitle {
  font-family: "Poppins", sans-serif;
  color: #666;
  font-size: 18px;
  margin-bottom: 50px;
  font-weight: 400;
}

.buy-platforms {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.buy-btn {
  font-family: oswald, sans-serif !important;
  font-weight: 500 !important;
}

.platform-card {
  background-color: white;
  border-radius: 12px;
  padding: 15px 25px;
  box-shadow: 0 5px 12px #f94c1b33;
  /* Subtle peach/orange glow shadow */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 190px;
  min-width: 170px;
}

.platform-card img {
  max-height: 43px;
  max-width: 130px;
  object-fit: contain;
}

/* ===============================
   FOOTER
================================ */
footer {
    background-color: transparent;
    padding: 40px 20px 20px;
}

@media (min-width: 901px) {
    footer {
        padding-left: 5%;
        padding-right: 5%;
    }
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    /* margin: 0 auto 40px; */
    /* 2 april */
    margin: 0 auto 20px;
    gap: 30px;
}

.footer-col.left {
    flex: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-col.left img {
    margin-top: 5px;
}

.footer-col.left p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.footer-col.center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-col.center img {
    width: 180px;
    /* Scaling logo to proper desktop proportion */
    max-width: 100%;
}

/* .footer-col.right {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
} */
/* 2 april */
.footer-col.right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 60px;
    margin-top: 15px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.footer-ai-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #555;
    margin-top: 10px;
        padding-right: 10px;
}

.ai-star {
    background: #F25424;
    color: white;
    border-radius: 50%;
    /* width: 20px;
  height: 20px; */
    /* 2 april */
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 10px; */
    /* 2 april */
    font-size: 14px;
    padding-top: 5px;
    /* font-weight: bold; */
}

/* Desktop orange pill */
.footer-bottom {
    background: #F25424;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-family: 'Poppins', sans-serif;
    /* font-size: 12px; */
    /* 2 april */
    font-size: 14px;
}

.privacy-tag a{
    color: white !important;
    text-decoration: none;
  
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.socials a:hover {
    opacity: 0.8;
}

.foot-right,
.foot-left {
    display: flex;
    align-items: center;
}

.foot-left span,
.foot-right a,
.foot-right span {
    color: white;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.foot-right a {
    margin-right: 30px;
}

@media  (max-width:900px) {
    /* Footer Restructure */
    footer {
        padding: 30px 10px 20px;
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }

    /* Unwrap ONLY the center and right to splice their children */
    .footer-col.center,
    .footer-col.right {
        display: contents;
    }

    /* Dynamic HTML Ordering exactly matching image */
    .footer-col.center img {
        order: 1;
        margin-bottom: 5px;
        width: 140px;
    }

    .footer-links {
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .footer-links a {
        font-size: 11px;
    }

    /* Keep Location securely bounded */
    .footer-col.left {
        order: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 8px;
        /* Tightly couples the Icon and Address */
        margin-top: 15px;
    }

    .footer-col.left img {
        height: 35px !important;
        margin: 0;
    }

    .footer-col.left p {
        text-align: center;
        font-size: 14px;
        line-height: 1.6;
        /* max-width: 95%; */
        margin: 0;
    }

    .footer-ai-label {
        order: 4;
        margin-bottom: -10px;
        font-size: 11px;
    }

    /* Socials Orange Pill Injection */
    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* gap: 12px; */
        gap: 5px;
        background: transparent;
        width: 100%;
        padding: 0px 0;
        /* margin-bottom: 20px; */
    }

        .footer-bottom .privacy-tag {
        order: 2;
        margin-top: 10px;
      
    }
        .footer-bottom .privacy-tag a {
       
        color: #493E34 !important;
    }
    .foot-left,
    .foot-right {
        display: contents;
    }

    .socials {
        order: 1;
        background: #F25424;
        width: 95%;
        max-width: 350px;
        margin: 0 auto;
        border-radius: 40px;
        padding: 16px 0;
        justify-content: center;
        gap: 20px;
    }

    .foot-right a {
        order: 2;
        color: #555;
        font-size: 10px;
        margin: 5px 0 0 0;
    }

    .foot-left span {
        order: 3;
        color: #555;
        font-size: 10px;
        /* margin-top: 15px; */
        /* border-top: 1px solid #e0e0e0; */
        padding-top: 15px;
        width: 100%;
    }

    .foot-right .agency {
        order: 4;
        color: #555;
        font-size: 10px;
    }

    /* Copyright text color on mobile */
    .footer-bottom>span {
        color: #333;
        font-size: 11px;
        text-align: center;
    }

    .footer-bottom>span:first-child {
        order: 3;
        /* margin-top: 15px; */
        /* border-top: 1px solid #e0e0e0; */
        /* padding-top: 15px; */
        width: 100%;
    }

    .footer-bottom>span:last-child {
        order: 4;
    }
}

/* ===============================
   WHERE TO BUY / FOOTER MOBILE
================================ */

@media (max-width: 480px) {
  .buy-platforms {
    gap: 15px;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  /* Where To Buy Stack */
  .where-buy {
    padding: 50px 10px 30px;
  }

  .buy-platforms {
    gap: 12px;
    align-items: stretch;
    justify-content: flex-start;
  }

  .platform-card {
    min-width: 120px;
    width: calc(50% - 6px);
    /* Perfect 2-column grid */
    padding: 15px 10px;
    height: 70px;
    border-radius: 10px;
  }

  /* Footer Restructure */
  footer {
    padding: 30px 10px 20px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  /* Unwrap ONLY the center and right to splice their children */
  .footer-col.center,
  .footer-col.right {
    display: contents;
  }

  /* Dynamic HTML Ordering exactly matching image */
  .footer-col.center img {
    order: 1;
    margin-bottom: 5px;
    width: 140px;
  }

  .footer-links {
    order: 2;
    width: 100%;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .footer-links a {
    font-size: 11px;
  }

  /* Keep Location securely bounded */
  .footer-col.left {
    order: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    /* Tightly couples the Icon and Address */
    margin-top: 15px;
  }

  .footer-col.left img {
    height: 35px !important;
    margin: 0;
  }

  .footer-col.left p {
    text-align: center;
    font-size: 11px;
    line-height: 1.6;
    max-width: 95%;
    margin: 0;
  }

  .footer-ai-label {
    order: 4;
    margin-bottom: 5px;
    font-size: 11px;
  }

  /* Socials Orange Pill Injection */
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: transparent;
    width: 100%;
    padding: 0px 0;
    /* margin-bottom: 20px; */
  }

  .foot-left,
  .foot-right {
    display: contents;
  }

  .socials {
    order: 1;
    background: #f25424;
    width: 95%;
    max-width: 350px;
    margin: 0 auto;
    border-radius: 40px;
    padding: 16px 0;
    justify-content: center;
    gap: 20px;
  }

  .foot-right a {
    order: 2;
    color: #555;
    font-size: 10px;
    margin: 5px 0 0 0;
  }

  .foot-left span {
    order: 3;
    color: #555;
    font-size: 10px;
    /* margin-top: 15px; */
    /* border-top: 1px solid #e0e0e0; */
    padding-top: 15px;
    width: 100%;
  }

  .foot-right .agency {
    order: 4;
    color: #555;
    font-size: 10px;
  }

  /* Copyright text color on mobile */
  .footer-bottom > span {
    color: #333;
    font-size: 11px;
    text-align: center;
  }

  .footer-bottom > span:first-child {
    order: 3;
    /* margin-top: 15px; */
    /* border-top: 1px solid #e0e0e0; */
    /* padding-top: 15px; */
    width: 100%;
  }

  .footer-bottom > span:last-child {
    order: 4;
  }
}

/* DOTS */
.slider-dots-powder {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot-powder {
  width: 6px;
  height: 6px;
  background: #cbd0d4;
  display: inline-block;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
}

.dot-powder.active {
  background: #f94c1b;
  width: 8px;
  height: 8px;
}

/* ===============================
   WATCH SECTION - MOBILE
================================ */
@media (max-width: 900px) {
  .watch-section-powder {
    padding: 20px 7px;
  }

  .watch-slider-powder {
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .slide-side-powder {
    display: none;
    /* Hide side-cropped images entirely */
  }

  .left-icon,
  .right-icon {
    display: none;
    /* Hide interactive arrows */
  }

  .slide-main-powder {
    width: min(100%, 500px);
    max-width: 500px;
    /* Sensible constraint */
    margin: 0 auto;
    padding: 0 10px;
    /* Breathe off phone edges */
  }

  .slide-main-powder .watch-frame img {
    border-radius: 16px;
  }
  
  .play-button-powder {
    width: 60px;
    height: 60px;
  }
  
  .play-button-powder img {
    width: 58px;
  }
}

@media (max-width:900px) {
    .swiper{
    min-height: 250px!important;
  }
  .watch-frame {
    width: 100%!important;
    height: 220px!important;
  }
}
.watch-frame {
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  background-size: cover;
  width: 600px;
}

.swiper {
  min-height: 400px;
  max-width: 1300px;
}
.swiper-pagination {
  transform: translateY(10px) !important;
}
.swiper-pagination-bullet-active {
  background-color: #f94c1b !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-button-prev {
  left: 22% !important;
}

.swiper-button-next {
  right: 24% !important;
}
.swiper-slide-prev .watch-frame {
  transform: translateX(100px) scale(0.8);
  opacity: 0.5;
}
.swiper-slide-next .watch-frame {
  transform: translateX(-100px) scale(0.8);
  opacity: 0.5;
}
.swiper-slide-next img,
.swiper-slide-prev img {
  display: none;
}

.swiper-slide.swiper-slide-active {
  margin-left: 1%;  
}
