body{
  font-family: 'Poppins', sans-serif;
}

.empty-testimoni {
    background: linear-gradient(135deg, #fff0f3, #ffe5ec);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .empty-testimoni i {
    font-size: 70px;
    color: #d63384;
    margin-bottom: 20px;
    animation: floatIcon 2s ease-in-out infinite;
  }

  .empty-testimoni h4 {
    font-weight: bold;
    color: #8b1e3f;
  }

  .empty-testimoni p {
    color: #6c757d;
    margin-bottom: 0;
  }

  @keyframes floatIcon {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-img:hover {
  transform: scale(1.03);
}

.modal-content-custom {
  background: transparent;
  border: none;
}

.preview-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 20px;
}

.badge-diskon {
  width: 60px;
  height: 60px;
  background-color: red;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 12px;
}

/* COLOR */
:root{
  --pink-dark: rgb(235 203 208);
  --marron: rgb(82 1 0);
}

.bg-marron {
  background: var(--marron) !important;
}

.bg-pink {
  background: var(--pink-dark) !important;
}

/* NAVBAR BASE */
.navbar-glass{
  transition: all 0.4s ease;
  padding: 15px 0;
}

/* SCROLL EFFECT */
.navbar-glass.scrolled{
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 10px 0;
}

/* NAV LINK */
.nav-link{
  position:relative;
  font-weight:500;
  color:#333;
  transition: 0.3s;
}

/* HOVER LINE */
.nav-link::after{
  content:'';
  position:absolute;
  width:0%;
  height:2px;
  bottom:-5px;
  left:0;
  background: var(--marron);
  transition:0.3s;
}

.nav-link:hover::after{
  width:100%;
}

.nav-link:hover{
  color:var(--marron);
}

.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--marron) !important;
}

/* PRODUK */
.produk{
  margin-top: -30px;
}

.de-produk{
  margin-top: -130px;
}

/* ICON */
#btnSearch, .bi-cart3, .bi-person-circle{
  transition: 0.3s;
  color: black;
}

#btnSearch:hover, .bi-cart3:hover, .bi-person-circle:hover{
  color: var(--marron);
  transform: scale(1.2);
}

/* ICON USER */
.icon-user{
  color:#333;
  transition:0.3s;
  text-decoration:none;
}

/* DROPDOWN */
.dropdown-menu{
  border-radius: 12px;
  min-width: 180px;
}

.dropdown-item{
  border-radius: 8px;
  transition: 0.3s;
}

.dropdown-item:hover{
  background: var(--pink-dark);
  color:#000;
}

/* TEXT */
.text-marron{
  color: var(--marron) !important;
}

/* BUTTON */
.btn-marron{
  background:var(--marron);
  color:#fff;
  border-radius:50px;
  padding:10px 25px;
  transition: 1s;
}

.btn-marron:hover{
  background:rgb(66 4 5);
  transform:scale(1.05);
  color:#fff;
}

/* HERO */
.hero{
  padding-top: 130px;
  background: var(--pink-dark);
}

.hero .hero-img {
  border: 3px solid var(--marron);
}

/* SECTION */
.section{
  padding: 50px 0;
}

/* CARD */
.card-modern{
  border:none;
  border-radius:20px;
  overflow:hidden;
  transition:0.3s;
}

.card-modern img{
  height:230px;
  object-fit:cover;
}

.card-modern:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 40px rgba(0,0,0,0.15);
}

/* BADGE */
.badge-custom{
  position:absolute;
  top:15px;
  left:15px;
  background:var(--marron);
  color:#fff;
  padding:5px 12px;
  border-radius:50px;
  font-size:12px;
}

/* TESTIMONI */
/* Card */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Quote Icon */
.quote-icon i {
  color: var(--marron);
}

/* Divider (kalau belum ada) */
.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--marron), white);
  border-radius: 10px;
}

/* CTA */
.cta{
  background: red;
  border-radius:30px;
  padding:60px;
}

/* FLOAT WA */
.wa-float{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:#fff;
  padding:15px 20px;
  border-radius:50%;
  font-size:22px;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* Badge Diskon */
.badge-diskon {
  top: 15px;
  right: 15px;
  background: #ff3b3b;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.divider-icon {
  position: relative;
}

.divider-icon::before,
.divider-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 2px;
  background: #ddd;
}

.divider-icon::before {
  left: 0;
}

.divider-icon::after {
  right: 0;
}

.divider-icon span {
  display: inline-block;
  padding: 8px 15px;
  background: #fff;
  color: #ff4d88;
  border-radius: 50px;
  border: 1px solid #eee;
}

#searchOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

#searchOverlay.active {
  opacity: 1;
  visibility: visible;
}

/* BOX */
.search-container {
  width: 90%;
  max-width: 450px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 25px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transform: translateY(-20px);
  transition: 0.4s;
}

#searchOverlay.active .search-container {
  transform: translateY(0);
}

/* HEADER */
.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-header h5 {
  margin: 0;
  font-weight: 600;
}

#closeSearch {
  font-size: 22px;
  cursor: pointer;
}

/* INPUT */
.input-group {
  background: white;
  border-radius: 50px;
  padding: 5px 10px;
  margin-top: 20px;
}

.input-group input {
  border-radius: 50px;
}

/* TENTANG KAMI */
.tentang_kami {
  padding-top: 140px;
  overflow: hidden;
}

.about-box{
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-box{
  padding: 20px;
  border-radius: 12px;
  background: #fdf6f9;
  transition: 0.3s;
}

.stat-box h3{
  color: var(--marron);
  font-weight: 700;
}

.stat-box p{
  font-size: 13px;
  color: #666;
}

.stat-box:hover{
  transform: translateY(-5px);
  background: var(--pink);
}

/* FITUR */


.fitur-item{
  display: flex;
  align-items: center;
  gap: 12px;

  background: #fff;
  padding: 12px 15px;
  border-radius: 12px;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.fitur-item i{
  font-size: 18px;
  color: var(--marron);
}

.fitur-item:hover{
  transform: translateX(6px);
  background: var(--pink-dark);
}

/* PEMBAYARAN */
/* CARD */
.payment-card{
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ITEM */
.payment-item{
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #fdf6f9;
  padding: 12px 15px;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.payment-item:hover{
  background: var(--pink);
  transform: translateX(5px);
}

/* LOGO */
.payment-item img{
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* COPY BUTTON */
.btn-copy{
  border: none;
  background: var(--pink-dark);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-copy:hover{
  background: #d96b90;
}

/* LOADING */
/* PRELOADER FULLSCREEN */
#preloader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: #fff;
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: opacity 0.5s ease, visibility 0.5s;
}

/* HIDE */
#preloader.hide{
  opacity: 0;
  visibility: hidden;
}

/* CONTENT */
.loader-content{
  text-align: center;
  transform: translateY(-10px); /* biar visual lebih pas di mata */
}

/* SPINNER */
.spinner{
  width: 55px;
  height: 55px;
  border: 5px solid #eee;
  border-top: 5px solid var(--marron);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

/* TEXT */
.loader-content h5{
  margin-top: 15px;
  color: var(--marron);
  font-weight: 600;
}

.loader-content small{
  color: #888;
}

/* ANIMATION */
@keyframes spin{
  0%{ transform: rotate(0deg); }
  100%{ transform: rotate(360deg); }
}


/* LOKASI */
.info-box, .map-box{
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ITEM INFO */
.info-item{
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  background: #fdf6f9;
  transition: 0.3s;
}

.info-item i{
  font-size: 20px;
  color: var(--pink-dark);
}

.info-item:hover{
  transform: translateX(6px);
  background: var(--pink);
}

/* TEXT */
.info-item small{
  color: #666;
}


/* FOOTER */
/* FOOTER BACKGROUND */
.footer-modern{
  background: linear-gradient(135deg, #2b2b2b, #1c1c1c);
}

/* TITLE */
.footer-title{
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--pink);
}

/* LINKS */
.footer-links{
  list-style: none;
  padding: 0;
}

.footer-links li{
  margin-bottom: 8px;
}

.footer-links a{
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-links a:hover{
  color: var(--pink-dark);
  padding-left: 6px;
}

/* BRAND */
.footer-brand p{
  color: #ccc;
  font-size: 14px;
}

/* SOCIAL */
.social-icons a{
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover{
  background: var(--pink-dark);
  transform: translateY(-5px);
}

/* LINE */
.footer-line{
  border-color: rgba(255,255,255,0.1);
}


/* ===================== */
/* 📱 MOBILE RESPONSIVE */
/* ===================== */
@media (max-width: 991px){

  .hero {
    text-align: center;
  }

  .tentang_kami {
    text-align: justify;
  }

  .bga-cta {
    margin-top: -75px;
    text-align: center;
  }

  .testimoni {
    margin-top: -50px;
  }

  .btn-center {
    justify-content: center;
  }

  /* MENU STYLE */
  .navbar-collapse{
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    /* ANIMATION */
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s ease;
  }

  .navbar-collapse.show{
    transform: translateY(0);
    opacity: 1;
  }

  /* NAV ITEM */
  .navbar-nav{
    gap: 10px;
  }

  .nav-link{
    padding: 10px;
    border-radius: 10px;
  }

  .nav-link:hover{
    background: var(--pink-dark);
  }

  /* ICON RIGHT JADI CENTER */
  .navbar .d-flex{
    justify-content: center;
    margin-top: 15px;
  }

  /* LOGO */
  .navbar-brand img{
    width: 65px;
  }

  /* HERO  */
  .hero{
    padding-bottom: 50px;
  }

  .fitur-list{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
  }

  .fitur-list small{
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 15px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    font-size: 14px;
    transition: all 0.3s ease;
  }

/* ICON */
.fitur-list i{
  font-size: 18px;
  color: var(--marron);
}

/* HOVER EFFECT */
.fitur-list small:hover{
  transform: translateX(6px);
  background: var(--pink-dark);
}

/* PRODUK */
.produk{
  margin-top: -50px;
}

.de-produk{
  margin-top: -70px;
}

.navbar-brand img {
  margin-top: -20px;
}

}


/* ===================== */
/* 💻 TABLET & DESKTOP */
/* ===================== */
@media (min-width: 992px){

  .navbar-nav{
    align-items: center;
  }

  .navbar .d-flex{
    gap: 20px;
  }

  .navbar-brand img{
    width: 80px;
  }


}
