.product-action {
    padding: 20px 0;
}
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
}
.toast-notification {
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease-out;
}
.toast-notification.closing {
    animation: slideOut 0.3s ease-out forwards;
}
@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}
@media (max-width: 576px) {
    .toast-container {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}
.blueimp-gallery > .description {
    position: absolute;
    top: 5%;
    left: 15px;
    color: #fff;
    display: none;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    font-weight: bold;
}

.blueimp-gallery-controls > .description {
    display: block;
}

.facebook_like_widget {
    margin-top: 30px;
}

#blueimp-gallery-carousel {
    height: 300px !important;
    padding: 0 !important;
}