:root {
  --brown-900: #5E2017;
  --brown-700: #7a392a;
  --black: #303030;
  --accent: #8d5549;
  --card: #fffdfa;
  --muted: #a27b66;
  --max-width: 1140px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--brown-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

h1 {
  text-align: center;
  font-size: 60px;
  font-weight: 900;
}

/* Container */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER NAV */
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 18px;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav-inner {
  pointer-events: auto;
  width: 90%;
  max-width: var(--max-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.55));
  border-radius: 40px;
  padding: 8px 18px;
  box-shadow: 0 6px 20px rgba(30, 15, 10, 0.12);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 60px;
  height: auto;
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--brown-700);
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: #000;
}

.order-btn {
  background: var(--brown-700);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(90, 43, 30, 0.18);
}

/* HAMBURGER MENU (mobile) */
.hamburger {
  display: none;
  font-size: 22px;
  color: var(--brown-700);
  cursor: pointer;
  background: none;
  border: none;
}

/* MOBILE NAVIGATION */
@media (max-width: 768px) {
  .nav-inner {
    padding: 10px 20px;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  nav.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  nav a {
    margin: 10px 0;
    width: 100%;
    font-size: 15px;
  }

  .hamburger {
    display: block;
  }

  .order-btn {
    display: none;
  }
}

/* HERO */
.hero {
  height: 100vh;
  background-image: url('../img/banner1.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: inset 0 -80px 140px rgba(0, 0, 0, 0.45);
}

/* Section styles */

section {
  padding: 72px 0
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 48px;
  align-items: center;
}

.brush img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h3 {
  color: var(--brown-900);
  font-size: 42px;
  margin: 0 0 16px;
  line-height: normal;
  font-weight: 800;

}

.about-text p {
  color: var(--black);
  margin: 0 0 12px;
  text-align: justify;
}

.about-text p strong {
  color: var(--black);
  font-weight: bold;
}


/* ✅ PRODUCT SECTION */
#product {
  background-image: url("../img/prdct_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  position: relative;
}

/* ✅ PRODUCT CARD (unchanged) */
.product-card {
  position: absolute;
  width: 500px;
  background: white;
  transition: all 0.4s ease;
  overflow: visible;
  padding-top: 100px;
}


/* IMAGE */
.product-image {
  position: absolute;
  top: -328px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  filter: drop-shadow(1px 2px 4px);
}

.product-image img {
  height: auto;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* CONTENT */
.product-content {
  background-color: white;
  position: absolute;
  padding: 20px 25px 30px;
}

.product-content .head h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a98f72;
  margin-bottom: 10px;
}

.product-title {
  font-size: 1.8rem;
  color: #4b2e13;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.95rem;
  color: #6b5b47;
  line-height: 1.6;
}

/* ✅ RESPONSIVE DESIGN */
@media (max-width: 768px) {
  #product {
    height: auto;
    min-height: 100vh;
    padding: 60px 20px;
  }

  .product-card {
    width: 90%;
    padding-top: 90px;
  }


  .product-title {
    font-size: 1.5rem;
  }

  .product-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .product-card {
    width: 95%;
    padding-top: 80px;
  }

  .product-image img {
    width: 300px;
  }

  .product-image {
    top: -279px;
  }

  .product-title {
    font-size: 1.4rem;
  }

  .product-desc {
    font-size: 0.85rem;
  }
}

@media (max-width: 315px) {
  .product-image img {
    width: 250px;
  }

  .product-image {
    top: -222px;
  }
}

/* Why section */
.why {
  background: linear-gradient(180deg, rgba(255, 250, 247, 1) 0%, rgba(255, 250, 247, 1) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.why .cards {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center
}

.feature-card {
  background: var(--glass);
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(20, 10, 10, 0.06)
}

.feature-list {
  list-style: disc;
  padding-left: 18px;
  color: var(--brown-900);
  line-height: 1.7
}

.feature-card p {
  text-align: center;
  font-size: 20px;
  color: var(--brown-900)
}

/* Testimonials */
.testimonial-container {
  position: relative;
  overflow: hidden;
}

.testimonial-container>p {
  text-align: center;
  margin-bottom: 30px;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.testimonial {
  flex: 0 0 33.3333%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.testimonial-card {
  background: #FCF6E6;
  border-radius: 25px;
  width: 100%;
  padding: 60px 40px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.profile-img {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid white;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.testimonial p {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.testimonial span {
  display: block;
  font-size: 13px;
  color: #777;
}

/* Controls */
.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.controls button {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 20px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
  pointer-events: all;
}

.controls button:hover {
  background: #000;
}

/* Dots */
.dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #333;
}

@media (max-width: 992px) {
  .testimonial {
    flex: 0 0 50%;
  }
}

@media (max-width: 600px) {
  .testimonial {
    flex: 0 0 100%;
  }

  .testimonial-card {
    padding: 50px 25px 30px;
  }

  .profile-img {
    width: 60px;
    height: 60px;
    top: -30px;
  }
}

/* CTA subscribe */
.cta {
  height: 400px;
  align-content: center;
  text-align: center;
  background: url(../img/cta.png);
  background-position: center;
  color: #fff;
  padding: 32px;
  border-radius: 30px;
  box-shadow: 0 28px 60px rgba(40, 20, 12, 0.35);
}

.cta h3 {
  margin: 0;
  font-size: 50px;
  font-weight: 900;
  line-height: normal;
}

.subscribe {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  display: inline-block;
}

.subscribe input {
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  min-width: 240px;
  font-weight: 600
}

.subscribe button {
  background: var(--brown-700);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700
}

/* Footer */
footer {
  background: var(--brown-900);
  color: #fff;
  padding: 42px 0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.footer-grid h4 {
  margin: 0 0 12px;
  font-size: 18px
}

.social a {
  color: #fff;
  text-decoration: none;
}

.social a i {
  width: 40px;
  height: 40px;
  border: 1px solid white;
  align-content: center;
  text-align: center;
  border-radius: 100%;
  margin-right: 10px;
  color: white;
  text-decoration: none
}

.copyright {
  text-align: center;
  margin-top: 26px;
  color: white;
  border-top: 1px solid var(--card);
  padding: 20px 0px;
  font-weight: 700;
}

.copyright a {
  text-decoration: underline;
  color: white;
}

.copyright a:hover {
  color: #8d6550;
}

/* small screen adjustments */
@media (max-width:1100px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .nav-inner {
    padding: 8px 12px
  }

  .hero {
    height: 520px
  }
}

@media (max-width:950px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px) {
  .why .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width:720px) {
  .hero {
    height: 420px
  }

  .hero-card {
    width: 260px;
    height: 260px
  }

  .testi-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .order-btn {
    font-size: 13px;
    padding: 8px 10px
  }

  .subscribe input {
    min-width: 140px
  }

  .two-col {
    padding: 0 8px
  }

  section {
    padding: 36px 0
  }
}

/* small extra polish */
.honey-splash {
  position: absolute;
  right: 8%;
  top: 45%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(217, 147, 58, 0.28), rgba(217, 147, 58, 0.06) 40%, transparent 60%);
  filter: blur(18px);
  transform: translateY(-30px);
  opacity: 0.9;
  pointer-events: none;
}


.head h2 {
  color: var(--brown-900);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0px;
  padding: 0px;
}


@media (max-width:720px) {
  h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
  }

  .cta h3 {
    margin: 0;
    font-size: 30px;
  }

}

@media (max-width:337px) {
  h1 {
    text-align: center;
    font-size: 29px;
  }

  .about-text h3 {
    color: var(--brown-900);
    font-size: 24px;
  }

}