/* Product detail page styles */
.product-image-container {
    margin-bottom: 20px;
}

.product-detail-swiper {
    border-radius: 8px;
    overflow: hidden;
}

.product-detail-swiper img {
    width: 100%;
    border-radius: 8px;
}

.product-code {
    color: #666;
    font-size: 0.9rem;
}

.price-block {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.action-buttons {
    margin-top: 20px;
}

.action-buttons .btn svg {
    margin-right: 8px;
}

/* Related products section */
.related-products {
    margin-top: 50px;
}

/* Additional product details */
.card-header {
    font-weight: 500;
}

.card-body {
    padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .action-buttons .btn {
        width: 100%;
    }
}
