*{
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
body{
  background-color: #E1E5E8;
}
a{
  text-decoration: none;
  color: #000;
}
.top-bar {
  background-color: #000;
  font-size: 14px;
}

.navbar-brand {
  font-size: 26px;
  letter-spacing: 1px;
}
.navbar{
  position: sticky;
  top: 0;
  left: 0;
  z-index: 90;
}
.nav-link {
  font-weight: 500;
  color: #000 !important;
  font-size: 18px;
}

.nav-link:hover {
  color: #555 !important;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: black;
  color: white;
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-right{
    color: #000;
    font-size: 20px;
}
.nav-right a{
    color: #000;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 15px;
  }
}
.hero-section {
  min-height: 80vh;
  background: url("images/6891dcf26e965d2e8a4c0fef_hero-image.jpg") center/cover no-repeat;
  position: relative;
  z-index: -9876;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hero-section .container {
  position: relative;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.1;
}

.product-card {
  background: #fff;
  padding: 15px;
  max-width: 260px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.product-card img {
  width: 100%;
  margin-bottom: 10px;
}

.product-link {
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.product-link:hover {
  text-decoration: underline;
}
.shop-button{
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
}
.shop-button:hover{
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    
}
.cate-button{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    }
.img-fluid{
  transition: transform 1.5s ease-in-out;

}
.img-fluid:hover{
  transform: scale(1.1);
  
}
@media (max-width: 991px) {
  .hero-section {
    padding: 80px 0;
  }

  .hero-content {
    text-align: center;
  }
}
.feature-box {
  padding: 10px 15px;
}

.feature-icon {
  font-size: 40px;
  color: #000;
}

.feature-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.feature-box p {
  color: #000;
  font-size: 15px;
  line-height: 1.6;
}


@media (max-width: 767px) {
  .feature-box {
    padding: 20px 10px;
  }
}

.promo-card {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  height: 280px;
  z-index: -9887;
}


.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-card::after {
  content: "";
  position: absolute;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.2)
  );
}
.badge-offer {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 7px;

  font-size: 14px;
}

.promo-content {
  position: absolute;
  bottom: 30px;
  left: 30px;

  color: #fff;
}

.promo-content h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.promo-content h2 span {
  font-weight: 800;
}

.promo-content .btn {
  margin-top: 15px;
  font-weight: 600;
  border-radius: 7px;
  padding: 8px 18px;
}
.main-product-card {

  background: #f5f5f5;
  border-radius: 10px;
  padding: 15px;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  
}

.main-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.product-img {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  margin-bottom: 12px;
}
.product-img img {
  width: 100%;
  height: 140px;
  object-fit: contain;
}
.product-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}
.rating {
  font-size: 13px;
  color: #ff9800;
  margin-bottom: 6px;
}
.rating span {
  color: #555;
  margin-left: 4px;
}
.price {
  font-size: 14px;
  font-weight: 600;
}
.price del {
  font-weight: 400;
  color: #999;
  margin-left: 6px;
}
.category-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease-in-out;
}
.category-item {

  border-radius: 12px;
  padding: 15px 10px;
  text-align: center;

  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.category-item img {
  width: 150px;
  height: 150px;
 
  margin-bottom: 8px;
}
.category-item p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
    .product-image {
      background: #f5f5f5;
      border-radius: 20px;
      padding: 40px;
      text-align: center;
    }

    .product-image img {
      max-width: 100%;
      height: auto;
    }

    .rating i {
      color: #fbbf24;
    }

    .price {
      font-size: 22px;
      font-weight: 600;
    }

    .old-price {
      text-decoration: line-through;
      color: #999;
      font-size: 18px;
      margin-left: 10px;
    }
    .more-info ul {
      padding-left: 18px;
    }
.details-button button{
  width: 200px;
  padding: 10px;

}
.details-button a{
  width: 200px;
  padding: 10px;

}
.quantity-increment{
    width: 50px;
    border-radius: 0;
}
.quantity-decrement{
     width: 50px;
     border-radius: 0;
}
.cart-quantity{
  text-align: center;
}


    .checkout-box {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
    }

    .form-control, .form-select {
      border-radius: 8px;
    }

    .cart-card img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 6px;
    }

    .cart-card {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
    }

    .discount-input {
      border-radius: 8px 0 0 8px;
    }

    .btn-apply {
      border-radius: 0 8px 8px 0;
    }



    .btn-payment:hover {
      background: #111;
    }

    .shipping-option {
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 15px;
      cursor: pointer;
    }

    .shipping-option input {
      margin-right: 10px;
    }

    .step-text {
      font-size: 14px;
      color: #888;
    }
.importent{
  color:red;
}
/* FOOTER */
.footer-section {
  background-color: #0f0f0f;
}

.footer-section h5,
.footer-section h3 {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #000;
}

.footer-divider {
  border-color: rgba(255,255,255,0.15);
}
