body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: rgb(229, 229, 229);
}

/* Header Container */
.main-header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 1000;
  background: transparent;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 90px;
  padding-left: 300px;
}

/* Search Bar */
.search-form {
  display: flex;
  justify-content: center;
  width: 100%;
}

.search-bar {
  position: relative;
  width: 60%;
}

.search-bar input {
  width: 100%;
  padding: 10px 40px 10px 16px; /* Add space on the right for the icon */
  border-radius: 20px;
  border: none;
  font-size: 1rem;
  box-sizing: border-box;
}

.search-button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.search-button img {
  height: 18px;
  width: 18px;
  pointer-events: none; /* optional: to avoid weird hover behaviour */
}


/* Right-side icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch select {
  background: white;
  border: none;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 0.9rem;
  cursor: pointer;
}

.cart-icon img {
  height: 24px;
  cursor: pointer;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  user-select: none;
}

nav a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: #fff4d1;
  text-shadow: 1px 1px 3px #3d1515;
  cursor: pointer;
}
.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: 20px 0;
  background-color: transparent; /* or white or light gray if needed */
}

.nav-buttons a {
  color: black;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 25px;
  border: 2px solid white;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: white;
}

.nav-buttons a:hover {
  background-color: black;
  color: white;
  cursor: pointer;
}

.hero {
  background-image: url("images/page1.svg");
  background-repeat: no-repeat;
  background-size: contain;     /* no cropping */
  background-position: center;  /* center it */
  background-color: rgb(229, 229, 229); /* fallback color */

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  position: relative;
  color: white;
  padding: 0 20px;
  padding-left: 270px;
  padding-right: 20px;

  height: 100vh;
  margin-top: 120px;
  overflow: visible;
}


.hero-text {
  position: relative;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  max-width: 800px;
  text-align: left; /* force left alignment for all children */
  margin: 0 auto;   /* center container horizontally if needed */

}



.hero h2 {
  font-size: 5rem;
  font-weight: 200;
  letter-spacing: 1.2px;
  text-align: left; /* just to be explicit */
  margin-bottom: 0em;
  margin-top: 0;
}

.hero p {
  font-size: 2.6rem;
  font-weight: 200;
  text-align: left; /* align paragraph left too */
  margin-bottom: 0.5em; /* smaller gap below the heading */
  margin-top: 0;
}
.hero h3 {
  font-size: 0.8rem;
  font-weight: 200;
  color: white;
  margin-right: 700px;
  padding-right: 50px;
 margin-top: 1em;  /* smaller space above */
  margin-bottom: 0.5em;
}


.btn {
  background: #FEA55C;
  color: white;
  height: 5px;
  width: 100px;
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 200;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  display: flex;               /* use flexbox */
  align-items: center;         /* vertical center */
  justify-content: center;     /* horizontal center */
  text-align: center;          /* fallback for text */
  padding: 10px 20px;          /* adjust padding as needed */
  cursor: pointer;
  border: none;
  margin-top: 10px;
}

.btn:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.hero-bottle {
  position: absolute;
  right: -500px; /* Start offscreen to the right */
  height: 73vh;
  z-index: 1;
  transition: right 1.5s ease-out;
}

.hero-bottle.slide-in {
  right: 170px; /* Final position inside the hero */
}
.product-list {
  max-width: 1200px;
  margin: 60px auto;
  margin-top: 150px;
  padding: 0 20px;
  text-align: center;
}

.product-list h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #000000;
  font-weight: 700;
}

.products {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.product-card {
  background: white;
  border-radius: 0px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  padding: 20px;
  width: 280px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card img {
  width: 100%;
  border-radius: 0px;
  margin-bottom: 15px;
  user-select: none;
}

.product-card h3 {
  color: #27431f;
  margin-bottom: 10px;
  font-weight: 700;
}

.product-card p {
  color: #555;
  margin-bottom: 20px;
  font-weight: 500;
}

.product-card:hover {
  transform: translateY(-15px) scale(1.05);
  cursor: pointer;
}

.product-card .btn {
  background: #2f531a8a;
  border: none;
  color: white;
  padding: 12px 28px;
  border-radius: 0px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.product-card .btn:hover {
  background-color: #2f531a8a;
  cursor: pointer;
}
.about {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
  color: #5a2a00;
  font-size: 1.1rem;
  line-height: 1.6;
  user-select: none;
}

.about h1 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #1a7214ae;
}
