body {
    background: #F9F9F7;
    color: #000000;
    font-family: 'Lato', system-ui, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.ds-brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.25;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;           /* iets smaller op mobiel */
}

.section {
    padding: 3rem 0 4rem;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a2f25;
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: 2.35rem;
    font-weight: 700;
    color: #1a2f25;
    margin-bottom: 1.5rem;
}

.view-all {
    color: #1a2f25;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
}

.view-all:hover {
    text-decoration: underline;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

/* ==================== PRODUCT CARD ==================== */

.pcard {
    background: #ffffff;
    border: 1px solid #D9D6D2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(26, 47, 37, 0.15);
}

.pcard-img-container {
    height: 220px;                 /* iets kleiner op mobiel */
    background: #F9F9F7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.pcard-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pcard-placeholder {
    width: 100%;
    height: 220px;
    background: #F9F9F7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #1a2f25;
}

.pcard-body {
    background-color: #F9F9F7;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.pcard-shop {
    font-size: 0.8rem;
    font-weight: 600;
    color: #355c2f;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.pcard-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a2f25;
    margin-bottom: 0.7rem;
    line-height: 1.35;
}

.pcard-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 1.1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.pcard-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a2f25;
    margin-bottom: 1rem;
}

.ds-divider { 
    border: none; 
    border-top: 0.5px solid #a0b070; 
    margin: 0 0 1.1rem; 
}

/* Premium Button - beter voor touch */
.pcard-btn {
    display: block;
    width: 100%;
    background: #20381d;
    color: #dcb470;
    padding: 1rem 1.25rem;        /* grotere touch target */
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s;
    margin-top: auto;
    flex-shrink: 0;
    font-family: 'Lato', sans-serif;
    font-size: 1.02rem;
}

.pcard-btn:hover {
    background: #355c2f;
    transform: translateY(-3px);
    color: #ae966d;
}

/* ==================== RESPONSIVE IMPROVEMENTS ==================== */

@media (max-width: 1200px) {
    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .pcard-img-container {
        height: 210px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 2.25rem 0 3.5rem;
    }
    
    .section-title {
        font-size: 1.95rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr)); /* 1 kolom op hele kleine schermen */
        gap: 1.25rem;
    }
    
    .pcard-img-container {
        height: 200px;
    }
    
    .pcard-body {
        padding: 1.1rem;
    }
    
    .pcard-name {
        font-size: 1.1rem;
    }
    
    .pcard-price {
        font-size: 1.28rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2rem 0 3rem;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
}