/* Product Detail Page Styles */

.product-detail-container {
    padding: 60px 0;
}

.product-image-gallery {
    margin-bottom: 30px;
}

.main-image {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info-detail {
    padding: 0 20px;
}

.product-info-detail h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.product-info-detail h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #0081b9;
}

.product-description {
    margin-bottom: 30px;
}

.product-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.product-features, .product-size {
    margin-bottom: 30px;
}

.product-features h3, .product-size h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.product-features ul, .product-size ul {
    list-style: none;
    padding: 0;
}

.product-features ul li, .product-size ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #666;
}

.product-features ul li:before, .product-size ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #0081b9;
    font-size: 16px;
}

.product-details-section {
    margin-bottom: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.product-details-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.product-details-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.product-details-section ul {
    list-style: none;
    padding: 0;
}

.product-details-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #666;
}

.product-details-section ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #0081b9;
    font-size: 16px;
}

.product-specs-table {
    margin-bottom: 40px;
}

.product-specs-table h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.product-specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs-table table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
    text-align: left;
}

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

.product-specs-table table th,
.product-specs-table table td {
    padding: 12px 15px;
    border: 1px solid #dee2e6;
}

@media (max-width: 991px) {
    .product-info-detail {
        padding: 30px 0 0 0;
    }
    
    .product-info-detail h2 {
        font-size: 28px;
    }
    
    .product-features h3, .product-size h3 {
        font-size: 18px;
    }
    
    .product-details-section h2 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .product-detail-container {
        padding: 40px 0;
    }
    
    .product-info-detail h2 {
        font-size: 24px;
    }
    
    .product-description p {
        font-size: 14px;
    }
    
    .product-features ul li, .product-size ul li {
        font-size: 14px;
    }
    
    .product-details-section h2 {
        font-size: 20px;
    }
    
    .product-details-section p {
        font-size: 14px;
    }
}