/* Модалка */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.modal-header {
    border-bottom: none;
}
.modal-title {
    font-weight: 700;
    color: #0d6efd;
}
.description {
    line-height: 1.6;
    margin-bottom: 1rem;
}
.price {
    font-weight: 700;
    color: #198754;
    margin: 1rem 0;
    font-size: 1.5rem;
}
.carousel-inner img {
    border-radius: 12px;
    border: 1px solid #dee2e6;
    background-color: #fafafa;
    padding: 0.5rem;
    max-height: 400px;
    object-fit: contain;
}

/* Адаптивная модалка для мобильных */
@media (max-width: 767.98px) {
    .modal-dialog {
        max-width: 95%;
        margin: 1rem auto;
    }
    .carousel-inner img {
        max-height: 250px;
    }
    .description {
        font-size: 0.95rem;
    }
    .price {
        font-size: 1.3rem;
    }
    button.btn-success {
        width: 100%;
    }
}