/* =========================
   GLOBAL
========================= */

body {
  font-family: "Poppins", sans-serif;
  background: #f8f9fc;
  color: #111;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
  height: 55px !important;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin-left: 15px;
  transition: 0.3s;
  position: relative;
}

.nav-link:hover {
  color: #ffb300 !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ffb300;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* =========================
   HERO SECTION
========================= */

.banner-slide {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 750px;
  padding: 20px;
}

.banner-content h1 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 20px;
}

.banner-content h3 {
  color: #ffb300;
  font-size: 32px;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 18px;
  line-height: 1.7;
}

/* =========================
   PRODUCT SECTION
========================= */

.product-card {
  border: none;
  border-radius: 25px;
  overflow: hidden;
  transition: 0.4s;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-card img {
  /* height:260px; */
  object-fit: cover;
  transition: 0.4s;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card .card-body {
  padding: 25px;
}

.product-card h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-card p {
  color: #ff6600;
  font-size: 24px;
}

.order-btn {
  background: #111;
  color: #fff;
  border-radius: 50px;
  padding: 12px 25px;
  font-weight: 600;
  transition: 0.3s;
  width: 100%;
}

.order-btn:hover {
  background: #ffb300;
  color: #111;
}

/* =========================
   PROMO SECTION
========================= */

.promo-section {
  position: relative;
  background: url("../images/banner-2.webp");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  overflow: hidden;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.promo-title {
  font-size: 55px;
  font-weight: 800;
  line-height: 1.2;
}

.promo-title span {
  color: #ffb300;
}

.promo-section p {
  line-height: 1.9;
  font-size: 17px;
}

/* =========================
   SERVICES
========================= */

.service-box {
  background: #fff;
  padding: 40px 25px;
  border-radius: 25px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-box:hover {
  transform: translateY(-8px);
}

.service-box i {
  font-size: 50px;
  color: #ffb300;
  margin-bottom: 20px;
}

.service-box h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* =========================
   FOOTER
========================= */

.footer-img {
  position: relative;
  /* background:url('images/footer-bg.jpg'); */
  background-size: cover;
  background-position: center;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.footer-title {
  color: #ffb300;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.footer-links li {
  margin-bottom: 12px;
  transition: 0.3s;
  cursor: pointer;
}

.footer-links li:hover {
  color: #ffb300;
  transform: translateX(5px);
}

.footer-line {
  border-color: rgba(255, 255, 255, 0.1);
}

/* =========================
   SECTION TITLES
========================= */

section h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

section p {
  font-size: 17px;
  line-height: 1.8;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 38px;
  }

  .banner-content h3 {
    font-size: 24px;
  }

  .promo-title {
    font-size: 38px;
  }

  section h2 {
    font-size: 32px;
  }

  .product-card img {
    /* height:220px; */
  }
}

@media (max-width: 991px) {
  .navbar .nav-link {
    padding: 12px 0;
    display: inline-block;
  }

  #cart-count {
    font-size: 11px;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
  }
}

.mobile-cart {
  color: #fff !important;
  padding: 0;
  margin-right: 15px;
}

.mobile-cart:hover {
  color: #ffb300 !important;
}

@media (min-width: 992px) {
  .mobile-cart {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .mobile-cart-desktop {
    display: none !important;
  }
}
