
.navbar {
  background-color: transparent !important;
  padding: 1rem 3rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.navbar a img {
  width: 80px;
  height: auto;
  object-fit: contain;
  z-index: 1040;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  flex-wrap: nowrap;
  margin-left: auto;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #F0F2BD !important;
  text-decoration: none;
}

/* Navbar background on scroll */
.navbar.scrolled {
  background-color: rgb(255, 255, 255) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.navbar.scrolled .nav-link {
  color: #000 !important;
}

.navbar.scrolled .nav-link:hover {
  color: #CA7842 !important;
}

.btn-hubungi {
  background-color: #ff7a00;
  color: white;
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  font-size: 0.9rem;
  display: inline-block;
}

@media (max-width: 991.98px) {
  .btn-hubungi.d-none {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .btn-hubungi {
    display: inline-block;
  }
}

.btn-hubungi:hover {
  background-color: transparent;
  color: #ff7a00;
  border: 1px solid #ff7a00;
  text-decoration: none;
}

/* Navbar toggler button color */
.navbar-light .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  border-radius: 10px;
  padding: .35rem .6rem;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-nav {
    gap: .5rem;
    flex-wrap: nowrap;
  }
  .btn-hubungi {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
}

/* Mobile dropdown behavior for fixed navbar */
@media (max-width: 991.98px) {
  .navbar {
    padding: .75rem 1rem;
  }
  .navbar .collapse.navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: .75rem 1rem;
    z-index: 1040;
  }
  .navbar .collapse.navbar-collapse .nav-link {
    color: #000 !important;
    padding: .5rem 0;
  }
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;  
}

.hero {
  padding: 80px 20px 20px;
  background-color: #554f4f;
  position: relative;
  min-height: 100%;
}

.hero .container {
  max-width: 1400px;
  margin: 0 auto;
}

/* === Hero Section Styling === */
.hero-content {
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.hero-categories {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.category-item {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  padding: 1rem;
  transition: all 0.3s ease;

}

.category-item:hover {
  transform: translateY(-2px);
}

.hero-button-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.hero-cta-btn {
  background-color: #d78145;
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  font-family: 'Poppins', sans-serif;
  border: 2px solid #d78145;
}

.hero-cta-btn:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-2px);
  border: 2px solid #d78145;
}

.product {
  background-color: #4a362c;
}

.product .product-title {
  color: #F0F2BD;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.3px;
}

/* Keep existing product HTML, just restyle Bootstrap cards to Figma look */
.product .card {
  border-radius: 16px;
  overflow: hidden;
  background: #e6e3e3;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.product .card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.12); }

.product .card .card-img-top {
  background: #d9d9d9 !important;
  height: 160px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Allow swapping to real images (png/jpg/webp) without touching HTML */
.product .card .card-img-top img,
.product .card .card-img-top picture img,
.product .card .card-img-top source {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: block;
}

/* Map inside cards: keep within rounded container */
.map-embed {
  height: 260px;
  overflow: hidden;
  border-radius: 12px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== Order Overlay (Product modal) ===== */
.order-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: grid;
  place-items: center;
  z-index: 2000;
  padding: 16px;
}

.order-overlay.d-none { display: none !important; }

.order-dialog {
  width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  overflow: hidden;
  position: relative;
}

.order-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.order-media {
  padding: 16px;
}

.order-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  background: #e6e6e6;
}

.order-body { padding: 0 16px 16px; }
.order-title { font-weight: 700; margin: 6px 0 8px; }
.order-desc { color: #5b5b5b; font-size: 0.92rem; }

.order-actions { display: grid; gap: 10px; margin-top: 12px; }
.order-btn { display: block; text-align: center; padding: 10px 16px; border-radius: 999px; font-weight: 500; color: #fff; text-decoration: none; }
.order-btn--shopee { background: #FF5900; }
.order-btn--wa { background: #20b358; }
.order-note { color: #9a9a9a; font-size: 0.75rem; text-align: center; margin-top: 8px; }

/* Footer navigation hover */
footer .list-unstyled a {
  color: #ffffff !important;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

footer .list-unstyled a:hover {
  color: #F0F2BD !important;
  transform: translateX(4px);
}

.product .card .card-body { background: #fff; }
.product .card .card-title { color: #3c3c3c; font-weight: 600; }
.product .card .card-text { color: #6d6d6d; }
.product .btn.btn-outline-primary { background: #d78145; color: #fff; border: none; border-radius: 999px; padding: 6px 14px; }
.product .btn.btn-outline-primary:hover { opacity: .9; }

.menu-card {
  background: #e6e3e3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 0 rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.menu-media {
  background: #d9d9d9;
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d78145;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
}

.product-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  padding: 6px;
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #fff;
}

.menu-name {
  color: #3c3c3c;
  font-weight: 600;
}

.menu-btn {
  background: #d78145;
  border: none;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.why {
  background: #4a362c;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.why-title {
  color: #F0F2BD;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: .3px;
}

.why-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 2fr));
  gap: 14px 18px;
}

.why-list li {
  background: #fff;
  color: #4a362c;
  border-radius: 12px;
  padding: 14px 16px 14px 46px;
  text-align: left;
  font-weight: 400;
  position: relative;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.why-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #CA7842;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
}

@media (max-width: 576px) {
  .why-list { grid-template-columns: 2fr; }
}

/* Inline why list inside about section */
.why-inline .why-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
  gap: 12px 16px;
}

.why-inline .why-list li:hover {
  transform: translateY(-3px);
}

.why-inline .why-list li {
  background: #fff;
  color: #4a362c;
  border-radius: 12px;
  padding: 12px 16px 12px 44px;
  position: relative;
  font-weight: 400;
  transition: .3s ease;
}

.why-inline .why-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d78145;
  color: #fff;
  font-size: 12px;
}

.Testimoni {
  padding: 80px 0;
  background-color: white;
  text-align: center;
}

.Testimoni .container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimoni-header {
  margin-bottom: 3rem;
}

.judul-testimoni {
  font-size: 2rem;
  font-weight: 600;
  color: #CA7842;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.judul-testimoni h2{
  font-weight: 600;
}

.judul-testimoni .hijau {
  color: #008080;
}

.judul-testimoni .oranye {
  color: #ff7a00;
}

.penjelasan-testimoni {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

/* Swiper Container Styling */
.slide-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.swiper {
  padding: 20px 0;
}

.swiper-wrapper {
  align-items: stretch;
}

/* Card Styling */
.card.swiper-slide {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #eee6df;
  height: auto;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-align: left;
}

.card.swiper-slide:hover {
  transform: translateY(-3px);
  border-color: #d2691e;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.image-content {
  position: relative;
  margin-bottom: 1.5rem;
}

.card-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  flex: 1;
}

.address {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

/* === Testimonial Card (Figma-like) === */
.testimonial-card .t-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.testimonial-card .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #a7a7a7;
}

.testimonial-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonial-card .identity {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial-card .name {
  margin: 0;
  color: #2b2b2b;
}

.testimonial-card .rating-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  color: #8b5e00;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid #8e8e8e;
}

.testimonial-card .rating-badge i {
  color: #ffb200;
}

.testimonial-card .tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8e8e8e;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.testimonial-card .tag-row i {
  color: #8e8e8e;
}

.testimonial-card .comment-box {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 14px;
  color: #666;
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .testimonial-card .avatar { width: 48px; height: 48px; }
  .testimonial-card .rating-badge { font-size: 0.8rem; }
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #ff7a00;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #ff7a00;
  color: white;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
}

/* Responsive adjustments for Testimoni section */
@media (max-width: 991.98px) {
  .Testimoni {
    padding: 60px 0;
  }
  
  .judul-testimoni {
    font-size: 2.2rem;
  }
  
  .penjelasan-testimoni {
    font-size: 1rem;
  }
  
  .card.swiper-slide {
    padding: 1.5rem;
  }
  
  .card-image {
    width: 80px;
    height: 80px;
  }
  
  .card-img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .judul-testimoni {
    font-size: 1.8rem;
  }
  
  .penjelasan-testimoni {
    font-size: 0.95rem;
  }
  
  .name {
    font-size: 1.2rem;
  }
  
  .description {
    font-size: 0.9rem;
  }
  
  .card-image {
    width: 70px;
    height: 70px;
  }
  
  .card-img {
    width: 100%;
    height: 100%;
  }
}

/* Filter buttons styling */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover {
  background-color: #ffffff;
  color: #5C4033;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.filter-btn.active {
  background-color: #ffffff;
  color: #5C4033;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.filter-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive filter buttons */
@media (max-width: 768px) {
  .filter-buttons {
    gap: 0.25rem;
  }
  
  .filter-btn {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }

}

.copyrights {
 color: #ffffff;
}
