/* Product Detail Page SEO Styles */


/* Product Header */
.product-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
}

.main-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-subtitle {
    color: #495057;
    font-size: 1.25rem;
    margin-bottom: 0;
    font-weight: 500;
}

/* Product Detail Container */
.product-detail-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Product Image Section */
.product-image-section {
    flex: 1;
    min-width: 300px;
}

.product-detail-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-detail-image img:hover {
    transform: scale(1.02);
}

.product-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    color: #ccc;
}

.product-image-placeholder i {
    font-size: 64px;
    margin-bottom: 1rem;
}

.product-image-placeholder p {
    margin: 0;
    font-size: 1.1rem;
}

/* Product Info Section */
.product-info-section {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-price {
    margin-bottom: 2rem;
}

.product-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #28a745;
}

.product-details {
    margin-bottom: 2rem;
}

.product-details p {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #495057;
}

.product-details strong {
    color: #2c3e50;
    font-weight: 600;
}

.product-actions {
    text-align: center;
}

.product-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

/* Product Description */
.product-description {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-description h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
}

.description-content p {
    color: #495057;
    line-height: 1.7;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Related Products */
.related-products {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.related-products h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
}

.related-products-subtitle {
    color: #6c757d;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.product-item {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-image-placeholder-small {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 32px;
}

.product-info h3.product-title {
    margin-bottom: 1rem;
}

.product-info h3.product-title a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-info h3.product-title a:hover {
    color: #007bff;
}

.product-info .price {
    color: #28a745;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-info .model {
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 80px;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
}

/* SEO Content Section */
.seo-content {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.seo-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
}

.seo-content h3 {
    color: #34495e;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.seo-content p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.seo-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.seo-content li {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.seo-content strong {
    color: #2c3e50;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.cta-section h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.cta-section .btn {
    background: #28a745;
    border-color: #28a745;
    color: white;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.cta-section .btn:hover {
    background: #218838;
    border-color: #1e7e34;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .product-header {
        padding: 1.5rem 1rem;
    }
    
    .product-detail-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .product-info-section {
        padding: 1.5rem;
    }
    
    .seo-content {
        padding: 1.5rem;
    }
    
    .related-products {
        padding: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .product-header {
        padding: 1rem;
    }
    
    .product-info-section {
        padding: 1rem;
    }
    
    .seo-content {
        padding: 1rem;
    }
    
    .related-products {
        padding: 1rem;
    }
    
    .product-price .price {
        font-size: 2rem;
    }
}
