.products-preview {
    padding: 6rem 0;
    background-color: var(--white);
}

.preview-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.preview-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-brand);
    margin-bottom: 1rem;
}

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

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

/* --- THE CARD STYLE --- */
.preview-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Theme Colors for cards (Using your Blue & Beige idea) */
.yogurt-theme {
    background-color: #EBF4FF; /* Very light blue */
}

.honey-theme {
    background-color: var(--creamy-beige);
}

.card-image {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.card-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    
    /* ADD THESE LINES */
    border-radius: 16px; /* This softens the sharp edges of the photo */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); /* Adds a very soft shadow to the photo itself */
    
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
    transition: var(--transition);
}

/* Optional: Make it pop a bit more when you hover over the card */
.preview-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2.5rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* --- BULLET POINTS --- */
.preview-list {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.preview-list li {
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.preview-list span {
    font-size: 1.2rem;
}

/* --- BOTTOM ACTION --- */
.preview-action {
    text-align: center;
    margin-top: 4rem;
}

.btn-blue-pill {
    background-color: var(--primary-brand);
    color: white;
    padding: 1rem 3rem;
    box-shadow: 0 10px 20px rgba(0, 74, 173, 0.2);
}

.btn-blue-pill:hover {
    background-color: var(--accent-brand);
    transform: scale(1.05);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-header h2 {
        font-size: 2.2rem;
    }
}