/* <--- Tea Menu Section Starting ---> */
.tea-menu-section {
    padding: 60px 20px;
    background-color: #f5f0e8;
    color: #3e2723;
    text-align: center;
    margin-top: 130px;
}

.tea-menu-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-family: 'Cairo', sans-serif;
    color: #3e2723; 
}

.tea-menu-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tea-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);
}

.tea-menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #d4a373; 
}

.tea-menu-card-content {
    padding: 20px;
}

.tea-menu-card h3 {
    font-size: 24px;
    color: #3e2723; 
    margin-bottom: 10px;
}

.tea-menu-card p {
    font-size: 16px;
    margin-bottom: 10px;
}

.tea-menu-card span {
    font-size: 18px;
    color: #d4a373; 
    display: block;
    margin-top: 10px;
}

.tea-menu-card .checkout-btn {
    text-decoration: none;
    background-color: #d4a373; 
    color: #3e2723; 
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.tea-menu-card .checkout-btn:hover {
    background-color: #c49a6c; 
    transform: scale(1.05);
}

.tea-menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tea-menu-card {
        max-width: 100%;
    }
}
/* <--- Tea Menu Section Ending ---> */
