.logo-img {
    height:50px;
}

.logo-img-sm {
    height:24px;
}

.category-img {
    height: 120px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.product-image-fixed {
    height: 250px !important;
    object-fit: cover;
}

/* Toast notification globali */
.toast-notification {
    position: fixed;
    top: 60px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 4px solid;
    animation: slideInRight 0.3s ease-out;
}

/* Responsive per mobile */
@media (max-width: 768px) {
    .toast-notification {
        top: 80px;
        right: 15px;
        left: 15px;
        max-width: none;
    }
}

.toast-notification.success {
    border-left-color: #28a745;
}

.toast-notification.error {
    border-left-color: #dc3545;
}

.toast-notification.warning {
    border-left-color: #ffc107;
}

.toast-content {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.toast-notification.success .toast-icon::before {
    content: "✓";
    color: #28a745;
}

.toast-notification.error .toast-icon::before {
    content: "✗";
    color: #dc3545;
}

.toast-notification.warning .toast-icon::before {
    content: "⚠";
    color: #ffc107;
}

.toast-message {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast-notification.hiding {
    animation: slideOutRight 0.3s ease-in forwards;
}

.icon-shape .feather-icon {
    font-size: 1.25rem;
}

.icon-shape.icon-xl .feather-icon {
    font-size: 1.5rem;
}

.icon-shape .feather-icon::before {
    font-family: "feather-icons";
    display: inline-block;
}
