body {
  font-family: 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff8f4;
  color: #111;
}

header {
  border-bottom: 1px solid #e6e6e6;
  background-color: #fff;
  padding: 0.5rem 2rem;
  text-align: center;
}

header h1 {
  font-weight: normal;
  font-size: 1.2rem;
  color: #222;
  margin: 0.25rem 0;
  letter-spacing: 2px;
}

nav {
  background-color: #f9f4f0;
  padding: 0.5rem 0;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #444;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation Dropdown Fix */
.has-submenu {
  position: relative;
}

.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff8f4;
  border: 1px solid #e0ddd8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  min-width: 180px;
  padding: 0.5rem 0;
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu li {
  padding: 0.5rem 1rem;
}

.submenu li a {
  color: #444;
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
}

.submenu li a:hover {
  background-color: #f2e1d2;
}

.hero-section {
  height: 80vh;
  background: url('../img/hero-banner.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 0 2rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
    z-index: 1;
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #f8f3f1;
}

.hero-btn {
  padding: 0.85rem 2rem;
  background: #d47c53;
  color: white;
  font-size: 1rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #b25c38;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #2a1d0e;
}

.featured-section {
  padding: 8rem 2rem;
  background-color: #fffaf5;
  text-align: center;
}

.featured-section .section-title {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #2a1d0e;
}

.featured-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.product-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.product-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.product-card .price {
  font-weight: bold;
  color: #c84b31;
  font-size: 1rem;
}


.coupon-banner {
  background-image: url('../img/coupon-bg.png'); /* Relative path, assuming in /img */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 10rem 2rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
}  


/* SHOP BY CATEGORY */
.category-section {
  background-color: #fff8f4;
  padding: 8rem 2rem;
  text-align: center;
}

.category-section .section-title {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #2a1d0e;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.category-card {
  background: #FFBB10;
  padding: 11rem 2rem;
  border-radius: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  width: 220px;
  text-decoration: none;
  text-align: center;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
  color: #3b2d22;
  transition: transform 0.3s ease, background-image 0.3s ease, color 0.3s ease;
}

.category-card h4 {
  margin: 0;
  font-size: 1.2rem;
  z-index: 2;
  position: relative;
}

.category-card:hover {
  transform: translateY(-5px);
  color: #fff;
}

/* Background images on hover */
.category-card.category-bath:hover {
  background-image: url('../img/skincare.png');
}

.category-card.category-oils:hover {
  background-image: url('../img/haircare.png');
}

.category-card.category-soaps:hover {
  background-image: url('../img/bodycare.png');
}

.parallax-banner {
  background-image: url('../img/divide.jpg'); /* update to your actual image path */
  height: 80vh;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
}

.parallax-overlay {
  background-color: rgba(0, 0, 0, 0.4); /* optional dark tint */
  padding: 2rem 3rem;
  border-radius: 1rem;
}


.top-products {
  background-color: #fef9f5;
  padding: 12rem 2rem;
  text-align: center;
}

.top-products h3,
.top-products .section-title {
  font-size: 2rem;
  margin-bottom: 4rem;
  color: #2a1d0e;
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.product-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  width: 240px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.product-card h4 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.1rem;
  color: #3b2d22;
}

.product-card p {
  font-size: 1rem;
  color: #7b6453;
}

.view-all-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #d47c53;
  color: #fff;
  text-decoration: none;
  border-radius: 2rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.view-all-btn:hover {
  background-color: #b25c38;
}


.promo-banner {
  background: url('../img/promo-banner.png') center/cover no-repeat;
   background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 15rem 2rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
}  
}


.reviews-carousel {
  background-color: #ffffff;
  padding: 8rem 2rem;
  text-align: center;
}

.reviews-carousel .section-title {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #2a1d0e;
}

.review-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.review-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.review-card {
  min-width: 100%;
  padding: 2rem;
  background: #fdf4eb;
  border-radius: 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.review-card.active {
  opacity: 1;
}


.blog-section {
  background-color: #fffaf6;
  padding: 10rem 2rem;
  text-align: center;
}

.blog-section .section-title {
  font-size: 2rem;
  margin-bottom: 4rem;
  color: #2a1d0e;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.blog-card h4 {
  font-size: 1rem;
  color: #3b2d22;
}


.aina-signup {
  background-color: #fcefe7;
  padding: 10rem 2rem;
  border-top-left-radius: 4rem;
  border-top-right-radius: 4rem;
}

.aina-signup-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.aina-image {
  flex: 1 1 40%;
  text-align: center;
}

.aina-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 2rem;
}

.aina-signup-content {
  flex: 1 1 50%;
}

.aina-signup h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2a1d0e;
}

.aina-signup p {
  font-size: 1.1rem;
  color: #5c4633;
  margin-bottom: 3rem;
}

.aina-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aina-form input {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 1.5rem;
  font-size: 1rem;
}

.aina-form button {
  padding: 0.75rem 1rem;
  background-color: #d47c53;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.aina-form button:hover {
  background-color: #b25c38;
}

.confirmation-message {
  margin-top: 1rem;
  color: green;
  font-weight: bold;
}

.newsletter-signup {
  text-align: center;
  margin-top: 5rem;
  padding-top: 3rem;
  padding-bottom: 8rem;
  border-top: 1px solid #e2cfc1;
}

.newsletter-image {
  max-width: 500px;
  margin: 0 auto 2rem;
}

.newsletter-image img {
  width: 100%;
  border-radius: 1rem;
}

.newsletter-content h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #2a1d0e;
}

.newsletter-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #5a4535;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.newsletter-form input[type="email"] {
  padding: 0.75rem 1rem;
  border-radius: 2rem;
  border: 1px solid #ccc;
  width: 280px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background-color: #d47c53;
  color: #fff;
  border: none;
  border-radius: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #b25c38;
}

.newsletter-confirmation {
  margin-top: 1rem;
  color: green;
  font-weight: bold;
}

.site-footer {
  background-color: #f1e4d7;
  padding: 5rem 2rem 2rem;
  font-size: 0.95rem;
  color: #3b2d22;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4,
.footer-column h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  text-decoration: none;
  color: #3b2d22;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #d47c53;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
}

/* === Bath Bomb Page Only === */
.bathbomb-page .product-card {
  width: 280px;
  max-width: 90vw;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  background: #fff;
  text-align: center;
  transition: transform 0.3s ease;
}

.bathbomb-page .product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.bathbomb-page .product-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #3b2d22;
text-align: center 
}

.bathbomb-page .product-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.bathbomb-page .product-card .price {
  font-weight: bold;
  color: #c84b31;
  font-size: 1rem;
}

/* === Global Footer Fix === */
.site-footer {
  width: 100%;
  background-color: #f1e4d7;
  padding: 5rem 2rem 2rem;
  font-size: 0.95rem;
  color: #3b2d22;
}
/* === Bath Bomb Hero Section === */
.bathbomb-hero {
  height: 80vh;
  background: url('../img/bathbomb-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 0 2rem;
}

.bathbomb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
    z-index: 1;
}

.bathbomb-hero .hero-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.bathbomb-hero .hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  font-weight: 600;
}

.bathbomb-hero .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #f8f3f1;
}

.bathbomb-hero .hero-btn {
  padding: 0.85rem 2rem;
  background: #d47c53;
  color: white;
  font-size: 1rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.bathbomb-hero .hero-btn:hover {
  background: #b25c38;
}

/* === Cold Pressed Soap Hero === */
.soap-hero {
  height: 80vh;
  background: url('../img/soap-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 0 2rem;
}

.soap-hero::before {
  content: "";
  position: absolute;
  inset: 0;
   z-index: 1;
}

.soap-hero .hero-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.soap-hero .hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  font-weight: 600;
}

.soap-hero .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #f8f3f1;
}

.soap-hero .hero-btn {
  padding: 0.85rem 2rem;
  background: #d47c53;
  color: white;
  font-size: 1rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.soap-hero .hero-btn:hover {
  background: #b25c38;
}

/* === Essential Oils Hero === */
.essential-oils-hero {
  height: 80vh;
  background: url('../img/essential-oils-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 0 2rem;
}

.essential-oils-hero::before {
  content: "";
  position: absolute;
  inset: 0;
   z-index: 1;
}

.essential-oils-hero .hero-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.essential-oils-hero .hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  font-weight: 600;
}

.essential-oils-hero .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #f8f3f1;
}

.essential-oils-hero .hero-btn {
  padding: 0.85rem 2rem;
  background: #d47c53;
  color: white;
  font-size: 1rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.essential-oils-hero .hero-btn:hover {
  background: #b25c38;
}

/* === Essential Oils Product Grid Fix === */
.essential-oils-page .product-card img {
  height: 200px; /* reduce from 300/400px */
  object-fit: cover;
  width: 50%;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.essential-oils-page .product-card {
  width: 240px;
  max-width: 90vw;
	height: 100pv
}
/* === Contact Page Styles === */
.contact-section {
  background-color: #fffaf5;
  padding: 10rem 2rem;
  text-align: center;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
}

.contact-section {
  background-color: #fffaf5;
  padding: 10rem 2rem;
  text-align: center;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}

.contact-info,
.contact-form {
  flex: 1 1 45%;
  min-width: 300px;
}

.contact-section h2.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 1.5rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  padding: 0.75rem 1rem;
  background-color: #d47c53;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #b25c38;
}

.contact-page .confirmation-message {
  margin-top: 1rem;
  color: green;
  font-weight: bold;
}
.contact-image {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.thank-you-section {
  padding: 10rem 2rem;
  text-align: center;
  background-color: #fff8f4;
}

.thank-you-section h2 {
  font-size: 2rem;
  color: #2a1d0e;
  margin-bottom: 1rem;
}

.thank-you-section p {
  font-size: 1.1rem;
  color: #5c4633;
  margin-bottom: 2rem;
}

.thank-you-wrapper .hero-btn {
  background-color: #d47c53;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.thank-you-wrapper .hero-btn:hover {
  background-color: #b25c38;
}

.blog-hero {
  background-color: #fff0e7;
  padding: 8rem 0rem 5rem;
  text-align: center;
}

.blog-hero .hero-title {
  font-size: 2.5rem;
  color: #2a1d0e;
  margin-bottom: 1rem;
}

.blog-hero .hero-subtitle {
  font-size: 1.1rem;
  color: #674F3C;
}
 