/* Add custom CSS styles below */ 
/* 4) Cart Icon + Badge */
.cart-icon {
  position: relative;
  font-size: 22px;
  color: #ff6600;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.cart-icon:hover {
  color: #ff4500;
  transform: scale(1.1);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4500;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 50%;
  min-width: 20px;
  text-align: center;
}


/* 6) Mobile Responsiveness */
@media (max-width: 768px) {
  .header {
    padding: 8px 16px;
  }

  .cart-icon {
    font-size: 20px;
  }

  .cart-badge {
    font-size: 10px;
    padding: 3px 6px;
    min-width: 18px;
  }

  h1 {
    font-size: 20px;
  }

  p {
    font-size: 15.5px;
  }

  .btn {
    font-size: 16px;
  }
}