/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color:#5e5a54;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #333;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    color: #c8a165;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1rem;
    margin-top: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    background-color: #c8a165;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #b08d55;
    transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
    background-color: #f5f5f5;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    cursor: pointer;
}

.auth-links a {
    margin: 0 5px;
}

.phone i {
    margin-right: 5px;
}

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
       transition: all 0.3s ease;
    background: white;
    z-index: 1000;
    position: relative;
    width: 100%;

}
header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
header.fixed .logo img {
  max-width: 100px;
  height: auto;
}
header.fixed {
  padding: 6px 0px;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 95px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #c8a165;
}

nav ul li a i {
    font-size: 0.8rem;
    margin-left: 5px;
}

.cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #c8a165;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* Hero Section */
.hero {
    background-color: #f9f3e6;
    padding: 50px 0;
}

.hero-slider {
    position: relative;
}

.slide {
    display: flex;
    align-items: center;
}

.slide-content {
    flex: 1;
    padding: 20px;
}

.slide-content.left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-small img {
    height: 80px;
    margin-bottom: 20px;
}

.product-image {
    margin-top: 30px;
}

.slide-content.right {
    background-image: url('images/hero-bg-right.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px;
    border-radius: 10px;
}

.slide-content.right h2 {
    max-width: 80%;
}

/* About Section */
.about {
    padding: 80px 0;
    text-align: center;
}

.section-heading {
    margin-bottom: 40px;
    position: relative;
}

.section-heading::before,
.section-heading::after {
    content: '';
    display: inline-block;
    width: 100px;
    height: 1px;
    background-color: #ddd;
    margin: 0 15px;
    vertical-align: middle;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Promo Section */
.promo {
    /* background-color: #f5f5f5; */
    padding: 80px 0;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-text {
    flex: 1;
    padding-right: 50px;
    text-align: center;
}

.bath-chemical-free img {
    /* height: 100px; */
    margin-bottom: 20px;
}
section.promo {
  /* background-image: url(https://organik.thememove.com/wp-content/uploads/2020/06/hn2-s2-bg.png?id=2168) !important; */
  background-image: url('../img/hn2-s2-bg.png') !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.promo-text h2 {
    /* font-size: 4rem;
    color: #333;
    margin-bottom: 0; */
    font-size: 80px;
  line-height: 90px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-family: 'Poppins', sans-serif;
}

.promo-text p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.promo-code {
  display: inline-block;
  background-color: #ff6b6b;
  color: white;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 16px;
  margin-left: 10px;
}

.promo-image {
    flex: 1;
    text-align: right;
}

/* Ingredients Section */
.ingredients {
    padding: 80px 0;
    text-align: center;
}

.ingredients-grid {
    /* display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 50px; */
    display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* .ingredient {

    flex: 0 0 calc(14.2% - 20px);
  padding: 20px;
  margin: 10px;
} */

.ingredient:hover {
    transform: translateY(-5px);
}

.ingredient-img {
    background-color: #f9f9f9;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.ingredient-img img {
    max-width: 60%;
    max-height: 60%;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonial-header {
    max-width: 400px;
    margin-bottom: 50px;
}

.view-all {
    color: #c8a165;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
}

.view-all i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.view-all:hover i {
    transform: translateX(5px);
}

.testimonials .testimonial-card p{
    font-size: 15px;
    color:#665c5c
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 43px 40px 38px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
    flex: 1;
     flex: 0 0 300px;
    margin-bottom: 10px;
}
.testimonial-content h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #5e5a54;
}
.testimonial-slider .swiper-wrapper .swiper-slide:nth-of-type(1) .testimonial-card

{
  background:#edf5ef;
}
.testimonial-slider  .swiper-wrapper .swiper-slide:nth-of-type(2) .testimonial-card {
  background: #faf8f6;
}
.testimonial-slider  .swiper-wrapper .swiper-slide:nth-of-type(3) .testimonial-card {
  background: #e5e9f1;
}
.testimonial-slider  .swiper-wrapper .swiper-slide:nth-of-type(4) .testimonial-card {
  background: #faf8f6;
}
.testimonial-slider .swiper-wrapper .swiper-slide.swiper-slide-active .testimonial-card{
     background:#edf5ef !important; 
}
.testimonial-slider .swiper-wrapper .swiper-slide.swiper-slide-next .testimonial-card{
  background: #eff4ff !important;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}


.author-info h4 {
    margin: 0;
    font-size: 0.9rem;
}

.author-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #777;
}

.slider-dots {
    text-align: center;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #c8a165;
}
.testimonial-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.testimonial-header {
  flex: 1;
  min-width: 300px;
}

.testimonial-slider {
  flex: 2;
  min-width: 300px;
  display: flex;
  gap: 20px;

  overflow-x: hidden 
}


.testimonials * {
  font-family: 'Poppins', sans-serif;
}
.slider-dots {
  width: 100%;
}
/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    background-image: url('../img/background.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-attachment: fixed;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 150px;
    margin-bottom: 20px;
}

.footer-col p {
    color: #aaa;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #c8a165;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #c8a165;
}

.subscribe-form {
    display: flex;
    margin-top: 20px;
}
.certificationLogo img {
  display: inline-block;
  background: #fff;
  padding: 11px;
  margin-right: 10px;
  border-radius: 7px;
  max-height: 60px;
}
.clrHighlight {
  /* background: #c8a165;
  padding: 0px 9px;
  color: #fff;
  border-radius: 4px;
  margin: 0px 5px; */
}

.subscribe-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.subscribe-form button {
    background-color: #c8a165;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.85rem;
    color: #aaa;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: #c8a165;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.has-mega:hover .mega-menu {
  display: flex;
}
.nav-link {
  line-height: 100px;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 80%;
  left: 0;
  background: #fff;
  padding: 20px;
  width: 900px;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 100;
  right: 0;
  margin: auto;
}

.mega-column {
  width: 33.33%;
  display: inline-block;
  padding: 0px 10px;
}

.mega-column h3 {
  /* color: #fff; */
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}

.mega-column li {
  /* color: #ddd; */
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.back-to-top:hover {
    transform: translateY(-5px);
}
.hero-section {
  padding: 30px 0;
  /* background-color: #fff6ee; */
}

.hero-banner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}

.hero-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.tabs {
  width: 600px;
  border: 1px solid #ddd;
  border-radius: 25px;
  float: none;
  margin: 0 auto;
  background: #f7f5f0;
  overflow: hidden;
  max-width: 90%;
  margin: 0 auto;
  justify-content: space-between;   
}
.ingredient h4{
      font-family: 'Poppins', sans-serif;
}
.tabs .tab-button {
  background: transparent;
  border: 0px;
  padding: 10px 20px;
  width: 33.33%;
  display:inline-block;
  cursor: pointer;
  font-size: 16px;
}
.tab-button.active,.tab-button:hover {
  background: #c8a165;
  color: #fff;
}
.tab-content {
  display: none;
  position: relative;
}
.tab-content.active {
  display: block;
}
.headerHeroSlider,.ingredient-swiper,.testimonial-slider {
  overflow: hidden;
}
.ingredient-swiper{
    margin: 90px 0px;
}

.ingredient {
  background: #f2f2f2;
  padding: 19px;
  border-radius: 8px;
  /* border: 1px solid #fff; */
}
#mySidenav nav ul li br {
  display: none;
}
body.fixedBody {
  overflow: hidden;
  height: 100%;
}
/* Responsive Styles */
@media (max-width: 1024px) {
    .ingredients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}
.open-btn.btn{
    display: none;
}
#mySidenav{
    left: -120%;
    transition: all ease-in 0.3s;
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 999999;
    width: 100%;
    overflow-y: scroll;
    background-color: #fff;
}
#mySidenav nav ul li.nav-link .mega-menu ul li {
  line-height: 40px;
}
.ingredients-grid h4 {
  font-family: 'Poppins', sans-serif;
}
.swiper-wrapper {
      /* margin: 20px auto; */
      padding-bottom: 60px; /* Space for pagination */
      position: relative;
    }
    .swiper-pagination .swiper-pagination-bullet{
        transition: all ease-in 0.3s;
    }
    .swiper-pagination .swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 8px;
  background: #c8a165;
}

.swiper-slide img {border-radius: 4px;}
.swiper-button-prev, .swiper-button-next {
  background: #c8a165;
  color: #fff !important;
  width: 40px !important;
  height: 40px !important;

}
.swiper-button-prev:after, .swiper-button-next:after{  font-size: 16px !important;}
.testimonial-card{
    min-height: 350px;
}
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .slide {
        flex-direction: column;
    }
        #mySidenav nav ul li.nav-link.menuactive .mega-menu {
  display: block;
  width: 100%;
  box-shadow: none;
  top: 0%;
  position: relative;
  padding: 0px;
  border-top: 1px solid #ddd;
}
#mySidenav nav ul li.nav-link.menuactive .mega-column {
  width: 100%;
  padding: 0px;
}
.mega-column h3 {
  background: #f7f7f7;
  padding: 0px 10px;
  margin-bottom: 0px;
  margin-top: 10px;
}
.headerLogoAreaMobile .logo {
  width: 50%;
  float: left;
}
 .open-btn.btn{
    display: inline-block;
}   
    .slide-content {
        width: 100%;
    }
    
    .slide-content.right {
        height: 300px;
        margin-top: 30px;
    }
    
    .promo-content {
        flex-direction: column;
    }
    
    .promo-text {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-slider {
        flex-direction: column;
    }
    nav ul {
        display: none;
    }
    #mySidenav nav{
    float: left;
    width: 100%;
}
#mySidenav nav ul{
    display: block;
    text-align: left;
}
#mySidenav nav ul li{
    line-height: 40px;
    border-bottom: 1px solid #ddd;
}
#mySidenav nav ul li .nav-link{
    line-height: 40px;
}
.headerLogoAreaMobile .logo {
  width: 50%;
   float: left;
}
.headerLogoAreaMobile .cart {
  width: 50%;
  float: right;
  text-align: right;
  margin-top: 10px;
}
    .cart a.btn {
        padding: 10px;
        font-size: 12px;
        min-width: 40px;
        text-align: center;
        vertical-align: top ;
    }
    .cart a.btn.open-btn{
        font-size: 18px;
        line-height: 20px;
    }
    .product-gallery, .product-info {
  position: relative !important;
  top: 0px;
  max-height: 99999px;
  height: auto;
}
}

@media (max-width: 576px) {
 .headerLogoAreaMobile {
  width: 100%;
  padding: 10px 0px;
  float: left;
  width: 100%;
}
.swiper-button-prev, .swiper-button-next {
  background: #c8a165;
  color: #fff !important;
  width: 25px !important;
  height: 25px !important;
  border-radius: 8px !important;
}
.swiper-button-prev{left: 5px !important;}
.swiper-button-next{right: 5px !important;}
.swiper-button-prev:after, .swiper-button-next:after{  font-size: 13px !important;}
.headerLogoAreaMobile .logo img {
  max-height: 60px;
}
.tabs{
    display: flex;
  gap: 10px; /* optional spacing between buttons */
  flex-wrap: wrap;
}
.tabs .tab-button{
    font-size: 12px;
    height: 100%;
    width: auto;
}

    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

.product-gallery, .product-info{
    position: relative !important;
}
.product-container {
  margin-bottom: 60px;
}
}