html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

.container-home {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */

.top-bar {
  width: 100%;
  height: 50px;
  background: #CEDFAD;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.top-bar-marquee {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  animation: marquee 50s linear infinite;
}

.top-bar:hover .top-bar-marquee {
  animation-play-state: paused;
}

.top-bar-marquee span:not(.star) {
  display: inline-flex;
  align-items: center;
  flex: none;
  padding: 0;

}

.top-bar-marquee .star {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 18px;
  flex: none;
  font-family: "Libre Bodoni", serif;
  animation: marquee 300s linear infinite;
  flex-grow: 0;
}

.top-bar-marquee .star img {
  object-fit: contain;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-banner {
  position: relative;
 
}

.hero-bg {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.35) 35%, rgba(0, 0, 0, 0) 70%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
  z-index: 10;
}

.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: #F6E98B;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: "Archivo", sans-serif;
}

.hero-title {
  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 65px;
  line-height: 68px;
  text-transform: uppercase;

  color: #FFFFFF;
  margin-bottom: 10px;

}

.hero-content h5 {
  font-size: 32px;
  margin-bottom: 8px;
  font-family: "Helvetica Neue LT Pro", sans-serif;
}

.hero-content p {
  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 29px;
  color: #FFFFFF;
  margin-bottom: 35px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #111;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  font-family: "Archivo", sans-serif;
}

.hero-btn:hover {
  background: #111;
  color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
  width: 70px;
  opacity: 1;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  background-size: 20px;
}

.carousel-indicators {
  bottom: 25px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* ==========================================================================
   MARQUEE / CHECK-IN SECTION
   ========================================================================== */

.checkin-section {
  background: #F4F0E7;
  padding-top: 50px;
}

.section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.section-heading h2 {
  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 65px;
  text-align: center;

  color: #000000;
  margin: 0;
  text-transform: uppercase;
}

.routine-card {
  position: relative;
  overflow: hidden;
}

.routine-card img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.routine-card:hover img {
  transform: scale(1.05);
}

.routine-content {
  position: absolute;
  top: 40px;
  left: 40px;
  max-width: 360px;
  color: #fff;
}

.routine-content h3 {
  font-family: "Libre Bodoni", serif;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 0px;
}

.routine-content p {
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 20px;
  font-weight: 300;
}

.routine-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #111;
  padding: 11px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.routine-btn:hover {
  background: #111;
  color: #fff;
}

.routine-btn i {
  font-size: 14px;
}

/* ==========================================================================
   MOVE SECTION
   ========================================================================== */

.move-section {
  background: #F4F0E7;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding-top: 50px;
}

.move-heading {
  text-align: center;
  margin-bottom: 30px;
}

.move-heading h2 {
  font-family: "Libre Bodoni", serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.3;
  color: #000;
  margin: 0;
  text-transform: uppercase;
}

.move-heading-div h2 {
  font-family: 'Libre Bodoni', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 48px;
    line-height: 65px;
    text-align: center;
    color: #000000;
  text-transform: uppercase;
   margin-bottom: 30px;
}

.move-card {
  position: relative;
  overflow: hidden;
}

.move-card:last-child {
  border-right: none;
}

.move-card a {
  display: block;
}

.move-card img {
  width: 100%;
  height: 494px;
  object-fit: cover;
  display: block;
}

.move-card {
  position: relative;
  overflow: hidden;
}

.move-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 2;
}

.move-card:hover .move-card-overlay {
  opacity: 1;
  visibility: visible;
}

.move-card-overlay h4 {
  color: #fff;
  font-family: "Libre Bodoni", serif;
  font-size: 20px;
  font-weight: 300;
  margin: 0;
  text-align: center;
}

.move-card-overlay .icon-circle {
  position: absolute;
  left: 50%;
  bottom: 25px;
  /* Adjust this value */
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 11px;
  transition: all 0.4s ease;
  background: #fff;
  color: #000;
}

.move-card:hover .move-card-overlay .icon-circle {
  bottom: 35px;
  /* Optional animation */
}

/* ==========================================================================
   TICKER STRIP
   ========================================================================== */

.ticker-strip {
  width: 100%;
  height: 82px;
  background: #BFDDF0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker {
  width: 100%;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  will-change: transform;
}

.ticker-strip:hover .ticker-content {
  animation-play-state: paused;
}

.ticker-content span:not(.star-icon) {
  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #161616;
  display: flex;
  align-items: center;
  flex: none;
}

.star-icon {
  width: 22px !important;
  height: 22px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.star-icon img {
  width: 20px !important;
  height: 20px !important;
  min-height: 0 !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: contain;
}


/* ==========================================================================
   TRAVEL SECTION
   ========================================================================== */

.purpose-section {
  
}

.purpose-content {
  background: #FFC4CD;
  min-height: 678px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px;
 
}

.purpose-inner {
  max-width: 590px;
  text-align: center;
}

.purpose-inner h2 {
  font-family: "Libre Bodoni", serif;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.05;
  color: #111;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.purpose-inner p {
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #111;
  margin-bottom: 20px;
}

.affirmation {
  margin: 30px 0;
  font-weight: 500;
}

.donation {
  max-width: 480px;
  margin: 0 auto 40px;
}

.donation strong {
  font-weight: 700;
}

.purpose-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 28px;
  background: #000;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
}

.purpose-btn:hover {
  background: #fff;
  color: #000; 
}

.purpose-image {
  overflow: hidden;
}

.purpose-image img {
  width: 100%;
  height: 678px;
  object-fit: cover;
  transition: 0.5s;
}

.purpose-image:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   PERSONALITY SWIPER
   ========================================================================== */

.personality-section {
  background: #F4F0E7;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding-top: 50px;
  position: relative;
}

.personality-heading {
  text-align: center;
  margin-bottom: 30px;
}

.personality-heading h2 {
  font-family: "Libre Bodoni", serif;
  font-size: 50px;
  font-weight: 500;
  margin: 0;
  color: #000;
}

.personalitySwiper {
  overflow: hidden;
  position: relative;
  padding: 0;
}

.personality-card {
  background: #F4F0E7;
  position: relative;
}

.personality-card .hover-btn {
  text-decoration: none;
  position: absolute;
  top: 375px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  pointer-events: auto;
  cursor: pointer;
  z-index: 10;
  white-space: nowrap;
  text-transform: uppercase;
  width: 70%;
  text-align: center;
}

.personality-card:hover .hover-btn {
  opacity: 1;
  visibility: visible;
  
} 

.personality-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}


.personality-info {
  padding: 18px;
  text-align: center;
  border-right: 1px solid #000000; 
  height: 100px;
}

.personality-info h4 {
  font-size: 18px;
  font-weight: 700;
}

.personality-info p{font-family: 'Archivo', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    margin: 0;}

.personality-section .swiper-button-next,
.personality-section .swiper-button-prev {
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #000000;
  top: 220px;
  margin-top: -20px;
  z-index: 10;
}

.personality-section .swiper-button-next::after,
.personality-section .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.personality-section .swiper-button-prev {
  left: 0;
}

.personality-section .swiper-button-next {
  right: 0;
}

@media (max-width: 991px) {

  .personality-section .swiper-button-next,
  .personality-section .swiper-button-prev {
    display: none !important;
  }
}

/* ==========================================================================
   WELLNESS SECTION (National Wellness Month)
   ========================================================================== */

.wellness-section {
  background: #F4F0E7;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.wellness-content {
  background: #F4F0E7;
  min-height: 678px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 66px;

}

.wellness-inner {
  max-width: 590px;
  text-align: center;
}

.wellness-inner h2 {
  font-family: "Libre Bodoni", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 26px;
}

.wellness-inner p {
  max-width: 500px;
  margin: 0 auto 18px;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

.wellness-inner h6 {
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #000;
}

.wellness-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  padding: 14px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.wellness-btn:hover {
  background: #fff;
  color: #000;
}

.wellness-image {
  overflow: hidden;
}

.wellness-image img {
  width: 100%;
  height: 678px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.wellness-image:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   DORM ESSENTIALS
   ========================================================================== */

.dorm-section {
  background: #FFF19A;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding-top: 70px;
}

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-header h2 {
  font-family: "Libre Bodoni", serif;
  font-size: 40px;
  font-weight: 500;

  text-transform: uppercase;
}

.section-header p {
  font-family: "Archivo", sans-serif;
  font-size: 18px;
}

.dormSwiper {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #f4f0e7;
}

.product-card {

  border-right: 1px solid #000;
  overflow: hidden;
}


.product-card img {
  width: 100%;

  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.product-card img:hover {
  transform: scale(1.05);
}

.product-title {
  padding: 18px;
  text-align: center;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 18px;
  border-top: 1px solid #000;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  background: #f4f0e7;
}

.product-card a {
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
}

.dorm-prev,
.dorm-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  top: 220px;
  margin-top: -21px;
  z-index: 10;
}

.dorm-prev::after,
.dorm-next::after {
  font-size: 18px;
  font-weight: bold;
}

.dorm-prev {
  left: 0;
}

.dorm-next {
  right: 0;
}

/* ==========================================================================
   BACK TO SCHOOL SECTION
   ========================================================================== */

.back-to-school-section {
  background: #F4F0E7;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 80px 0 0;
}

.schoolSwiper {
  position: relative;
}

.schoolSwiper .swiper-slide {
  border-right: 1px solid #d5d0c8;
}

.product-image {}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card h3 {
  margin: 0;
  padding: 15px;
  text-align: center;
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-top: 1px solid #d5d0c8;
  position: relative;
  z-index: 2;
  background: #f4f0e7;
}

.schoolSwiper .swiper-button-next,
.schoolSwiper .swiper-button-prev {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #000;
}

.schoolSwiper .swiper-button-next:after,
.schoolSwiper .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

/* ==========================================================================
   CRYSTAL HERO
   ========================================================================== */

.crystal-hero {
  position: relative;
  width: 100%;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)),
    url('crystal-hero.webp') no-repeat center center;
  background-size: cover;
}

.crystal-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 0px;
  width: 100%;
  max-width: 510px;
  text-align: center;
  z-index: 2;
}

.crystal-hero__title {
  width: 100%;
  font-family: 'Libre Bodoni', serif;
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  color: #FFFFFF;
}

.crystal-hero__subtitle {
  width: 100%;
  font-family: 'Archivo', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 39px;
  color: #FFFFFF;
}

.crystal-hero__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  gap: 8px;
  width: fit-content;
  min-width: 184px;
  height: 52px;
  background: #FFFFFF;
  border-radius: 40px;
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #1c1c1c;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.crystal-hero__btn:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-1px);
}

.crystal-hero__btn:active {
  transform: translateY(1px);
}

.crystal-hero__btn-icon {
  display: inline-block;
  transition: transform 0.2s ease;
}

.crystal-hero__btn:hover .crystal-hero__btn-icon {
  transform: translateX(3px);
}

/* ==========================================================================
   FEEL BETTER SECTION (Medicine Section)
   ========================================================================== */

.feel-better-section {
  background: #F4F0E7;
  padding-top: 50px;
}

.section-title {
  font-family: 'Libre Bodoni', serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

.feel-image {
  height: 680px;
  overflow: hidden;
}

.feel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.feel-content {
  height: 680px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.category-list li {
  margin: 18px 0;
}

.category-list a {
  text-decoration: none;
  color: #8b8278;
  font-family: 'Libre Bodoni', serif;
  font-size: 30px;
  transition: 0.3s;
}

.category-list li.active a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.category-list a:hover {
  color: #000;
}

/* ==========================================================================
   REVIEW VIDEO SECTION
   ========================================================================== */

.review-section {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 30px;
  background: #F4F0E7;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  position: relative;
}

.review-section .container-fluid {
  max-width: -webkit-fill-available;
  margin: auto;
  padding: 0;
}

.review-title {
  font-family: 'Libre Bodoni', serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 65px;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.review-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  
  padding-bottom: 80px;
 
}

.review-slider .swiper-wrapper {
  align-items: flex-start;
  padding-top: 20px;
}

.review-slider .swiper-slide {
  width: 312px !important;
  height: auto;
  flex-shrink: 0;
}

.review-slider .swiper-slide .review-card {
  transition: all 0.4s ease;
}

.review-slider .swiper-slide-active .review-card {
  z-index: 2;
  background: #fff;
  border: 1px solid #2E6EB0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.review-card {
  width: 312px;
  height: auto;
  background: transparent;
  border: 1px solid #8FA8C8;
  border-radius: 28px;
  padding: 10px 10px 15px;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}



.video-box {
  width: 292px;
  height: 372px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #f5f5f5;
  transition: height 0.4s ease;
}

.review-slider .swiper-slide-active .video-box {
  height: 430px;
}

.video-box img,
.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.review-card:hover .video-box img,
.review-card:hover .video-box video {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E5E5E5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 18px;
  transition: 0.3s ease;
  z-index: 5;
}

.play-btn:hover {
  background: #000;
  color: #fff;
}

.play-btn i {
  margin-left: 2px;
}

.product-box {
  width: 292px;
  height: 76px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-img {
  width: 75px;
  height: 76px;
  flex-shrink: 0;
}

.product-img img {
  width: 75px;
  height: 76px;
  border-radius: 15px;
  object-fit: cover;
}

.product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-content h5 {
  font-family: "Archivo", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 17px;
    color: #000000;
 
  margin: 0 0 8px;
}

.product-content span {
 width: 56px;
    height: 17px;

    font-family: "Archivo", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 17px;
    color: #000000;
}



.shop-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;


  height: 56px;
  padding: 18px 30px;

  background: #000;
  border-radius: 40px;

  flex: none;
  order: 1;
  flex-grow: 0;
  transition: 0.35s ease;
  text-decoration: none;
  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
  text-transform: uppercase;

  color: #fff;
}

.shop-btn i {
  font-size: 13px;
  transition: 0.35s;
  margin-left: 8px;
}

.shop-btn:hover {
  background: #fff;
  color: #000;
}

.review-slider .swiper-slide-active .review-card .shop-btn:hover {
  background: #000;
  color: #fff;
}

.shop-btn:hover i {
  transform: translateX(4px);
}








.product-shop-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;

  width: 362px;
  height: 56px;
  padding: 18px 30px;

  background: #FFFFFF;
  border-radius: 40px;

  flex: none;
  order: 1;
  flex-grow: 0;
  transition: 0.35s ease;
  text-decoration: none;
  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
  text-transform: uppercase;

  color: #000000;
}

.product-shop-btn i {
  font-size: 13px;
  transition: 0.35s;
  margin-left: 8px;
}

.product-shop-btn:hover {
  background: #000;
  color: #fff;
}

.product-shop-btn:hover i {
  transform: translateX(4px);
}

.custom-prev,
.custom-next {
  width: 44px !important;
  height: 44px !important;
  background: #fff !important;
  border: 1px solid #000 !important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  top: auto !important;
  bottom: 90px !important;
  transform: none !important;
  color: #000 !important;
  position: absolute;
  z-index: 10;
  cursor: pointer;
}

.custom-prev {
  left: calc(50% - 220px) !important;
}

.custom-next {
  right: calc(50% - 220px) !important;
}

.custom-prev::after,
.custom-next::after {
  display: none !important;
}

.custom-prev:hover,
.custom-next:hover {
  background: #000 !important;
  color: #fff !important;
}

.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ==========================================
   MEDICINE BACKGROUND HERO SECTION
   ========================================== */

.medicine-section {
  position: relative;
  background: url("bg1.png") center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.medicine-overlay {
  position: absolute;
  inset: 0;
}

.medicine-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.medicine-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid #000;
  border-radius: 100px;
  background: #FEEE91;
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.medicine-content h2 {
  font-family: 'Libre Bodoni', serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}

.medicine-content>p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.feature-row {
  margin-bottom: 35px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-radius: 12px;
  padding: 15px;
  height: 100%;
}

.blue {
  background: #EFF7FF;
}

.pink {
  background: #FFEFF9;
}

.green {
  background: #F2FFF6;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #B88E2F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  width: auto;
}

.feature-card h4 {
  font-family: 'Libre Bodoni', serif;
  font-size: 17px;
  font-weight: 500;
  color: #000;
  margin-bottom: 6px;
  text-align: left;
}

.feature-card p {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: #000;
  margin: 0;
  text-align: left;
  font-style: normal;
  font-weight: 300;


}

.story-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 40px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
  font-style: normal;
  font-weight: 500;
}

.story-btn:hover {
  background: #B88E2F;
  color: #fff;
}

/* ==========================================
   INTENTION SECTION
   ========================================== */

.intention-section {
  background: #F4F0E7;

  padding-top: 50px;
}

.intention-content {
  background: #D4DCE8;
  border-right: none;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 120px;
  text-align: center;
}

.intention-image {
  overflow: hidden;
}

.intention-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item {
  margin-bottom: 30px;
}

.item h3 {
  font-family: 'Libre Bodoni', serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0px;
  color: #000;
}

.item p {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  color: #000;
  margin: 0;
}


.gift-banner {
  width: 100%;
  background: #cedfad;
  border-top: 1px solid;

}

.gift-content {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.gift-text {
  flex: 1;
  padding-top: 24px;
}


.gift-text h2 {
  margin: 0;
  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  white-space: nowrap;
  color: #000;
}

.gift-text p {
  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 153%;

  color: #4A4A4A;
}

.gift-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 173px;
  height: 56px;
  padding: 10px 30px;

  background: #000;
  border-radius: 40px;
  text-decoration: none;

  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
  text-transform: uppercase;
  color: #fff;

  transition: all 0.3s ease;
}

.gift-btn a i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.gift-btn a:hover {
  background: #fff;
   color: #000;
}

.gift-btn a:hover i {
  transform: translateX(4px);
}

.product-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card {
  position: relative;
}

.product-hover-btn {
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #000 !important;
  padding: 12px 100px;  
  border-radius: 30px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 10;
  white-space: nowrap;
  display: inline-block !important;
}

.product-card:hover .product-hover-btn {
  opacity: 1;
  visibility: visible;
  bottom: 85px;
}

.product-hover-btn:hover {
  background-color: #000;
  color: #fff !important;
}
