/* Products Listing Page Styles - Oraviare */

.products-page {
    padding: 3rem 0 4rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.products-page .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Hero Section for Products Page */
.products-hero {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(184, 134, 11, 0.05) 100%);
    padding: 4rem 2rem;
    border-radius: 16px;
    margin-bottom: 4rem;
    text-align: center;
}

.products-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.products-hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* SEO Content Sections */
.seo-content-section {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 3rem 0;
}

.seo-content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--gold-color);
}

.seo-content-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.seo-content-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.seo-content-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.seo-content-section li {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.seo-content-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Enhanced Section Header */
.products-page .section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.products-page .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.products-page .section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Enhanced Search Bar */
.products-page .search-bar {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.products-page .search-bar form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.products-page .search-bar input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.products-page .search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Enhanced Categories */
.products-page .categories {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.products-page .category-filter {
    padding: 0.75rem 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.products-page .category-filter:hover,
.products-page .category-filter.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

/* Products Grid Enhancement */
.products-page .products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    padding: 0 20px;
    justify-content: start;
    justify-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure 5 products per row on desktop for products page */
@media (min-width: 769px) {
    .products-page .products-grid {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 1.5rem !important;
        justify-items: stretch !important;
    }
    
    /* Toon alle producten op de products pagina - override de limiet van style.css */
    .products-page .products-grid > .product-card:nth-child(n+1) {
        display: block !important;
        visibility: visible !important;
    }
}

.products-page .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.products-page .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.products-page .empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.products-page .empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.products-page .empty-state h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.products-page .empty-state p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Trust Badges Section */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.trust-badge {
    text-align: center;
    padding: 1.5rem;
}

.trust-badge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-badge h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.trust-badge p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .products-page .container {
        padding: 0 1.5rem;
    }
    
    .products-hero {
        padding: 3rem 1.5rem;
    }
    
    .products-hero h1 {
        font-size: 2.5rem;
    }
    
    .products-hero p {
        font-size: 1.1rem;
    }
    
    .seo-content-section {
        padding: 2rem 1.5rem;
    }
    
    .seo-content-section h2 {
        font-size: 2rem;
    }
    
    .seo-content-section h3 {
        font-size: 1.5rem;
    }
    
    .products-page .section-header h2 {
        font-size: 2.25rem;
    }
    
    .products-page .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
        padding: 0 15px;
        justify-content: start;
        justify-items: stretch;
    }
    
    .trust-badges {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-page {
        padding: 2rem 0 3rem;
    }
    
    .products-page .container {
        padding: 0 1rem;
    }
    
    .products-hero {
        padding: 2rem 1rem;
    }
    
    .products-hero h1 {
        font-size: 2rem;
    }
    
    .products-hero p {
        font-size: 1rem;
    }
    
    .seo-content-section {
        padding: 1.5rem 1rem;
    }
    
    .seo-content-section h2 {
        font-size: 1.75rem;
    }
    
    .seo-content-section h3 {
        font-size: 1.25rem;
    }
    
    .seo-content-section p {
        font-size: 1rem;
    }
    
    .products-page .section-header {
        padding: 1.5rem 0;
    }
    
    .products-page .section-header h2 {
        font-size: 2rem;
    }
    
    .products-page .section-header p {
        font-size: 1.1rem;
    }
    
    .products-page .search-bar {
        padding: 1.5rem;
    }
    
    .products-page .search-bar form {
        flex-direction: column;
    }
    
    .products-page .categories {
        padding: 1rem;
    }
    
    .products-page .category-filter {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .products-page .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .products-hero h1 {
        font-size: 1.75rem;
    }
    
    .products-page .section-header h2 {
        font-size: 1.75rem;
    }
    
    .products-page .products-grid {
        grid-template-columns: 1fr;
    }
}
