#coffee {
    padding: 120px 20px;
    background-color: #1f1f1d;
    color: #fff;
}

.coffee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.coffee-card {
    background-color: #2a2a28;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.coffee-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35) ;
}

.coffee-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.coffee-card:hover img {
  transform: scale(1.05);
}

.coffee-info {
    padding: 20px;
}
.coffe-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}
.coffe-info p {
    font-size: 14px;
    opacity: 0.7;
}

