/* <--- Coffee Menu Section Styling ---> */
.coffee-menu-section {
    padding: 60px 20px;
    background-color: #f5f0e8;
    color: #3e2723;
    text-align: center;
    margin-top: 140px;
}

.coffee-menu-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-family: 'Cairo', sans-serif;
    color: #3e2723; 
}

.coffee-menu-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.coffee-menu-card {
    border: 3px solid #d4a373; 
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.coffee-menu-card img {
    width: 100%;
    height: 200px; 
    object-fit: cover; 
}

.coffee-menu-card-content {
    padding: 20px;
}

.coffee-menu-card-content h3 {
    font-size: 20px;
    color: #3e2723; 
    margin-bottom: 10px;
}

.coffee-menu-card-content p {
    font-size: 16px;
    margin-bottom: 10px;
}

.coffee-menu-card-content span {
    font-size: 18px;
    font-weight: bold;
    color: #3e2723;
    display: block;
    margin-bottom: 10px;
}

.checkout-btn {
    background-color: #d4a373; 
    color: #3e2723;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.checkout-btn:hover {
    background-color: #c49a6c; 
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coffee-menu-cards {
        flex-direction: column;
    }

    .coffee-menu-card {
        max-width: 100%;
    }
}
