body {
    font-family: 'Nunito', sans-serif;
}

/* Custom scrollbar for a more modern look */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #c4c4c4;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Style for active size filter button */
.size-btn-active {
    background-color: #F472B6; /* rose-400 */
    color: white;
    border-color: #F472B6;
}

/* Admin Panel active nav link */
.nav-link.active {
    background-color: #fecdd3; /* rose-100 */
    color: #be123c; /* rose-700 */
    font-weight: 700;
}
.nav-link.active i {
    color: #be123c; /* rose-700 */
}


/* Product card hover effect */
.product-card-image {
    transition: transform 0.3s ease-in-out;
}
.product-card:hover .product-card-image {
    transform: scale(1.05);
}

.product-card-button {
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.product-card:hover .product-card-button {
    transform: translateY(0);
    opacity: 1;
}
