    body {
      font-family: 'Arial', sans-serif;
      background-color: #f8f9fa;
    }
    .hero-section {
      background: url('img/1.jpg') center center/cover no-repeat;
      color: white;
      padding: 100px 0;
      text-align: center;
      position: relative;
    }
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    footer {
      background-color: #343a40;
      color: white;
      padding: 20px 0;
    }
    .carousel-item img {
      height: 400px;
      object-fit: cover;
      width: 100%;
    }
    .counter-box {
      text-align: center;
      padding: 30px;
    }
    .counter-box h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }
    .counter-box p {
      margin: 0;
    }
    .product-card,
    .arrival-card {
      position: relative;
      overflow: hidden;
      transition: transform 0.3s;
      height: 420px;
    }

    .product-card:hover,
    .arrival-card:hover {
      animation: bounce 1s;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-15px);
      }
      60% {
        transform: translateY(-7px);
      }
    }

    .quick-view,
    .arrival-quick-view {
      position: absolute;
      bottom: 0;
      background: rgba(220, 53, 69, 0.9);
      color: white;
      width: 100%;
      text-align: center;
      padding: 8px;
      opacity: 0;
      transition: opacity 0.3s;
      z-index: 3;
    }

    .product-card:hover .quick-view,
    .arrival-card:hover .arrival-quick-view {
      opacity: 1;
    }

    .card-img-top,
    .hover-img,
    .arrival-img-top,
    .arrival-hover-img {
      height: 250px;
      object-fit: cover;
      width: 100%;
    }

    .hover-img,
    .arrival-hover-img {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 0.5s;
      z-index: 2;
    }

    .product-card:hover .default-img,
    .arrival-card:hover .arrival-default-img {
      opacity: 0;
    }

    .product-card:hover .hover-img,
    .arrival-card:hover .arrival-hover-img {
      opacity: 1;
    }
#cartItems {
  max-height: 55vh;
  overflow-y: auto;
}
#sideCart .card {
  border: none;
  background-color: #f9f9f9;
}
#sideCart img {
  width: 100%;
}
#sideCart .btn-outline-danger {
  border-color: #c04c38;
  color: #c04c38;
}
#sideCart .btn-outline-danger:hover {
  background-color: #c04c38;
  color: #fff;
}
    .onsale-tag,
    .arrival-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: #dc3545;
      color: white;
      font-size: 0.75rem;
      padding: 3px 8px;
      border-radius: 3px;
      z-index: 4;
    }

    .arrival-tag {
      background-color: #28a745;
    }
 .quick-view {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 5px;
  transition: background 0.3s;
}

.quick-view:hover {
  background: rgba(0,0,0,0.9);
}

.onsale-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #c0392b;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  z-index: 10;
}
