body {
  background: #fff;
  /*font-family: "Montserrat", sans-serif;*/
  font-family: "Raleway", sans-serif;
  color: #545660;
}
/* ===== YouTube Fullscreen Fix ===== */
.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

@media (max-width: 768px) {
  .video-container {
    height: 100vh; /* Ensure full viewport height on mobile */
  }
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}

@media (min-aspect-ratio: 16/9) {
  .video-wrapper iframe {
    /* height = 100 * (9/16) = 56.25 */
    height: 56.25vw;
    width: 100vw;
  }
}

@media (max-aspect-ratio: 16/9) {
  .video-wrapper iframe {
    /* width = 100 * (16/9) = 177.78 */
    width: 177.78vh;
    height: 100vh;
  }
}

/* ===== Overlay Content ===== */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* content toward bottom */
  align-items: center;
  background: rgba(0, 0, 0, 0.35); /* dark overlay */
  padding: 120px 20px 40px 20px; /* top, sides, bottom */
  box-sizing: border-box;
  text-align: center;
}
.video-overlay .product-img {
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
}
.video-overlay .content {
  text-align: center;
  color: #fff;
}
.video-overlay .content h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.video-overlay .content p {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.video-overlay .btn {
  margin: 5px;
  border: 2px solid white;
  color: white;
  background: transparent;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 15px;
  text-transform: uppercase;
}
.video-overlay .btn:hover {
  background: white;
  color: #9e8844;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .video-overlay {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    height: 100%; /* Full height coverage */
  }
  .video-overlay .product-img {
    max-width: 200px;
    margin-bottom: 15px;
  }
  .video-overlay .content h2 {
    font-size: 2rem;
  }
  .video-overlay .content p {
    font-size: 1rem;
  }
}
/* ===== Carousel ===== */
.carousel-item {
  position: relative;
  height: 100vh;
}
.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.2); /* increase image size slightly */
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.overlay-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
  padding: 40px;
  margin-top: 90px;
}
.product-img {
  max-width: 50%;
  height: auto;
}
.content h2 {
  font-size: 3rem;
  font-weight: bold;
}
.content p {
  font-size: 2.5rem;
  margin: 10px 0;
  font-weight: 700;
}
.content .btn {
  margin: 5px;
  border: 2px solid white;
  color: white;
  background: transparent;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 15px;
  text-transform: uppercase;
}
.content .btn:hover {
  background: white;
  color: #9e8844;
}

@media (max-width: 768px) {
  .overlay-content {
    flex-direction: column;
    text-align: center;
  }
  .product-img {
    max-width: 200px;
    margin-bottom: 20px;
  }
  .content h2 {
    font-size: 1.8rem;
  }
  .content p {
    font-size: 1.8rem;
  }
}

/* ===== Logo ===== */
.logo img {
  max-height: 100px;
  width: auto;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}
.sticky-header.sticky-active .logo img {
  max-height: 70px;
}

/* ===== Top Bar ===== */
.top-bar {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid #9e8844;
  font-size: 13px; /* smaller default on desktop */
  color: #9e8844;
  font-weight: 500;
  padding: 0px 0; /* reduced height */
  transition: all 0.3s ease-in-out;
}
.top-bar a {
  color: #9e8844;
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.5s;
}
.top-bar a:hover {
  color: #d6bc6b;
}

/* Shrink top-bar on scroll */
.sticky-header.sticky-active .top-bar {
  padding: 4px 0;
  font-size: 13px;
}
@media (min-width: 992px) {
  /* Hide top-bar completely only on desktop */
  .sticky-header.sticky-active .top-bar {
    display: none !important;
  }
}

/* ===== Navbar Links ===== */
.navbar-nav .nav-link {
  position: relative;
  color: #9e8844 !important;
  font-weight: 500;
  font-size: 15px;
  margin: 0 10px;
  transition: color 0.3s;
}
.nav-link.active {
  border-bottom: 2px solid #d2b55b;
}
.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #d2b55b;
  transition: width 0.3s;
}
.navbar-nav .nav-link:hover::before {
  width: 100%;
}
.navbar-nav .nav-link:hover {
  color: #d2b55b !important;
}

.tinputsearch {
  background-color: #f1f2f3;
}
/* ===== Search Box ===== */
.search-box input {
  border: none;
  background: #f5f6f7;
}
.search-box button {
  background: #9e8844;
  border: none;
  color: #fff;
}
.search-box input:focus {
  outline: none;
  box-shadow: none;
}

/* ===== Mobile Adjustments ===== */
@media (max-width: 991.98px) {
  .top-bar .search-box {
    display: none;
  }
  .logo img {
    max-height: 70px;
  }
  .navbar-toggler {
    border: none;
    font-size: 1.5rem;
    color: #9e8844;
  }
  .cart-icon {
    font-size: 1.1rem;
    color: #9e8844;
  }

  .mobile-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1050;
  }
  .mobile-menu .nav-link {
    color: #9e8844 !important;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid #e5d7b3;
  }
  .mobile-menu .nav-link:hover {
    color: #d2b55b !important;
  }
}

@media (max-width: 991.98px) {
  .top-bar {
    font-size: 16px;
    text-align: center;
  }
}

/* ===== Dropdown Menu ===== */
.navbar .dropdown-menu {
  border: none;
  box-shadow: none;
  padding: 0;
  margin-top: 0;
  background: transparent;
  min-width: 180px;
}
.navbar .dropdown-menu .dropdown-item {
  font-size: 15px;
  font-weight: 400;
  color: #9e8844;
  padding: 6px 0;
  background: transparent;
  white-space: nowrap;
  border-bottom: 1px solid #e5d7b3;
}
.navbar .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: #d2b55b !important;
}
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }
  .navbar .dropdown-menu .dropdown-item {
    border-bottom: none !important;
  }
}

/* ===== Sticky Header ===== */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  transition: all 0.3s ease-in-out;
}

/* Default navbar height */
.sticky-header .navbar {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.85) !important;
  transition: all 0.3s ease-in-out;
}

/* Shrink navbar when scrolling */
.sticky-header.sticky-active .navbar {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* ===== Navbar (Desktop Default Smaller) ===== */
@media (min-width: 992px) {
  .sticky-header .navbar {
    padding: 8px 0; /* smaller navbar height on desktop */
  }
  .logo img {
    max-height: 70px; /* smaller logo on desktop */
  }
}

/* ===== Navbar Shrinks More on Scroll ===== */
.sticky-header.sticky-active .navbar {
  padding: 4px 0; /* shrink further when scrolling */
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.sticky-header.sticky-active .logo img {
  max-height: 55px; /* shrink logo further */
}
@media (max-width: 768px) {
  .overlay-content {
    flex-direction: column;
    text-align: center;
    padding-top: 120px; /* push content downward */
  }

  .product-img {
    max-width: 200px;
    margin-bottom: 20px;
  }

  .content h2 {
    font-size: 1.8rem;
  }
  .content p {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    background:#fff; /* white background for desktop */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* subtle shadow */
    border-radius: 6px; /* optional: rounded corners */
  }

  .navbar .dropdown-menu .dropdown-item {
    border-bottom: none !important;
    padding: 8px 15px;
  }

  .navbar .dropdown-menu .dropdown-item:hover {
    background: #f8f8f8; /* light gray hover effect */
    color: #9e8844 !important;
  }
}

/* Headings */
h1,
h2 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a2873b; /* Gold */
}

/* Paragraph styles */
.section-text {
  font-size: 1rem;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

/* Buttons */
.btn-custom {
  border: 2px solid #a2873b;
  color: #a2873b;
  border-radius: 10px;
  padding: 10px 20px;
  margin: 5px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.btn-custom:hover {
  background-color: #9e8844;
  color: #fff;
}

/* Decorative elements */
.flower-img {
  max-width: 120px;
  margin-bottom: 20px;
}

/* Highlight text */
.highlight-text {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #a2873b;
}
.highlight-text strong {
  font-weight: 700;
  color: #a2873b;
}

@media (max-width: 768px) {
  .highlight-text {
    font-size: 1.2rem;
    letter-spacing: 1.2px;
  }
}

/* Images */
.profile-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}
.product-img {
  max-width: 250px;
  margin-bottom: 20px;
}
/* card  */
.how-to-use {
  border: 2px solid #d4b253;
  border-radius: 15px;
  padding: 50px 20px;
}

.section-title {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #a8893d;
}

.step-title {
  font-weight: bold;
  color: #d2b55b;
}

.step-text {
  font-size: 19px;
  color: #9e8844;
}

.icon {
  position: relative;
  display: inline-block;
}

.icon img {
  max-width: 120px;
  opacity: 0.4;
}

.icon .number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #a8893d;
  font-weight: 500;
}

/* Wave for you */
.section {
  text-align: center;
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.section img {
  max-width: 150px;
  margin-bottom: 20px;
  opacity: 1.5; /* faded look */
}

.section h2 {
  font-size: 2.2rem;
  color: #a8903b; /* golden color */
  font-weight: 400; /* lighter look */
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}

.btn-outline {
  padding: 14px 34px;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #a8903b;
  border: 2px solid #a8903b;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #9e8844;
  color: #fff;
}

@media (max-width: 768px) {
  .section h2 {
    font-size: 1.6rem;
  }
  .section p {
    font-size: 1rem;
  }
}
.spectrum-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px;
}

.center-image {
  width: 300px;
  z-index: 1;
}

.energy-box {
  position: absolute;
  width: 220px;
  text-align: center;
  font-size: 16px;
}

.energy-box h2 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
}

.energy-box span {
  font-size: 14px;
  color: #bfa252;
}

.energy-box p {
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0;
}

/* Connecting Lines */
.energy-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 120px; /* length of the line */
  background: currentColor;
  transform-origin: top center;
  z-index: -1; /* keeps line behind the text */
}

/* Adjust angles + distance */
.top-left::before {
  transform: rotate(220deg) translateY(-150px);
}
.top-right::before {
  transform: rotate(320deg) translateY(-150px);
}
.bottom-left::before {
  transform: rotate(140deg) translateY(-150px);
}
.bottom-right::before {
  transform: rotate(40deg) translateY(-150px);
}
.mid-left::before {
  transform: rotate(180deg) translateY(-150px);
}
.mid-right::before {
  transform: rotate(0deg) translateY(-150px);
}

/* Button colors */
.top-left button {
  border-color: #8cc63f;
  color: #8cc63f;
}
.top-right button {
  border-color: #3d7d6d;
  color: #3d7d6d;
}
.bottom-left button {
  border-color: #f15a29;
  color: #f15a29;
}
.bottom-right button {
  border-color: #7d5ba6;
  color: #7d5ba6;
}
.mid-left button {
  border-color: #a0522d;
  color: #a0522d;
}
.mid-right button {
  border-color: #d63384;
  color: #d63384;
}
/* Botanical world cards  stat section*/
.stats-section {
  text-align: center;
  padding: 20px 10px;
  margin-top: -50px;
  font-family: 'Raleway', sans-serif;
}

.stats-section h2 {
  font-size: 20px;
  font-weight: bold;
  color: #9e8844; /* golden text */
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
   font-family: 'Raleway', sans-serif;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  justify-items: center;
   font-family: 'Raleway', sans-serif;
}

.stat-box {
  max-width: 160px;
}

.stat-box img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add smooth transition */
}

.stat-box img:hover {
  transform: scale(1.1); /* Slight zoom-in effect */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Optional shadow on hover */
}


.stat-box h3 {
  font-size: 28px;
  color: #d2b55b; /* golden number */
  margin: 5px 0;
  font-weight: bold;
  font-family: 'Raleway', sans-serif;
}

.stat-box p {
  font-size: 14px;
  color: #9e8844;
  margin: 0;
  line-height: 1.4;
  font-family: 'Raleway', sans-serif;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .stat-box h3 {
    font-size: 22px;
  }
  .stat-box p {
    font-size: 13px;
  }
}
/* Info Section */
.info-section {
  padding: 60px 20px;
}

.info-section h2 {
  font-size: 18px;
  font-weight: bold;
  color: #ab8844; /* Golden Brown */
  letter-spacing: 1px;
}

.button-group {
  margin-top: 40px;
}

.custom-btn {
  display: inline-block;
  padding: 14px 40px;
  margin: 0 10px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9e8844;
  background: transparent;
  border: 2px solid #9e8844;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background: #9e8844;
  color: #fff;
}
/* Text section  */
.section {
  max-width: 900px;
  margin: 80px auto;
  padding: 20px;
}

.section img {
  width: 800px; /* adjust size of flower image */
  margin-bottom: 20px;
}

.section h2 {
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #9e8844; /* golden brown text */
  margin-bottom: 30px;
}

.section p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 0%;
  /* text-align: justify; */
}
/* image gallery */
.gallery {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
  max-width: 700px;
  margin: 40px auto;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-section {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center; /* align vertically */
  gap: 20px; /* space between text and button */
  margin: 40px 0;
  margin-top: -10px;
}

.story-section h2 {
  font-size: 18px;
  font-weight: medium;
  color: #9f8852;
  letter-spacing: 1px;
  margin: 0;
}

.btn {
  padding: 12px 30px;
  border: 2px solid #9f8852;
  background: transparent;
  color: #9f8852;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #9f8852;
  color: #fff;
}

/* =============================
   INSTAGRAM SECTION
   ============================= */
.instagram-section {
  margin-top: -50px;
}
.ambassador-title {
  color: #a2873b;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.ambassador-divider {
  max-width: 180px;
  margin-bottom: 10px;
}
.ambassador-desc {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
}
.ambassador-btn {
  border-radius: 12px;
  border: 2px solid #a2873b;
  color: #fff;
  font-size: 1.1rem;
  padding: 12px 40px;
}
/* ===== Instagram & Ambassador Section ===== */
.instagram-section h2,
.ambassador-section h2 {
  color: #a2873b;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.instagram-section img.logo {
  max-width: 100px;
  margin-bottom: 10px;
}

.instagram-section .profile-info {
  font-size: 1.8rem;
  font-weight: 500;
  color: #a2873b;
  margin-bottom: 10px;
}

.instagram-section .profile-info span {
  font-size: 1rem;
  font-weight: 400;
  color: #a2873b;
  margin-left: 15px;
}

.instagram-section hr {
  margin: 1rem 0;
}

.instagram-section .img-fluid {
  border-radius: 8px;
}

.instagram-section .btn-load {
  border-radius: 8px;
  border: 2px solid #a2873b;
  color: #a2873b;
}

.instagram-section .btn-follow {
  background: #a2873b;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
}

/* ===== Ambassador Section ===== */
.ambassador-section img.divider {
  max-width: 180px;
  margin-bottom: 10px;
}

.ambassador-section p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
}

.ambassador-section .btn-ambassador {
  border-radius: 12px;
  border: 2px solid #a2873b;
  color: #a2873b;
  font-size: 1.1rem;
  padding: 12px 40px;
}

/* ===== Salons & Spas Section ===== */
.salons-section h3 {
  font-size: 1.8rem;
  color: #a2873b;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: 'Raleway', sans-serif;
}

.salons-section p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
  font-family: 'Raleway', sans-serif;
}

.salons-section .btn-salon {
  border-radius: 12px;
  border: 2px solid #a2873b;
  /* color: #a2873b; */
  font-size: 1.1rem;
  padding: 16px 40px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: white;
  font-family: 'Raleway', sans-serif;
}

/* client review section start */
        .testimonial-section {
            width: 100%;
            padding: 60px 0;
            text-align: center;
            min-height: 100vh;
            
        }

        .testimonial-section h2 {
            font-size: 28px;
            color: #b9a253; /* Gold color */
            margin-bottom: 50px;
            letter-spacing: 2px;
            font-weight: 500;
            text-transform: uppercase;
        }
        
        /* Swiper container needs to allow space for arrows */
        .swiper-container {
            width: 100%;
            max-width: 1200px;
            padding: 20px 60px; /* Padding on sides for arrows */
            box-sizing: border-box;
        }

        .swiper-slide {
            /* This ensures that the cards inside will have equal height */
            height: auto;
            display: flex;
        }

        .testimonial-card {
            background: #fff;
            width: 100%;
            padding: 40px;
            border-radius: 25px; /* Softer corners */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-sizing: border-box;
        }

        .testimonial-image {
            height: 100px; /* Set a fixed height */
            margin-bottom: 10px;
        }

        .testimonial-image img {
            height: 100%;
            width: 150px; /* Fixed width for consistency */
            object-fit: cover; /* Ensure the image fits well */
            border-radius: 15px; /* Rounded corners for images */
        }

        .testimonial-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #0b0f29;
        }

        /* This is the key to equal card heights */
        .testimonial-card p {
            font-size: 15px;
            line-height: 1.6;
            color: #555;
            flex-grow: 1; /* Pushes author to the bottom */
            margin-bottom: 20px;
            text-align: justify;
        }

        .testimonial-card .author {
            font-size: 14px;
            color: #777;
            font-weight: 500;
        }
        
        .read-more {
            color: #b9a253;
            font-weight: 500;
            text-decoration: none;
        }

        /* --- Custom Navigation & Pagination --- */
        .swiper-button-next,
        .swiper-button-prev {
            color: #b9a253 !important; /* Gold color for arrows */
            --swiper-navigation-size: 30px; /* Make arrows smaller */
        }

        .swiper-pagination {
            position: static; /* Let it sit naturally below the swiper */
            margin-top: 40px; /* This creates the space you wanted */
        }
        
        .swiper-pagination .swiper-pagination-bullet {
            background: #d1d1d1;
            opacity: 1;
        }

        .swiper-pagination .swiper-pagination-bullet-active {
            background: #b9a253; /* Gold color for active dot */
        }
        
        /* Adjustments for smaller screens */
        @media (max-width: 767px) {
            .swiper-container {
                padding: 20px 15px; /* Less padding on mobile */
            }
            .swiper-button-next,
            .swiper-button-prev {
                display: none; /* Hide arrows on mobile */
            }
        }
/* Client review end */

 
.energy-spectrum-section {
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  /* Prevent horizontal scroll on small devices */
}
.energy-spectrum-container {
  position: relative;
  margin: auto;
}
 
.spectrum-image-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
 
.spectrum-image-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
}
 
/* Base style for all energy items */
.energy-item {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  z-index: 5;
}
 
/* Color-specific styles */
.focus-color {
  color: #8cc63f;
}
 
.balance-color {
  color: #3d7d6d;
}
 
.adventure-color {
  color: #f15a29;
}
 
.imagination-color {
  color: #7d5ba6;
}
 
.grounding-color {
  color: #a0522d;
}
 
.charisma-color {
  color: #d63384;
}
 
/* --- MOBILE FIRST STYLES (< 768px) --- */
/* This is the default state */
.energy-spectrum-container {
  width: 100%;
  height: 400px;
  position: relative;
  margin-top: -60px;
}
 
.spectrum-image-wrapper img {
  width: 200px;
}
 
/* Gold line for all screen sizes - horizontal line style */
.desktop-content .gold-line {
  height: 2px;
  background: #c8a870;
  margin: 0 0 15px 0;
  width: 100%;
  display: block;
  border-radius: 1px;
}
 
.energy-item .desktop-content {
  display: none;
  /* Hide detailed text on small mobile */
}
 
.energy-item .mobile-content {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}
 
/* Mobile positioning - improved to avoid negative positions */
.focus-item {
  top: 70px;
  left: 32%;
  transform: translateX(-80%);
}
 
.balance-item {
  top: 70px;
  right: 101px;
}
 
.adventure-item {
  top: 53%;
  left: 35px;
  transform: translateY(-100%);
}
 
.imagination-item {
  top: 54%;
  right: 32px;
  transform: translateY(-100%);
}
 
.grounding-item {
  bottom: 70px;
  left: 113px;
}
 
.charisma-item {
  bottom: 70px;
  right: 110px;
}
 
/* Small tablets (441px - 707px) - Numbers Only View */
@media (min-width: 441px) and (max-width: 707px) {
  .energy-spectrum-container {
    height: 480px;
  }
 
  .spectrum-image-wrapper img {
    width: 270px;
  }
 
  /* Hide desktop content and show mobile content (numbers only) */
  .energy-item .desktop-content {
    display: none;
  }
 
  .energy-item .mobile-content {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
  }
 
  /* Better positioning for the numbers */
  .focus-item {
    top: 66px;
    left: 34%;
    transform: translateX(-50%);
  }
 
  .balance-item {
    top: 70px;
    right: 29%;
  }
 
  .adventure-item {
    top: 53%;
    left: 11%;
  }
 
  .imagination-item {
    top: 53%;
    right: 11%;
  }
 
  .grounding-item {
    bottom: 70px;
    left: 30%;
  }
 
  .charisma-item {
    bottom: 70px;
    right: 28%;
    left: auto;
    transform: none;
  }
}
 
/* Small tablets (>= 768px) */
@media (min-width: 708px) and (max-width: 991px) {
  .energy-spectrum-container {
    height: 450px;
    margin-top: 1px;
  }
 
  .spectrum-image-wrapper img {
    width: 280px;
  }
 
  .energy-item .desktop-content {
    display: block;
    width: 200px;
  }
 
  .energy-item .mobile-content {
    display: none;
  }
 
  .desktop-content h2 {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 5px 0;
  }
 
  .desktop-content .unit {
    font-size: 0.7rem;
    color: #9e8844;
    text-transform: uppercase;
    margin-left: 5px;
  }
 
  .desktop-content p {
    font-size: 0.8rem;
    font-weight: 400;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
 
  .desktop-content .btn-energy {
    padding: 5px 7px;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 4px;
    background: transparent;
    border: 1px solid;
    text-transform: uppercase;
    text-decoration: none;
  }
 
  /* Positioning for small tablets */
  .focus-item {
    top: 0;
    left: 27%;
    transform: translateX(-50%);
    text-align: right;
  }
 
  .balance-item {
    top: 2px;
    right: 15%;
    text-align: left;
  }
 
  .adventure-item {
    top: 285px;
    left: 10px;
    text-align: right;
  }
 
  .imagination-item {
    top: 268px;
    right: 10px;
    text-align: left;
  }
 
  .grounding-item {
    bottom: -10px;
    left: 18%;
    text-align: right;
  }
 
  .charisma-item {
    bottom: 0px;
    right: 18%;
    left: auto;
    transform: none;
    text-align: left;
  }
}
 
/* --- DESKTOP & LARGE TABLET STYLES (>= 992px) --- */
@media (min-width: 992px) {
  /* Common styles for all desktop sizes */
  .energy-spectrum-section {
    min-height: 600px;
  }
 
  .energy-item .desktop-content {
    display: block;
  }
 
  .energy-item .mobile-content {
    display: none;
  }
 
  /* Button hover effects for all desktop sizes */
  .desktop-content .btn-energy:hover {
    color: white !important;
  }
 
  /* Color-specific hover backgrounds */
  .desktop-content .btn-energy.focus-color:hover {
    background-color: #8cc63f;
  }
 
  .desktop-content .btn-energy.balance-color:hover {
    background-color: #3d7d6d;
  }
 
  .desktop-content .btn-energy.adventure-color:hover {
    background-color: #f15a29;
  }
 
  .desktop-content .btn-energy.imagination-color:hover {
    background-color: #7d5ba6;
  }
 
  .desktop-content .btn-energy.grounding-color:hover {
    background-color: #a0522d;
  }
 
  .desktop-content .btn-energy.charisma-color:hover {
    background-color: #d63384;
  }
}
 
/* --- LARGE DESKTOP STYLES (>= 1364px) --- */
@media (min-width: 1364px) {
  .energy-spectrum-section {
    min-height: 750px;
  }
 
  .energy-spectrum-container {
    width: 100%;
    max-width: 1400px;
    height: 850px;
    margin-top: 1px;
  }
 
  .spectrum-image-wrapper img {
    width: 520px;
  }
 
  .desktop-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 5px 0;
  }
 
  .desktop-content .unit {
    font-size: 1rem;
    color: #9e8844;
    text-transform: uppercase;
    margin-left: 8px;
  }
 
  .desktop-content p {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0 0 18px 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
 
  .desktop-content .btn-energy {
    padding: 8px 9px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 5px;
    background: transparent;
    border: 2px solid;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 1px;
  }
 
  /* Large Desktop positioning */
  .focus-item {
    top: 12px;
    left: 30%;
    transform: translateX(-50%);
    width: 320px;
    text-align: right;
  }
 
  .focus-item .desktop-content {
    width: 280px;
    margin: 0 auto;
  }
 
  .balance-item {
    top: 12px;
    right: 16%;
    width: 320px;
    text-align: left;
  }
 
  .balance-item .desktop-content {
    width: 280px;
  }
 
  .adventure-item {
    top: 515px;
    left: 90px;
    width: 320px;
    text-align: right;
  }
 
  .adventure-item .desktop-content {
    width: 280px;
    margin-left: auto;
  }
 
  .imagination-item {
    top: 512px;
    right: 90px;
    width: 320px;
    text-align: left;
  }
 
  .imagination-item .desktop-content {
    width: 280px;
  }
 
  .grounding-item {
    bottom: 25px;
    left: 17%;
    width: 320px;
    text-align: right;
  }
 
  .grounding-item .desktop-content {
    width: 280px;
    margin-left: auto;
  }
 
  .charisma-item {
    bottom: 25px;
    right: 16%;
    left: auto;
    width: 320px;
    text-align: left;
    transform: none;
  }
 
  .charisma-item .desktop-content {
    width: 280px;
  }
}
 
/* --- MEDIUM DESKTOP/TABLET STYLES (992px - 1364px) --- */
@media (min-width: 992px) and (max-width: 1363px) {
  .energy-spectrum-section {
    min-height: 600px;
  }
 
  .energy-spectrum-container {
    width: 100%;
    max-width: 1250px;
    height: 600px;
    margin-top: 1px;
  }
 
  .spectrum-image-wrapper img {
    width: 450px;
  }
 
  .energy-item .desktop-content {
    width: 230px;
  }
 
  .desktop-content h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 5px 0;
    display: inline-block;
  }
 
  .desktop-content .unit {
    font-size: 0.8rem;
    color: #9e8844;
    text-transform: uppercase;
    margin-left: 8px;
  }
 
  .desktop-content p {
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 15px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
 
  .desktop-content .btn-energy {
    padding: 6px 8px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 5px;
    background: transparent;
    border: 2px solid;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
 
  /* Medium Desktop positioning */
  .focus-item {
    top: 9px;
    left: 28%;
    transform: translateX(-50%);
    width: 240px;
    text-align: right;
  }
 
  .focus-item .desktop-content {
    width: 220px;
    margin: 0 auto;
  }
 
  .balance-item {
    top: 6px;
    right: 12%;
    width: 240px;
    text-align: left;
  }
 
  .balance-item .desktop-content {
    width: 220px;
  }
 
  .adventure-item {
    top: 370px;
    left: 30px;
    width: 240px;
    text-align: right;
  }
 
  .adventure-item .desktop-content {
    width: 220px;
    margin-left: auto;
  }
 
  .imagination-item {
    top: 350px;
    right: 20px;
    width: 240px;
    text-align: left;
  }
 
  .imagination-item .desktop-content {
    width: 220px;
  }
 
  .grounding-item {
    bottom: 0px;
    left: 15%;
    width: 240px;
    text-align: right;
  }
 
  .grounding-item .desktop-content {
    width: 220px;
    margin-left: auto;
  }
 
  .charisma-item {
    bottom: 16px;
    right: 15%;
    left: auto;
    transform: none;
    width: 240px;
    text-align: left;
  }
 
  .charisma-item .desktop-content {
    width: 220px;
  }
}
 
/* =============================================== */
/* === NEW ENERGY SPECTRUM SECTION STYLES END ==== */
/* =============================================== */

/* Phia philosophy start */

.image-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  opacity: 0.95; /* Slightly faded look */
  margin-top: -150px;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.image-banner img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9; /* Slightly faded look */
  object-fit: cover;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Center text */
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  z-index: 2;
}

/* Phia philosophy end */

/* Footer */

.phia-footer {
  padding-top: 30px;
  padding-bottom: 20px;
  margin-top: -50px;
}

/* 
   --- Newsletter & Divider Section ---
*/
/* Minimal custom CSS for newsletter form, rely on Bootstrap grid */
.search-box .input-group {
  width: 220px;
  height: 6px;
}
.search-box .form-control {
  border-radius: 0.5rem 0 0 0.5rem;
  background: #f5f6f7;
  border: 1px solid #e5d7b3;
  font-size: 15px;
  color: #545660;
}
.search-box .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #9e8844;
}
/* Make search button height smaller */
.search-box .btn {
  border-radius: 0 0.5rem 0.5rem 0;
  border: 1px solid #9e8844;
  color: #9e8844;
  background: #fff;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
  height: 35px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.search-box .btn:hover {
  background: #9e8844;
  color: #fff;
}
.newsletter-section {
  text-align: center;
}

.newsletter-form-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto 25px auto;
}

.newsletter-input {
  flex: 1 1 0;
  min-width: 180px;
  max-width: 300px;
  height: 50px;
  font-size: 15px;
  color: #545660;
  background-color: #fff;
  border: 2px solid #999999;
  border-radius: 5px;
  padding: 0 18px;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: "Raleway", sans-serif;
}

.newsletter-input::placeholder {
  color: #a9a9a9;
  opacity: 1;
}

.newsletter-input:focus {
  border-color: #9e8844;
  box-shadow: 0 0 0 0.2rem rgba(158, 136, 68, 0.18);
  outline: none;
}

.newsletter-btn {
  background: transparent;
  border: 2px solid #9e8844;
  color: #9e8844;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 0 32px;
  height: 50px;
  letter-spacing: 1px;
  transition: all 0.3s;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  min-width: 150px;
}

.newsletter-btn:hover {
  background: #9e8844;
  color: #fff;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 10px 0;
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #d2b55b; /* Using a neutral light gray for dividers */
  margin: 0 40px;
}

.divider-icon {
  max-width: 100px;
}

.newsletter-title {
  /* COLOR: Set heading color to Gloden (#9e8844) */
  color: #9e8844;
  /* font-weight: 100;  */
  font-size: 29px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.newsletter-form .form-control {
  height: 50px;
  font-size: 15px;
  margin-bottom: px;
  color: #545660;
  background-color: #ffffff;
  border: 2px solid #999999;
  border-radius: 5px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form .form-control::placeholder {
  color: #a9a9a9; /* A lighter grey for the placeholder */
  opacity: 1;
}

.newsletter-form .form-control:focus {
  border-color: #9e8844;
  box-shadow: 0 0 0 0.2rem rgba(158, 136, 68, 0.25);
  outline: 0;
}

.btn-join {
  /* COLOR: Set button styles to use Accent color */
  background-color: transparent;
  border: 2px solid #9e8844;
  color: #9e8844;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 6px;

  width: 100%;
  height: 50px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-join:hover {
  background-color: #9e8844;
  color: #ffffff;
}

/* 
   --- Main Footer Links Section ---
*/
.phia-footer {
  padding-top: 30px;
  padding-bottom: 20px;
}

/* 
   --- Newsletter & Divider Section ---
*/
.newsletter-section {
  text-align: center;
}

.newsletter-input::placeholder {
  color: #a9a9a9;
  opacity: 1;
}

.newsletter-input:focus {
  border-color: #9e8844;
  box-shadow: 0 0 0 0.2rem rgba(158, 136, 68, 0.18);
  /* .newsletter-section and .newsletter-form-row layout styles removed for Bootstrap grid */
  min-width: 150px;
}

.newsletter-btn:hover {
  background: #9e8844;
  color: #fff;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 10px 0;
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #d2b55b; /* Using a neutral light gray for dividers */
  margin: 0 40px;
}

.divider-icon {
  max-width: 100px;
}

.newsletter-title {
  /* COLOR: Set heading color to Gloden (#9e8844) */
  color: #9e8844;
  /* font-weight: 100;  */
  font-size: 29px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.newsletter-form .form-control {
  height: 50px;
  font-size: 15px;
  margin-bottom: px;
  color: #545660;
  background-color: #ffffff;
  border: 2px solid #999999;
  border-radius: 5px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form .form-control::placeholder {
  color: #a9a9a9; /* A lighter grey for the placeholder */
  opacity: 1;
}

.newsletter-form .form-control:focus {
  border-color: #9e8844;
  box-shadow: 0 0 0 0.2rem rgba(158, 136, 68, 0.25);
  outline: 0;
}

.btn-join {
  /* COLOR: Set button styles to use Accent color */
  background-color: transparent;
  border: 2px solid #9e8844;
  color: #9e8844;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 6px;

  width: 100%;
  height: 50px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-join:hover {
  background-color: #9e8844;
  color: #ffffff;
}

/* 
   --- Main Footer Links Section ---
*/
.main-footer-section {
  padding-top: 30px;
}

.footer-logo {
  max-width: 150px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.widget-title {
  color: #9e8844;

  font-weight: 600;
  font-size: 16px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding-left: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 7px;

  font-size: 14px;
  font-weight: 400;
}

.footer-links li a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #d2b55b;
}

.footer-contact i {
  color: #9e8844;
  margin-right: 12px;
  font-size: 16px;
}

.footer-phone-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-phone-link:hover {
  color: #d2b55b;
}
.footer-email-link,
.footer-address-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email-link:hover,
.footer-address-link:hover {
  color: #d2b55b;
}

.social-icons {
  margin-top: 25px;
}

.social-icons a {
  color: #9e8844;
  font-size: 18px;
  margin-right: 18px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #d6bc6b;
  opacity: 1;
}

/* 
   --- Copyright Section ---
*/
.copyright-section {
  text-align: center;
  padding-top: 20px;
  margin-top: 0px;
  border-top: 1px solid #e5e5e5; /* Neutral border color */
}

.copyright-section p {
  margin: 0;
  font-size: 14px;
  color: #9e8844;
}

/* ===================
  Client Review Section 2- Read more section
   =================== */
a {
  color: #b9975b;
  text-decoration: none;
}
a:hover {
  color: #a3854f;
}

.main-content-area {
  padding-right: 30px;
}

.sidebar {
  padding-left: 30px;
}

/* Card style for main content */
.content-box {
  background: #ffffff;
  border: none;
  padding: 40px;
  margin-bottom: 30px;
}

.post-title {
  font-family: "Lato", sans-serif;
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #3a3a3a;
  line-height: 1.2;
}

.meta {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #b9975b;
  margin-bottom: 28px;
}

.meta a {
  color: inherit;
}

/* Nav links between posts */
.nav-links {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  font-size: 14px;
  padding: 0 5px;
}

/* Comment Section Title */
.comment-reply-title {
  font-family: "Lato", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #3a3a3a;
  margin-bottom: 10px;
}

.logged-in-text {
  font-size: 15px;
}

/* Sidebar widgets */
.widget {
  margin-bottom: 45px;
}
.widget-title {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 400;
  color: #3a3a3a;
}

.widget-title.lowercase {
  text-transform: lowercase;
}

.widget ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.widget ul li {
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 15px;
}

.widget p {
  font-size: 15px;
  line-height: 1.7;
}

/* Search box with icon */
.search-box {
  position: relative;
}
.search-box input.search-field {
  border-radius: 0;
  font-size: 14px;
  padding: 8px 15px;
  border: 1px solid #e0e0e0;
  height: 46px;
  box-shadow: none;
}
.search-box input.search-field:focus {
  border-color: #b9975b;
}
.search-box button.search-submit {
  position: absolute;
  right: 0;
  top: 0;
  height: 46px;
  width: 46px;
  border: none;
  background: transparent;
  color: #777;
  font-size: 14px;
  cursor: pointer;
}

/* === NEW MEDIA QUERY FOR MOBILE RESPONSIVENESS ADDED HERE === */
@media (max-width: 991.98px) {
  .container {
    /* Adds space on the left and right of the screen */
    padding-left: 15px;
    padding-right: 15px;
  }
  .main-content-area,
  .sidebar {
    /* Removes horizontal padding that was for the desktop gutter */
    padding-left: 0;
    padding-right: 0;
  }
  .sidebar {
    /* Adds space between main content and sidebar when stacked */
    margin-top: 40px;
  }
  .content-box {
    /* Reduces padding inside the white boxes on mobile */
    padding: 25px;
  }
  .post-title {
    /* Adjusts title size for mobile */
    font-size: 32px;
  }
  .comment-reply-title {
    /* Adjusts subtitle size for mobile */
    font-size: 24px;
  }
}

/* Client Review page-2 end */

/* =============================
   CART BUTTON (HEADER)
   ============================= */
.cart-btn {
  color: #9e8844;
  font-weight: 600;
}

/* =============================
   WELLNESS PRODUCTS SECTION
   ============================= */
.wellness-products-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.wellnessheading {

   font-weight: bold;
  /* font-weight: bolder; */
  font-size: 2.5rem;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9e8844; /* Gold */
}


/* =============================
   PRODUCT GROUP SECTION
   ============================= */
.product-group-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* =============================
   HIGHLIGHT TEXT SECTION
   ============================= */
.highlight-text-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* =============================
   PARTITION SECTION
   ============================= */
.partition-section {
  margin-top: -50px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* =============================
   WAVE FOR YOU SECTION
   ============================= */
.wave-for-you-section {
  margin-top: 30px;
}

/* =============================
   SUPERCHARGED SECTION
   ============================= */
.supercharged-section {
  margin-top: 10px;
}

/* =============================
   WHO BENEFITS SECTION
   ============================= */
.who-benefits-section {
  margin-top: -5px;
}
.who-benefits-gallery {
  margin-top: -50px;
}

/* =============================
   SALON SECTION
   ============================= */
.salon-section {
  margin-top: -50px;
}
.salon-title {
  font-size: 1.8rem;
  color: #a2873b;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.salon-desc {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
}
.salon-btn {
  border-radius: 12px;
  border: 2px solid #a2873b;
  font-size: 1rem;
  padding: 10px 18px;
  font-weight: 500;
  letter-spacing: 1px;
}

/*Product*/

.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-error .button,
.woocommerce-page .woocommerce-info .button,
.woocommerce-page .woocommerce-message .button {
	float: right
}

.woocommerce .col2-set,
.woocommerce-page .col2-set {
	width: 100%
}

.woocommerce .col2-set::after,
.woocommerce .col2-set::before,
.woocommerce-page .col2-set::after,
.woocommerce-page .col2-set::before {
	content: " ";
	display: table
}

.woocommerce .col2-set::after,
.woocommerce-page .col2-set::after {
	clear: both
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
	float: left;
	max-width: 48% !important;
}

.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
	float: right;
	max-width: 48% !important;
}

.woocommerce img,
.woocommerce-page img {
	height: auto;
	max-width: 100%;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
	float: left;
	width: 48%
}

.woocommerce #content div.product div.thumbnails::after,
.woocommerce #content div.product div.thumbnails::before,
.woocommerce div.product div.thumbnails::after,
.woocommerce div.product div.thumbnails::before,
.woocommerce-page #content div.product div.thumbnails::after,
.woocommerce-page #content div.product div.thumbnails::before,
.woocommerce-page div.product div.thumbnails::after,
.woocommerce-page div.product div.thumbnails::before {
	content: " ";
	display: table
}

.woocommerce #content div.product div.thumbnails::after,
.woocommerce div.product div.thumbnails::after,
.woocommerce-page #content div.product div.thumbnails::after,
.woocommerce-page div.product div.thumbnails::after {
	clear: both
}

.woocommerce #content div.product div.thumbnails a,
.woocommerce div.product div.thumbnails a,
.woocommerce-page #content div.product div.thumbnails a,
.woocommerce-page div.product div.thumbnails a {
	float: left;
	width: 30.75%;
	margin-right: 3.8%;
	margin-bottom: 1em
}

.woocommerce #content div.product div.thumbnails a.last,
.woocommerce div.product div.thumbnails a.last,
.woocommerce-page #content div.product div.thumbnails a.last,
.woocommerce-page div.product div.thumbnails a.last {
	margin-right: 0
}

.woocommerce #content div.product div.thumbnails a.first,
.woocommerce div.product div.thumbnails a.first,
.woocommerce-page #content div.product div.thumbnails a.first,
.woocommerce-page div.product div.thumbnails a.first {
	clear: both
}

.woocommerce #content div.product div.thumbnails.columns-1 a,
.woocommerce div.product div.thumbnails.columns-1 a,
.woocommerce-page #content div.product div.thumbnails.columns-1 a,
.woocommerce-page div.product div.thumbnails.columns-1 a {
	width: 100%;
	margin-right: 0;
	float: none
}

.woocommerce #content div.product div.thumbnails.columns-2 a,
.woocommerce div.product div.thumbnails.columns-2 a,
.woocommerce-page #content div.product div.thumbnails.columns-2 a,
.woocommerce-page div.product div.thumbnails.columns-2 a {
	width: 48%
}

.woocommerce #content div.product div.thumbnails.columns-4 a,
.woocommerce div.product div.thumbnails.columns-4 a,
.woocommerce-page #content div.product div.thumbnails.columns-4 a,
.woocommerce-page div.product div.thumbnails.columns-4 a {
	width: 22.05%
}

.woocommerce #content div.product div.thumbnails.columns-5 a,
.woocommerce div.product div.thumbnails.columns-5 a,
.woocommerce-page #content div.product div.thumbnails.columns-5 a,
.woocommerce-page div.product div.thumbnails.columns-5 a {
	width: 16.9%
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
	float: right;
	width: 48%;
	clear: none
}

.woocommerce #content div.product .woocommerce-tabs,
.woocommerce div.product .woocommerce-tabs,
.woocommerce-page #content div.product .woocommerce-tabs,
.woocommerce-page div.product .woocommerce-tabs {
	clear: both
}

.woocommerce #content div.product .woocommerce-tabs ul.tabs::after,
.woocommerce #content div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after,
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::after,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::before,
.woocommerce-page div.product .woocommerce-tabs ul.tabs::after,
.woocommerce-page div.product .woocommerce-tabs ul.tabs::before {
	content: " ";
	display: table
}

.woocommerce #content div.product .woocommerce-tabs ul.tabs::after,
.woocommerce div.product .woocommerce-tabs ul.tabs::after,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::after,
.woocommerce-page div.product .woocommerce-tabs ul.tabs::after {
	clear: both
}

.woocommerce #content div.product .woocommerce-tabs ul.tabs li,
.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li {
	display: inline-block
}

.woocommerce #content div.product #reviews .comment::after,
.woocommerce #content div.product #reviews .comment::before,
.woocommerce div.product #reviews .comment::after,
.woocommerce div.product #reviews .comment::before,
.woocommerce-page #content div.product #reviews .comment::after,
.woocommerce-page #content div.product #reviews .comment::before,
.woocommerce-page div.product #reviews .comment::after,
.woocommerce-page div.product #reviews .comment::before {
	content: " ";
	display: table
}

.woocommerce #content div.product #reviews .comment::after,
.woocommerce div.product #reviews .comment::after,
.woocommerce-page #content div.product #reviews .comment::after,
.woocommerce-page div.product #reviews .comment::after {
	clear: both
}

.woocommerce #content div.product #reviews .comment img,
.woocommerce div.product #reviews .comment img,
.woocommerce-page #content div.product #reviews .comment img,
.woocommerce-page div.product #reviews .comment img {
	float: right;
	height: auto
}

.woocommerce ul.products,
.woocommerce-page ul.products {
	clear: both
}

.woocommerce ul.products::after,
.woocommerce ul.products::before,
.woocommerce-page ul.products::after,
.woocommerce-page ul.products::before {
	content: " ";
	display: table
}

.woocommerce ul.products::after,
.woocommerce-page ul.products::after {
	clear: both
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: left;
	margin: 0 3.8% 2.992em 0;
	padding: 0;
	position: relative;
	width: 22.05%;
	margin-left: 0
}

.woocommerce ul.products li.first,
.woocommerce-page ul.products li.first {
	clear: both
}

.woocommerce ul.products li.last,
.woocommerce-page ul.products li.last {
	margin-right: 0
}

.woocommerce ul.products.columns-1 li.product,
.woocommerce-page ul.products.columns-1 li.product {
	width: 100%;
	margin-right: 0
}

.woocommerce ul.products.columns-2 li.product,
.woocommerce-page ul.products.columns-2 li.product {
	width: 48%
}

.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product {
	width: 30.75%
}

.woocommerce ul.products.columns-5 li.product,
.woocommerce-page ul.products.columns-5 li.product {
	width: 16.95%
}

.woocommerce ul.products.columns-6 li.product,
.woocommerce-page ul.products.columns-6 li.product {
	width: 13.5%
}

.woocommerce-page.columns-1 ul.products li.product,
.woocommerce.columns-1 ul.products li.product {
	width: 100%;
	margin-right: 0
}

.woocommerce-page.columns-2 ul.products li.product,
.woocommerce.columns-2 ul.products li.product {
	width: 48%
}

.woocommerce-page.columns-3 ul.products li.product,
.woocommerce.columns-3 ul.products li.product {
	width: 30.75%
}

.woocommerce-page.columns-5 ul.products li.product,
.woocommerce.columns-5 ul.products li.product {
	width: 16.95%
}

.woocommerce-page.columns-6 ul.products li.product,
.woocommerce.columns-6 ul.products li.product {
	width: 13.5%
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
	float: left
}

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
	float: right
}

.woocommerce .woocommerce-pagination ul.page-numbers::after,
.woocommerce .woocommerce-pagination ul.page-numbers::before,
.woocommerce-page .woocommerce-pagination ul.page-numbers::after,
.woocommerce-page .woocommerce-pagination ul.page-numbers::before {
	content: " ";
	display: table
}

.woocommerce .woocommerce-pagination ul.page-numbers::after,
.woocommerce-page .woocommerce-pagination ul.page-numbers::after {
	clear: both
}

.woocommerce .woocommerce-pagination ul.page-numbers li,
.woocommerce-page .woocommerce-pagination ul.page-numbers li {
	display: inline-block
}

.woocommerce #content table.cart img,
.woocommerce table.cart img,
.woocommerce-page #content table.cart img,
.woocommerce-page table.cart img {
	height: auto
}

.woocommerce #content table.cart td.actions,
.woocommerce table.cart td.actions,
.woocommerce-page #content table.cart td.actions,
.woocommerce-page table.cart td.actions {
	text-align: right
}

.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
	width: 80px
}

.woocommerce #content table.cart td.actions .coupon,
.woocommerce table.cart td.actions .coupon,
.woocommerce-page #content table.cart td.actions .coupon,
.woocommerce-page table.cart td.actions .coupon {
	float: left
}

.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
	width: 100%
}

.woocommerce .cart-collaterals::after,
.woocommerce .cart-collaterals::before,
.woocommerce-page .cart-collaterals::after,
.woocommerce-page .cart-collaterals::before {
	content: " ";
	display: table
}

.woocommerce .cart-collaterals::after,
.woocommerce-page .cart-collaterals::after {
	clear: both
}

.woocommerce .cart-collaterals .related,
.woocommerce-page .cart-collaterals .related {
	width: 30.75%;
	float: left
}

.woocommerce .cart-collaterals .cross-sells,
.woocommerce-page .cart-collaterals .cross-sells {
	width: 48%;
	float: left
}

.woocommerce .cart-collaterals .cross-sells ul.products,
.woocommerce-page .cart-collaterals .cross-sells ul.products {
	float: none
}

.woocommerce .cart-collaterals .cross-sells ul.products li,
.woocommerce-page .cart-collaterals .cross-sells ul.products li {
	width: 48%
}

.woocommerce .cart-collaterals .shipping_calculator,
.woocommerce-page .cart-collaterals .shipping_calculator {
	width: 48%;
	clear: right;
	float: right
}

.woocommerce .cart-collaterals .shipping_calculator::after,
.woocommerce .cart-collaterals .shipping_calculator::before,
.woocommerce-page .cart-collaterals .shipping_calculator::after,
.woocommerce-page .cart-collaterals .shipping_calculator::before {
	content: " ";
	display: table
}

.woocommerce .cart-collaterals .shipping_calculator::after,
.woocommerce-page .cart-collaterals .shipping_calculator::after {
	clear: both
}

.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-1,
.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-2,
.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-1,
.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-2 {
	width: 47%
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
	float: right;
	width: 48%
}

.woocommerce ul.cart_list li::after,
.woocommerce ul.cart_list li::before,
.woocommerce ul.product_list_widget li::after,
.woocommerce ul.product_list_widget li::before,
.woocommerce-page ul.cart_list li::after,
.woocommerce-page ul.cart_list li::before,
.woocommerce-page ul.product_list_widget li::after,
.woocommerce-page ul.product_list_widget li::before {
	content: " ";
	display: table
}

.woocommerce ul.cart_list li::after,
.woocommerce ul.product_list_widget li::after,
.woocommerce-page ul.cart_list li::after,
.woocommerce-page ul.product_list_widget li::after {
	clear: both
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img,
.woocommerce-page ul.cart_list li img,
.woocommerce-page ul.product_list_widget li img {
	float: right;
	height: auto
}

.woocommerce form .form-row::after,
.woocommerce form .form-row::before,
.woocommerce-page form .form-row::after,
.woocommerce-page form .form-row::before {
	content: " ";
	display: table
}

.woocommerce form .form-row::after,
.woocommerce-page form .form-row::after {
	clear: both
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
	display: block
}

.woocommerce form .form-row label.checkbox,
.woocommerce-page form .form-row label.checkbox {
	display: inline;
	border-radius: 8px!important;
}

.woocommerce form .form-row select,
.woocommerce-page form .form-row select {
	width: 100%
}

.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text {
	box-sizing: border-box;
	width: 100%
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
	width: 47%;
	overflow: visible
}

.woocommerce form .form-row-first,
.woocommerce-page form .form-row-first {
	float: left
}

.woocommerce form .form-row-last,
.woocommerce-page form .form-row-last {
	float: right
}

.woocommerce form .form-row-wide,
.woocommerce-page form .form-row-wide {
	clear: both
}

.woocommerce form .password-input,
.woocommerce-page form .password-input {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	width:100% !important;
}

.woocommerce form .password-input input[type=password],
.woocommerce-page form .password-input input[type=password] {
	padding-right: 2.5rem
}

.woocommerce form .password-input input::-ms-reveal,
.woocommerce-page form .password-input input::-ms-reveal {
	display: none
}

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
	position: absolute;
	right: .7em;
	top: .7em;
	cursor: pointer
}
/*password eye*/
.woocommerce form .show-password-input::after,
.woocommerce-page form .show-password-input::after {
	font-family: WooCommerce;
	speak: never;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	margin-left: .618em;
	content: "\e010";
	text-decoration: none
}

.woocommerce form .show-password-input.display-password::after,
.woocommerce-page form .show-password-input.display-password::after {
	color: #585858
}

.woocommerce #payment .form-row select,
.woocommerce-page #payment .form-row select {
	width: auto
}

.woocommerce #payment .terms,
.woocommerce #payment .wc-terms-and-conditions,
.woocommerce-page #payment .terms,
.woocommerce-page #payment .wc-terms-and-conditions {
	text-align: left;
	padding: 0 1em 0 0;
	float: left
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
	float: right;
	

}

.woocommerce .woocommerce-billing-fields::after,
.woocommerce .woocommerce-billing-fields::before,
.woocommerce .woocommerce-shipping-fields::after,
.woocommerce .woocommerce-shipping-fields::before,
.woocommerce-page .woocommerce-billing-fields::after,
.woocommerce-page .woocommerce-billing-fields::before,
.woocommerce-page .woocommerce-shipping-fields::after,
.woocommerce-page .woocommerce-shipping-fields::before {
	content: " ";
	display: table
}

.woocommerce .woocommerce-billing-fields::after,
.woocommerce .woocommerce-shipping-fields::after,
.woocommerce-page .woocommerce-billing-fields::after,
.woocommerce-page .woocommerce-shipping-fields::after {
	clear: both
}

.woocommerce .woocommerce-terms-and-conditions,
.woocommerce-page .woocommerce-terms-and-conditions {
	margin-bottom: 1.618em;
	padding: 1.618em
}

.woocommerce .woocommerce-oembed,
.woocommerce-page .woocommerce-oembed {
	position: relative
}
/*MY ACCOUNT PAGE*/

/*
 * Styles the "My Account" navigation menu to look like the image.
 */

/* 1. The main container for the navigation */
.woocommerce-account .woocommerce-MyAccount-navigation {
    border: 1px solid #e0e0e0; /* Light grey border for the whole container */
    border-radius: 0;           /* Sharp corners, no rounding */
    max-width: 300px;           /* THIS IS THE CHANGE: Sets the maximum width */
}

/* 2. The list itself (removes bullets and default spacing) */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0;
}

/* 3. Each navigation item (creates the separator lines) */
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin: 0;
    border-bottom: 1px solid #e0e0e0; /* Separator line */
}

/* 4. Remove the border from the very last item */
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}

/* 5. The actual links inside the navigation */
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 20px;       /* Spacing inside each item */
    color: #9e8844;            /* Your gold text color */
    text-decoration: none;
    transition: all 0.2s ease;
}

/* 6. A subtle effect for the active page and when hovering */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background-color: #fafafa;  /* A very light grey highlight */
    color: #8a7539;            /* A slightly darker gold for emphasis */
}
.woocommerce-account .woocommerce-MyAccount-content {
	float: right;
	width: 68%
}

.woocommerce-account .woocommerce-MyAccount-content mark {
	background-color: transparent;
	color: inherit;
	font-weight: 700
}

.woocommerce-page.left-sidebar #content.twentyeleven {
	width: 58.4%;
	margin: 0 7.6%;
	float: right
}

.woocommerce-page.right-sidebar #content.twentyeleven {
	margin: 0 7.6%;
	width: 58.4%;
	float: left
}

.twentyfourteen .tfwc {
	padding: 12px 10px 0;
	max-width: 474px;
	margin: 0 auto
}

.twentyfourteen .tfwc .product .entry-summary {
	padding: 0 !important;
	margin: 0 0 1.618em !important
}

.twentyfourteen .tfwc div.product.hentry.has-post-thumbnail {
	margin-top: 0
}

/* Submit btn*/

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    background-color: #121212 !important;
    color: #9e8844 !important;
	/*float: left;*/
    margin-right: 15px;
	border-radius: 8px!important;
	border: 1px solid #9e8844!important;
   /* --- EDITS FOR SMALLER HEIGHT --- */
    font-size: 13px !important;       /* REDUCED font size to shrink the button's core height */
    padding: 8px 12px !important;      /* ADJUSTED padding for a balanced, small look */
    line-height: 1.2 !important;       /* Helps control vertical spacing */
    font-weight: 600 !important;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button:hover{
     background-color: #9e8844 !important;
    color: #ffffff !important;
}

/*Return to cart btn*/
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .wc-block-components-totals-coupon-link, a.components-button.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained, a.wc-block-components-checkout-return-to-cart-button {
    background-color: #ffffff !important;
    color: #9e8844 !important;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    padding: 5px !important;    padding: 10px !important;padding: 10px !important;
    border: 1px solid #121212 !important;
    border-radius: 0 !important;
}
/*Proceed to checkout btn*/
.wc-block-cart__submit-button {
    box-sizing: border-box !important;
    margin: 0;
    width: 100% !important;
    border: 1px solid !important;
    background-color: #ffffff !important;
    border: 1px solid #9e8844 !important;
    color: #9e8844 !important;
    border-radius: 8px !important;
    margin-top: 10px !important;
}
.wc-block-cart__submit-button:hover{
	background-color: #9e8844 !important;
    border: 1px solid #9e8844!important;
    color: #fff !important;
}
.wc-block-cart-item__remove-link{
	color: #e2a192 !important;
}

/*ADD TO CART BUTTON IN PRODUCT PAGE*/
/* 1. MAIN CARD LAYOUT */
/* This controls the card's appearance and internal alignment */
    .shop-wraper .product-wrap {
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

/* 2. PRODUCT NAME STYLING */
/* Small and clean product title */
    .shop-wraper .product-wrap h2.woocommerce-loop-product__title {
    font-weight: 500;
    color: #444;
    min-height: 45px;
    margin: 10px 0;
    font-size: 0.2em !important ; /* Makes it slightly smaller than its current size */
}

/* 3. STAR RATING STYLING */
    .shop-wraper .product-wrap .star-rating {
    margin-bottom: 10px;
}
    .shop-wraper .product-wrap .star-rating span::before {
    color: #c9a646;
}

/* 4. PRICE STYLING */
    .shop-wraper .product-wrap .price {
    font-size: 16px;
    font-weight: 600;
    color: #9e8844;
    margin: 0 0 15px 0; /* Adds space below the price */
    display: block;     /* THIS IS THE FIX: Forces the button onto the next line. */
}

/* 5. "ADD TO CART" BUTTON STYLING */
/* The button will now appear directly below the price */
    .shop-wraper .product-wrap a.button {
    /* --- Color and Border --- */
    background-color: transparent !important;
    color: #9e8844 !important;
    border: 1px solid #9e8844 !important;

    /* --- Shape and Size --- */
    border-radius: 8px !important;
    padding: 8px 12px !important;  /* VERY SMALL padding for a compact button */
    

    /* --- Text Styling --- */
    font-size: 13px !important;   /* VERY SMALL font size */
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    transition: all 0.3s ease;
    line-height: 1.2 !important;       /* Helps control vertical spacing */
}


/* Button hover effect */
    .shop-wraper .product-wrap a.button:hover {
    background-color: #9e8844 !important;
    color: #ffffff !important;
}
/* Add to Cart button on Single Product Page */
    button.single_add_to_cart_button.button.alt {
     background-color: transparent !important;
    color: #9e8844 !important;
    border: 1px solid #9e8844 !important;
    /* --- Shape and Size --- */
    border-radius: 8px !important;
    padding: 8px 12px !important;  /* VERY SMALL padding for a compact button */
    /* --- Text Styling --- */
    font-size: 10px !important;   /* VERY SMALL font size */
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    transition: all 0.3s ease;
    margin-left: 10px !important;
    
}

/* Hover Effect */
    button.single_add_to_cart_button.button.alt:hover {
    background-color: #9e8844 !important;
    color: #ffffff !important;
}
/*
 * Adds a border to the "Add to cart" buttons, 
 * typically in Related Products and upsells.
 */

/* Style for the button */
.woocommerce a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
     background-color: transparent !important;
    color: #9e8844 !important;
    border: 1px solid #9e8844 !important;

    /* --- Shape and Size --- */
    border-radius: 8px !important;
    padding: 8px 12px !important;  /* VERY SMALL padding for a compact button */
    

    /* --- Text Styling --- */
    font-size: 10px !important;   /* VERY SMALL font size */
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    
    transition: all 0.3s ease;
}

/* Hover effect for the button */
.woocommerce a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart:hover {
    background-color: #9e8844 !important; /* Fills the button with gold on hover */
    color: #ffffff !important;            /* Makes the text white on hover */
}

/*EMPTY CART BUTTONS*/
/*
 * Styles for the "Add to cart" button in the WooCommerce Product Grid block
 * (High Specificity Version)
 */

/* 
  This selector is more specific by targeting the core .wp-block-button__link class
  only when it is inside a WooCommerce product grid item.
*/
.wc-block-grid__product .wp-block-button__link.add_to_cart_button {
    /* --- Colors & Border --- */
    background-color: transparent !important;
    color: #9e8844 !important;
    border: 2px solid #9e8844 !important;

    /* --- Shape & Sizing --- */
    padding: 8px 20px !important;
    border-radius: 8px !important;
    line-height: 1.5 !important;
    
    transition: all 0.3s ease;
}

/* Hover effect for the button */
.wc-block-grid__product .wp-block-button__link.add_to_cart_button:hover {
    background-color: #9e8844 !important;
    color: #ffffff !important;
}