html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

.slide2 {}

.container-home {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.purpose-section {background: #f4f0e7;}  
/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */

.top-bar {
  width: 100%;
  height: 50px;
  background: #F46B57;
  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: #fff;
  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: 630px;
  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;
  animation: heroTagFloat 3s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-title {
  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 83px;
  line-height: 92px; 
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 10px;
  animation: febFloat 3s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-content h5 {
  font-size: 32px;
  margin-bottom: 8px;
  font-family: "Helvetica Neue LT Pro", sans-serif;
}

.hero-content p {
  font-family: 'Helvetica Neue LT Pro';
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 38px;
  color: #FFFFFF;
  margin-bottom: 35px;
  width: 461px; 
}

.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;
}
.slide2{font-family: 'Helvetica Neue LT Pro';
font-style: normal !important;
font-weight: 500 !important;
font-size: 28px !important; 
}
.slide-sub{font-family: 'Helvetica Neue LT Pro';
font-style: normal;
font-weight: 500;
font-size: 28px; 
line-height: 38px;} 

/* Hero Title Floating Animation */
@keyframes febFloat {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  25% {
    transform: translateY(-4px);
    opacity: 0.98;
  }

  50% {
    transform: translateY(-8px);
    opacity: 0.95;
  }

  75% {
    transform: translateY(-4px);
    opacity: 0.98;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hero Tag Floating Animation */
@keyframes heroTagFloat {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  25% {
    transform: translateY(-4px);
    opacity: 0.98;
  }

  50% {
    transform: translateY(-8px);
    opacity: 0.95;
  }

  75% {
    transform: translateY(-4px);
    opacity: 0.98;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.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%;
}

/* ==========================================================================
   TICKER STRIP
   ========================================================================== */

.ticker-strip {
  width: 100%;
  height: 82px;
  background: #FFDA59;
  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-content {
  background: #F4F0E7;
  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 {
    width: 340px;
    height: 52px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    padding: 18px 20px;
    gap: 5px;

    background: #000000;
    border-radius: 40px;

    box-sizing: border-box;

    font-family: 'Archivo', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    text-transform: uppercase;

    color: #FFFFFF;
    text-decoration: none;
    margin: 0px auto; 
    flex: none;
    order: 1;
    flex-grow: 0;
}

.purpose-btn:hover {
  background: #fff;
  color: #000;
}

.purpose-image {
  overflow: hidden;
}

.purpose-image img {
  width: 100%;
  transition: 0.5s;
}

.purpose-image:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   OWN YOUR ATMOSPHERE SECTION
   ========================================================================== */

.own-atmosphere-section {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 60px 35px 65px;
    box-sizing: border-box;
    max-width: 1440px !important;
    margin: 0 auto;
}

.own-atmosphere-container {
    width: 100%;
    margin: 0 auto;
}

.own-atmosphere-heading {
    width: 100%;
    margin: 0 0 35px;
    text-align: center;
}

.own-atmosphere-heading h2 {
    margin: 0;
    padding: 0;
    font-family: "Libre Bodoni", serif;
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 1.15;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.own-atmosphere-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

.own-atmosphere-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 28px;
    padding: 10px 10px 15px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.own-atmosphere-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.own-atmosphere-image {
    position: relative;
    width: 100%;
    height: 334px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f8f8;
}

.own-atmosphere-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    display: block;
    transition: transform 0.5s ease;
}

.own-atmosphere-card:hover .own-atmosphere-image img {
    transform: scale(1.04);
}

.own-atmosphere-content {
    position: relative;
    width: 100%;
    flex: 1 1 auto;
    padding: 14px 6px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.own-atmosphere-content h4 {
    font-family: "Archivo", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    color: #000000;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.own-atmosphere-content p {
    font-family: "Archivo", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #444444;
    margin: 0 0 14px;
    flex-grow: 1;
}

.own-atmosphere-btn {
    width: 100%;
    height: 46px;
    margin-top: auto;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #000000;
    border: 1px solid #000000;
    border-radius: 40px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Archivo", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.own-atmosphere-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
    text-decoration: none;
}

.own-atmosphere-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.own-atmosphere-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Breakpoints for Own Atmosphere */
@media (max-width: 1199px) {
    .own-atmosphere-section {
        padding: 45px 40px 50px;
    }
    
    .own-atmosphere-heading h2 {
        font-size: 40px;
    }
    
    .own-atmosphere-grid {
        gap: 16px;
    }
    
    .own-atmosphere-image {
        
    }
}

@media (max-width: 991px) {
    .own-atmosphere-section {
        padding: 40px 30px 45px;
    }

    .own-atmosphere-heading h2 {
        font-size: 34px;
    }

    .own-atmosphere-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .own-atmosphere-image {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .own-atmosphere-section {
        padding: 30px 16px 35px;
    }

    .own-atmosphere-heading {
        margin-bottom: 24px;
    }

    .own-atmosphere-heading h2 {
        font-size: 23px;
    }

    .own-atmosphere-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .own-atmosphere-card {
        border-radius: 20px;
        padding: 8px 8px 12px;
    }

    .own-atmosphere-image {
        height: 190px;
        border-radius: 14px;
    }

    .own-atmosphere-image img {
        border-radius: 14px;
    }

    .own-atmosphere-content {
        padding: 10px 2px 0;
    }

    .own-atmosphere-content h4 {
        font-size: 11px;
        line-height: 16px;
        margin-bottom: 4px; 
    }

    .own-atmosphere-content p {
        font-size: 10px;
        line-height: 15px;
        margin-bottom: 10px;
    }

    .own-atmosphere-btn {
        height: 38px;
        font-size: 11px;
        padding: 6px 10px;
        gap: 4px;
    }
}

@media (max-width: 380px) {
    .own-atmosphere-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .own-atmosphere-image {
        
    }
}

/* ==========================================================================
   ZODIAC SECTION (MADE FOR YOUR SIGN) & REORDER SECTION
   ========================================================================== */

.zodiac-section,
.reorder-section,
.atmosphere-section {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 60px 80px 65px;
    box-sizing: border-box;
    max-width: 1440px !important;
    margin: 0 auto;
}

.zodiac-container,
.reorder-container,
.atmosphere-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.zodiac-heading,
.reorder-heading,
.atmosphere-heading {
    width: 100%;
    margin: 0 0 35px;
    padding: 0;
    text-align: center;
}

.zodiac-heading h2,
.reorder-heading h2,
.atmosphere-heading h2 {
    margin: 0 0 8px;
    padding: 0;
    font-family: "Libre Bodoni", serif;
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 1.15;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.zodiac-heading p,
.reorder-heading p,
.atmosphere-heading p {
    margin: 0;
    padding: 0;
    font-family: "Archivo", sans-serif;
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 300;
    font-size: 22px;
    color: #000000;
}

.zodiacSwiper,
.reorderSwiper,
.atmosphereSwiper {
    position: relative;
    width: 100%;
    padding: 0px 0 20px;
    box-sizing: border-box;
    overflow: hidden;
   
}

.zodiacSwiper .swiper-wrapper,
.reorderSwiper .swiper-wrapper,
.atmosphereSwiper .swiper-wrapper {
    display: flex;
    box-sizing: border-box;
    align-items: stretch;
    padding-top: 20px;
}

.zodiacSwiper .swiper-slide,
.reorderSwiper .swiper-slide,
.atmosphereSwiper .swiper-slide {
    height: auto;
    display: flex;
    box-sizing: border-box;
    flex-shrink: 0;
}

.zodiac-card,
.reorder-card,
.atmosphere-card {
    position: relative;
    width: 100%;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 28px;
    padding: 10px 10px 15px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zodiac-card:hover,
.reorder-card:hover,
.atmosphere-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.zodiac-image,
.reorder-image,
.atmosphere-image {
    position: relative;
    width: 100%;
   
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f8f8;
    box-sizing: border-box;
}

.zodiac-image img,
.reorder-image img,
.atmosphere-image img {
    width: 100%;
    height: 100%;
    display: block;
    
    object-position: center;
    border-radius: 20px;
    transition: transform 0.5s ease;
}



.zodiac-card:hover .zodiac-image img,
.reorder-card:hover .reorder-image img,
.atmosphere-card:hover .atmosphere-image img {
    transform: scale(1.04);
}

.zodiac-content,
.reorder-content,
.atmosphere-content {
    position: relative;
    width: 100%;
    flex: 1 1 auto;
    padding: 14px 6px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.zodiac-content h4,
.reorder-content h4,
.atmosphere-content h4 {
    font-family: "Archivo", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    color: #000000;
    margin: 0 0 12px;
    letter-spacing: 0.3px;
    flex-grow: 1;
}

.zodiac-btn,
.reorder-btn,
.atmosphere-btn {
    width: 100%;
    height: 46px;
    margin-top: auto;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #000000;
    border: 1px solid #000000;
    border-radius: 40px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Archivo", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.zodiac-btn:hover,
.reorder-btn:hover,
.atmosphere-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
    text-decoration: none;
}

.zodiac-btn i,
.reorder-btn i,
.atmosphere-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.zodiac-btn:hover i,
.reorder-btn:hover i,
.atmosphere-btn:hover i {
    transform: translateX(3px);
}

/* Swiper Navigation Controls - Positioned strictly outside card images in section side gutters */
.zodiac-section .zodiac-prev,
.reorder-section .reorder-prev,
.atmosphere-section .atmosphere-prev {
    position: absolute;
    top: 55%;
    left: 18px;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
  
    border-radius: 50%;
    color: #000000;
    z-index: 30;
    box-sizing: border-box;

    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.zodiac-section .zodiac-next,
.reorder-section .reorder-next,
.atmosphere-section .atmosphere-next {
    position: absolute;
    top: 55%;
    right: 18px;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;

    border-radius: 50%;
    color: #000000;
    z-index: 30;
    box-sizing: border-box;
    
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.zodiac-section .zodiac-prev:hover,
.zodiac-section .zodiac-next:hover,
.reorder-section .reorder-prev:hover,
.reorder-section .reorder-next:hover,
.atmosphere-section .atmosphere-prev:hover,
.atmosphere-section .atmosphere-next:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.zodiac-section .zodiac-prev::after,
.zodiac-section .zodiac-next::after,
.reorder-section .reorder-prev::after,
.reorder-section .reorder-next::after,
.atmosphere-section .atmosphere-prev::after,
.atmosphere-section .atmosphere-next::after {
    font-size: 16px;
    font-weight: 700;
    color: inherit;
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
    .zodiac-section,
    .reorder-section,
    .atmosphere-section {
        padding: 45px 68px 50px;
    }

    .zodiac-section .zodiac-prev,
    .reorder-section .reorder-prev,
    .atmosphere-section .atmosphere-prev {
        left: 12px;
        width: 44px;
        height: 44px;
    }

    .zodiac-section .zodiac-next,
    .reorder-section .reorder-next,
    .atmosphere-section .atmosphere-next {
        right: 12px;
        width: 44px;
        height: 44px;
    }

    .zodiac-heading h2,
    .reorder-heading h2,
    .atmosphere-heading h2 {
        font-size: 40px;
    }

    .zodiac-heading p,
    .reorder-heading p,
    .atmosphere-heading p {
        font-size: 18px;
    }

    .zodiac-image,
    .reorder-image,
    .atmosphere-image {
        
    }
}

@media (max-width: 991px) {
    .zodiac-section,
    .reorder-section,
    .atmosphere-section {
        padding: 40px 58px 45px;
    }

    .zodiac-section .zodiac-prev,
    .reorder-section .reorder-prev,
    .atmosphere-section .atmosphere-prev {
        left: 8px;
        width: 40px;
        height: 40px;
    }

    .zodiac-section .zodiac-next,
    .reorder-section .reorder-next,
    .atmosphere-section .atmosphere-next {
        right: 8px;
        width: 40px;
        height: 40px;
    }

    .zodiac-heading h2,
    .reorder-heading h2,
    .atmosphere-heading h2 {
        font-size: 34px;
    }

    .zodiac-heading p,
    .reorder-heading p,
    .atmosphere-heading p {
        font-size: 16px;
    }

    .zodiac-image,
    .reorder-image,
    .atmosphere-image {
        
    }
}

@media (max-width: 767px) {
    .zodiac-section,
    .reorder-section,
    .atmosphere-section {
        padding: 28px 36px 32px;
    }

    .zodiac-section .zodiac-prev,
    .reorder-section .reorder-prev,
    .atmosphere-section .atmosphere-prev {
        left: 4px;
        width: 30px;
        height: 30px;
    }

    .zodiac-section .zodiac-next,
    .reorder-section .reorder-next,
    .atmosphere-section .atmosphere-next {
        right: 4px;
        width: 30px;
        height: 30px;
    }

    .zodiac-section .zodiac-prev::after,
    .zodiac-section .zodiac-next::after,
    .reorder-section .reorder-prev::after,
    .reorder-section .reorder-next::after,
    .atmosphere-section .atmosphere-prev::after,
    .atmosphere-section .atmosphere-next::after {
        font-size: 10px;
    }

    .zodiac-heading,
    .reorder-heading,
    .atmosphere-heading {
        margin-bottom: 0px; 
    }

    .zodiac-heading h2,
    .reorder-heading h2,
    .atmosphere-heading h2 {
        font-size: 26px;
    }

    .zodiac-heading p,
    .reorder-heading p,
    .atmosphere-heading p {
        font-size: 14px;
    }

    .zodiac-card,
    .reorder-card,
    .atmosphere-card {
        border-radius: 16px;
        padding: 6px 6px 10px;
    }

    .zodiac-image,
    .reorder-image,
    .atmosphere-image {
       
        border-radius: 12px;
    }

    .zodiac-image img,
    .reorder-image img,
    .atmosphere-image img {
        border-radius: 12px;
    }

    .zodiac-content,
    .reorder-content,
    .atmosphere-content {
        padding: 8px 2px 0;
    }

    .zodiac-content h4,
    .atmosphere-content h4 {
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 6px;
        min-height: 30px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
 .reorder-content h4{margin-bottom: 0px !important;     letter-spacing: 0px !important;}  
 .reorder-content h4 {
    font-family: "Archivo", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    color: #000000;
    margin: 0 0 0px !important;
    letter-spacing: 0.3px;
    flex-grow: 1;
} 
    .zodiac-btn,
    .reorder-btn,
    .atmosphere-btn {
        height: 34px;
        font-size: 10px;
        padding: 4px 8px;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .zodiac-section,
    .reorder-section,
    .atmosphere-section {
        padding: 22px 30px 26px;
    }

    .zodiac-section .zodiac-prev,
    .reorder-section .reorder-prev,
    .atmosphere-section .atmosphere-prev {
        left: 2px;
        width: 26px;
        height: 26px;
    }

    .zodiac-section .zodiac-next,
    .reorder-section .reorder-next,
    .atmosphere-section .atmosphere-next {
        right: 2px;
        width: 26px;
        height: 26px;
    }

    .zodiac-section .zodiac-prev::after,
    .zodiac-section .zodiac-next::after,
    .reorder-section .reorder-prev::after,
    .reorder-section .reorder-next::after,
    .atmosphere-section .atmosphere-prev::after,
    .atmosphere-section .atmosphere-next::after {
        font-size: 9px;
    }

    .zodiac-heading h2,
    .reorder-heading h2,
    .atmosphere-heading h2 {
        font-size: 22px;
    }

    .zodiac-heading p,
    .reorder-heading p,
    .atmosphere-heading p {
        font-size: 13px;
    }

    .zodiac-card,
    .reorder-card,
    .atmosphere-card {
        border-radius: 14px;
        padding: 5px 5px 8px;
    }

    .zodiac-image,
    .reorder-image,
    .atmosphere-image {
        
        border-radius: 10px;
    }

    .zodiac-image img,
    .reorder-image img,
    .atmosphere-image img {
        border-radius: 10px;
    }

    .zodiac-content h4,
    .reorder-content h4,
    .atmosphere-content h4 {
        font-size: 11px;
        line-height: 14px;
        margin-bottom: 6px;
        min-height: 28px;
    }

    .zodiac-btn,
    .reorder-btn,
    .atmosphere-btn {
        height: 30px;
        font-size: 9.5px;
        padding: 3px 6px;
        gap: 3px;
    }

    .zodiac-btn i,
    .reorder-btn i,
    .atmosphere-btn i {
        font-size: 9px;
    }
}

/* ==========================================================================
   WELLNESS SECTION (National Wellness Month)
   ========================================================================== */

.wellness-section {
  background: #F4F0E7;
}

.wellness-content {
   background: #F4F0E7;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
    box-sizing: border-box;
}

.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; 
}

.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: 25px; 
  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-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;

font-family: 'Archivo';
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 17px;
text-transform: uppercase;

}

.wellness-btn:hover {
  background: #fff;
  color: #000;
}

.wellness-image {
  overflow: hidden;
}

.wellness-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.wellness-image:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   DORM ESSENTIALS
   ========================================================================== */

.dorm-section {
  background: #E5F1CE;
  padding-top: 70px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px; 
}

.section-header h2 {
    max-width: 724px;
    width: 100%;
    height: auto;

    margin: 0 auto;
    padding: 0;

    font-family: 'Libre Bodoni', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 1.25;

    text-align: center;
    color: #000000;

    box-sizing: border-box;
}

.section-header p {
  font-family: "Archivo", sans-serif;
  font-size: 18px;
}

.dormSwiper {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #f4f0e7;
}

.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;
}

/* ==========================================================================
   CRYSTAL HERO
   ========================================================================== */

.crystal-hero {
  position: relative; 
  width: 100%;
  height: 782px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)),
    url("bg3.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: 16px;
  width: 100%;
  max-width: 536px;
  text-align: center;
  z-index: 2;
  position: absolute;
  left: 50%;
  bottom: 30px; 
  transform: translateX(-50%);
}

.crystal-hero__title {
  width: 100%;
  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 42px;
  line-height: 48px;
  color: #FFFFFF; 
  margin-bottom: 0px;
}

.crystal-hero__subtitle {
  width: 100%;
  font-style: normal;
  color: #FFFFFF;
  font-family: 'Archivo', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 23px;
    opacity: 0.9;
}

.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;
  letter-spacing: 0.5px;
  color: #1c1c1c;
  transition: transform 0.2s ease, background-color 0.2s ease;
  font-family: 'Archivo', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    text-transform: uppercase;
   
}

.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);
}

/* ==========================================================================
   REVIEW VIDEO SECTION
   ========================================================================== */
.review-section {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 20px;
  background: #FFFFFF; 
  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;
}

.review-section p{font-family: 'Archivo';
font-style: normal;
font-weight: 300;
font-size: 22px;
text-align: center;
}

.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 #000;
  
}

.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: 100%;
    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: #FFF6F0;
       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;
}






.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;
}

/* ==========================================================================
   INTENTION / GIFT BANNER SECTION
   ========================================================================== */

.gift-banner {
  width: 100%;
  background: #FFDA59;
}

.gift-content {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
      padding-left: 30px;
    padding-right: 30px
}

.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;
  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);
}

.searchbar input {
  background: hsl(0deg 0% 100%) !important;
}

@media (max-width: 572px) {
  .section-heading {
    font-size: 1rem;
    text-wrap: auto !important;
  }
}

/* ==========================================================================
   NIKE SCENT SECTION
   ========================================================================== */

.nik-scent-section {
  width: 100%;
  height: 650px;
  background-image: url("scent-image-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nik-scent-container {
  width: 1038px;
  height: 507px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.nik-scent-image-card {

  flex: 0 0 504px;
  background: #ffffff;
 
  overflow: hidden;
}

.nik-scent-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.nik-scent-content {
  width: 504px;
 
  flex: 0 0 504px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  gap: 26px;
}

.nik-scent-content h1 {
  width: 100%;
  height: 80px;
  font-family: "Libre Bodoni", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 48px;
  text-align: center;
  color: #000000;
  margin: 0;
}

.nik-scent-description {
  width: 419px;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  text-align: center;
  color: #000000;
  margin: 0;
}

.nik-scent-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.nik-scent-badge-large {
  width: 271px;
  height: 43px;
}

.nik-scent-badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.nik-scent-badge {
  box-sizing: border-box;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid #000000;
  border-radius: 113px;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  font-style: normal;
  white-space: nowrap;
  color: #000000;   
}

.nik-scent-badge-blue {
  width: 194px;
  background: #eff7ff;
}

.nik-scent-badge-green {
  width: 173px;
  background: #f2fff6;
}

.nik-scent-badge-yellow {
  width: 132px;
  background: #fffce9;
}

.nik-scent-badge-purple {
  width: 143px;
  background: #ffeff9;
}

.nik-scent-badge-pink {
  background: #ffdfE5;
}

.nik-scent-shop-button {

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    padding: 18px 20px;
    gap: 5px;

    background: #000000;
    border-radius: 40px;

    box-sizing: border-box;

    font-family: 'Archivo', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    text-transform: uppercase;

    color: #ffffff;
    text-decoration: none; 
    flex: none;
    flex-grow: 0; 
  transition: background 0.25s ease, transform 0.25s ease;
}

.nik-scent-shop-button .nik-scent-arrow {
  font-size: 18px;
  line-height: 1;
}

.nik-scent-shop-button:hover {
background: #FFF6F0; 
 color: #000;
  transform: translateY(-2px);
}

/* Desktop */
@media (min-width: 1200px) {
  .nik-scent-section {
    height: 650px;
  }

  .nik-scent-container {
    width: 1038px;
    height: 507px;
  }
}

/* Tablet */
@media (max-width: 1100px) {
  .nik-scent-container {
    width: calc(100% - 60px);
    height: auto;
    gap: 20px;
  }

  .nik-scent-image-card,
  .nik-scent-content {

    flex: 0 0 calc(50% - 10px);
  }

  .nik-scent-content {
   
  }

  .nik-scent-content h1 {
    font-size: 36px;
    line-height: 42px;
  }

  .nik-scent-description {
    width: calc(100% - 60px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .nik-scent-section {
    height: auto;
    min-height: 100vh;
    padding: 30px 20px;
  }

  .nik-scent-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .nik-scent-image-card {
    width: 100%;
    height: auto;
    flex: none;
    aspect-ratio: 1 / 1;
  }

  .nik-scent-content {
    width: 100%;
    height: auto;
    flex: none;
    min-height: 500px;
    padding: 45px 20px;
    gap: 24px;
  }

  .nik-scent-content h1 {
    height: auto;
    font-size: 31px;
    line-height: 36px;
  }

  .nik-scent-description {
    width: 100%;
    max-width: 400px;
    font-size: 14px;
    line-height: 21px;
  }

  .nik-scent-badges {
    width: 100%;
  }

  .nik-scent-badge-large {
    width: auto;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .nik-scent-badge-row {
    width: 100%;
    gap: 6px;
  }

  .nik-scent-badge {
    width: auto;
    height: 38px;
    font-size: 11px;
    padding: 6px 10px;
  }

  .nik-scent-badge-blue {
    width: 52%;
  }

  .nik-scent-badge-green {
    width: 46%;
  }

  .nik-scent-badge-yellow {
    width: 42%;
  }

  .nik-scent-badge-purple {
    width: 48%;
  }

  .nik-scent-shop-button {
    width: 210px;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .nik-scent-section {
    padding: 15px;
  }

  .nik-scent-content {
    padding: 35px 15px;
  }

  .nik-scent-content h1 {
    font-size: 28px;
    line-height: 32px;
  }

  .nik-scent-description {
    font-size: 13px;
    line-height: 19px;
  }

  .nik-scent-badge {
    font-size: 12px;
  }
}

/* ==========================================================================
   SEPTEMBER HERO
   ========================================================================== */

.september-hero {
  position: relative;
  width: 100%;
  height: 650px;
  background-image: url("bg2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.september-hero-content {
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  width: 553px;
  min-height: 385px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.september-hero-copy {
  width: 553px;
}

.september-hero-copy h1 {
  width: 553px;
  font-family: "Libre Bodoni", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 42px;
  color: #000;
}

.september-hero-copy p {
  width: 553px;
  font-family: "Archivo", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #000;
}

.september-hero-buttons {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.september-hero-btn {
  width: 281px;
  height: 52px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  line-height: 17px;
  font-weight: 500;
  text-transform: uppercase;
  transition: transform 0.2s ease;
      
  text-align: center;
  margin: 0px auto;
  display: block;
}

.september-hero-btn:hover {
  transform: translateX(4px);
}

.september-arrow {
  font-size: 18px;
  line-height: 1;
  margin-left: 5px;
}

/* Tablet */
@media (max-width: 900px) {
  .september-hero {
    height: 600px;
    background-position: center;
  }

  .september-hero-content {
    left: 32px;
 
  }

  .september-hero-copy h1 {
    font-size: 36px;
    line-height: 40px;
  }

  .september-hero-copy p {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .september-hero {
    height: auto;
    min-height: unset;
    background-position: center center;
    padding: 40px 20px 50px;
  }

  .september-hero-content {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    min-height: unset;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  } 

  .september-hero-copy,
  .september-hero-copy h1,
  .september-hero-copy p {
    width: 100%;
  }

  .september-hero-copy h1 {
    font-size: 28px;
    line-height: 34px;
  }

  .september-hero-copy p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 20px;
  }

  .september-hero-buttons {
    margin-top: 0px;
    width: 100%;
    gap: 10px;
  }

  .september-hero-btn {
    width: 75%;
    max-width: 100%;
    height: 48px;
    padding: 17px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    text-align: left;
  }
}


/* ==========================================================================
   LOGO WRAPPER
   ========================================================================== */

.logo-wrapper {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 6px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}


.logo-wrapper img {
  display: block;
  height: auto;
  width: auto;
  object-fit: contain;
      padding-bottom: 25px;
}




/* ==========================================================================
/* ==========================================================================
   LOVED BY OUR COMMUNITY (TESTIMONIALS)
   ========================================================================== */

.community-section {
    position: relative;
    width: 100%;
    background: #f4f0e7;
    padding: 70px 30px;
    box-sizing: border-box;
}

.community-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.community-heading {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.community-heading h2 {
    margin: 0;
    padding: 0;
    font-family: "Libre Bodoni", serif;
    font-style: normal;
    font-weight: 500;
    font-size: 50px; 
    line-height: 1.2;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    margin-bottom: 40px;
    box-sizing: border-box;
}

/* When .community-grid is also a Swiper instance, reset grid so Swiper can control layout */
.swiper.community-grid {
    display: block;
    grid-template-columns: none;
    margin-bottom: 0;
}


.community-card {
    background: #ffffff;
    border: 1px solid #e2ded5;
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 190px;
    box-sizing: border-box;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.community-stars {
    display: flex;
    gap: 4px;
    color: #f5b300;
    font-size: 16px;
    margin-bottom: 16px;
}

.community-text {
    font-family: "Archivo", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 17px;
    line-height: 23px;
    color: #2b2b2b;
    margin: 0;
    max-width: 320px;
}

.community-action {
    width: 100%;
    display: flex;
    justify-content: center;
	margin-top: 26px;
}

.community-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    height: 48px;
    padding: 10px 24px;
    background: #000000;
    border: 1px solid #000000;
    border-radius: 40px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Archivo", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.community-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
    text-decoration: none;
    transform: translateY(-2px);
}

.community-btn i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.community-btn:hover i {
    transform: translateX(3px);
}

/* Responsive */




/* ==========================================================================
   MAIN NAVBAR
   ========================================================================== */

/* ==========================================================================
   COMMUNITY SWIPER — MOBILE CAROUSEL OVERRIDES
   ========================================================================== */

.communitySwiper .swiper-slide {
    height: auto;
}

.communitySwiper .community-card {
    height: 100%;
}



/* Pagination dot styles */
.community-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.community-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    border-radius: 50%;
    transition: background 0.25s, transform 0.25s;
}

.community-pagination .swiper-pagination-bullet-active {
    background: #000;
    transform: scale(1.2);
}
/* Mobile — 2×2 grid layout */
@media (max-width: 600px) {
  .logo-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    width: 100%;
    padding: 10px 20px 20px;
    height: auto;
  }

  .logo-wrapper img {
    max-width: 100%;
    width: 100%;
    height: 60px;
    object-fit: contain;
    padding-bottom: 0;
  }
}

