body {
    background-color: #F9F9F7;
    font-family: 'Lato', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
}

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


.product-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background: #F9F9F7;
    border: 1px solid #e5e0d8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(32, 56, 29, 0.15);
}

.image-container {
    height: 240px;
    background: #F9F9F7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.card-body {
    display: flex;
    flex-direction: column;
    padding: 1.4rem;
    flex: 1;
}

.card-body h6,
.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.22rem;
    font-weight: 600;
    color: #1a2f25;
    margin-bottom: 0.6rem;
    line-height: 1.35;
}

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

/* Badges */
.badge {
    background: #ffffff;
    color: #355c2f;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
    border: 1px solid #d1e0c8;
    width: fit-content;
    margin-bottom: 10px;
}

.filter-badge {
    background: #f8f9fa;
    color: #355c2f;
    font-size: 0.85rem;
    padding: 8px 14px;
    border-radius: 30px;
    border: 1px solid #d1e0c8;
    font-weight: 500;
}

.btn-primary {
    background: #20381d;
    color: #dcb470;
    border: none !important;
    padding: 0.95rem 1.8rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-family: 'Lato', sans-serif;
    transition: all 0.25s ease;
    margin-top: auto;
}

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

@media (max-width: 768px) {
    .image-container {
        height: 200px;
    }
    
    .card-body h6,
    .card-title {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
}