:root {
  --green-color: #4fb856;
  --green-wa-color: #21c063; /*#25d366*/
  --green-wa-color-hover: #1da855;
  --page-bg-color: #f8f8f8;
  --page-header-bg-color: #d1efd7; /*#efefef;*/
  --color-cream-dark: var(--page-header-bg-color); /*#efe0d2;*/
  --light-color1: #def5d8; /*#fbf3ea;*/
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.sr-only,
.logo-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
body {
  background: var(--page-background-color);
  color: #3e2a1f;
  scroll-behavior: smooth;
}

/* container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* header & navbar */
header {
  background: var(--page-header-bg-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(2px);
  border-bottom: 1px solid #f5e2d0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #b45f2a;
  letter-spacing: -0.5px;
}
.logo p {
  font-size: 0.75rem;
  font-weight: 500;
  color: #a5724b;
}
.logo-main,
.logo-main > a,
.logo-main > a > img {
  display: inline-block;
  width: 220px;
  height: auto;
  max-width: 100%;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #5a3e2a;
  transition: 0.2s;
}
.nav-links a:hover {
  color: #c27e3a;
}
.cart-icon {
  background: #f0f0f0;
  padding: 8px 14px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.cart-icon:hover {
  background: #ffffff;
  color: #000;
}
.cart-icon i {
  margin-right: 6px;
  color: #b4622a;
}

/* hero */
.hero {
  background: linear-gradient(160deg, #c5f8d9 0%, #ffffff 100%);
  border-radius: 32px;
  margin: 32px 0;
  padding: 48px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.hero-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: black;
}
.hero-text p {
  margin: 16px 0 24px;
  font-size: 1rem;
  max-width: 500px;
}
.btn-wa {
  background: var(--green-color);
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
}
.btn-wa:hover {
  background: #128c7e;
}
#whatsappCartBtn {
  position: relative;
  top: -8px;
}

/* section title */
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 48px 0 24px 0;
  position: relative;
  display: inline-block;
}
.section-title:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 3px;
  background: #e7bc8e;
}

/* filter buttons */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 32px 0;
}
.filter-btn {
  background: white;
  border: 1px solid #e2cfbe;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: #c27e3a;
  color: white;
  border-color: #c27e3a;
}

/* produk grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}
.product-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}
.product-img {
  background: var(--light-color1);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #c4844a;
}
.product-info {
  padding: 18px 16px 20px;
}
.product-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.product-desc {
  font-size: 0.8rem;
  color: #7e5e42;
  margin: 8px 0;
  line-height: 1.3;
}
.price {
  font-weight: 700;
  color: #b45f2a;
  font-size: 1.2rem;
  margin: 12px 0;
}
.btn-order {
  background: var(--green-color);
  width: 100%;
  border: none;
  padding: 10px;
  border-radius: 40px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.2s;
  color: #ffffff;
}
.btn-order:hover {
  background: #128c7e;
  color: white;
}

/* testimoni */
.testimonials {
  background: #fcf5ed;
  border-radius: 32px;
  padding: 32px 28px;
  margin: 48px 0;
}
.testi-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testi-card {
  background: white;
  padding: 20px;
  border-radius: 24px;
  flex: 1 1 250px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.testi-text i {
  color: #e7bc8e;
  margin-right: 4px;
}
.testi-name {
  font-weight: 600;
  margin-top: 12px;
}

/* hubungi & faq */
.contact-faq {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0;
}
.contact-box,
.faq-box {
  flex: 1;
  background: #fffaf5;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid #f0e1d4;
}
.contact-info p {
  margin: 12px 0;
}
.faq-item {
  margin-bottom: 18px;
  border-bottom: 1px solid #f0e1d4;
  padding-bottom: 12px;
}
.faq-question {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

/* custom order */
.custom-order {
  background: linear-gradient(
    135deg,
    var(--page-header-bg-color) 0%,
    var(--page-bg-color) 100%
  );
  border-radius: 32px;
  padding: 32px;
  margin: 40px 0;
  text-align: center;
}
.btn-custom:hover {
  background: #128c7e;
  color: white;
}
.btn-custom {
  background: var(--green-color) /*#9b5e2c*/;
  color: white;
  padding: 12px 28px;
  border-radius: 60px;
  border: none;
  font-weight: 600;
  margin-top: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

footer {
  text-align: center;
  padding: 32px;
  background: var(--color-cream-dark);
  margin-top: 48px;
  border-radius: 32px 32px 0 0;
  font-size: 0.85rem;
}
.social-icons a {
  color: #7a573c;
  margin: 0 10px;
  font-size: 1.4rem;
}
@media (max-width: 700px) {
  .hero-text h2 {
    font-size: 1.8rem;
  }
  .navbar {
    flex-direction: column;
  }
}
