/* ==========================
   GLOBAL
========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #fff;
}

/* ==========================
   NAVBAR
========================== */

.navbar {
  padding: 20px 0;
  transition: all 0.4s ease;
  z-index: 1030;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(0, 59, 149, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);

  /* JANGAN UBAH PADDING */
  padding: 20px 0;
}

.navbar-brand {
  color: #fff !important;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 2px;
}

.navbar-nav .nav-link {
  color: #fff !important;

  font-weight: 500;

  margin: 0 15px;

  padding: 10px 0;

  position: relative;

  transition: 0.3s;
}

.navbar-nav .nav-link::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0%;

  height: 3px;

  background: #ffc107;

  transition: 0.3s;

  border-radius: 20px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #ffc107 !important;
}

.navbar .bi-search {
  font-size: 28px;

  transition: 0.3s;
}

.navbar .bi-search:hover {
  color: #ffc107;
}

/* ==========================
   HERO
========================== */

.hero {
  position: relative;
}

.hero-img {
  width: 100%;

  height: 100vh;

  object-fit: cover;
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.2)
  );
}

.carousel-item {
  position: relative;
}

.carousel-caption {
  bottom: 28%;

  left: 50%;

  transform: translateX(-50%);

  width: 100%;

  max-width: 900px;

  z-index: 5;
}

.carousel-caption h1 {
  font-size: 72px;

  font-weight: 700;

  margin-bottom: 20px;

  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
  font-size: 22px;

  margin-bottom: 35px;

  opacity: 0.95;
}

.carousel-caption .btn {
  padding: 16px 42px;

  font-size: 18px;

  border-radius: 50px;

  font-weight: 600;
}

/* ==========================
   BUTTON
========================== */

.btn-warning {
  background: #ffc107;

  border: none;

  color: #000;

  transition: 0.3s;
}

.btn-warning:hover {
  background: #ffca2c;

  transform: translateY(-5px);

  box-shadow: 0 20px 35px rgba(255, 193, 7, 0.35);
}

.btn-outline-light {
  border-radius: 50px;

  padding: 16px 40px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-outline-light:hover {
  transform: translateY(-5px);
}

/* ==========================
   SLIDER INDICATOR
========================== */

.carousel-indicators {
  bottom: 35px;
}

.carousel-indicators button {
  width: 14px !important;

  height: 14px !important;

  border-radius: 50%;

  margin: 0 6px !important;
}

.logo-navbar {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.navbar-brand {
  text-decoration: none;
}

.navbar-brand h5 {
  font-size: 24px;
  letter-spacing: 1px;
}

.navbar-brand small {
  display: block;
  font-size: 12px;
  margin-top: -3px;
  opacity: 0.8;
}

/* ==========================
   HERO ANIMATION
========================== */

.carousel-caption h1 {
  animation: fadeUp 0.8s ease;
}

.carousel-caption p {
  animation: fadeUp 1.1s ease;
}

.carousel-caption .btn {
  animation: fadeUp 1.4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(60px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* ==========================
   FOOTER
========================== */

footer {
  background: #001a44;

  color: #fff;

  text-align: center;

  padding: 30px;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 991px) {
  .navbar {
    background: #003b95;

    padding: 15px 0;
  }

  .navbar-collapse {
    margin-top: 15px;

    text-align: center;
  }

  .navbar-nav .nav-link {
    display: inline-block;

    margin: 18px 0;

    padding-bottom: 8px;
  }

  .navbar-nav .nav-link::after {
    bottom: 0;
  }

  .carousel-caption {
    bottom: 20%;
  }

  .carousel-caption h1 {
    font-size: 42px;
  }

  .carousel-caption p {
    font-size: 18px;
  }

  .carousel-caption .btn {
    padding: 12px 30px;

    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero-img {
    height: 90vh;
  }

  .carousel-caption h1 {
    font-size: 34px;
  }

  .carousel-caption p {
    font-size: 16px;
  }
}

/* ==========================
   HERO BUTTON
========================== */

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================
   BRAND SLIDER
========================== */

.brand-slider {
  background: #fff;
  padding: 40px 0;
}

.brand-logo {
  width: 180px;
  height: 90px;
  object-fit: contain;
  transition: 0.3s;
}

.brand-logo:hover {
  transform: scale(1.08);
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================
   LOADER
========================== */

#loader {
  position: fixed;
  inset: 0;

  background: #ffffff;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 999999;

  transition: 0.5s;
}

#loader img {
  width: 300px;
  height: auto;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

/* ==========================
   TENTANG KAMI
========================== */

.about {
  padding: 90px 0;

  background: #fff;
}

.about-img {
  border-radius: 25px;

  transition: 0.4s;
}

.about-img:hover {
  transform: scale(1.02);
}

.about-subtitle {
  color: #f5a623;

  font-weight: 600;

  font-size: 18px;
}

.about-title {
  font-size: 48px;

  font-weight: 700;

  margin: 15px 0;

  color: #0d2b5c;
}

.about-text {
  color: #666;

  line-height: 1.9;

  margin-bottom: 15px;
}

.about-box {
  background: #f7f7f7;

  border-radius: 15px;

  padding: 18px;

  font-weight: 600;

  transition: 0.3s;
}

.about-box:hover {
  background: #003b95;

  color: #fff;
}

.about-box i {
  color: #ffc107;

  margin-right: 10px;
}

/* Mobile */

@media (max-width: 768px) {
  .about {
    text-align: center;
  }

  .about-title {
    font-size: 34px;
  }

  .about-box {
    text-align: left;
  }
}


/*==========================
TESTIMONIAL
===========================*/

.testimonial{
    position:relative;
    padding:80px 0;
    overflow:hidden;
}

.testimonial .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,38,88,.45);
}

.testimonial .container{
    position:relative;
    z-index:2;
}

/*==========================
JUDUL
===========================*/

.section-subtitle{
    display:inline-block;
    color:#ffc107;
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
}

.section-title{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.testimonial p.text-light{
    font-size:18px;
    opacity:.9;
    margin-bottom:50px;
}

/*==========================
SWIPER
===========================*/

.testimonialSwiper{
    padding-bottom:55px;
}

/*==========================
CARD
===========================*/

.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    min-height:300px;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card .rating{
    color:#ffc107;
    font-size:24px;
    margin-bottom:20px;
}

.testimonial-card h4{
    font-size:30px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:18px;
}

.testimonial-card .customer{
    margin-top:10px;
}

.testimonial-card strong{
    display:block;
    font-size:20px;
    color:#222;
}

.testimonial-card small{
    display:block;
    color:#777;
    font-size:15px;
    margin-top:3px;
}

/*==========================
PAGINATION
===========================*/

.testimonial .swiper-pagination{
    bottom:0;
}

.testimonial .swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#fff;
    opacity:.45;
}

.testimonial .swiper-pagination-bullet-active{
    background:#ffc107;
    opacity:1;
}

/*==========================
RESPONSIVE
===========================*/

@media(max-width:991px){

.testimonial{
    padding:70px 0;
}

.section-title{
    font-size:38px;
}

}

@media(max-width:768px){

.testimonial{
    padding:60px 0;
}

.section-title{
    font-size:32px;
}

.testimonial p.text-light{
    font-size:16px;
    margin-bottom:35px;
}

.testimonial-card{
    min-height:auto;
    padding:25px;
}

.testimonial-card h4{
    font-size:24px;
}

}

@media(max-width:576px){

.testimonial{
    padding:50px 0;
}

.section-title{
    font-size:28px;
}

.section-subtitle{
    font-size:16px;
}

.testimonial-card{
    padding:22px;
    border-radius:18px;
}

.testimonial-card h4{
    font-size:22px;
}

}

/* Tinggi slide mengikuti isi */
.testimonialSwiper .swiper-slide{
    height: auto;
}

/* Card memenuhi tinggi slide */
.testimonialSwiper .swiper-slide .testimonial-card{
    height:100%;
}



/*==========================
FAQ
===========================*/

.faq {
  background: #f8f9fb;

  padding: 90px 0;
}

.faq-subtitle {
  color: #ffc107;

  font-weight: 600;

  font-size: 18px;
}

.faq-title {
  font-size: 46px;

  font-weight: 700;

  color: #0d2b5c;

  margin: 15px 0;
}

.accordion-item {
  border: none;

  border-radius: 18px !important;

  overflow: hidden;

  margin-bottom: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  padding: 22px 25px;

  font-size: 18px;

  font-weight: 600;

  background: #fff;
}

.accordion-button:not(.collapsed) {
  background: #003b95;

  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 25px;

  color: #666;

  line-height: 1.9;

  font-size: 16px;
}

.accordion-button::after {
  filter: brightness(0);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(100);
}

@media (max-width: 768px) {
  .faq {
    padding: 70px 0;
  }

  .faq-title {
    font-size: 32px;
  }

  .accordion-button {
    font-size: 16px;

    padding: 18px;
  }
}

/*==========================
MOTOR BRAND
==========================*/

.motor-brand {
  padding: 90px 0;
  background: #f8f9fa;
}

.motor-logo {
  width: 180px;
  height: 90px;
  object-fit: contain;
  transition: 0.3s;
  filter: grayscale(100%);
  opacity: 0.7;
}

.motor-logo:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}

.motorSwiper {
  padding: 15px 0;
}

.motorSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .motor-logo {
    width: 130px;
    height: 70px;
  }
}

/*==========================
FOOTER
==========================*/

.footer {
  background: #071a35;
  color: white;
  padding: 70px 0 20px;
}

.footer-logo {
  width: 70px;
  border-radius: 8px;
}

.footer h4 {
  font-weight: 700;
}

.footer h5 {
  margin-bottom: 20px;
  color: #ffc107;
  font-weight: 600;
}

.footer p {
  color: #d8d8d8;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-menu a:hover {
  color: #ffc107;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #0d2c58;

  color: white;

  font-size: 18px;

  transition: 0.3s;
}

.footer-social a:hover {
  background: #ffc107;
  color: #000;
}

.payment-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 10px;
}

.payment-grid img {
  width: 100%;

  background: white;

  border-radius: 10px;

  padding: 8px;

  height: 52px;

  object-fit: contain;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 50px 0 20px;
}

.copyright {
  text-align: center;
  color: #aaa;
  font-size: 15px;
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* produk */

.page-header {
  height: 420px;

  background: url("../img/parallax.png");

  background-size: cover;

  background-position: center;

  position: relative;

  display: flex;

  align-items: center;
  padding-top: 90px; /* beri ruang untuk navbar */
}

.page-header .overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 52, 145, 0.9),
    rgba(0, 0, 0, 0.45)
  );
}

.page-content {
  position: relative;

  color: white;

  z-index: 2;
}

.page-content h1 {
  font-size: 70px;

  font-weight: 700;
}

.page-content p {
  font-size: 24px;
}

.kategori {
  margin-top: -35px;

  position: relative;

  z-index: 10;
}

.kategori-menu {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.kategori-menu button {
  width: 180px;

  height: 70px;

  border: none;

  background: #18376a;

  color: white;

  font-size: 20px;

  font-weight: 600;

  transition: 0.3s;
}

.kategori-menu button.active {
  background: #ffc107;

  color: #000;
}

.kategori-menu button:hover {
  background: #ffc107;

  color: #000;
}

/* ==========================
   PRODUK
========================== */

.produk {
  padding: 70px 0;

  background: #f8f9fa;
}

.product-item {
  transition: 0.4s;
}

.product-card {
  background: #fff;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  padding: 20px;

  height: 100%;

  transition: 0.35s;

  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;

  height: 220px;

  object-fit: contain;

  margin-bottom: 15px;
}

.product-card h5 {
  font-size: 24px;

  font-weight: 700;

  margin-bottom: 10px;
}

.product-card p {
  color: #666;

  min-height: 48px;
}

.product-card h4 {
  color: #0d6efd;

  font-weight: 700;

  margin: 15px 0;
}

.product-card .badge {
  position: absolute;

  top: 15px;

  left: 15px;

  padding: 8px 14px;

  font-size: 13px;

  border-radius: 30px;
}

.product-card .btn {
  border-radius: 50px;

  padding: 12px;

  font-weight: 600;
}

/* Animasi saat ganti kategori */

.product-item {
  animation: fadeProduct 0.4s ease;
}

@keyframes fadeProduct {
  from {
    opacity: 0;

    transform: translateY(20px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* ==========================
   RESPONSIVE PRODUK
========================== */

@media (max-width: 991px) {
  .page-content h1 {
    font-size: 48px;
  }

  .page-content p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .page-header {
    height: 300px;
  }

  .page-content {
    text-align: center;
  }

  .page-content h1 {
    font-size: 40px;
  }

  .page-content p {
    font-size: 18px;
  }

  .kategori {
    margin-top: -25px;
  }

  .kategori-menu {
    gap: 10px;
  }

  .kategori-menu button {
    width: 140px;

    height: 60px;

    font-size: 18px;
  }

  .product-card img {
    height: 180px;
  }
}

@media (max-width: 576px) {
  /* Banner */
  .page-header {
    height: 220px;
  }

  .page-content {
    text-align: center;
  }

  .page-content h1 {
    font-size: 42px;
    margin-bottom: 8px;
  }

  .page-content p {
    font-size: 18px;
    margin-bottom: 0;
  }

  /* Menu Kategori */
  .kategori {
    margin-top: 0;
    padding-top: 20px;
    margin-bottom: 10px;
  }

  .kategori-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .kategori-menu button {
    width: 100%;
    height: 55px;
    font-size: 18px;
    border-radius: 8px;
  }

  /* Produk */
  .produk {
    padding: 35px 0;
  }

  .product-item {
    margin-bottom: 20px;
  }

  .product-card {
    padding: 18px;
    border-radius: 18px;
  }

  .product-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
  }

  .product-card h5 {
    font-size: 28px;
    text-align: center;
  }

  .product-card p {
    text-align: center;
    font-size: 16px;
    min-height: auto;
  }

  .product-card h4 {
    text-align: center;
    font-size: 28px;
  }

  .product-card .btn {
    width: 100%;
    padding: 14px;
    font-size: 17px;
  }
}

/* ==========================
   MODAL DETAIL PRODUK
========================== */

.modal {
  z-index: 99999;
}

.modal-detail {
  max-width: 650px;
  margin: 30px auto;
}

.modal-dialog-centered {
  min-height: calc(100% - 2rem);
}

.modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background: #0d47a1;
  color: #fff;
  border-bottom: none;
  padding: 18px 25px;
}

.modal-header .btn-close {
  filter: invert(1);
}

.modal-body {
  padding: 30px;
}

/* ==========================
   IMAGE
========================== */

#modalImage {
  width: 100%;
  max-width: 240px;
  max-height: 240px;
  object-fit: contain;
  display: block;
  margin: auto;
}

/* ==========================
   TEXT
========================== */

#modalNama {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

#modalHarga {
  color: #0d6efd;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

#modalDeskripsi {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

#modalSpek {
  padding-left: 20px;
  margin-bottom: 25px;
}

#modalSpek li {
  margin-bottom: 8px;
  font-size: 16px;
}

#modalWA {
  border-radius: 50px;
  padding: 13px;
  font-weight: 600;
  font-size: 17px;
}

/* ====================================
            MOBILE
==================================== */

@media (max-width: 576px) {
  .modal-detail {
    max-width: 92%;
    margin: 10px auto;
  }

  .modal-dialog {
    margin: 10px;
  }

  .modal-dialog-centered {
    min-height: calc(100% - 20px);
  }

  .modal-content {
    border-radius: 15px;
  }

  .modal-header {
    padding: 12px 18px;
  }

  .modal-header h4 {
    font-size: 19px;
  }

  .modal-body {
    padding: 18px;
  }

  .modal-body .row {
    display: flex;
    flex-direction: column;
  }

  .modal-body .col-md-5,
  .modal-body .col-md-7 {
    width: 100%;
    max-width: 100%;
  }

  /* Foto */

  #modalImage {
    width: 130px;
    height: 130px;
    margin: 0 auto 15px;
  }

  /* Nama Produk */

  #modalNama {
    text-align: center;
    font-size: 24px;
    margin-bottom: 6px;
  }

  /* Harga */

  #modalHarga {
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
  }

  /* Deskripsi */

  #modalDeskripsi {
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  hr {
    margin: 15px 0;
  }

  h5 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  #modalSpek {
    padding-left: 18px;
    font-size: 15px;
    margin-bottom: 15px;
  }

  #modalSpek li {
    margin-bottom: 6px;
  }

  #modalWA {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 10px;
  }
}

/*==========================
KERANJANG
===========================*/

.cart-count {
  position: absolute;

  top: -8px;

  right: -10px;

  width: 20px;

  height: 20px;

  background: #ffc107;

  color: #000;

  border-radius: 50%;

  font-size: 11px;

  font-weight: bold;

  display: flex;

  align-items: center;

  justify-content: center;
}

.offcanvas-end {
  width: 380px;
}

@media (max-width: 576px) {
  .offcanvas-end {
    width: 100%;
  }
}

.offcanvas-header {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 20px;
}

/* QRIS */

#qrisBox {
  animation: fadeQris 0.35s ease;
}

#qrisBox img {
  max-width: 240px;

  border-radius: 12px;

  border: 1px solid #eee;
}

@keyframes fadeQris {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*==========================
GALERI
==========================*/

.gallery {
  background: #f8f9fa;
}

.gallery-item {
  position: relative;

  overflow: hidden;

  border-radius: 15px;

  cursor: pointer;
}

.gallery-item img {
  width: 100%;

  height: 280px;

  object-fit: cover;

  transition: 0.4s;
}

.gallery-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.55);

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  color: #fff;

  opacity: 0;

  transition: 0.35s;
}

.gallery-overlay i {
  font-size: 38px;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

#galleryPreview {
  max-height: 80vh;
}

@media (max-width: 768px) {
  .gallery-item img {
    height: 180px;
  }
}

/*==========================
LOKASI
==========================*/

.info-card {
  background: #fff;

  padding: 30px;

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  height: 100%;
}

.info-card h3 {
  font-weight: 700;

  margin-bottom: 15px;
}

.info-card p {
  line-height: 1.8;

  margin-bottom: 20px;
}

.why-location {
  background: #f8f9fa;
}

.why-box {
  background: #fff;

  border-radius: 18px;

  padding: 35px;

  text-align: center;

  transition: 0.35s;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.why-box:hover {
  transform: translateY(-10px);
}

.why-box i {
  font-size: 45px;

  color: #ffc107;

  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .info-card {
    padding: 20px;
  }

  .why-box {
    padding: 25px;
  }
}

/*==========================
DROPDOWN NAVBAR
==========================*/

.dropdown-menu {
  border: none;

  border-radius: 12px;

  padding: 10px;

  background: #18376a;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  color: #fff;

  padding: 10px 15px;

  border-radius: 8px;

  transition: 0.3s;

  font-weight: 500;
}

.dropdown-item:hover {
  background: #ffc107;

  color: #000;
}

.dropdown-item i {
  width: 20px;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 10px;
  }

  .navbar .dropdown-item {
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    margin: 6px 0;
  }

  .navbar .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffc107;
  }
}

/* toas */

#btnCheckout:disabled {
  opacity: 0.55;

  cursor: not-allowed;
}

.cart-count{

    transition:.3s;

}

.cart-bounce{

    animation:bounce .5s;

}

@keyframes bounce{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.5);
    }

    100%{
        transform:scale(1);
    }

}
