/* 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;
}

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:#fff;
padding:12px 18px;
border:none;
font-size:16px;
cursor:pointer;
font-weight:700;
}

/* Dropdown Box */
.dropdown-content{
display:none;
position:absolute;
background:#fff;
min-width:250px;
padding:12px;
box-shadow:0 4px 10px rgba(245, 240, 240, 0.877);
}

/* Links */
.dropdown-content a{
display:block;
text-decoration:none;
color:#333;
padding:6px 0;
font-size:15px;
}

.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: 65px;
    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;
}


/* 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;
}





/* 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;
}

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;
    position: sticky;
    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: 450px; */
   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:#fff;
padding:12px 18px;
border:none;
font-size:16px;
cursor:pointer;
font-weight:700;
}

/* Dropdown Box */
.dropdown-content{
display:none;
position:absolute;
background:#fff;
min-width:250px;
padding:12px;
box-shadow:0 4px 10px rgba(245, 240, 240, 0.877);
}

/* Links */
.dropdown-content a{
display:block;
text-decoration:none;
color:#333;
padding:6px 0;
font-size:15px;
}

.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: 65px;
    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;
}


/* MAIN PAGE WRAPPER */
.product-page {
  max-width: 1250px;
  margin: auto;
  display: flex;
  gap: 40px;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
}

/* IMAGE SECTION */
.image-section {
  display: flex;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumbnails img {
  width: 60px;
  height: 60px;
  border: 1px solid #ddd;
  cursor: pointer;
  object-fit: cover;
  border-radius: 8px;
}

.main-image {
  margin-left: 20px;
  overflow: hidden;
}

.main-image img {
  width: 380px;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.main-image:hover img {
  transform: scale(1.4);
}

/* RIGHT CONTENT */
.product-container {
  flex: 1;
}

/* TITLE */
.product-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 15px;
}

/* META */
.meta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.badge {
  background: #ff8fb1;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.rating {
  border: 1px solid #eee;
  padding: 6px 12px;
  border-radius: 6px;
}

/* PRICE */
.weight {
  font-size: 22px;
  color: #888;
  margin: 10px 0;
}

.price {
  font-size: 24px;
  font-weight: 700;
}

.tax {
  color: #7fb9a2;
  margin-bottom: 15px;
}

/* CART */
.cart-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qty-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #ddd;
  border-radius: 50px;
  padding: 6px 14px;
}

.qty-box button {
  border: none;
  background: #eee;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
}

.add-cart {
  background: #7fd3b5;
  border: none;
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
}

/* PARAGRAPH */
.product-paragraph {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
}

/* ACCORDION */
.accordion {
  max-width: 100%;
  margin-top: 30px;
}

.accordion-item {
  margin-bottom: 15px;
}

.accordion-header {
  width: 100%;
  background: #f1f3f4;
  border: none;
  padding: 18px 22px;
  border-radius: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.arrow {
  transition: transform 0.3s;
}

.accordion-item.active .arrow {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.accordion-item.active .accordion-body {
  max-height: 2520px;
  padding: 15px 22px;
}
.spec-box {
  max-width: 520px;
  margin: 20px auto;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #111;
}

.spec-box h3 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: bold;
}

.spec-box h4 {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: bold;
}

.spec-box p {
  font-size: 13px;
  margin-bottom: 8px;
}

.spec-box ul {
  margin: 0 0 8px 18px;
  padding: 0;
  font-size: 13px;
}

.spec-box li {
  margin-bottom: 4px;
}

.features-section {
  max-width: 620px;
  font-family: Arial, sans-serif;
  padding: 10px 0;
  color: #222;
}

.features-title {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.features-sub {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
}

.feature-list {
  padding-left: 18px;
  margin: 0;
}

.feature-list li {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.feature-list strong {
  font-size: 14px;
}


.about-section {
  max-width: 720px;
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.7;
  padding: 10px 0;
}

.about-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-title .brand {
  color: #6dbb43;
}

.leaf {
  margin-right: 6px;
}

.about-quote {
  text-align: center;
  font-style: italic;
  font-size: 18px;
  margin: 10px 0 18px;
}

.about-list {
  padding-left: 18px;
  margin: 0;
  font-size: 15px;
}

.desc-section {
  max-width: 720px;
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.7;
  padding: 8px 0;
}

.desc-section p {
  font-size: 15px;
  margin-bottom: 14px;
}

.desc-heading {
  font-size: 16px;
  font-weight: 700;
  margin: 16px 0 8px;
}

.desc-list {
  padding-left: 18px;
  margin: 0 0 12px;
  font-size: 15px;
}

.desc-list li {
  margin-bottom: 8px;
}

.desc-strong {
  font-weight: 700;
}

.exception-section {
  max-width: 720px;
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.7;
  padding: 6px 0;
}

.exception-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.exception-list {
  padding-left: 18px;
  margin: 0 0 10px;
  font-size: 15px;
}

.exception-list li {
  margin-bottom: 10px;
}

.exception-steps {
  padding-left: 22px;
  margin: 6px 0 12px;
  font-size: 15px;
}

.exception-steps li {
  margin-bottom: 6px;
}

.exception-result {
  font-weight: 700;
  margin: 10px 0 14px;
}


.ritual-section {
  max-width: 720px;
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.7;
  padding: 6px 0;
}

.ritual-title {
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0 10px;
}

.ritual-list {
  padding-left: 18px;
  margin: 0 0 8px;
  font-size: 15px;
}

.ritual-list li {
  margin-bottom: 8px;
}

.ritual-steps {
  padding-left: 22px;
  margin: 4px 0 12px;
  font-size: 15px;
}

.ritual-steps li {
  margin-bottom: 6px;
}

.ritual-section p {
  font-size: 15px;
  margin: 10px 0;
}

.commitment-section {
  max-width: 720px;
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.7;
  padding: 6px 0;
}

.commitment-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.commitment-list {
  padding-left: 18px;
  margin: 0 0 14px;
  font-size: 15px;
}

.commitment-list li {
  margin-bottom: 8px;
}

.commitment-strong {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin: 18px 0 6px;
}

.highlight {
  font-weight: 900;
}

.commitment-sub {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}


.reviews-section{
  max-width:1250px;
  margin:40px auto;
}

.review-summary{
  display:flex;
  justify-content:space-between;
  background:#fff;
  padding:20px;
  border-radius:12px;
}

/* Reviews Section */
.reviews-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #2c3e50;
}

.review-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2c3e50;
}

.total-reviews {
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.write-review-btn {
    padding: 1rem 2rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.write-review-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.reviewer-info h4 {
    margin-bottom: 0.25rem;
}

.review-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
}



.product-slider-wrap{
  position:relative;
  max-width:1230px;
  margin:auto;
  padding:20px 40px;
}

.product-slider{
  display:flex;
  gap:32px;
  overflow:hidden;
  scroll-behavior:smooth;
}

.p-card{
  min-width:200px;
  background:#fff;
  border:1px solid #eee;
  border-radius:10px;
  padding:14px;
  text-align:center;
  box-shadow:0 2px 6px rgba(0,0,0,.05);
}

.p-img{
  height:150px;
  background:#e6dbf5;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
  overflow:hidden;
}

.p-img img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.p-cat{
  font-size:11px;
  color:#666;
}

.p-name{
  font-weight:600;
  margin-top:4px;
}

.p-size{
  font-size:12px;
  color:#888;
}

.p-price{
  font-size:13px;
  font-weight:600;
  margin:8px 0;
}

.tax{
  font-size:11px;
  color:#7fc8b4;
  font-weight:600;
  margin-top:2px;
}


.cart-btn{
  width:100%;
  background:#AED7C9;
  border:none;
  padding:7px;
  border-radius:20px;
  color:#fff;
  font-size:12px;
  font-weight:600;
  cursor:pointer;
}

.nav-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border:none;
  border-radius:50%;
  background:#cfcfcf;
  color:#fff;
  font-size:20px;
  cursor:pointer;
  z-index:5;
}

.left{ left:0; }
.right{ right:0; }

@media(max-width:600px){
  .p-card{ min-width:160px; }
}

/* CTA Banner */
.catalog-section {
  background: linear-gradient(90deg, #7ec3b4, #6db7a8);
  padding: 60px 40px;
}

.catalog-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Left Image */
.catalog-image {
  flex: 1;
}

.catalog-image img {
  width: 260px;
  border-radius: 12px;
  display: block;
}

/* Right Content */
.catalog-content {
  flex: 2;
  color: white;
}

.catalog-content h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.catalog-content p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.95;
}

/* Button */
.download-btn {
  display: inline-block;
  background: #e9e9e9;
  color: #333;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.download-btn:hover {
  background: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .catalog-container {
    flex-direction: column;
    text-align: center;
  }

  .catalog-image img {
    width: 200px;
    margin: auto;
  }
}



/* FOOTER */

.footer {
  background: #bdbdbd;
  color: #333;
}

.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: #333;
  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;
}

.section-card{
  width:100%;
  max-width:900px;
  background:#2f6f6a;
  border-radius:30px;
  padding:30px;
  color:#fff;
}

.image-box{
  width:100%;
  height:280px;
  border-radius:12px;
  overflow:hidden;
  position:relative;
  cursor:pointer;
}

.image-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s;
}

.image-box:hover img{
  transform:scale(1.08);
  filter:brightness(1.1);
}

.image-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:600;
  opacity:0;
  transition:.3s;
}

.image-box:hover .image-overlay{
  opacity:1;
}

/* POPUP STYLE */

.img-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:20px;
}

.img-popup img{
  max-width:95%;
  max-height:95%;
  border-radius:12px;
}


/* 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;
  }
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .product-page {
    flex-direction: column;
  }

  .main-image img {
    width: 100%;
  }

  .review-summary {
    flex-direction: column;
    gap: 20px;
  }
}

@media(max-width:768px){
  .product-container { flex-direction:column }
  .review-grid { grid-template-columns:1fr }
  .main-image img { width:100% }
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
