body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4fff6;
  color: #033;
}

/* HEADER */
header {
  background: linear-gradient(90deg, #0a5f2c, #9acd32);
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #ffe066;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('../assets/hero.jpg') center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.btn {
  background: #ffe066;
  color: #033;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 15px;
  border-radius: 5px;
}

/* SECTIONS */
section {
  padding: 40px;
  text-align: center;
}

/* PRODUCTS */
.products {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #d9fdd3;
  padding: 20px;
  border-radius: 10px;
  width: 150px;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

/* CONTACT */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
}

.contact input,
.contact textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* FOOTER */
footer {
  background: #0a5f2c;
  color: white;
  text-align: center;
  padding: 20px;
}
/* STORE PAGE */
.store {
  padding: 60px 20px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product {
  background: white;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product img {
  width: 100%;
  border-radius: 12px;
}

.product h3 {
  margin: 15px 0 5px;
}

.buy-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #1f7a3a, #b6ff5c);
  color: #033;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.buy-btn:hover {
  transform: scale(1.05);
}
/* NOTICE BOX */
.notice {
  background: #eaffea;
  padding: 30px;
  text-align: center;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 20px;
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  margin: auto;
  display: block;
  width: 60%;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}
.reviews {
  text-align: center;
  padding: 3rem 1rem;
}

.review-card {
  background: #f0fff4;
  border-left: 5px solid #2e7d32;
  margin: 1rem auto;
  padding: 1rem;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #2e7d32;
}
/* Lipgloss Slider */
.slider {
  position: relative;
  width: 100%;
}

.slide {
  display: none;
  width: 100%;
  border-radius: 8px;
}

.slide.active {
  display: block;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  border-radius: 50%;
}

.slide-btn:hover {
  background: rgba(0,0,0,0.7);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}
/* Hair Growth Hero Section */
.hair-hero {
  position: relative;
  width: 100%;
  height: 400px;
  background: url('assets/pomade.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Dark overlay so text is readable */
.hair-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Content sits above overlay */
.hair-hero .hero-content {
  position: relative;
  color: white;
  z-index: 1;
  padding: 1rem;
}

/* Bigger headline */
.hair-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Tagline styling */
.hair-hero .tagline {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
/* HERO SECTION (FIXED + CLEAN) */
.hero {
  position: relative;
  width: 100%;
  height: 420px; /* slightly shorter like you wanted */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* IMPORTANT: correct path (CSS is inside /css folder) */
  background: url('../assets/pomade-banner.jpg') center center / cover no-repeat;
  margin-bottom: 2rem;
}

/* Dark overlay so text is readable */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Centered content container */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  color: white;
  padding: 1rem;
}

/* Title (bigger like you asked) */
.hero-inner h2 {
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

/* Subtitle (smaller than title) */
.hero-inner p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #f1f1f1;
}

/* Button centered on image */
.hero .btn {
  background-color: #f4d03f;
  color: #1e7d32;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.hero .btn:hover {
  transform: scale(1.05);
  background-color: #ffd54f;
}
.reviews-form {
  max-width: 600px;
  margin: 2rem auto;
  text-align: center;
}

.reviews-form input,
.reviews-form select,
.reviews-form textarea {
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.7rem;
}

.card {
  background: #e8f5e9;
  margin: 1rem auto;
  padding: 1rem;
  border-radius: 8px;
  max-width: 600px;
}