.our-product-grid {
    /*display: grid;*/
    /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.our-product-card {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    
}

.our-product-card:hover {
    transform: translateY(-5px);
}

.our-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.our-product-card h3 {
    margin: 1rem 0;
    color: #2c1810;
}

.our-product-card p {
    color: #666;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #2c1810;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 3rem;
    transition: background-color 0.3s ease;
}
 
.btn:hover {
    background-color: #4a2b1d;
}

.featured-products {
    background-color: #fdf6f0;
    display: flex;
    flex-direction: column;
      /*background: blue;*/
}

@media (min-width: 800px) {
    .our-product-grid {
        flex-direction: row;
    }
}