/* Özel Stiller ve Tailwind Ezilmeleri */

/* Yumuşak Scroll */
html {
    scroll-behavior: smooth;
}

/* Image Hover Efektleri */
.product-card-img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img {
    transform: scale(1.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f5f4; 
}
 
::-webkit-scrollbar-thumb {
    background: #d6d3d1; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a29e; 
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: #10b981;
    color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}
