/* Product Detail Page Styles */

/* Hero Section override */
.product-hero {
    background-image: linear-gradient(135deg, #003366 0%, #004080 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.product-hero h1 {
    font-size: 2.2rem;
    margin: 0;
}

/* Main Layout */
.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.product-main-info {
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.product-gallery {
    flex: 1;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 4px;
}

.product-gallery img {
    max-width: 100%;
    height: auto;
}

.product-info-col {
    flex: 2;
}

.product-title {
    font-size: 2rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-brand {
    font-size: 1.2rem;
    color: #007bff;
    margin-bottom: 20px;
    font-weight: 500;
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.product-specs-table th, 
.product-specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.product-specs-table th {
    width: 150px;
    color: #666;
    font-weight: 600;
    background-color: #f9f9f9;
}

.product-specs-table td {
    color: #333;
}

.product-actions {
    margin-top: 30px;
}

.btn-inquiry-lg {
    display: inline-block;
    background-color: #d9534f;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-inquiry-lg:hover {
    background-color: #c9302c;
}

/* Detailed Content Section */
.product-content-section {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.5rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #333;
    display: inline-block;
}

.product-description-content {
    line-height: 1.8;
    color: #555;
}

/* Inquiry Form Section */
.inquiry-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .product-main-info {
        flex-direction: column;
    }
    
    .product-gallery {
        max-width: 100%;
    }
}
