/********** Template CSS **********/
:root {
  --primary: #0258d3;
  --secondary: #ffc74c;
  --light: #F7F8FC;
  --dark: #111111;

  /* Font families */
  --ff-primary: 'Poppins', sans-serif;
  --ff-secondary: 'DINPro', 'Helvetica Neue', Arial, sans-serif;
}

.table-responsive{
    margin-top: -80;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: -20px;
}


.button-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 15px;
    margin-bottom: 15px;
}

.button-container button {
    margin-left: 10px;
    margin-right: 20px;

}
.text-right {
    text-align: right;
}

.rounded-pill-custom {
    border-radius: 8px; 
  }

.custom-card {
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cardBody {
  padding: 20px;
  background-color: #f8f9fa;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: -1px;
    line-height: 2;
    color: #454545;
    font-family: 'Poppins', Verdana, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 16px;
  }

  .nav-link:hover {
    color: #0261ae;
  }

  .nav-link::after{
    color: #454545;
  }

  .nav-link .fs-5 {
    margin-right: 10px;
    margin-top: 5px;
    margin-left: 120px;
    color: #454545;
  }

  .accordion-body .nav-link:hover {
    color: #0261ae;
  }

  .accordion-button:hover {
    color: #0261ae;
  }
  .accordion-button {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .accordion-body .nav-link {
    margin-bottom: -25px; 
    display: flex;
    margin-left: 135px;
    color: #454545;
    font-family: 'Poppins', Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 18px;
  }

  .accordion-button::after {
    display: none;
    color: #454545;
  }

  .accordion-button .fs-5 {
    margin-right: 10px;
    margin-left: 118px;
    color: #454545;
  }

  .list-group-item.dropdown a.dropdown-toggle {
    color: black;
    transition: color 0.3s;
  }

  .list-group-item.dropdown a.dropdown-toggle:hover,
  .list-group-item.dropdown.show a.dropdown-toggle {
    color: #0261ae !important;
  }
  
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-icon {
    background: url(../img/bg-icon.png) center center repeat;
    background-size: contain;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
    box-shadow: rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, .07);
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 5px 10px;
    color: #555555;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* Hanya untuk tampilan mobile */
@media (max-width: 991.98px) {
    /* Menyusun logo agar berada di tengah */
    .navbar-brand {
        flex: 1;
        text-align: center;
    }

    /* Mengatur tampilan search bar di mobile */
    .mobile-search {
        display: block;
    }

    .navbar-collapse {
        display: none; /* Menyembunyikan elemen collapse pada mobile */
    }

    /* Memastikan burger di mobile menjadi sidebar */
    /* .navbar-toggler {
        position: absolute;
        left: 15px;
        top: 15px;
    } */

    /* Agar logo dan search bar ditata secara vertikal */
    .navbar-nav {
        display: none;
    }
}

/* Default untuk Desktop */
@media (min-width: 992px) {
    .mobile-search {
        display: none;
    }
}

/* Custom Burger Icon */
.custom-burger-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30px; /* Ganti sesuai kebutuhan */
    height: 30px; /* Ganti sesuai kebutuhan */
}

.custom-burger-icon .bar {
    width: 20px; /* Ganti sesuai kebutuhan */
    height: 2px; /* Ganti sesuai kebutuhan */
    background-color: #000; /* Ganti warna sesuai kebutuhan */
    margin: 2px 0; /* Ganti jarak antara bar sesuai kebutuhan */
    border: none; /* Menghapus outline */
}

.navbar-toggler {
    border: none; /* Menghapus border pada tombol */
    background: none; /* Menghapus background tombol */
    padding: 0; /* Menghapus padding tombol */
    outline: none; /* Menghapus outline tombol */
}


/* Styling for the sidebar menu links */
.header-with-border {
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
}

.sidebar-menu .nav-link {
    display: block;
    padding: 10px 10px; /* Adjust padding as needed */
    text-decoration: none;
    color: #000; /* Adjust color as needed */
    border-bottom: 1px solid #ddd; /* Thin line to separate menu items */
}

.sidebar-name {
    display: block;
    padding-left: 10px; /* Adjust padding as needed */
    padding-bottom: 50px; /* Adjust padding as needed */
    text-decoration: none;
    color: #000; /* Adjust color as needed */
    border-bottom: 1px solid #ddd; /* Thin line to separate menu items */
}

/* Optional: Adding hover effect */
.sidebar-menu .nav-link:hover {
    background-color: #f8f9fa; /* Light background on hover */
}


.form-control {
    height: 40px;
    border-radius: 25px;
    padding-left: 15px;
}

.btn i {
    font-size: 18px;
    color: #555;
}

.btn:hover i {
    color: #000;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0);
}

.product-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff; /* Warna latar belakang card */
}

.image-container {
    height: 285px; /* Tinggi tetap untuk cover buku */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa; /* Warna latar belakang jika gambar lebih ramping */
    overflow: hidden;
}

.image-container img {
    height: 100%;
    width: auto; /* Menjaga rasio aspek gambar */
    object-fit: cover;
}

.discount-label {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0px;
    padding: 3px 5px;
    font-size: 0.9rem;
    font-weight: bold;
    font-family:'Poppins', Arial, Helvetica, sans-serif;
    background-color: #A8DADC;
    color: #1D3557;
}

.content {
    padding: 15px;
}

.author {
    font-size: 0.8rem;
    font-weight: 400;
    font-family:'Poppins', Arial, Helvetica, sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #6d6d6d;
    margin-bottom: 5px;
}

.author:hover {
    font-size: 0.8rem;
    text-decoration: underline;
    font-weight: 400;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #6d6d6d;
    margin-bottom: 5px;
}

.title {
    font-size: 1rem;
    font-weight: 400;
    font-family:'Poppins', Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Membatasi teks hingga dua baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2; /* Sesuaikan dengan tinggi baris */
    max-height: 2.4rem; /* Sesuaikan dengan tinggi baris dan jumlah baris */
    color: #151515;
}


.price-container {
    font-size: 1rem;
    font-weight: 700;
    font-family:'Poppins', Arial, Helvetica, sans-serif;
    color: #dbdbdb;
}

.discount-price {
    font-size: 1rem;
    font-weight: 600;
    font-family:'Poppins', Arial, Helvetica, sans-serif;
    text-decoration: line-through;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/carousel-1.jpg) top right no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Section Header ***/
.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}



/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -moz-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -ms-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -o-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-size: 20px 20px;
    transform: skew(20deg);
    z-index: 1;
}


/*** Product ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.product-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item img {
    transition: .5s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item small a:hover {
    color: var(--primary) !important;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}
.testimonial-item .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .testimonial-item .d-flex img {
    margin-bottom: 10px;
  }  

.testimonial-item .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-item .d-flex img {
    margin-bottom: 10px;
}  

/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* Hover effect untuk social icons di footer */
.footer .d-flex.mt-3 .d-inline-flex {
  transition: background-color 0.3s, color 0.3s;
}

.footer .d-flex.mt-3 .d-inline-flex:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.footer a.text-decoration-none {
  color: #fff;
}
.footer a.text-decoration-none:hover {
  color: #ddd;
  text-decoration: none;
}

.footer .d-flex.mt-3 .d-inline-flex {
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  color: #fff;
}
.footer .d-flex.mt-3 .d-inline-flex i {
  line-height: 60px;
}

/* 3. Tambahkan spacing di bawah CTA image */
.footer .position-relative.mb-5 {
  margin-bottom: 3rem;
}

/* list company & bisnis */
.footer ul.list-unstyled {
  padding: 0;
  margin: 0;
}
.footer ul.list-unstyled li + li {
  margin-top: .5rem;
}

/* 5. Lihat Maps: buat ikon panah berwarna putih di akhir */
.footer a.text-decoration-none .bi-arrow-right {
  font-size: 1rem;
  margin-left: .5rem;
}

.footer .position-absolute.top-50.start-50 {
  transform: translate(-50%, -40%);
}
.sidebar-filter a 
{
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    margin-bottom: 4px;
}
.sidebar-filter a:hover {
    background-color: #f0f0f0;
}
.sidebar-filter a.active {
    background-color: #0d6efd;
    color: #fff;
}
.sidebar-filter .sub-list {
    margin-left: 16px;
    padding-left: 0;
}
.sidebar-filter .sub-list a {
    font-size: 0.9rem;
    margin-bottom: 2px;
}
/* CTA Content Spacing */
.cta-content {
  padding-left: 4rem;
  /* padding-top: 1rem; */
}
.cta-content h3 + h3 {
  margin-top: 1rem;
}
.cta-content .btn-schedule {
  margin-top: 3rem;
  /* margin-left: 1rem; */
}
/* Button Schedule Styles */
.btn-schedule {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2.8rem;
  /* font-size: 1rem;
  font-weight: 400; */
  color: #fff;
  border: 2px solid #fff;
  background: none;
  border-radius: 50px;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
  text-decoration: none;
}

.btn-schedule .btn-text {
  display: inline-block;
}
.btn-schedule .btn-arrow {
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.btn-schedule .arrow-out {
  position: absolute;
  color: #0258d3;
  transition: transform 0.3s, opacity 0.3s;
}

.btn-schedule .arrow-in {
  position: absolute;
  color: #0258d3;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.btn-schedule:hover {
  color: #0258d3;
  background: #fff;
  border-color: #fff;
}

.btn-schedule:hover .btn-arrow {
  background: #0258d3;
  border-color: #0258d3;
}

.btn-schedule:hover .arrow-out,
.btn-schedule:hover .arrow-in {
  color: #fff;
}

.btn-schedule .arrow-out,
.btn-schedule .arrow-in {
  position: absolute;
  transition: transform 0.7s, opacity 0.3s;
}
.btn-schedule .arrow-out {
  color: #0258d3;
  transform: translateX(0);
  opacity: 1;
}

.btn-schedule .arrow-in {
  color: #0258d3;
  transform: translateX(-100%);
  opacity: 0;
}

.btn-schedule:hover {
  color: #0258d3;
  background: #fff;
  border-color: #fff;
}

.btn-schedule:hover .btn-arrow {
  background: #0258d3;
  border-color: #0258d3;
}

.btn-schedule:hover .arrow-out,
.btn-schedule:hover .arrow-in {
  color: #fff;
}

.btn-schedule:hover .arrow-out {
  transform: translateX(100%);
  opacity: 0;
}
.btn-schedule:hover .arrow-in {
  transform: translateX(0);
  opacity: 1;
}

@keyframes slideOut {
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Supaya klik keluar modal hanya saat klik backdrop, 
   bukan di dalam konten yang pointer-events:auto */
.modal {
  pointer-events: none;
}

.modal-dialog, .modal-content {
  pointer-events: auto;
}

.modal-content {
  border-radius: 1rem !important;
  overflow: visible;
}
/* Footer Company & Bisnis Links */
.footer .list-unstyled a {
  color: #333333;
  transition: color 0.3s;
}
.footer .list-unstyled a:hover {
  color: #0258d3;
}
.footer .d-flex a {
  color: #4d4d4d !important;
  border-color: #4d4d4d !important;
  background: transparent !important;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.footer .d-flex a:hover {
  background: #ffc74c !important;
  border-color: #4d4d4d !important;
  color: #4d4d4d !important;
}

.modal-dialog.modal-xxl-custom {
  max-width: 85vw;
  margin: 2rem auto !important;
}

.modal-dialog.modal-lg-custom {
  max-width: 60vw;
  margin: 2rem auto !important;
}
.products-modal-image {
  padding: 3rem;
  height: calc(100% - 2rem);
}
.modal-body {
  overflow: hidden;
}
.products-modal-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0.7rem;
}
body, .btn-schedule, .labels-list h5, .labels-list p {
  font-family: 'Poppins', sans-serif;
}
.labels-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: min-content;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.labels-list li {
  position: relative;
}
.labels-list h5 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0.25rem;
  color: #888;
  transition: color 0.3s;
}
.labels-list p {
  margin: 0;
  font-weight: 200;
  font-size: 14px;
  color: #888;
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.3s;
}
.labels-list p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #05d1d1;
  transition: width 0.7s;
}
.labels-list li:hover h5,
.labels-list li:hover p {
  color: #000;
}
.labels-list li:hover p::after {
  width: 100%;
}

header,
.navbar,
.navbar-brand,
.navbar-nav .nav-link,
.navbar-toggler-icon,
.navbar-nav .dropdown-item,
.offcanvas,
.offcanvas .offcanvas-header h1,
.offcanvas .offcanvas-body a,
.btn-schedule,
.modal-header .modal-title {
  font-family: 'Poppins', sans-serif !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
}

/* Logo teks */
.navbar-brand {
  font-weight: 600;
  font-size: 1.25rem;
}

/* Dropdown item di user menu */
.dropdown-menu .dropdown-item {
  font-weight: 400;
}

/* Search modal title */
.modal-header .modal-title {
  font-weight: 500;
}

/* === Step Section === */
.step-content {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.step-number {
  position: absolute;
  top: 0;
  right: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 5rem;
  line-height: 1;
  color: #0258d3;
}
.step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #0258d3;
  margin-top: 5rem;
  margin-bottom: 1rem;
}

.step-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #888888;
  line-height: 1.6;
}
.modal-fullscreen .modal-content {
  border: none;
  border-radius: 0;
  overflow: hidden;
}

.form-control:focus {
  box-shadow: none;
}

.badge {
  cursor: pointer;
  transition: background-color .2s;
}

.badge:hover {
  background-color: #e0e0e0;
}
/* ===========================
   Search Modal Overrides
   =========================== */
#searchModal .form-control {
  color: #fff !important;
}

#searchModal .form-control::placeholder {
  color: #05d1d1 !important;
  opacity: 1 !important;
}

#searchModal .form-control:hover::placeholder,
#searchModal .form-control:focus::placeholder {
  color: #fff !important;
}

#searchModal .form-control:hover + button i,
#searchModal .form-control:focus + button i {
  color: #fff !important;
}

#searchModal h5.mb-3 {
  font-family: 'Poppins', sans-serif !important;
  color: #fff !important;
}

#searchModal .top-search-link {
  color: #05d1d1 !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

#searchModal .top-search-link:hover {
  color: #ffc74c !important;
  text-decoration: underline;
}
.breadcrumb > li + li::before {
  content: ' > ' !important;
  color: white;
}
.breadcrumb a {
  color: white !important;
}
.breadcrumb .active {
  color: #ffc74c !important;
}
.cta-overlay {
  top: 30% !important;
  left: 5%;
  margin-left: 5rem;
}
.product-card {
  margin-top: -190px; /* overlap hingga 1/3 hero image */
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}
.thumb img { cursor: pointer; border: 2px solid transparent; }
.thumb img.active { border-color: #0258d3; }
.discount-logo {
  width: 24px;
  height: auto;
}

.additional-label{
    content: '';
    width: 7px;
    height: 7px;
    background-color: #0258d3;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-radius: 1px;
}
/* —— Button eye —— */
.eye-btn {
  position: absolute !important;
  top: 50% !important;
  right: 1rem !important;
  transform: translateY(-50%) !important;
  background: none !important;
  border: none !important;
  font-size: 1.1rem !important;
  cursor: pointer !important;
}

.font-first {
  font-family: 'Barlow', sans-serif !important;
}

.fw-600 {
  font-weight:600 !important;
}

.fs-13-px {
  font-size:13px !important;
}

.text-black {
  color: #000 !important;
}