/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

html {
  scroll-behavior: smooth;
} 

body {
  font-family: "lato", sans-serif;
  font-weight: 100;
  color: #fff5e4;
  background-color: #f4f4f4;
 
}
header{
  position: relative;
  top: 0;
  z-index: 1000; /* Ensures it stays above other elements */
  position: sticky; /* Makes the header sticky */
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1f3f1d;
  /* Pakistan Green */
  z-index: 2;
  
}

.logo img {
  height: 80px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: #fff5e4;
  /* rust */
  text-decoration: none;

}

.nav-links li a:hover {
  color: #ffffff;
  /* white */
  text-decoration: underline;
  text-underline-offset: 10px;
}

/* Icons Section */
.icons {
  display: flex;
  gap: 20px;
  /* Space between icons */
  position: relative;
  right: 20px;
}

.icon-img {
  width: 20px;
  /* Adjust size */
  height: 20px;
  cursor: pointer;
  /* Makes it look clickable */
  transition: transform 0.2s ease;
}

.icon-img:hover {
  transform: scale(1.1);
  /* Slight zoom effect on hover */
}

/* Cart Icon */
.cart-icon {
  width: 20px;
  /* Adjust size */
  height: 20px;
  cursor: pointer;
  /* Makes it look clickable */
  transition: transform 0.2s ease;
}

.cart-icon:hover {
  transform: scale(1.1);
  /* Slight zoom effect on hover */
}


/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background-color: #fff5e4;
  /* Adjust background color as needed */
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease-in-out;
  z-index: 999;
}

/* Cart Sidebar Header */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #fff5e4;
  /* Slightly darker shade */
  border-bottom: 1px solid #1f3f1d;
}

/* Cart Header Title */
.cart-header h2 {
  margin: 0;
  font-size: 18px;
  color: #1f3f1d;
}

/* Close Button */
.close-cart {
  font-size: 24px;
  cursor: pointer;
  color: #1f3f1d;
}

/* Cart Content */
.cart-content {
  padding: 20px;
  font-size: 16px;
  color: #1f3f1d;
}

/* Show Sidebar */
.cart-sidebar.show {
  right: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* Intro Section */
.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(assets/nature.jpg) no-repeat center center;
  background-size: cover;
  padding: 30px;
  color: #fff5e4;
  position: relative;
  text-align: center;
  z-index: -1;

}

.content {
  max-width: 300px;
  padding: 10px;
  border-radius: 10px;
  position: relative;
  left: -80px;
  text-align: left;
}

.content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff5e4;
  /* Mustard */
  text-transform: uppercase;
  font-weight: 600;
  font-family: "playfair display", serif;
  font-weight: 100;

}

.content h1 {
  font-size: 70px;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  font-family: "playfair display", serif;
  font-weight: 700;
}

.content p {
  font-family: "lato", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 100;
}

.btn-explore {
  font-family: "lato", sans-serif;
  font-weight: 100;
  padding: 12px 20px;
  background-color: transparent;
  color: #fff5e4;
  /* Mustard */
  border: solid, 1px;
  border-radius: 1px;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn-explore:hover {
  background-color: #fff5e4;
  /* Yellow Green */
  color: #1f3f1d;
  border-color: #fff5e4;
}
/* OVERLAPPING SLIDE */
 /* Overlap Carousel Styles */
 .overlap-carousel {
  position: relative;
  top: -6px;
  left: -25px;
  width: 700px;
  height: 600px;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* Hide slides by default */
  z-index: 0;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.slide.active {
  display: block; /* Show only the active slide */
  z-index: 1;
}

/* VIDEOOOOO */
/* Watch & Shop Section */
.watch-shop {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff5e4; /* Light cream background */
  color: #1f3f1d; /* Dark text */
}

.watch-shop h2 {
  font-size: 60px;
  color: #1f3f1d; /* Mustard orange */
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.watch-shop p {
  font-size: 18px;
  color: #1f3f1d;
  margin-bottom: 30px;
  font-family: 'Lato', sans-serif;
}

.video-container {
  position: relative;
  width: 700px;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}


/* BESTSELLERS */
.bestsellers-section {
  text-align: center;
  padding: 20px;
  background-color: #fff5e4;
  background-image: url(assets/ingredient.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  /* Enables the parallax effect */
}

.bestsellers-header h2 {
  font-family: "lato", sans-serif;
  font-weight: bold;
  margin: 0;
  font-size: 20px;
  letter-spacing: 2px;
  color: #1f3f1d;

}

.bestsellers-header h1 {
  font-family: "playfair-display";
  font-weight: 100;
  margin: 5px 0;
  font-size: 100px;
  color: #1f3f1d;
  z-index: 1;
}

.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  background-color: transparent;
  border-radius: 100px 100px 0 0;
  border: solid 1px black;
  padding: 15px;
  width: 215px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 999;
}

.product-image {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}
.product-image img:hover{
   transform: scale(1.10);
}


.product-card {
  cursor: pointer;
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-family: "lato", sans-serif;
  font-weight: 100;
  font-size: 16px;
  margin: 10px 0 5px;
  color: #333;
}

.product-card p {
  font-family: "lato", sans-serif;
  font-weight: 100;
  margin: 5px 0;
  color: #333;
}

.product-card .rating {
  font-size: 14px;
  color: #757575;
  margin: 5px 0;
}

.product-card button {
  font-family: "lato", sans-serif;
  font-weight: bold;
  width: 150px;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: transparent;
  color: #1f3f1d;
  border: solid 1px #1f3f1d;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-card button:hover {
  background-color: #1f3f1d;
  color: #fff5e4;
}

.new-badge {
  position: absolute;
  top: 100px;
  left: -2px;
  background-color: #4a7320;
  color: white;
  padding: 5px 8px;
  font-size: 12px;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: bold;
}


/* View All Button */
.view-all {
  position: relative;
  height: 100px;
}

.view-all button {
  margin-top: 30px;
  margin-left: 4%;
  padding: 10px 20px;
  font-size: 16px;
  color: #1f3f1d;
  background-color: transparent;
  border: solid 1px;
  cursor: pointer;
  display: inline-flex;
  font-family: "lato", sans-serif;

}

.view-all button span {
  font-size: 18px;
  margin-right: 10px;
}

.view-all button:hover {
  background-color: #1f3f1d;
  color: #fff5e4;
}

/* ABOUT US */
.section-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 50px;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  background-color: #fff5e4;
}

.image-container {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image {
  width: 55%;
  height: 10%;
  border-radius: 10px;
}

.overlay-image {
  position: absolute;
  bottom: -360px;
  left: 220px;
  width: 30%;
  height: 40%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-out;
}

.text-container {
  flex: 1;
  text-align: left;
}

.text-container h1 {
  font-family: playfair-display,serif;
  letter-spacing: 1px;
  font-size: 55px;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #333;
}

.text-container p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}
/* View All Button */
.about {
  position: relative;
  height: 100px;
}

.about button {
  margin-top: 220px;
  margin-left: -397%;
  padding: 10px 20px;
  font-size: 16px;
  color: #1f3f1d;
  background-color: transparent;
  border: solid 1px;
  cursor: pointer;
  display: inline-flex;
  font-family: "lato", sans-serif;
}

.about a{
  text-decoration:none;
  color: #1f3f1d;
}
.about a:hover{
  background-color: #1f3f1d;
  color: #fff5e4;
}
.about button span {
  font-size: 18px;
  margin-right: 10px;
}

.about button:hover {
  background-color: #1f3f1d;
  color: #fff5e4;
}




/* Explore Section */
/* styles.css */

.shop-container {
  text-align: center;
  padding: 40px 20px;
  z-index: 2;
}

/* Main Heading Styling */
.shop-heading {
  position: relative;
  top: 70px;
  font-family: playfair-display,serif;
  font-size: 80px;
  color: #1f3f1d;
  text-transform: uppercase;
}

.shop-section {
  position: relative;
  top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 40px;
}

.shop-item {
  position: relative;
  width: 30%;
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  
}

.shop-item.men {
  background-image: url('assets/aryAN.jpg'); /* Replace with your image URL */
}

.shop-item.unisex {
  background-image: url('assets/couple.jpg'); /* Replace with your image URL */
}

.shop-item.women {
  background-image: url('assets/purva2.jpg'); /* Replace with your image URL */

}

.shop-content {
  background-color: #fff5e4;
  font-family: playfair-display,serif;
  position: absolute;
  bottom: -45px;
  left: -1px;
  color: #1f3f1d;
  text-align: left;
  
}

.shop-content h2 {
  font-size: 30px;
  font-weight: bold;
  margin: 0;
  
}

.shop-content button {
  font-family: lato,sans-serif;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: transparent;
  color: #1f3f1d;
  border:1px solid #1f3f1d;
  cursor: pointer;
  
}

.shop-content button:hover {
  background-color: #1f3f1d;
  color: #fff5e4;
}
/* VIDEOOOOO */
/* Watch & Shop Section */
.watch-shop {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff5e4; /* Light cream background */
  color: #1f3f1d; /* Dark text */
}

.watch-shop h2 {
  font-size: 60px;
  color: #1f3f1d; /* Mustard orange */
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.watch-shop p {
  font-size: 18px;
  color: #1f3f1d;
  margin-bottom: 30px;
  font-family: 'Lato', sans-serif;
}

.video-container {
  position: relative;
  width: 700px;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
/* REVIEWS */
body{
  background-color: #fff5e4;
  color: #1f3f1d
}
.carousel-container {
  width: 90%;
  max-width: 1000px;
  margin: 50px auto;
  overflow: hidden;
  position: relative;
}
.carousel-track-container {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-slide {
  display: flex;
  flex: 1 0 100%;
  justify-content: space-between;
}
.carousel-item {
  flex: 1 0 30%;
  background: transparent;
  border: 1px solid #1f3f1d;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 10px;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}
.carousel-item img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 15px;
}
.carousel-item h2 {
  font-family: playfair-display,serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1f3f1d;
}
.carousel-item p {
  font-family: lato,sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color:  #1f3f1d;
  margin-bottom: 20px;
}
.carousel-item a {
  text-decoration: none;
  color: #007BFF;
  font-weight: bold;
  transition: color 0.2s ease;
}
.carousel-item a:hover {
  color: #0056b3;
}
.carousel-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.carousel-buttons button {
  background: transparent;
  border: none;
  color:#1f3f1d;
  font-size: 1.5rem;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.carousel-buttons button:hover {
  background:transparent;
}



/* FEATURES SECTION */
.features-section {
  display: flex;
  justify-content: space-around;
  background-color: #fff5e4;
  padding: 20px;
  color: #1f3f1d;
  text-align: center;
}

.feature {
  width: 20%;
  max-width: 250px;
}

.feature img {
  width: 50px;
  /* Adjust as needed */
  height: 50px;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
}



/* Footer Section */
footer {
  background-color: #1f3f1d;
  color: #fff5e4;
  /* Mustard */
  padding: 50px 20px;
  text-align: center;

}

.newsletter {
  margin-bottom: 40px;
}

.newsletter h2 {
  font-family: playfair-display, serif;
  font-weight: 100;
  font-size: 48px;
  margin-bottom: 10px;

}

.newsletter h2 em {
  font-style: italic;
  color: #fff5e4;
}

.newsletter p {
  margin-bottom: 20px;
  font-size: 18px;
}

label {
  position: relative;
  bottom: 22px;
  left: 49px;
  font-size: 13px;
}

.heading {
  position: relative;
  bottom: 28px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px;
  width: 300px;
  border: 1px solid #fff5e4;
  outline: none;
  background-color: #1f3f1d;
  color: #fff5e4;
}

.newsletter-form button {
  padding: 10px 20px;
  background-color: transparent;
  color: #fff5e4;
  border: 1px solid #fff5e4;
  border-radius: 1px;
  cursor: pointer;
  font-weight: bold;
}

.newsletter-form button:hover {
  background-color: #fff5e4;
  border: 1px solid #1f3f1d;
  color: #1f3f1d;
}

.footer-links {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  text-align: left;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 5px 0;
}

.footer-column ul li a {
  color: #fff5e4;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: #9ACD32;
  /* Yellow Green */
}

.footer-column p {
  margin: 10px 0;
  line-height: 1.5;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  margin: 0 5px;
  display: inline-block;
}

.social-links img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  border-top: 1px solid #fff5e4;
  padding-top: 20px;
  font-size: 14px;
  color: #fff5e4;
}

/* resopnsive */
