/* Product Detail Page Styles */
.product-detail-page {
    padding: 20px 0;
}

.product-detail-page .card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.product-detail-page .card-header {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.product-detail-page .card-header h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-detail-page .card-body {
    padding: 12px;
}

/* Product image styles */
.product-detail-page .product-image-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-page .product-image-container a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.product-detail-page .product-image-container img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

/* Technical image styles */
.product-detail-page .technical-image-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-page .technical-image-container a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.product-detail-page .technical-image-container img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

/* Table styles */
.product-detail-page .table {
    margin-bottom: 0;
    font-size: 14px;
}

.product-detail-page .table th {
    width: 30%;
    background-color: #f8f9fa;
    padding: 8px 12px;
    font-weight: 600;
}

.product-detail-page .table td {
    padding: 8px 12px;
}

.product-detail-page .table td a {
    color: #0056b3;
    text-decoration: none;
}

.product-detail-page .table td a:hover {
    text-decoration: underline;
}

.product-detail-page .badge {
    padding: 6px 12px;
    border-radius: 4px;
}

.product-detail-page .badge-success {
    background: #28a745;
    color: #fff;
}

.product-detail-page .badge-danger {
    background: #dc3545;
    color: #fff;
}

.product-detail-page .price-display {
    color: #dc3545;
    font-weight: 600;
}

.product-detail-page .btn-action {
    padding: 10px 20px;
    font-size: 14px;
}

/* Hover effects */
.product-detail-page .product-image-container a:hover img,
.product-detail-page .technical-image-container a:hover img {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
