:root {
  --brown-main: #5d4037;
  --brown-light: #81594c;
 
  --cream-bg: #f5faf4;
  --white: #ffffff;
  --text-dark: #412818;
  --shadow-soft: 0 6px 18px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 32px rgba(0,0,0,0.12);
}

/* ================= GLOBAL ================= */
body {
  background-color: var(--cream-bg);
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
  background-color: var(--brown-main);
  padding: 14px 0;
  box-shadow: var(--shadow-soft);
}

.navbar-brand img {
  height: 50px;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.3s;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255,255,255,0.15);
}

/* ================= BANNER ================= */
.banner img {
  width: 92%;
  height: 320px;
  object-fit: cover;
  margin: 25px auto;
  display: block;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  margin-right: 15%;
  margin-top: 2%;
  margin-bottom: 1%;
}
/* Banner + Buttons in one line */
.banner-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  width: 75%;
  margin: 25px auto;
}

/* Banner image resize */
.banner-flex img {
  width: 70%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

/* Buttons beside image */
.banner-flex .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Button width */
.banner-flex .action-btn {
  width: 180px;
  text-align: center;
}


/* ================= PRODUCT CONTAINER ================= */
.product-container {
  background-color: white;
  margin: 4% auto;
  max-width: 1250px;
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

/* ================= PRODUCT ROW ================= */
.product-row {
  background-color: white;
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 25px;
}

/* ================= PRODUCT ITEM CARD ================= */
.product-item {
  flex: 1 1 220px;
  text-align: center;
  background-color: white;
  border-radius: 18px;
  padding: 20px 16px;
  box-shadow: black ;
  border: #3a2a1f solid 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  transform: translateY(-4px);
  box-shadow: black;
}

/* ================= PRODUCT IMAGE ================= */
.product-item img {
  width: 150px;
  border-radius: 14px;
  padding: 8px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* ================= AVAILABILITY BOX ================= */
.product-item p {
  background: white;
  border: 1px solid #572c1c;
  border-radius: 14px ;
  padding: 14px 12px;
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
}

/* ================= PRODUCT NAME CARD ================= */
.large-display {
  background: linear-gradient(135deg, #81594c, #5d4037);
  color: #fff;
  justify-content: center;
}

.large-display img {
  border: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.product-name {
  margin-top: 14px;
  font-size: 5.4rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #492020;
}

/* REMOVE HR */
hr {
  display: none;
}

/* ================= ACTION BUTTONS ================= */
.action-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 50px 0;
  margin-right: 10%;
}

.action-btn {
  background-color: var(--brown-main);
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: black;
  transition: all 0.3s ease;

}

.action-btn:hover {
  background-color: var(--brown-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* ================= FOOTER ================= */
footer {
  background-color: var(--brown-main);
  color: #fff;
  padding: 25px 40px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.social-icons img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.15);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .product-container {
    margin: 6% 6%;
    padding: 25px;
  }

  .product-row {
    flex-direction: column;
  }

  .action-buttons {
    flex-direction: column;
  }

  .action-btn {
    width: 85%;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  @media (max-width: 768px) {
  .banner-flex {
    flex-direction: column;
  }

  .banner-flex img {
    width: 90%;
    height: 240px;
  }

  .banner-flex .action-buttons {
    flex-direction: row;
  }
}
}
