
.header {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  color: #291A17;
  background-color: #FCFCFC;
  text-align: center;
  position: relative;
  padding: 2% 0;
}

.logo {
  letter-spacing: 35%;
  text-align: center;
  font-size: 200%;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 16%;
  margin-top: 1%;
  font-family: 'Inria Serif', serif;
  color:#77ABDE;
}

.icons {
  position: absolute;
  top: 16%;
  right: 4%;
  display: flex;
  gap: 10%;
}

.icons img {
  width: 16pt;
  height: 16pt;
}

.hamburger {
  display: none; 
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
  cursor: pointer;
}

.hamburger img {
  width: 20px;
  height: 20px;
}


.hero {
  display: flex;
  width: 100%;
  height: 75vh;
  min-height: 500px;
  background-color: #EFEFED;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden; 
}


.hero-side {
  flex: 0.15;
  background-color: #30241E;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.hero-side h3 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1rem;
  line-height: 1.3;
  font-family: 'Roboto Condensed', sans-serif;
  transform: rotate(-90deg);
}


.hero-main {
  flex: 0.85;
  background-color: #EFEFED;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}


.hero-img {
  width: 35%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.left-img {
  margin-right: 2%;
}


.hero-text {
  text-align: center;
  max-width: 600px;
  color: #291A17;
  font-family: 'Poppins', sans-serif;
}

.hero-text h2 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}

.hero-text p {
  margin: 0 auto;
  color: #4A3F39;
  line-height: 1.5;
}


.discover-btn {
  background-color: #30241E;
  color: #FFF9F4;
  border: none;
  border-radius: 20px;
  padding: 0.75rem 1.8rem;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  letter-spacing: 30%;
  font-family: 'Inria Serif', serif;
}

.discover-btn:hover {
  background-color: #BD5C71;
  transform: scale(1.05);
  color:#FAF9F8;
  font-family: 'Inria Serif', serif;
}

.collection-vertical {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
  max-height: min-content;
  padding-left: 1rem;
  background-color: #FCFCFC;
  overflow: hidden;
}

.collection-intro {
  flex: 0.33;
  position: sticky;
  text-align: left;
  font-family: 'Inria Serif', serif;
  color: #291A17;
  top: 3rem;
  align-self: flex-start;
  flex-direction: column;
  gap: 0.8rem;
}

/*.collection-intro img {
  width: 80%;
  max-height: min-content;
  border-radius: 12px;
  object-fit: cover;
  margin-top: 1rem;
  margin-left: 2rem;
}*/
.collection-intro video,
.collection-intro img {
  width: 400%;
  max-width: 480px;
  height: 700px; 
  border-radius: 12px;
  object-fit: cover;
  margin-top: 1rem;
  margin-left: 0.5rem;
}


.collection-intro h2 {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: #291A17;
}

.collection-intro p {
  font-family: 'Poppins', sans-serif;
  color: #4A3F39;
  line-height: 1.6;
  font-size: 1rem;
  max-width: 100%;
}

.product-list {
  flex: 0.45;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  overflow-y: auto; 
  margin-top: 9rem;
  height: 700px;
}

.product-item {
  border-radius: 16px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease;
}

.product-item:hover {
  transform: scale(1.02);
  
}

.product-item img {
  width: 70%;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.product-item h3 {
  font-family: 'Poppins', sans-serif;
  color: #291A17;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.product-item p {
  color:#BD5C71

}

.product-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}



.product-item:hover .overlay {
  opacity: 1;
}
.product-item:hover .cart-btn {
  opacity: 1;
  transform: translateY(0);
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(41, 26, 23, 0.15); /* soft transparent tint */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.cart-btn {
  position: absolute;
  top: 50%;
  left: 30%;
  background-color: #C46A2E;
  color: #FFFFFF;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 5px;
  font-family: 'Inria Serif', serif;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2; /* sits above overlay */
}


.product-item:hover .overlay {
  opacity: 1;
}

.product-item:hover .cart-btn {
  opacity: 1;
  pointer-events: auto;
  
}

.collection-card {
  flex: 0.25;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  margin-top: 3rem;
  border-width: 5px;
  
}

.collection-card .card {
  background-color: #E1F1FB;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 280px;
  height: 700px;
  margin-top: 2rem;
}

.collection-card p {
  color: #FCFCFC;
  font-family: 'Poppins', sans-serif, 'regular';

}

.collection-card h3 {
  font-family: 'Inria Serif', serif;
  background-color:  #1F100D ;
  color: #F9F9F9;
  border-radius: 5px;
  padding: 1rem;

}

.ingredients {
  height: 2rem;
  width: 2rem;

}

/* mobile design breakpoint */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .logo {
    font-size: 150%;
  }

  .icons {
    top: 0.9rem;
    right: 1rem;
  }

  .icons img {
    width: 10pt;
    height: 10pt;
  }

  .hero {
    flex-direction: column;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 0;
  }

  .hero-side {
    width: 100%;
    height: auto;
    padding: 0.75rem;
    border-radius: 20px 20px 0 0;
  }

  .hero-side h3 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5rem;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
    transform: none;
    text-align: center;
  }

  .hero-main {
    flex: none;
    padding: 1rem 0.5rem;
    border-radius: 0 0 20px 20px;
  }

  .hero-content {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: nowrap;
    margin: 0;
  }

  .hero-img {
    width: 28%;
    max-width: 120px;
    border-radius: 10px;
    margin: 0;
  }

  .hero-text {
    flex: 1;
    text-align: center;
    max-width: 60%;
    margin: 0;
  }

  .hero-text h2 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .hero-text p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .discover-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    margin-top: 0.8rem;
    margin-bottom: 0; 
  }

}
