@font-face {
  font-family: "Corda";
  src: url("CordaLig/Hoftype\ -\ Corda-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Corda";
  src: url("CordaLig/Hoftype\ -\ Corda-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Corda";
  src: url("CordaLig/Hoftype\ -\ Corda-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Corda";
  src: url("CordaLig/Hoftype\ -\ Corda-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Corda";
  src: url("CordaLig/Hoftype\ -\ Corda-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Corda";
  src: url("CordaLig/Hoftype\ -\ Corda-ExtraLightItalic.otf") format("opentype");
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: "Corda";
  src: url("CordaLig/Hoftype\ -\ Corda-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Corda";
  src: url("CordaLig/Hoftype\ -\ Corda-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Corda";
  src: url("CordaLig/Hoftype\ -\ Corda-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Corda";
  src: url("CordaLig/Hoftype\ -\ Corda-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}

body {
  font-family: "Corda", sans-serif;
  background: #fff;
  /* background: #fdf4e0; */
  color: #333;
  overflow-x: hidden;
}

:root {
  --gold: #d4af37;
  --light-gold: #f4e4a6;
  --dark-gold: #b8941f;
  --cream: #f8f4e9;
  --brown: #8b4513;
  --light-brown: #a67c52;
  --dark-green: #2f4f2f;
  --light-green: #90a955;
}

* {
  padding: 0;
  margin: 0;
}
/* Header background */
.header-bg {
  background: #a5885d;
  padding: 10px 20px;
}

/* Layout container */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Social icons */
.social-icons a {
  margin-right: 15px;
  color: white;
  font-size: 20px;
  transition: transform 0.2s, color 0.2s;
}
.social-icons a:hover {
  transform: scale(1.2);
  color: #333;
}

.social-icons1 a {
  margin-left: 15px;
  color: white;
  font-size: 26px;
  transition: transform 0.2s, color 0.2s;
}
.social-icons1 a:hover {
  transform: scale(1.2);
  color: #333;
}

/* Navigation links */
.header-nav {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.header-nav a {
  font-size: 18px;
  margin-left: 20px;
  text-decoration: none;
  color: white;
  padding: 8px 16px; /* Adds button padding */
  border-radius: 5px; /* Rounded corners */
  transition: all 0.3s ease; /* Smooth transition for hover */
  display: inline-block; /* Makes padding and background work properly */
}

.header-nav a:hover {
  color: white; /* Keep text white */
  background-color: #333; /* Dark background on hover */
  transform: translateY(-2px); /* Slight lift effect */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Soft shadow */
}

/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-overlay.active {
  display: block;
  opacity: 1;
}

.close-btn1 {
  width: 0;
  height: 0;
  border-radius: 50%;
  color: white;
  /* background: linear-gradient(
    135deg,
    rgba(223, 178, 94, 0.35) 0%,
    rgba(255, 215, 140, 0.6) 100%
  ); */
  opacity: 0;
  z-index: 0;
}

/* Mobile: hamburger and off-canvas nav */
@media (max-width: 991px) {
  .close-btn1 {
    position: absolute;
    top: 5%;
    right: 20%;
    display: block;
    opacity: 1;
    cursor: pointer;
  }
  .hamburger {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: #a5885d;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    padding: 40px 30px;
    transition: right 0.4s ease;
    z-index: 1002;
  }

  .header-nav.active {
    right: 0;
  }

  .header-nav a {
    margin: 15px 0;
    font-size: 20px;
    color: white;
    width: 100%;
    border-bottom: 1px solid white;
  }
}

/* Animate hamburger into an “X” */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

.hero {
  text-align: center;
  padding: 40px 0px;
  /* height: 100vh; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;

  background: url(img/new-white.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-weight: 700;
  color: #1a237e;
}

.hero h2 {
  color: #283593;
  font-weight: 600;
}

.hero-bg {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 120%;
  z-index: 0;
  opacity: 0.4; /* softer effect */
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #0c0c5c;
  font-family: "Georgia", serif;
  max-width: 700px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-btn {
  display: inline-block;
  background: #0c0c5c;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #b69056;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.out-top {
  animation: rotate 35s linear infinite;
  transform-origin: 13px 25px;
}

.in-top {
  animation: rotate 25s linear infinite;
  transform-origin: 13px 25px;
}

.out-bottom {
  animation: rotate 45s linear infinite;
  transform-origin: 84px 93px;
}

.in-bottom {
  animation: rotate 30s linear infinite;
  transform-origin: 84px 93px;
}

.myths {
  font-size: 32px;
  word-spacing: 2px;
}

@media (max-width: 767px) {
  .myths {
    font-size: 26px;
    word-spacing: 2px;
  }
}

.rotating-words {
  display: inline-flex;
  gap: 10px;
  position: relative;
  min-width: 250px;
}

.word {
  opacity: 0;
  transform: translateX(20px);
  transition: all 1s ease;
  white-space: nowrap;
}

.word.show {
  opacity: 1;
  transform: translateY(0);
}

.rotating-words.fade-out .word {
  opacity: 0;
  transform: translateX(20px);
  transition: all 1s ease;
}

.btn-custom {
  background-color: #b48a2c;
  color: #fff;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
}

.btn-custom:hover {
  background-color: #a17620;
  color: #fff;
}

.challenge-section {
  text-align: center;
  padding: 60px 0px 60px 0px;
}

.challenge-section h2 {
  font-size: 32px;
}
.challenge-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #d28d00;
  margin: 10px auto 0;
  border-radius: 2px;
}
.challenge-section h2 span {
  color: #d28d00;
  font-size: 36px;
}

.challenge-section p {
  color: #bbbaba;
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 20px;
}

.rewards-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* spacing between rice and badge */
  padding: 40px 0;
}

.challenge-badge {
  position: relative;
  width: 650px; /* bigger badge */
  height: 650px;
}

.challenge-badge img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; /* scale up badge image */
}

.challenge-badge svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: rotate(-90deg); /* ensures U-shape text */
}

.rice-img {
  max-width: 350px; /* limit width */
  height: auto; /* keep aspect ratio */
}

.certificate-img {
  max-width: 500px; /* cap size */
  width: 100%; /* shrink on smaller screens */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 📱 Tablet & small laptops */
@media (max-width: 1200px) {
  .rice-img {
    max-width: 120px;
  }
  .certificate-img {
    max-width: 400px;
  }
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .rice-img {
    max-width: 80px;
  }
  .certificate-img {
    max-width: 300px;
  }
}

.daily-challenge {
  background-color: #060965;
  color: white;
  padding: 60px 20px;
  text-align: center;
  overflow: visible;
  height: 400px;
}

.daily-challenge h5 {
  font-weight: 400;
  letter-spacing: 10px;
  font-size: 30px;
}

.orange {
  color: #ff9000;
}

.daily-challenge img {
  display: block;
  /* width: 100%; */
  height: auto;
  position: relative;
  top: -10px;
}

footer {
  text-align: center;
  padding: 26px;
  border-top: 1px solid #ddd;
  font-size: 16px;
  background-color: #a5885d;
  color: white;
  letter-spacing: 1px;
}

.slider-section {
  padding: 60px 0 100px 0;
  /* background: white; */
}

/* ================= Tablet & Above (3D Panorama) ================= */
.carousel {
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  height: clamp(610px, 50vh, 760px);
  perspective: 1200px;
  position: relative;
  display: none;
  /* hidden by default */
}

.ring {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  position: absolute;
  width: clamp(170px, 42vw, 350px);
  aspect-ratio: 4 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
  /* box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12); */
  cursor: pointer;
  will-change: transform, opacity;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Overlay */
.card .overlay {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0, 0, 0, 0.4); /* semi-transparent dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
  z-index: 999;
  /* transform: scaleX(-1); */
}

/* Play button */
.card .overlay i {
  border: 6px solid white;
  border-radius: 50%;
  padding: 40px;
  font-size: 40px;
  color: #fff;
  transition: transform 0.3s;
}

@media (max-width: 768px) {
  .card .overlay {
    transform: scaleX(1);
  }

  .card .overlay i {
    border: 6px solid white;
    border-radius: 50%;
    padding: 20px;
    font-size: 40px;
    color: #fff;
    transition: transform 0.3s;
  }
}
/* Hover effect */
.card:hover .overlay {
  background: rgba(0, 0, 0, 0.6);
}

.card:hover .overlay i {
  transform: scale(1.1);
}

.card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* pointer-events: none; */
  /* transform: scaleX(-1); */
}

.label {
  position: relative;
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-weight: 600;
  text-align: center;
  transform-origin: left;
  transform: rotateY(90deg);
}

.mobile-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.mobile-track {
  display: flex;
  gap: 50px;
  animation: scroll 30s linear infinite;
}

.mobile-slider:hover .mobile-track {
  animation-play-state: paused; /* pause scroll on hover */
}

.mobile-slider .card {
  min-width: 180px;
  aspect-ratio: 3/4;
  flex-shrink: 0;
  position: relative;
}

.mobile-slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s;
}

.mobile-slider .card:hover .overlay {
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .mobile-track {
    gap: 20px;
  }
  .mobile-slider .card {
    min-width: 140px;
  }
}

/* ================= Responsive Switch ================= */
@media (min-width: 768px) {
  .carousel {
    display: none;
  }

  .mobile-slider {
    display: flex;
  }
}
.dark-yellow {
  color: #d28d00;
}
/* .yellow {
  color: ;
} */

.corda {
  font-family: "corda";
  font-weight: 400;
}

.animated-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 28px;
  border: 4px solid transparent;
  font-size: 20px;
  background: #a5885d;
  border-radius: 50px;
  font-weight: 400;
  color: white;
  box-shadow: 0 0 0 2px #a5885d;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 22px;
  fill: white;
  z-index: 2;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #a5885d;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 3;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: white; /* Bootstrap dark */
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: white;
}

.animated-button:active {
  transform: scale(0.95);
  box-shadow: 0 0 0 4px #a5885d;
  background-color: #a5885d;
  border-color: white !important;
  color: white !important;
}

.animated-button:hover .circle {
  width: 300px;
  max-width: 360px;
  height: 220px;
  opacity: 1;
}

.animated-button-w {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 28px;
  border: 4px solid transparent;
  font-size: 20px;
  background: #ffffff;
  border-radius: 50px;
  font-weight: 400;
  color: #a5885d;
  box-shadow: 0 0 0 2px #a5885d;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button-w svg {
  position: absolute;
  width: 22px;
  fill: #a5885d;
  z-index: 2;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button-w:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #a5885d; /* Bootstrap dark */
  border-radius: 12px;
}

.animated-button-w:active {
  transform: scale(0.95);
  box-shadow: 0 0 0 4px white;
  background-color: white;
  border-color: #a5885d !important;
  color: #a5885d !important;
}

.animated-button-w .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button-w:hover svg {
  fill: #a5885d;
}

.rice-challenge {
  padding: 100px;
}

.challenge-title {
  color: #d78f47; /* golden heading */
  /* font-weight: 700; */
  letter-spacing: 2px;
  /* font-size: 36px; */
}

.heading-gap {
  column-gap: 100px;
}

@media (max-width: 768px) {
  .heading-gap {
    gap: 4px;
    row-gap: 4px;
  }
}

.challenge-subtitle {
  color: #555;
  font-size: 24px;
}

.challenge-subtitle .highlight {
  font-size: 24px;
  color: #c58a1c;
  /* font-weight: 600; */
}

.challenge-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.challenge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.border-primary {
  border-color: #202080 !important; /* dark blue border */
}

.bg-primary {
  background-color: #110d85 !important; /* match screenshot blue */
}

.bg-warning {
  background-color: #b69056 !important; /* golden brown */
}

.blue {
  color: #110d85;
}

a {
  color: #110d85;
}

.quiz-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  font-family: "Corda", serif;
}

.quiz-card {
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  background: linear-gradient(145deg, #fffdf7, #f8f4ef);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  padding: 2rem 2rem 3rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.quiz-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
}

.quiz-card h5 {
  color: #0c0c5c;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.quiz-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quiz-card input,
.quiz-card select {
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 12px;
  border: 2px solid #b69056;
  outline: none;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
}

.quiz-card input:focus,
.quiz-card select:focus {
  border-color: #0c0c5c;
  box-shadow: 0 0 0 3px rgba(182, 144, 86, 0.2);
}

#sendOtpBtn {
  background: linear-gradient(90deg, #0c0c5c, #2a2a70);
  color: #fff;
}

#sendOtpBtn:hover {
  background: linear-gradient(90deg, #2a2a70, #0c0c5c);
  transform: translateY(-2px);
}

#verifyOtpBtn {
  background: linear-gradient(90deg, #b69056, #d9b27c);
  color: #fff;
}

#verifyOtpBtn:hover {
  transform: translateY(-2px);
}

#downloadBtn {
  background: linear-gradient(90deg, #0c0c5c, #2a2a70);
  color: #fff;
}

#downloadBtn:hover {
  transform: translateY(-2px);
}

#otpSection {
  animation: fadeInOtp 0.6s ease forwards;
}

@keyframes fadeInOtp {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  border: 2px solid #b69056;
  border-radius: 12px;
  padding: 14px 44px 14px 18px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23b69056' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'><path stroke='none' d='M0 0h24v24H0z' fill='none'/><path d='M15 11l-3 3l-3 -3'/><path d='M12 3a9 9 0 1 0 0 18a9 9 0 0 0 0 -18z'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 0px center !important;
  background-size: 45px 30px !important;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Limit dropdown height and enable scroll */
select.country-code {
  max-height: 100px; /* visible dropdown height */
  overflow-y: auto; /* scroll if more options */
}

/* Improves visual style */
.phone-input-wrapper select {
  /* border-radius: 6px; */
  cursor: pointer;
}

.form-select:focus {
  border-color: #0c0c5c;
  box-shadow: 0 0 0 3px rgba(182, 144, 86, 0.2);
  outline: none;
}

/* Step indicators */
.quiz-step {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: #b69056;
  color: #fff;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Fade animation tweaks */
.quiz-card.fade-out {
  animation: fadeOut 0.4s forwards;
}
.quiz-card.fade-in {
  animation: fadeIn 0.4s forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-30px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#rice-confetti {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.dare-link {
  text-decoration: none;
  color: #535151;
  transition: all 0.3s ease;
  display: inline-block;
}

.dare-link span {
  display: inline-block;
  color: #d3954f;
  transition: transform 0.3s ease;
}

/* Hover effects */
.dare-link:hover {
  color: #d3954f; /* text turns golden */
  transform: translateY(-2px); /* slight lift */
}

.dare-link:hover span {
  animation: bounceArrow 0.6s infinite alternate;
}

/* Arrow bounce keyframes */
@keyframes bounceArrow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(8px);
  }
}

.pledge-group {
  margin: 0;
}

.pledge-btn {
  text-decoration: none;
  color: #d3954f; /* golden */
  font-size: 22px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 6px;
}

.pledge-btn:hover {
  color: #fff;
  background-color: #d3954f; /* golden background on hover */
}

.divider {
  font-family: sans-serif;
  font-size: 32px;
  color: white;
  /* margin: 0 6px; */
  vertical-align: middle;
}

.pledge-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* space between rows */
}

.pledge-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left | divider | right */
  align-items: center;
  width: 100%;
  max-width: 500px; /* adjust as needed */
  text-align: center;
}

.pledge-btn {
  color: #d38b4c;
  font-weight: bold;
  text-decoration: none;
}

.divider {
  margin: 0 12px;
  color: #fff;
}

/* .upload-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;  
} */

.upload-box {
  width: 350px;
  height: auto;
  border-radius: 12px;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s;
  background: #f9f9f9;
}

.border-box {
  border: 2px dashed #aaa;
  border-radius: 12px;
  padding: 20px;
}

.upload-box:hover {
  border-color: #6c63ff;
  background: #f0f0ff;
}

.upload-icon {
  font-size: 40px;
  color: #6c63ff;
  margin-bottom: 10px;
}

.upload-box p {
  font-size: 14px;
  color: #333;
}
.upload-box .click-here {
  color: #6c63ff;
  font-weight: bold;
  cursor: pointer;
}

.upload-box small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #666;
}

/* Vertical divider for desktop */
.divider-1 {
  width: 1px;
  background-color: #b69056;
  margin: 0 15px;
  padding: 1px;
}

/* Horizontal divider for mobile */
.divider-horizontal {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 20px 0;
}

.challenge-section {
  width: 100%;
}

.left-side {
  background: transparent; /* use parent background */
}

.right-side {
  background: transparent; /* use parent background */
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.grey-blue {
  width: 100%;
  background: linear-gradient(to right, #f2f2f2 50%, #060965 50%);
}

/* Mobile view (stacked top/bottom) */
@media (max-width: 767px) {
  .grey-blue {
    background: linear-gradient(to bottom, #f2f2f2 50%, #060965 50%);
  }
}

.challenge-img {
  width: 410px;
}

.logo-img {
  width: 240px;
}

.text-32 {
  font-size: clamp(16px, 1.5vw + 8px, 32px) !important;
}

.text-32 .challenge-title {
  font-size: clamp(16px, 1.5vw + 8px, 32px) !important;
}

/* Mobile view (stacked top/bottom) */
@media (max-width: 767px) {
  .challenge-img {
    width: 250px;
  }

  .daily-challenge {
    height: max-content;
  }

  .rice-challenge {
    margin: 0px 0;
    padding: 20px;
  }
  .hero {
    padding: 60px 20px 40px 20px;
    height: auto;
  }
  .challenge-section {
    padding: 20px 20px;
    margin-bottom: 40px;
  }
  .challenge-section h2 {
    font-size: 32px !important;
  }
  .challenge-section h2 span {
    font-size: 32px;
  }

  /* .text-32 {
    font-size: 20px;
  }

  .text-32 .challenge-title {
    font-size: 20px;
  } */

  .logo-img {
    width: 180px;
    margin-bottom: 0px !important;
  }
  .card img {
    transform: scaleX(1);
  }
}

/* Modal Content Styling */
.custom-modal {
  width: 500px;
  height: 620px;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  background: #ffffff;
  background: url(img/img3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.3s ease;
  z-index: 1085; /* force modal content above everything */
}

@media (max-width: 768px) {
  .custom-modal {
    background: url(img/mobile-img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.modal {
  --bs-modal-width: 550px;
}

/* Modal Content Styling */
.custom-modal1 {
  width: 700px;
  /* height: 620px; */
  border-radius: 16px;
  /* padding: 2rem 1.5rem; */
  background: #ffffff;
  /* background: url(img/img3.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.3s ease;
  z-index: 1085; /* force modal content above everything */
}

.custom-modal1 .modal-body {
  padding: 0;
}

.custom-modal1 .quiz-card {
  border-radius: 15px;
}
@media (max-width: 768px) {
  .custom-modal1 {
    background: url(img/mobile-img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

/* Close Button Styling */
.custom-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #a5885d;
  color: white;
  border: 1px solid white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.25rem;
  line-height: 36px;
  text-align: center;
  border: none;
  cursor: pointer;
  opacity: 1;
  z-index: 1090; /* make sure it's above modal content */
  transition: all 0.2s ease;
}

.custom-close:hover {
  background: #a5885d;
  color: #fff;
}

/* Image inside modal */
.challenge-img {
  width: 350px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* Smooth Modal Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Fullscreen Fix */
@media (max-width: 576px) {
  .custom-modal {
    border-radius: 0;
    padding: 1.5rem 1rem;
    width: 100%;
  }

  .custom-close {
    top: 10px;
    right: 10px;
  }
}

/* Ensure animated button works inside modal */
.animated-button {
  position: relative;
  z-index: 1;
}

.animated-button .circle {
  pointer-events: none; /* prevents overlay from blocking clicks */
}

/* Backdrop behind modal */
.modal-backdrop {
  z-index: 1040 !important;
  background-color: rgba(0, 0, 0, 0.5); /* softer dim */
}

/* Modal wrapper always above backdrop */
.modal {
  z-index: 1055 !important;
}

/* Modal content above modal wrapper */
.modal-dialog,
.modal-content {
  position: relative;
  z-index: 1080 !important;
}

/* Plain button base */
.plain-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-size: 16px;
  text-decoration: underline;
  /* font-weight: 600; */
  white-space: nowrap;

  color: #4d4d4d; /* fallback */
}

/* dynamic custom modal  */

.dynamic-challenge-options .challenge-card.active {
  background-color: #a5885d;
  box-shadow: 0 4px 20px rgb(17 13 133 / 30%);
  transform: scale(1.05);
  transition: all 0.3s ease;
  color: white !important;
  border: none;
}

.dynamic-challenge-options .challenge-card {
  cursor: pointer;
  transition: all 0.3s ease;
  color: #110d85 !important;
  border-color: #202080 !important; /* dark blue border */
}

.congrats-image {
  width: 330px;
}

.counter-container {
  text-align: center;
}

.smooth-counter {
  display: inline-flex;
  /* gap: 3px; */
  background-color: #a88456;
  padding: 10px 25px;
  border-radius: 50px;
}

.digit {
  position: relative;
  overflow: hidden;
  width: 28px;
  height: 40px;
  text-align: center;
}

.digit-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: transform 0.4s ease-in-out;
}

.digit span {
  display: block;
  height: 40px;
  line-height: 40px;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
}

.counter-label {
  margin-top: 8px;
  color: #333;
  font-size: 0.9rem;
}

/* Section */
#myth-carousel-section {
  text-align: center;
  padding: 50px 0;
}
.myth-carousel-title {
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
}
.myth-carousel-title span {
  font-size: 32px;
  color: #d28d00;
  margin-bottom: 20px;
  position: relative;
}
.myth-carousel-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #d28d00;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Swiper wrapper */
.myth-carousel-wrapper {
  position: relative;
  /* padding: 20px 40px; */
  /* overflow: visible; */
}
.myth-carousel {
  display: flex;
  /* overflow: hidden; */
}

/* Card Styles */
.myth-card {
  /* width: 50%; */
  height: 280px;
  perspective: 1000px;
}
.myth-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.myth-card:hover .myth-card-inner {
  transform: rotateY(180deg);
}
.myth-card-front,
.myth-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px;
}
.myth-card-back {
  position: relative;
  overflow: hidden;
  padding: 10px;
}

/* .myth-card-back h3 {
  position: absolute;
  color: white;
  bottom: 0;
} */
.myth-card-front {
  /* background: linear-gradient(160deg, #f0e0c6, #e1c6a8); */
  background: url(img/myth-card-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #4b2e15;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.myth-card-back {
  background: url(img/myth-card-bg.png);
  color: #333;
  transform: rotateY(180deg);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
/* .myth-card-back img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  object-fit: cover;
} */

/* Button */
.myth-btn {
  background: #4b2e15;
  color: #fff;
  padding: 8px 16px;
  margin-top: 15px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.myth-btn:hover {
  background: #d69c4f;
}

/* Navigation Arrows */
.myth-nav-prev,
.myth-nav-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  font-size: 80px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}
.myth-nav-prev {
  left: 5px;
}
.myth-nav-next {
  right: 5px;
}

/* FAQ Title */
.faq-title {
  font-size: 32px;
  font-weight: 600;
  color: #d28d00;
  position: relative;
  display: inline-block;
}

.faq-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #d28d00;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Accordion Styling */
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(201, 123, 61, 0.2);
  overflow: hidden;
}

/* Question Button */
.faq-accordion .accordion-button {
  background: #fff;
  color: #000;
  font-weight: 500;
  font-size: 18px;
  padding: 18px 20px;
  border-radius: 8px !important;
  border: 1px solid rgba(201, 123, 61, 0.3);
  box-shadow: none;
}

/* Remove default Bootstrap arrow */
.faq-accordion .accordion-button::after {
  display: none;
}

/* When expanded */
.faq-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: #000;
  border: 1px solid rgba(201, 123, 61, 0.6);
  box-shadow: 0 3px 8px rgba(201, 123, 61, 0.25);
  border-radius: 8px;
}

/* Accordion Body */
.faq-accordion .accordion-body {
  text-align: start;
  background: #fff;
  font-size: 15px;
  color: #000;
  padding: 15px 20px;
  border-top: 1px solid rgba(201, 123, 61, 0.3);
}

.content-section {
  background-color: #8f6a32;
  border-radius: 16px;
  padding: 40px 20px 40px 76px;
}

.content-section .title {
  color: white;
  font-weight: 400;
  font-size: 50px;
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  .content-section {
    padding: 30px 10px 0px 10px;
  }

  .srk-tablet {
    height: 50vh;
  }

  .content-section .title {
    color: white;
    font-weight: 400;
    font-size: 40px;
    text-align: center;
  }
  .content-section .subtitle {
    color: white;
    font-weight: 200;
    font-size: 20px !important;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .content-section {
    padding: 30px 10px 30px 10px;
  }
  .hero .container {
    padding: 3rem 10px 0 10px;
  }
}

.content-section .subtitle {
  color: white;
  font-weight: 200;
  font-size: 24px;
  margin-bottom: 14px;
}
.content-section .subtitle span {
  font-weight: 600;
}

.image-placeholder img {
  position: absolute;
  height: 125%;
  width: 440px;
  object-fit: contain;
  /* top: -52px; */
  bottom: 0;
  right: -2px;
}

.flip-clock {
  text-align: center;
  perspective: 400px;
  margin: 20px auto;
  display: flex;
}
.flip-clock *,
.flip-clock *:before,
.flip-clock *:after {
  box-sizing: border-box;
}

.flip-clock__wrapper {
  width: fit-content;
  border: 1px solid white;
  /* padding-bottom: 1px; */
  padding: 2px;
  height: 100%;
  display: inline-block;
  border-radius: 7px;
  margin: 5px 5px;
}

.flip-clock__wrapper1 {
  width: fit-content;
  /* border: 1px solid white; */
  background-color: white;
  /* padding-bottom: 1px; */
  padding: 2px;
  height: 100%;
  display: inline-block;
  border-radius: 7px;
  margin: 0 5px;
}

.flip-clock__piece {
  display: inline-block;
  margin: 0 5px;
  /* box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3); */
  border-radius: 0.15em 0.15em 0 0;
}
.flip-clock__slot {
  font-size: 1.5vw;
  text-transform: uppercase;
  color: #aaa;
  display: block;
  margin-top: 5px;
}
/* Counter 1 styles */
.card1 {
  display: block;
  position: relative;
  padding-bottom: 0.72em;
  font-size: 34px;
  line-height: 0.95;
  border-radius: 40px;
  /* box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3); */
}
/* Mobile adjustments */
@media (max-width: 768px) {
  .card1 {
    font-size: 26px !important;
  }
  .card__top,
  .card__bottom,
  .card__back::before,
  .card__back::after {
    width: 32.08px !important;
  }
}
.card__top,
.card__bottom,
.card__back::before,
.card__back::after {
  display: block;
  height: 0.72em;
  /* width: 44.7px; */
  color: #8f6a32;
  background: #ffffff;
  padding: 0.25em 0.25em;
  border-radius: 0.15em 0.15em 0 0;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0);
}
.card__bottom {
  color: #8f6a32;
  position: absolute;
  top: 50%;
  left: 0;
  /* border-top: solid 1px #000; */
  background: #fff;
  border-radius: 0 0 0.15em 0.15em;
  pointer-events: none;
  overflow: hidden;
}
.card__bottom::after {
  display: block;
  margin-top: -0.72em;
}
.card__back::before,
.card__bottom::after {
  content: attr(data-value);
}
.card__back {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0%;
  pointer-events: none;
}
.card__back::before {
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.flip .card__back::before {
  animation: flipTop 0.6s cubic-bezier(0.37, 0.01, 0.94, 0.35);
  animation-fill-mode: both;
  transform-origin: center bottom;
}
.flip .card__back .card__bottom {
  transform-origin: center top;
  animation-fill-mode: both;
  animation: flipBottom 1.2s cubic-bezier(0.15, 0.45, 0.28, 1);
}

@keyframes flipTop {
  0% {
    transform: rotateX(0deg);
    z-index: 2;
  }
  0%,
  99% {
    opacity: 0.99;
  }
  100% {
    transform: rotateX(-90deg);
    opacity: 0;
  }
}
@keyframes flipBottom {
  0%,
  50% {
    z-index: -1;
    transform: rotateX(90deg);
    opacity: 0;
  }
  51% {
    opacity: 0.99;
  }
  100% {
    opacity: 0.99;
    transform: rotateX(0deg);
    z-index: 5;
  }
}

/* Counter 2 styles */
.card2 {
  display: block;
  position: relative;
  padding-bottom: 0.72em;
  font-size: 36px;
  line-height: 0.95;
  border-radius: 40px;
  /* box-shadow: 5px 5px 10px rgb(0 0 0 / 30%); */
}
@media (max-width: 768px) {
  .card2 {
    font-size: 26px !important;
  }
  .card__top2,
  .card__bottom2,
  .card__back2::before,
  .card__back2::after {
    width: 32.08px !important;
  }
}
.card__top2 {
  border-bottom: 0px !important;
}
.card__top2,
.card__bottom2,
.card__back2::before,
.card__back2::after {
  display: block;
  height: 0.72em;
  /* width: 44.7px; */
  color: white;
  /* border: 1px solid white; */
  /* border-bottom: 0px; */
  background: #8f6a32;
  padding: 0.25em 0.25em;
  border-radius: 0.15em 0.15em 0 0;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0);
}
.card__bottom2 {
  color: white;
  position: absolute;
  top: 50%;
  left: 0;
  border-top: solid 0px #000;
  background: #8f6a32;
  border-radius: 0 0 0.15em 0.15em;
  pointer-events: none;
  overflow: hidden;
}
.card__bottom2::after {
  display: block;
  margin-top: -0.72em;
}
.card__back2::before,
.card__bottom2::after {
  content: attr(data-value);
  border: 0px;
}
.card__back2 {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0%;
  pointer-events: none;
}
.card__back2::before {
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.flip2 .card__back2::before {
  animation: flipTop2 0.6s cubic-bezier(0.37, 0.01, 0.94, 0.35);
  animation-fill-mode: both;
  transform-origin: center bottom;
}
.flip2 .card__back2 .card__bottom2 {
  transform-origin: center top;
  animation-fill-mode: both;
  animation: flipBottom2 1.2s cubic-bezier(0.15, 0.45, 0.28, 1);
}

@keyframes flipTop2 {
  0% {
    transform: rotateX(0deg);
    z-index: 2;
  }
  0%,
  99% {
    opacity: 0.99;
  }
  100% {
    transform: rotateX(-90deg);
    opacity: 0;
  }
}
@keyframes flipBottom2 {
  0%,
  50% {
    z-index: -1;
    transform: rotateX(90deg);
    opacity: 0;
  }
  51% {
    opacity: 0.99;
  }
  100% {
    opacity: 0.99;
    transform: rotateX(0deg);
    z-index: 5;
  }
}

.counter-label {
  color: white;
  font-size: 20px;
}

.counter-label1 {
  color: rgb(0, 0, 0);
  font-size: 20px;
  margin-top: 18px;
}

.actions {
  /* background: #fff; */
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  border-radius: 30px;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
  /* padding: 10px; */
}

.share-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid #dfb25e;
  border-radius: 30px;
  background: #fff;
  color: #333;
  font-size: 20px;
  /* font-weight: 600; */
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

.share-btn i {
  color: #dfb25e;
  font-size: 22px;
  transition: all 0.4s ease;
  z-index: 2;
}

.btn-text {
  transition: all 0.4s ease;
  z-index: 2;
  color: #110d85;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(223, 178, 94, 0.4) 0%,
    rgba(255, 215, 140, 0.8) 100%
  );
  stroke: url(#ringGrad);
  stroke-width: 6;
  opacity: 0;
  z-index: 0;
}

.progress-ring__track {
  fill: none;
  stroke: rgba(12, 12, 92, 0.05);
  stroke-width: 10;
}

/* Glow + pulse */
.scroll-top-container {
  will-change: transform;
}

@keyframes ringPulse {
  0% {
    filter: drop-shadow(0 6px 12px rgba(165, 132, 73, 0.06));
  }
  50% {
    filter: drop-shadow(0 12px 26px rgba(165, 132, 73, 0.1));
  }
  100% {
    filter: drop-shadow(0 6px 12px rgba(165, 132, 73, 0.06));
  }
}

.scroll-top-container .progress-ring {
  animation: ringPulse 3s ease-in-out infinite;
}

#goTopBtn i {
  /* keep chevron color subtle */
  color: #a5885d;
}

#goTopBtn:hover + .progress-ring .progress-ring__circle,
#goTopBtn:focus + .progress-ring .progress-ring__circle {
  stroke-width: 10;
}

/* Hover glow on container to emphasize CTA */
.floating-buttons .scroll-top-container:hover #goTopBtn {
  box-shadow: 0 18px 40px rgba(165, 132, 73, 0.12);
}
.share-btn:hover {
  box-shadow: 0 10px 30px rgba(223, 178, 94, 0.4);
  transform: translateY(-3px);
  border-color: #c99c45;
  background: linear-gradient(135deg, #fff 0%, #f9f5eb 100%);
}

/* .share-btn:hover i {
  color: #c99c45;
  animation: rotate 1.5s linear infinite;
} */

.share-btn:hover .btn-text {
  letter-spacing: 1px;
  color: #110d85;
}

.share-btn:hover .pulse-ring {
  animation: pulse 1.2s ease-out infinite;
}

@keyframes pulse {
  0% {
    width: 0;
    height: 0;
    opacity: 0.7;
  }
  100% {
    width: 120px;
    height: 120px;
    opacity: 0;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.share-btn:active {
  transform: translateY(-1px);
  transition: transform 0.1s;
}

.interaction-section {
  background-image: url("img/new-interaction.png");
  background-size: cover;
  background-position: right;
  position: relative;
  /* border-radius: 15px; */
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

.interaction-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.6); */
  /* backdrop-filter: blur(8px); */
  z-index: 1;
}

.interaction-section1 {
  background-color: #8f6a32;
  background-size: cover;
  background-position: right;
  position: relative;
  /* border-radius: 15px; */
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

.interaction-section > .container {
  position: relative;
  z-index: 2;
}

.counter-placeholder {
  /* background: rgba(255, 255, 255, 0.15); */
  /* backdrop-filter: blur(10px); */
  /* border: 1px dashed rgba(255, 255, 255, 0.4); */
  border-radius: 10px;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.ml-web {
  margin-left: 80px;
}

@media (max-width: 994px) {
  .ml-web {
    margin-left: 0px;
  }
}

.p-tag {
  font-size: 20px;
}

.p-tag span {
  font-size: 22px;
  font-weight: 600;
  color: #d28d00;
}

/* Floating container */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 1000;
}

@media (max-width: 576px) {
  .floating-buttons {
    flex-direction: column;
  }
}

/* Scroll-to-top circular progress button */
.scroll-top-container {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#goTopBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #a5885d; /* keep chevron color */
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 8px 18px rgba(12, 12, 92, 0.06);
}

#goTopBtn:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

/* Circular progress border */
.progress-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.progress-ring__circle {
  fill: none;
  stroke: #a5885d;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  transition: stroke-dashoffset 0.15s linear;
}

/* Shop Rice button */
.shop-rice-btn {
  background-color: #a5885d;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.shop-rice-btn:hover {
  background-color: #8c724c;
  transform: translateY(-3px);
}

/* 🌾 Small Cards Section */
.small-cards-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  /* 🌾 Small Cards Section */
  .small-cards-section {
    padding: 0px 0;
  }
}

.section-title {
  font-size: 32px;
  /* font-weight: 700; */
  /* margin-bottom: 3rem; */
  position: relative;
  /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); */
}

.section-title span {
  color: #d28d00;
  /* font-size: 36px; */
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #d28d00;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Rice Pattern Background */
.rice-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8941f' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Card Styling */
.rice-card {
  position: relative;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, var(--cream) 0%, #fff 100%); */
  border-radius: 16px;
  overflow: hidden;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid var(--light-gold);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* min-height: 320px; */
}

.rice-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

/* Hover Effects */
.rice-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
}

.rice-card:hover .card-divider {
  width: 80%;
  background: var(--gold);
}

/* Card Content */
.card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.myth-section {
  margin-bottom: 0px;
}

.myth-badge {
  background: #110d85;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: inline-block;
  transition: all 0.3s ease;
}

.myth-text {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.card-divider {
  height: 3px;
  width: 60%;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 15px 0;
  border-radius: 3px;
  transition: all 0.4s ease;
}

.fact-section {
  margin: 10px 0px 14px 0px;
}

.fact-badge {
  background: #a5885d;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: inline-block;
  transition: all 0.3s ease;
}

.fact-text {
  font-size: 22px;
  /* font-weight: 600; */
  color: #333;
  line-height: 1.4;
}

/* Rice Icon */
.rice-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
  transition: all 0.4s ease;
}

.rice-icon-1 {
  top: 15px;
  right: 15px;
}

.rice-icon-2 {
  bottom: 15px;
  left: 15px;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .rice-card {
    min-height: 300px;
  }
}

@media (max-width: 991px) {
  .rice-card {
    min-height: 280px;
  }

  .myth-text {
    font-size: 1.2rem;
  }

  .fact-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .rice-card {
    min-height: 260px;
  }

  .section-title {
    font-size: 2rem;
  }

  .myth-text {
    font-size: 1.1rem;
  }

  .fact-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .rice-card {
    min-height: 240px;
    padding: 20px;
  }

  .myth-text {
    font-size: 1rem;
  }

  .fact-text {
    font-size: 0.85rem;
  }
}

.badge-icon-img {
  position: absolute;
  right: 8px;
}

.badge-icon-i {
  /* position: absolute;
  right: 8px; */
  font-size: 40px;
}

.bronze {
  color: #cd7f32; /* Bronze */
}

.silver {
  color: #c0c0c0; /* Silver */
}

.gold {
  color: #ffd700; /* Gold */
}

.diamond {
  color: #b9f2ff; /* Diamond */
}

.movement-img {
  max-width: 460px;
  width: 100%;
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media (max-width: 991px) {
  .movement-img {
    max-width: 450px;
    position: static;
    transform: none;
  }

  .badge-icon-i {
    /* position: absolute;
  right: 8px; */
    /* font-size: 40px; */
    display: none;
  }
  .badge-icon-svg {
    display: none;
  }
}

.active .badge-icon-svg {
  stroke: white;
}

/* Form Validation Styles */
.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.text-danger {
  color: #dc3545 !important;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}

/* Enhanced button states */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Input focus states */
.form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-select:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* share button css  */
/* Share Menu (desktop) */
.share-menu {
  display: none;
  position: absolute;
  background: white;
  /* padding: 8px 12px; */
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  gap: 4px;
  z-index: 1000;
  right: 133px;
  bottom: -38px;
}

/* Share Menu (desktop) */
.share-menu1 {
  position: absolute;
  background: white;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  gap: 30px;
  z-index: 1000;
  top: 52px;
  right: 0px;
  text-decoration: none;
}

/* Share Menu (modal desktop) */
.share-menu2 {
  position: absolute;
  background: white;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  gap: 30px;
  z-index: 99999;
  /* top: 322px; */
  right: 128px;
  text-decoration: none;
  bottom: 70px;
}

/* Hover effect to show the menu when hovering over button or menu */
.modal-btn:hover + .share-menu2,
.share-menu2:hover {
  display: flex;
}

#shareBtnDesktop:hover + .share-menu {
  display: flex;
}

.share-icon {
  font-size: 20px;
  color: #333 !important;
  transition: all 0.2s ease;
  margin: 0px !important;
  text-decoration: none !important;
}

.share-icon:hover {
  color: #110d85 !important; /* Example hover color */
  transform: scale(1.2);
  background-color: transparent !important;
  box-shadow: none !important;
}

.instagram-color {
  background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
}

.thank-you-divider {
  width: 90%;
  height: 1px;
  background: #a5885d;
  margin: 0;
}

.highlight-line {
  color: #b9802a;
  font-weight: 600;
}

/* add to your main CSS (loaded after bootstrap) */
.border-md-start-only {
  border: none; /* default: no border on mobile/small */
}

@media (min-width: 992px) {
  /* md breakpoint */
  .border-md-start-only {
    /* use inline-start so it works in RTL too */
    border-inline-start: 1px solid var(--bs-border-color, #dee2e6);
  }
}

img {
  -webkit-user-drag: none; /* Safari/Chrome */
  -khtml-user-drag: none; /* Konqueror */
  -moz-user-drag: none; /* Firefox */
  -o-user-drag: none; /* Older Opera */
  user-drag: none;
}

/* 🌾 Fun Facts Section — Playfully Premium 2.0 */
.fun-facts-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Ambient gradient glows */
.fun-facts-section::before {
  top: -70px;
  left: -60px;
  background: radial-gradient(
    circle,
    rgba(190, 188, 255, 0.5),
    transparent 70%
  );
}

.fun-facts-section::after {
  bottom: -100px;
  right: -70px;
  background: radial-gradient(
    circle,
    rgba(144, 140, 255, 0.5),
    transparent 70%
  );
}

@keyframes gentleFloat {
  0% {
    transform: translateY(0px);
    opacity: 0.6;
  }
  100% {
    transform: translateY(25px);
    opacity: 1;
  }
}

/* Section Title */
.fun-facts-section .section-title {
  font-size: 32px;
  text-align: center;
  color: #1e1e1e;
  position: relative;
}

.fun-facts-section .section-title span {
  color: #d28d00;
}

.fun-facts-section .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #d28d00;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* 🎴 Fun Card */
.fun-facts-section .fun-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 18px;
  border: 1px solid rgba(17, 13, 133, 0.25);
  overflow: hidden;
  padding: 40px 30px;
  transition: all 0.45s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  z-index: 0;
  height: 100%;
}

/* Subtle inner glow on hover */
.fun-facts-section .fun-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(218, 218, 255, 0.6),
    rgba(255, 255, 255, 0.9)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.fun-facts-section .fun-card:hover::before {
  opacity: 1;
}

.fun-facts-section .fun-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 35px rgba(17, 13, 133, 0.15);
  border-color: rgba(17, 13, 133, 0.6);
}

/* Animated gradient accent at bottom */
.fun-facts-section .fun-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #110d85, #4944d9);
  border-radius: 3px;
  transform: translateX(-50%);
  transition: width 0.45s ease;
}

.fun-facts-section .fun-card:hover::after {
  width: 70%;
}

/* Inner Content */
.fun-facts-section .fun-card-content {
  position: relative;
  z-index: 1;
}

/* Badge */
.fun-facts-section .fun-badge {
  display: inline-block;
  background: #110d85;
  color: #fff;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(17, 13, 133, 0.3);
  position: relative;
  overflow: hidden;
}

/* Light sweep effect on badge */
.fun-facts-section .fun-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.fun-facts-section .fun-card:hover .fun-badge::after {
  left: 110%;
}

/* Heading */
.fun-facts-section .fun-heading {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1d;
  margin-bottom: 12px;
  position: relative;
  line-height: 1.3;
}

.fun-facts-section .fun-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #110d85, transparent);
  border-radius: 2px;
  opacity: 0.9;
}

/* Text */
.fun-facts-section .fun-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.65;
  margin-top: 22px;
  margin-bottom: 0px;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
  white-space: pre-line;
}

.fun-facts-section .fun-text em {
  display: block;
  font-style: italic;
  color: #110d85;
  font-weight: 500;
  margin-top: 8px;
  opacity: 0.9;
  letter-spacing: 0.1px;
  transition: all 0.3s ease;
}

.fun-facts-section .fun-card:hover .fun-text em {
  color: #4944d9;
  opacity: 1;
}

.hidden-card {
  display: none !important;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

.show {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

/* Button */
.fun-facts-section .fun-load-btn {
  display: block;
  margin: 40px auto 0;
  padding: 12px 34px;
  border: none;
  border-radius: 30px;
  background: #110d85;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.4px;
  box-shadow: 0 5px 14px rgba(17, 13, 133, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.fun-facts-section .fun-load-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 13, 133, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
  .fun-facts-section {
    padding: 80px 0;
  }
  .fun-facts-section .fun-card {
    padding: 34px 24px;
  }
  .fun-facts-section .fun-heading {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .fun-facts-section {
    padding: 70px 0;
  }
  .fun-facts-section .fun-card {
    padding: 28px 20px;
  }
  .fun-facts-section .fun-heading {
    font-size: 1rem;
  }
  .fun-facts-section .fun-text {
    font-size: 0.9rem;
  }
}

/* container */
.shop-rice-container {
  position: relative;
  display: inline-block;
  /* avoid layout shifts */
  -webkit-tap-highlight-color: transparent;
}

/* main button */
.shop-rice-btn {
  background-color: #a5885d;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, background-color 0.18s ease;
  position: relative;
  z-index: 3;
  /* above page but below dropdown if necessary */
}

.shop-rice-btn:hover {
  transform: translateY(-3px);
  background-color: #8c724c;
}

/* dropdown (opens above) */
.shop-options {
  position: absolute;
  bottom: 50px;
  /* distance above the main button */
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  /* start slightly down */
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  /* used to prevent instant clickability */
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 0.22s cubic-bezier(0.2, 0.9, 0.2, 1), visibility 0s linear 0.22s;
  /* delay hiding visibility until after fade */
  z-index: 10;
  /* above main button */
  background: transparent;
  /* keep container transparent — buttons supply bg */
}

/* the invisible hover buffer — placed below the dropdown because it opens upward */
.shop-options::after {
  content: "";
  position: absolute;
  bottom: -12px;
  /* small buffer between dropdown bottom and main button */
  left: 0;
  right: 0;
  height: 12px;
  /* invisible but receives hover */
  pointer-events: auto;
}

/* option buttons */
.shop-option {
  background-color: #a5885d;
  color: #fff;
  border: 2px solid #a5885d;
  border-radius: 30px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(13, 13, 13, 0.08);
  transform: translateY(0);
  transition: transform 0.18s ease, background-color 0.18s ease,
    color 0.18s ease;
}

.shop-option:hover {
  background-color: #8c724c;
  color: #fff;
  transform: translateY(-3px);
}

/* Reveal on hover (desktop) and keep visible when hovering the dropdown itself */
@media (hover: hover) {
  /* container hover shows dropdown */
  .shop-rice-container:hover .shop-options,
            /* also allow dropdown hover itself to keep the dropdown open */
            .shop-options:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
  }

  /* Prevent visibility from snapping off immediately */
  .shop-rice-container .shop-options {
    transition: opacity 0.22s cubic-bezier(0.2, 0.9, 0.2, 1),
      transform 0.22s cubic-bezier(0.2, 0.9, 0.2, 1), visibility 0s linear 0.22s;
  }
}

/* Mobile: toggle via .active class from JS */
@media (hover: none) {
  .shop-options.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
}

/* small responsive tweak so it doesn't exceed viewport */
@media (max-width: 420px) {
  .shop-option {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 30px;
  }
}

/* Hidden by default */
.floating-buttons {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

/* Show when scrolled past threshold */
.floating-buttons.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
