body {
  font-family: 'Poppins', sans-serif;
}

.hero {
  padding: 90px 0;
  background: linear-gradient(120deg, #ffecd2, #fcb69f);
}

.section {
  padding: 70px 0;
}

.card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.badge-soft {
  background: #f5f5f5;
  color: #333;
}

/* Product Card Styles */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.product-card img {
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* Loading States */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

/* Cart Badge */
#cart-count {
  font-size: 0.7rem;
}

/* Form Improvements */
.form-control:focus,
.form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Button Loading State */
.btn.loading {
  pointer-events: none;
  opacity: 0.6;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Navbar Logo - Fixed Size */
.navbar-brand img {
  height: 100px !important;
  width: auto;
  max-width: none;
}

/* Cart Button with Image */
.cart-button {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  text-decoration: none;
  border: none;
  background: transparent;
  line-height: 1;
}

.cart-button-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Hero Banner Buttons */
.hero-button {
  display: inline-block;
  text-decoration: none;
  border: none;
  background: transparent;
  padding: 0;
  line-height: 1;
}

.hero-button-img {
  height: auto;
  max-height: 60px;
  width: auto;
  display: block;
}

/* Filter Button */
.filter-button {
  display: inline-block;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}

.filter-button-img {
  height: auto;
  max-height: 40px;
  width: 100%;
  display: block;
}

/* Add to Cart Button */
.add-to-cart-button {
  display: inline-block;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}

.add-to-cart-button-img {
  height: auto;
  max-height: 32px;
  width: auto;
  display: block;
}

.add-to-cart-button-img-lg {
  height: auto;
  max-height: 50px;
  width: auto;
  display: block;
}

/* Kids-friendly colors */
.badge.bg-info {
  background-color: #0dcaf0 !important;
}

/* Adult premium styling */
.badge.bg-secondary {
  background-color: #6c757d !important;
}

/* Product Gallery */
.product-gallery .img-thumbnail {
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.product-gallery .img-thumbnail:hover {
  border-color: #0d6efd;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .product-card {
    margin-bottom: 20px;
  }
}