/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;

    width: 70px;   /* 👈 as you want */
    height: 40px;  /* 👈 as you want */

    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    
    flex-direction: column;
    justify-content: center;
    align-items: center;

    z-index: 999;
}

.dropdown-content a {
    font-size: 10px;
    padding: 2px;
    display: block;
    text-align: center;
}

button {
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    background-color: #FFF;
}

/* Top Navigation Bar */
.navbar {
    background-color: #000;
    color: white;
    padding: 8px 0;
    font-size: 15px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
}

.nav-left, .nav-right {
    display: flex;
    gap: 25px;
}

.nav-link {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
    text-decoration: underline;
}



/* Main Header */
.main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
    width: 100%;
}

.login-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.login-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}


.loginimg1{
    width: 30px;
    height: 30px;
}

.product-menu{
   
    padding: 20px;
    border-radius: 10px;
    position: absolute;
    z-index: 1000;
     background-color: rgba(255, 255, 255, 0.467);
    height: 300px;
    backdrop-filter: blur(10px);
    display: none;
    gap: 10px;
    overflow: hidden;
    width: 733px;
    left: 16%;
    color:  black;

}
.sub-product{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.sub-product-button{
   width: 150px;
    height: 120px;
   font-size: 15px;
   border-radius: 10px;
   font-weight: 600;

}
.sub-product-2{
    overflow: hidden;
   background-color: red;
   width: 50%;
}
.sub-product-2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 10px;
}
/* Responsive adjustments only (no existing code changed) */

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.offers-dropdown {
    position: absolute;
    top: 40px;
    left: 0;
    width: 180px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    list-style: none;
    padding: 10px 0;
    display: none;
    transition: 0.3s ease;
    z-index: 1000;
}

/* Dropdown Container */
.dropdown{
position:relative;
display:inline-block;
}

/* Button */
.dropbtn{
background:#000;
padding:6px 0px;
border:none;
font-size:16px;
cursor:pointer;
font-weight:700;
}

/* Dropdown Box */
.dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Links ko full width do */
.dropdown-content a {
    display: block;
    width: 100%;
    font-size: 14px;
    padding: 10px 15px; /* yaha padding do instead */
    text-decoration: none;
    color: #333;
    background: #fff; /* ❗ ensure white */
}

.dropdown-content a:hover{
color:black;
font-weight:bold;
}

/* Show Dropdown */
.show{
display:block;
}

.header-container {
     
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav-link {
    font-weight: 700;
    position: relative;
    font-size: medium;
    color: #333;
}

.main-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3db28b;
    transition: width 0.3s ease;
}

.main-nav-link:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
     pointer-events: auto;
}

.search-box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 25px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.search-box:focus-within {
    box-shadow: 0 0 10px rgba(144, 200, 64, 0.3);
}

.search-box input {
    border: none;
    padding: 8px 15px;
    outline: none;
    width: 200px;
}

.search-box button {
    background-color: #3db28b;
    color: white;
    padding: 8px 15px;
    border: none;
}

.header-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login-logo{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 5px;
}

.icon-link {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}
.icon-link span{
     margin: 0;
}



.cart-count {
    position: absolute;
    top: 18px;
    right: -12px;
    background-color: #fff;
    border: 2px solid #1f2937;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.wellness-section {
  background: linear-gradient(135deg, #f7fdfb, #d9efe9);
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  background-color: #ebebeb;
}

.top-grid h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  margin-top: 10px;
}

.top-grid h2 span {
  font-weight: 800;
  margin-top: 10px;
}

.top-grid p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.main-message{
    text-align: center;
    font-weight: 400;
    font-size: 40px;
    color: #787878;
    margin-top: 20px;
}


/* Hero Slider */
.hero-slider {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    z-index: 99;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slide-content {
    text-align: center;
    color: #2c3e50;
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: slideUp 0.8s ease;
}

.slide-content p {
    font-size: 20px;
    animation: slideUp 1s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #85C344;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #3db28b;
    transform: scale(1.2);
}

/* Main Heading Section */
.main-heading {
    text-align: center;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.main-heading h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #408149;
}

.main-heading .highlight {
    color: #85C344;
}

.main-heading .subtitle {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 60px 20px;
    background-color: #ffff;
}

.feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(144, 200, 64, 0.2);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon img {
    transform: rotate(360deg);
}

.feature-card h3 {
    font-size: 16px;
    color: #2c3e50;
    line-height: 1.6;
}

/* Ayurveda Section */
.ayurveda-section {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(to bottom, white, #fff);
}

.ayurveda-section h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
}
.ayurveda-section .highlight{
    color: #7AB030;
}

.ayurveda-section.ayurveda-desc{
    font-size: 15px;
    color: #000;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 20px;
}

.learn-more-btn {
    display: inline-block;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
}

.learn-more-btn:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Products Section */
.products-section {
    padding: 60px 20px;
    background-color: #d9d9d9;
}

.products-section h2 {
    text-align: center;
    font-size: 32px;
    color: #3db28b;
    margin-bottom: 40px;
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #c4c0c0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease backwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    background-color: rgb(199, 195, 195);
    padding: 20px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4%;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgb(199, 195, 199);
    border: 2px solid #ddd;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background-color: #3db28b;
    color: white;
    border-color: #3db28b;
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
}

.product-category {
    font-size: px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: -25px;
}

.product-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.product-tax {
    font-size: 9px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    text-align: right;
    margin-bottom: 10px;
    margin-top: -20px;
}

.price-label {
    background-color: #aca9a3;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: bold;
}

.price {
    font-weight: bold;
    color: #000;
}

.add-to-cart {
    width: 100%;
    background-color: #629685;
    color: #FFF;
    padding: 10px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background-color: #000;
    transform: scale(1.02);
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #eceeed 0%, #eceeed 100%);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.testimonials-header h2 {
    font-size: 32px;
    color: #3db28b;
    margin-bottom: 10px;
}

.testimonials-header h3 {
    font-size: 50px;
    color: #000;
    margin-bottom: 15px;
}

.testimonials-header p {
    color: #000;
    font-size: 20px;
    font-weight: bold;
}
.testimg{
    height: 74px;
    background-color: #3fbf94;
}

/* CSS-only Infinite Scroll */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-slider:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 350px;
    background-color:#3fbf94;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px #3db28b;
    transition : all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.testimonial-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.testimonial-text {
    font-size: 14px;
    color: #000;
    line-height: 1.7;
    font-weight: bold;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card h4 {
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 13px;
    color: #000;
    margin-bottom: 10px;
}

.stars {
    color: #43b226;
    font-size: 18px;
}

/* Download Section */
.download-section {
    padding: 60px 20px;
    background-color: #B2DFDB;
}

.download-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.download-image {
    flex: 1;
}

.download-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-content {
    flex: 1;
    padding: 40px;
    text-align: center;
}

.download-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.download-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.download-btn {
    display: inline-block;
    background-color: #3db28b;
    color: white;
    font-size: 24px;
    padding: 15px 30px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #7AB030;
    transform: scale(1.1) rotate(360deg);
}

/* FOOTER */

.footer {
  background: #bdbdbd;
  color: #000;
  font-weight: 500;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding: 40px 50px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 12px;
}

.footer-box h4 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: bold;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.footer-box ul li a:hover {
  text-decoration: underline;
}

.follow {
  margin-top: 12px;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons img {
  width: 36px;
  height: 36px;
  border-radius: 55%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.social-icons img:hover {
  transform: scale(1.15);
}
.map-box iframe {
  width: 100%;
  height: 180px;
  border: 0;
}

.footer-bottom {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}