/**
 * Product Specifications Styles
 */

/* Main Container */
.product-specs-section {
    margin: 40px 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.specs-container {
    display: flex;
    flex-wrap: wrap;
}

/* Image Column */
.specs-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.specs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Column */
.specs-content {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 30px;
}

.specs-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.specs-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

/* Table Styles */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

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

.specs-table th {
    font-weight: 600;
    color: #333;
}

.specs-table td {
    color: #666;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

/* Color Dots */
.color-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 5px;
}

.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid #ddd;
    position: relative;
}

/* Footer Section */
.specs-footer {
    margin-top: 20px;
}

.specs-footer p {
    margin-bottom: 15px;
    font-size: 15px;
}

.size-guide-link {
    color: #333;
    font-weight: 600;
    text-decoration: underline;
}

.reserve-exam-btn {
    display: inline-block;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 12px 20px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reserve-exam-btn:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .specs-container {
        flex-direction: column;
    }
    
    .specs-image,
    .specs-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .specs-image {
        height: 300px;
    }
    
    .specs-content {
        padding: 20px;
    }
    
    .specs-content h2 {
        font-size: 24px;
    }
}
