/* Products By Group Page SEO Styles */


/* SEO Header */
.seo-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    margin-bottom: 3rem;
    border: 1px solid #dee2e6;
}

.main-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.seo-header .lead {
    color: #495057;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Product Items */
/* Product Item Styles */
.product-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.product-title {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 10px 0;
    height: 50px;
    overflow: hidden;
    line-height: 1.3;
}

.price {
    color: #e74c3c;
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
}

.model {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.product-actions .btn {
    flex: 1;
    font-size: 14px;
    padding: 8px 12px;
}

.btn-primary {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.btn-success {
    background-color: #27ae60;
    border-color: #27ae60;
}

.btn-success:hover {
    background-color: #229954;
    border-color: #229954;
}


/* Pagination Info */
.pagination-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
}

.pagination-info p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* 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;
}

/* Alert Styling */
.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border: 1px solid #bee5eb;
    color: #0c5460;
    border-radius: 0.5rem;
    padding: 2rem;
}

.alert-info h4 {
    color: #0c5460;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .seo-header {
        padding: 2rem 1rem;
    }
    
    .seo-content {
        padding: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .seo-header {
        padding: 1.5rem 1rem;
    }
    
    .seo-content {
        padding: 1rem;
    }
}
