 /* Custom CSS */
 @import
 url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

 body {
 font-family: 'Montserrat', 'Poppins';
 }

 .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.free-delivery {
  flex-grow: 1;
  text-align: center;
  font-weight: bold;
  /* font-size: 1.1rem;  */
}


@media (max-width: 480px) {
  .free-delivery {
    display: none; 
  }
}


/* Menyembunyikan tombol navigasi kecuali saat hover */
#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
    opacity: 1;
    visibility: visible;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}


/* Menempatkan indikator di tengah bawah */
.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 35%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 8px; /* Jarak antar indikator */
}

/* Membuat indikator berbentuk bulat sempurna */
.carousel-indicators [data-bs-target] {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: white !important; /* Warna putih */
  border: none !important;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Efek saat indikator aktif */
.carousel-indicators .active {
  opacity: 1 !important;
  transform: scale(1.3); /* Sedikit membesar saat aktif */
}


/* Default (Desktop) */
.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Ukuran ikon standar */
.feature-box .icon img {
  width: 50px;
  height: auto;
}

/* Styling teks */
.feature-box h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.feature-box p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}

/* Responsif untuk layar kecil (mobile) */
@media (max-width: 768px) {
  .feature-box {
      flex-direction: column;
      text-align: center;
  }

  .feature-box .icon img {
      width: 40px; /* Ikon lebih kecil di mobile */
  }

  .feature-box h5 {
      font-size: 1rem;
  }

  .feature-box p {
      font-size: 0.9rem;
  }
}






 .slick-slide {
  margin: 0px 20px;
  }

 /* Styling untuk elemen <small> */
small {
  font-size: 0.875rem; /* Ukuran teks sedikit lebih kecil dari normal */
  color: #6c757d; /* Warna abu-abu lembut */
  font-style: italic; /* Teks dimiringkan untuk memberikan aksen */
  margin-top: 4px; /* Beri sedikit jarak atas */
  display: block; /* Pastikan elemen ditampilkan dalam baris baru */
}

/* Tambahan untuk fokus atau penekanan */
small.highlight {
  color: #007bff; /* Warna biru untuk penekanan */
  font-weight: bold; /* Teks lebih tebal */
}

/* Styling untuk konteks error atau peringatan */
small.error {
  color: #dc3545; /* Warna merah untuk error */
  font-weight: bold;
}


.img-produk {
  object-fit: cover !important;
  width: 100% !important;
  aspect-ratio: 4/4;
  position: relative;
}

.img-produk img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


 .img-slider {
  object-fit: cover !important;
  width: 100% !important;
  aspect-ratio: 10/9;
  padding: 20px;
 }

 .img-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
 


 .whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
}

.whatsapp-float a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}


 .top-bar {
 background-color: #2F63D0; /* Biru cerah */
 color: #ffffff;
 padding: 10px 0;
 font-size: 14px;
 }

 .top-bar a {
 color: #ffffff;
 text-decoration: none;
 margin-right: 20px;
 }

 .top-bar input {
 border-radius: 20px;
 border: none;
 padding: 5px 10px;
 }

 .navbar {
 background-color: #ffffff;
 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 }

 .navbar-nav .nav-link {
 color: #333333;
 font-weight: 500;
 }

 .navbar-nav .nav-link:hover {
 color: #2F63D0; /* Biru cerah */
 }

 .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* Menghilangkan jeda antara menu dropdown dan tautan */
}
.navbar-nav .dropdown-menu {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
}


 .hero {
 background-color: #2F63D0; /* Biru tua */
 color: white;
 padding: 10px 80px;
 }

 .hero h1 {
 font-size: 2.5rem;
 font-weight: bold;
 }

 .hero p {
 font-size: 1.1rem;
 margin-top: 15px;
 margin-bottom: 25px;
 }

 .carousel-control-prev-icon,
 .carousel-control-next-icon {
 background-color: transparent; /* Hilangkan latar belakang ikon */
 background-image: none; /* Hilangkan ikon bawaan */
 width: 20px;
 height: 20px;
 display: inline-block;
 border: solid white; /* Membuat panah dari garis */
 border-width: 0 3px 3px 0; /* Lebar dan posisi garis */
 transform: rotate(45deg); /* Membuat bentuk panah */
 }

 .carousel-control-prev-icon {
 transform: rotate(135deg); /* Arah panah ke kiri */
 margin-left: 5px; /* Jarak kecil dari lingkaran tombol */
 }

 .carousel-control-next-icon {
 transform: rotate(-45deg); /* Arah panah ke kanan */
 margin-right: 5px; /* Jarak kecil dari lingkaran tombol */
 }

 /* Lingkaran tombol */
 .carousel-control-prev,
 .carousel-control-next {
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 width: 50px;
 height: 50px;
 background: #0000004D;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 z-index: 10;
 transition: background-color 0.3s ease;
 }

 .carousel-control-prev:hover,
 .carousel-control-next:hover {
 background-color: rgba(0, 0, 0, 0.8); /* Latar belakang lebih gelap saat hover */
 }



 .hero .btn {
 background-color: #ffcc00; /* Kuning terang */
 border: none;
 padding: 10px 20px;
 font-weight: bold;
 color: #003366; /* Biru tua */
 }



 .hero img {
 object-fit: cover; /* Menjaga rasio gambar agar tetap proporsional */
 height: 100%; /* Gambar memenuhi tinggi div */
 width: 100%; /* Gambar memenuhi lebar div */
 }

 /* hero left */
 .promo-badge {
 background-color: #e0ebff;
 color: #0047d3;
 display: inline-block;
 padding: 5px 10px;
 border-radius: 20px;
 font-size: 14px;
 margin-bottom: 10px;
 }

 .promo-badge span:first-child {
 font-weight: bold;
 margin-right: 5px;
 }

 h1 {
 font-size: 24px;
 line-height: 1.4;
 margin: 15px 0;
 }

 p {
 margin: 10px 0;
 }

 .btn-shop {
 background-color: #ffcc00;
 color: #0047d3;
 border: none;
 border-radius: 5px;
 padding: 10px 20px;
 font-size: 16px;
 cursor: pointer;
 margin-top: 10px;
 }

 .btn-shop:hover {
 background-color: #e6b800;
 }

 .offer {
 margin-top: 20px;
 font-size: 14px;
 }

 /* hero left end */


 .info-bar {
 background-color: #F5F5F5; /* Abu muda */
 /* text-align: center; */
 padding: 20px 0;
 }

 .info-bar .icon {
 font-size: 2rem;
 color: #2F63D0; /* Biru cerah */
 margin-bottom: 10px;
 }

 .info-bar h5 {
 font-weight: bold;
 color: #003366; /* Biru tua */
 }

 .info-bar p {
 font-size: 0.9rem;
 color: #666666; /* Abu */
 }

 /* best deal */
 .best-deal {
 margin-top: 50px;
 }

 .title-1 {
 font-weight: 500;
 font-size: 32px;
 line-height: 38px;
 }

 .description-1 {
 font-weight: 400;
 font-size: 18px;
 line-height: 32px;
 color: #00000099;
 }


 .product-card {
 position: relative;
 overflow: hidden;
 border-radius: 0.5rem; /* Rounded corners */
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 transition: box-shadow 0.3s ease-in-out;
 }

 .product-card:hover {
 box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
 }

 .product-card img {
 transition: transform 0.3s ease-in-out; /* Zoom effect */
 width: 100%;
 height: auto;
 }

 .product-card:hover img {
 transform: scale(1.05); /* Slight zoom on hover */
 }

 .product-description {
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 50%; /* Takes up half the image height */
 background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 85.5%);
 backdrop-filter: blur(10px); /* Blur effect */
 opacity: 0; /* Hidden by default */
 transition: opacity 0.3s ease-in-out; /* Smooth transition */
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 }

 .product-description p {
 margin: 0;
 padding: 0.5rem;
 font-size: 14px;
 line-height: 1.4;
 color: #fff;
 }


 .product-card:hover .product-description {
 opacity: 1; /* Show description on hover */
 }

 .product-card h3,
 .product-card p {
 margin: 0.5rem 0;
 }

 .product-card a {
 margin-top: 1rem;
 font-weight: bold;
 }

 /* best deal end */




 /* free shiping */
 .free-shiping {
 margin-top: 50px;
 }

 .btn-home {
 width: Hug (218px)px;
 height: Hug (51px)px;
 padding: 12px 40px 12px 40px;
 gap: 10px;
 border-radius: 8px;
 opacity: 0px;
 background: #2F63D0;

 font-family: Montserrat;
 font-size: 18px;
 font-weight: 400;
 line-height: 27px;
 letter-spacing: -0.02em;
 text-align: center;
 text-underline-position: from-font;
 text-decoration-skip-ink: none;
 color: #FFFFFF;

 }

 .btn-home:hover {
 background: #1a4d9a; /* Darker blue on hover */
 transform: translateY(-2px); /* Slight lift effect */
 opacity: 0.9; /* Slightly transparent on hover */
 color: #fff;
 }

 /* free shiping ENd */


 /* feed-instagram */
 .feed-instagram {
 margin-top: 50px;
 background: #F5F5F5;
 padding: 80px 0px;
 }
 /* feed-instagram End */

 /* blog */
 .blog {
 margin-top: 50px;
 }

 .blog-card {
 position: relative;
 overflow: hidden;
 border-radius: 0.5rem; /* Rounded corners */
 box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
 transition: box-shadow 0.3s ease-in-out;
 }

 /* .img-blog {
 width: 100%;
 height: 330px;
 object-fit: cover;
 } */

 .img-blog {
  object-fit: cover !important;
  width: 100% !important;
  aspect-ratio: 4/4;
  position: relative;
}

.img-blog img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

 .title-blog {
 font-family: Montserrat;
 font-size: 18px;
 font-weight: 500;
 line-height: 30px;
 text-align: left;
 text-underline-position: from-font;
 text-decoration-skip-ink: none;
 color: #000;
 margin-top: 10px;
 }

 .description-blog {
 font-family: Montserrat;
 font-size: 16px;
 font-weight: 400;
 line-height: 24px;
 text-align: left;
 text-underline-position: from-font;
 text-decoration-skip-ink: none;
 color: #00000099;
 margin-top: 10px;
 }
 /* blog end */


 /* google review / testimoni */

 .googel-review {
 margin-top: 50px;
 }

 .testimonial-list {
 display: flex;
 justify-content: space-between;
 gap: 20px;
 }

 .testimonial {
 flex: 1;
 background-color: #ffffff;
 padding: 20px;
 /* border-radius: 8px;
 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
 text-align: left;
 }

 .testimonial img {
 width: 50px;
 height: 50px;
 border-radius: 50%;
 margin-bottom: 10px;
 }

 .testimonial h3 {
 margin: 0;
 font-size: 1.1em;
 }

 .testimonial h4 {
 margin: 5px 0 10px;
 font-size: 0.9em;
 color: #888;
 }

 .stars {
 color: #f1c40f;
 margin-bottom: 10px;
 font-size: 27px;
 }

 /* google review / testimoni end */


 /* why choose */
 .why-choose {
 margin-top: 50px;
 background: #F5F5F5;
 padding: 70px 0px;
 }

 .card-why-choose {
 background: #FFFFFF;
 padding: 20px;
 }

 .why-choose .icon-why-choose {
 width: 55px !important;
 }

 .description-why-chosee {
 font-family: Montserrat;
 font-size: 16px;
 font-weight: 400;
 line-height: 24px;
 text-align: left;
 text-underline-position: from-font;
 text-decoration-skip-ink: none;
 color: #00000099;

 }


 /* why choose end */


 /* footer */
 footer {
  padding: 4% 0;
  background-color: #2F63D0;
  color: #fff;
}

.title-footer {
  font-family: 'Montserrat', Poppins;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 10px;
}

footer p {
  font-family: 'Montserrat', Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 8px;
}

footer .col-md-4, footer .col-md-2 {
  margin-bottom: 20px;
}

/* Menjaga kolom agar selalu mengisi lebar layar */
footer .row {
  display: flex;
  justify-content: space-between;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icon {
  font-size: 24px;
  color: #fff;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #000; /* Change color on hover */
}

.social-icons a {
  text-decoration: none;
}

/* Responsiveness for mobile view */
@media (max-width: 768px) {
  footer .row {
      text-align: center;
      flex-wrap: wrap; /* Allows wrapping on small screens */
  }

  footer .col-md-4, footer .col-md-2 {
      margin-bottom: 15px;
      flex: 1 1 100%; /* Full width on smaller screens */
  }

  footer .col-md-2 {
      text-align: center;
  }
}


 /* footer end */


 /* Responsiveness */

 @media (max-width: 1200px) {
 .navbar-nav .nav-link {
 font-size: 14px;
 }

 .hero {
 padding: 60px 40px;
 }

 .hero h1 {
 font-size: 2rem;
 }

 .hero p {
 font-size: 1rem;
 }

 .product-card {
 width: 100%;
 }


 }

 @media (max-width: 992px) {
 .navbar-nav .nav-link {
 font-size: 13px;
 }

 .hero {
 padding: 0px 20px;
 }

 .hero h1 {
 font-size: 1.8rem;
 }

 .hero p {
 font-size: 0.95rem;
 }

 .promo-badge {
 font-size: 12px;
 }

 .btn-shop {
 font-size: 14px;
 }

 .product-card {
 margin-bottom: 20px;
 }

 .product-description {
 height: 60%; /* Adjusted for mobile */
 }

 .feed-instagram {
 padding: 60px 0px;
 }
 }

 @media (max-width: 768px) {
 .navbar-nav .nav-link {
 font-size: 12px;
 }

 .hero {
 padding: 0px 10px;
 }

 .hero h1 {
 font-size: 1.5rem;
 }

 .hero p {
 font-size: 0.9rem;
 }

 .product-card {
 width: 100%;
 margin-bottom: 20px;
 }

 .product-description {
 height: 70%; /* Adjusted for mobile */
 }

 .feed-instagram {
 padding: 40px 0px;
 }



 .social-icon {
 font-size: 22px;
 margin-right: 10px;
 }

 footer .col-md-4, footer .col-md-2 {
 margin-bottom: 10px;
 }



 .slick-slide {
 margin: 0px 20px;
 }
 }

 @media (max-width: 576px) {
 .navbar-nav .nav-link {
 font-size: 15px;
 }

 .hero {
 padding: 0px 10px;
 }

 .hero h1 {
 font-size: 1.3rem;
 }

 .hero p {
 font-size: 0.85rem;
 }

 .product-card {
 width: 100%;
 margin-bottom: 15px;
 }

 .feed-instagram {
 padding: 30px 0px;
 }



 .social-icon {
 font-size: 20px;
 }

 footer .col-md-4, footer .col-md-2 {
 margin-bottom: 15px;
 }

 .info-bar {
 padding: 10px 0;
 }
 .slick-slide {
 margin: 0px 10px;
 }
 }


 /* detail Produk */

 .detail-product {
 padding: 50px;
 }

 .main-image img {
 max-height: 600px;
 object-fit: cover;
 width: 100%;
 }

 .thumb {
 padding: 0px;
 background-color: var(--bs-body-bg);
 border: var(--bs-border-width) solid var(--bs-border-color);
 border-radius: var(--bs-border-radius);
 max-width: 100%;
 height: 80px;
 width: 80px;
 object-fit: cover;
 }

 .title-detail-product {
 font-family: Montserrat;
 font-size: 22px;
 font-weight: 500;
 line-height: 30px;
 text-align: left;
 text-underline-position: from-font;
 text-decoration-skip-ink: none;
 }

 .subtitle-detail-product {
 font-family: Montserrat;
 font-size: 14px;
 font-weight: 400;
 line-height: 21px;
 text-align: left;
 text-underline-position: from-font;
 text-decoration-skip-ink: none;
 color: #00000099;
 }

 .descripton-detail-product {
 text-align: justify;
 color: #00000099;
 font-family: Montserrat;
 font-size: 16px;
 font-weight: 400;
 line-height: 24px;
 text-align: left;
 text-underline-position: from-font;
 text-decoration-skip-ink: none;

 }

 .thumbnail-images img:hover {
 border: 2px solid #007bff;
 }

 .breadcrumb a {
 text-decoration: none;
 color: #007bff;
 }

 .breadcrumb a:hover {
 text-decoration: underline;
 }

 .text-muted span {
 cursor: pointer;
 color: #6c757d;
 }

 .btn-primary-detail {
 background-color: #007bff; /* Warna dasar tombol */
 border: none; /* Hilangkan border */
 color: #fff; /* Warna teks */
 padding: 12px 20px; /* Jarak dalam tombol */
 font-size: 18px; /* Ukuran font */
 text-transform: uppercase; /* Huruf kapital */
 transition: background-color 0.3s ease, transform 0.2s ease; /* Efek transisi */
 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Tambahkan bayangan */
 margin-top: 20px;
 }

 .btn-primary-detail:hover {
 background-color: #0056b3; /* Warna tombol saat hover */
 transform: translateY(-2px); /* Efek mengangkat saat hover */
 color: #fff;
 box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Perkuat bayangan saat hover */
 }

 .btn-primary-detail:active {
 background-color: #004085; /* Warna tombol saat ditekan */
 transform: translateY(1px); /* Sedikit menekan tombol */
 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Kurangi bayangan */
 }



 .rules-bottom {
 border: none; /* Hilangkan semua garis */
 border-bottom: 2px solid #ccc; /* Tambahkan garis bawah */
 border-radius: 0; /* Hilangkan radius sudut */
 outline: none; /* Hilangkan garis fokus default */
 }

 .rules-bottom:focus {
 border-bottom: 2px solid #007bff; /* Warna garis bawah saat fokus */
 }

 /* detail Produk end */

 /* related product */
 .related-product {
 margin-top: 50px;
 margin-bottom: 50px;
 }

 .slick-custom .slick-slide {
 margin: 0px 10px;
 }

 /* related product end */


 /* Responsif untuk layar kecil */
 @media (max-width: 768px) {
 .detail-product {
 padding: 30px;
 }

 .main-image img {
 max-height: 400px;
 }

 .thumb {
 height: 60px;
 width: 60px;
 object-fit: cover;
 }

 .title-detail-product {
 font-size: 20px;
 }

 .subtitle-detail-product {
 font-size: 12px;
 }

 .descripton-detail-product {
 font-size: 14px;
 line-height: 22px;
 }

 .breadcrumb a {
 font-size: 14px;
 }

 .btn-primary-detail {
 padding: 10px 18px;
 font-size: 16px;
 }

 .related-product {
 margin-top: 30px;
 margin-bottom: 30px;
 }

 .slick-custom .slick-slide {
 margin: 0px 5px;
 }

 .product-description {
  display: none !important;
 }
 }

 /* Responsif untuk layar sangat kecil (misalnya smartphone portrait) */
 @media (max-width: 480px) {
 .detail-product {
 padding: 20px;
 }

 .main-image img {
 max-height: 300px;
 }

 .thumb {
 height: 50px;
 width: 50px;
 object-fit: cover;
 }

 .title-detail-product {
 font-size: 18px;
 }

 .subtitle-detail-product {
 font-size: 12px;
 }

 .descripton-detail-product {
 font-size: 14px;
 line-height: 20px;
 }

 .breadcrumb a {
 font-size: 16px;
 }

 .btn-primary-detail {
 padding: 8px 16px;
 font-size: 14px;
 }

 .related-product {
 margin-top: 20px;
 margin-bottom: 20px;
 }

 .slick-custom .slick-slide {
 margin: 0px 5px;
 }

 .product-description {
  display: none !important;
 }
 }



 /* Cart */
 /* Cart container */
 .cart {
 margin-top: 50px;
 margin-bottom: 50px;
 }

 /* Cart item */
 .cart-item {
 border-bottom: 1px solid #dee2e6;
 padding-bottom: 15px;
 display: flex;
 align-items: center; /* Vertically align items */
 
 }

 /* Remove border for the last cart item */
 .cart-item:last-child {
 border-bottom: none;
 }

 /* Style for custom checkbox */
 .custom-checkbox {
 width: 24px;
 height: 24px;
 border: 2px solid #007bff;
 border-radius: 4px;
 appearance: none;
 cursor: pointer;
 outline: none;
 transition: all 0.2s ease-in-out;
 }

 /* Checkbox when checked */
 .custom-checkbox:checked {
 background-color: #007bff;
 border-color: #007bff;
 position: relative;
 }

 /* Checkbox checkmark */
 .custom-checkbox:checked::after {
 color: #fff;
 font-size: 16px;
 font-weight: bold;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 }

 /* Label style for quantity section */
 .label-custom {
 font-size: 18px;
 font-weight: bold;
 color: #333;
 line-height: 1.5;
 margin-left: 8px; /* Space between checkbox and label */
 }

 /* Style for the quantity input */
 .quantity-input {
 width: 60px;
 padding: 5px 10px;
 font-size: 1rem;
 border: 1px solid #ccc;
 border-radius: 5px;
 text-align: center;
 transition: border-color 0.3s ease; /* Smooth transition on focus */
 }

 /* Focus state for quantity input */
 .quantity-input:focus {
 border-color: #007bff; /* Change border color when focused */
 outline: none; /* Remove default outline */
 }

 /* Style for the "Change" link */
 .text-primary {
 text-decoration: none;
 font-weight: 600;
 }

 .text-primary:hover {
 text-decoration: underline;
 }

 /* Cart item description and price section */
 .cart-item .flex-grow-1 {
 margin-left: 15px; /* Space between image and text */
 }

 .cart-item h5 {
 font-size: 1.1rem;
 margin-bottom: 10px;
 }

 .cart-item p {
 font-size: 0.9rem;
 margin-bottom: 10px;
 }

 .cart-item .fw-bold {
 font-weight: bold;
 }


 /* Style for delete icon section */
 .delete-icon img {
 width: 24px; /* Control the size of the trash icon */
 height: auto;
 cursor: pointer; /* Change cursor to pointer */
 transition: opacity 0.2s ease;
 }

 /* Hover effect for the delete icon */
 .delete-icon:hover img {
 opacity: 0.7;
 }

 /* Price styling */
 .cart-item .fw-bold.fs-5 {
 font-size: 1.25rem;
 margin-top: 10px;
 }
 /* Background color for the order summary items */
 .order-summary-item {
 background-color: #F5F5F5; /* Light gray background */
 padding: 10px; /* Optional: Add some padding to make the text look nicer */
 border-radius: 5px; /* Optional: rounded corners for a softer look */
 }

 .nominal {
 font-family: Montserrat;
 font-size: 20px;
 font-weight: 500;
 line-height: 30px;
 text-align: left;
 text-underline-position: from-font;
 text-decoration-skip-ink: none;
 color: #2F63D0;

 }

/* Original button style */
.btn-checkout {
    width: 414px;
    height: 59px;
    padding: 16px 40px;
    gap: 10px;
    border-radius: 8px;
    opacity: 1;
    background: #2F63D0;
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: -0.02em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
    transition: all 0.3s ease; /* Smooth transition for hover effect */
  }
  
  /* Hover effect for the button */
  .btn-checkout:hover {
    background: #1d4f9c; /* Darker shade of blue */
    cursor: pointer;    /* Change cursor to pointer */
    transform: scale(1.05); /* Slightly enlarge the button */
    color: #fff;
  }


 
  


 /* Cart end */


 .hr-footer {
    width: Fill (1,440px)px;
height: Hug (314px)px;
padding: 0px 120px 0px 120px;
gap: 1px;
border: 1px 0px 0px 0px;
opacity: 0px;
border-top: 1px solid #EEEEEE;
background: #FFFFFF;

 }
