/* NieuweWinkels.nl - FRIS LICHT THEMA */

:root {
    /* Frisse kleuren - GEEN blauw, GEEN donker */
    --primary: #10b981;        /* Mintgroen */
    --primary-dark: #059669;
    --primary-light: #34d399;
    --accent: #f97316;         /* Oranje accent */
    --accent-light: #fb923c;
    
    --success: #22c55e;
    --warning: #eab308;
    --danger: #ef4444;
    
    /* Lichte achtergronden */
    --bg-white: #ffffff;
    --bg-cream: #fefef9;
    --bg-mint: #f0fdf4;
    --bg-light: #f8fafc;
    
    /* Tekst kleuren */
    --text-dark: #1e293b;
    --text-body: #475569;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;
    
    /* Borders */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
    
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg-cream);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

/* ============== HEADER ============== */

.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
}

.logo:hover {
    color: var(--text-dark);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-nl {
    color: var(--primary);
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-body);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: 20px;
    box-shadow: var(--shadow-md);
    z-index: 99;
}

.nav-mobile.active {
    display: block;
}

.nav-mobile a {
    display: block;
    padding: 14px 0;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--border-light);
}

.nav-mobile a:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

/* ============== HERO ============== */

.hero {
    background: linear-gradient(135deg, rgba(240,253,244,0.95) 0%, rgba(255,255,255,0.9) 50%, rgba(254,243,199,0.95) 100%),
                url('/static/images/hero-bg.jpg') center/cover no-repeat;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    color: var(--primary);
    position: relative;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-search {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.search-inputs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.search-select,
.search-input {
    flex: 1;
    min-width: 140px;
    padding: 14px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 1rem;
    background: var(--bg-white);
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color 0.2s;
}

.search-select:focus,
.search-input:focus {
    border-color: var(--primary);
    outline: none;
}

.search-btn {
    padding: 14px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-search {
        padding: 16px;
    }
    
    .search-inputs {
        flex-direction: column;
    }
    
    .search-select,
    .search-input {
        width: 100%;
    }
}

/* ============== SECTIONS ============== */

.section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header h2 {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-link {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-link:hover {
    gap: 8px;
}

/* ============== STORE CARDS ============== */

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.store-grid.compact {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.store-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.store-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.store-card a {
    display: block;
    color: inherit;
}

.store-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-mint);
    position: relative;
}

.store-image.small {
    height: 160px;
}

.store-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--bg-mint) 0%, #ecfdf5 100%);
}

.store-content {
    padding: 20px;
}

.store-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge.verified {
    background: #dcfce7;
    color: #166534;
}

.badge.featured {
    background: #fef3c7;
    color: #a16207;
}

.badge.category {
    background: var(--bg-light);
    color: var(--text-body);
}

.store-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.store-location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.store-desc {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

.store-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============== CATEGORIES ============== */

.categories-section {
    background: var(--bg-white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.2s;
    color: var(--text-body);
    border: 2px solid transparent;
}

.category-card:hover {
    background: var(--bg-mint);
    border-color: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.category-icon {
    font-size: 2.2rem;
}

.category-name {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============== CITIES ============== */

.cities-section {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-mint) 100%);
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.city-card {
    display: flex;
    flex-direction: column;
    padding: 14px 20px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
    border: 1px solid var(--border-light);
}

.city-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.city-name {
    font-weight: 700;
    color: var(--text-dark);
}

.city-province {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============== BLOG ============== */

.blog-section {
    background: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

@media (max-width: 400px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--border-light);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card a {
    color: inherit;
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-mint);
}

.blog-content {
    padding: 24px;
}

.blog-content h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-dark);
}

.blog-content p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============== CTA ============== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0d9488 100%);
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

/* ============== NEWSLETTER ============== */

.newsletter-section {
    padding: 60px 0;
    background: var(--bg-mint);
}

.newsletter-box {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-box h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.newsletter-box p {
    color: var(--text-body);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 1rem;
    background: var(--bg-white);
}

.newsletter-form input:focus {
    border-color: var(--primary);
    outline: none;
}

.newsletter-form button {
    padding: 14px 28px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

@media (max-width: 500px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* ============== FOOTER ============== */

.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    line-height: 1.7;
    color: var(--text-light);
}

.footer-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-light);
}

.footer-author {
    margin-top: 8px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: 1;
    }
}

/* ============== BUTTONS ============== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-body);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-white);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ============== FORMS ============== */

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 1rem;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* ============== PAGE HEADERS ============== */

.page-header {
    background: linear-gradient(135deg, var(--bg-mint) 0%, var(--bg-white) 100%);
    padding: 50px 0;
    border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.page-header p {
    color: var(--text-body);
    font-size: 1.1rem;
}

.breadcrumb {
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

/* ============== STORE DETAIL ============== */

.store-detail {
    padding: 50px 0;
}

.store-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.store-main-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-mint);
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
}

.store-info-box {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.store-info-box h3 {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-dark);
}

.info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.info-icon {
    font-size: 1.3rem;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .store-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .store-main-image {
        height: 250px;
    }
}

/* ============== CONTENT ============== */

.content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.content h2 {
    font-size: 1.4rem;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.content h2:first-child {
    margin-top: 0;
}

.content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-body);
}

.content ul, .content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============== REVIEWS ============== */

.reviews-section {
    margin-top: 40px;
}

.review-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-author {
    font-weight: 700;
    color: var(--text-dark);
}

.review-rating {
    color: var(--warning);
}

.review-text {
    color: var(--text-body);
    line-height: 1.7;
}

/* ============== ADMIN ============== */

.admin-header {
    background: var(--text-dark);
    color: white;
    padding: 20px 0;
}

.admin-nav {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.admin-nav a {
    color: var(--text-light);
}

.admin-nav a:hover {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-light);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    color: var(--text-muted);
    margin-top: 4px;
    font-size: 0.9rem;
}

.admin-table {
    width: 100%;
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.admin-table th,
.admin-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.admin-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

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

.action-btn {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-right: 8px;
    transition: all 0.2s;
}

.action-btn.approve {
    background: #dcfce7;
    color: #166534;
}

.action-btn.approve:hover {
    background: #bbf7d0;
}

.action-btn.delete {
    background: #fee2e2;
    color: #dc2626;
}

.action-btn.delete:hover {
    background: #fecaca;
}

.action-btn.feature {
    background: #fef3c7;
    color: #a16207;
}

.action-btn.feature:hover {
    background: #fde68a;
}

/* ============== UTILITIES ============== */

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 24px;
}

.mt-4 {
    margin-top: 24px;
}

.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 10px 16px;
    border-radius: var(--radius);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    color: var(--text-body);
}

.pagination a:hover {
    background: var(--bg-mint);
    border-color: var(--primary-light);
}

.pagination .active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ============== FILTERS BAR ============== */

.filters-bar {
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    margin-bottom: 32px;
}

@media (max-width: 600px) {
    .filters-bar {
        flex-direction: column !important;
    }
    
    .filters-bar .form-select,
    .filters-bar .form-input {
        max-width: 100% !important;
    }
}
