.thanks {
    text-align: center;
    background: #f8f9fa;
    border: 2px dashed #ffa500;
    padding: 25px;
    margin-top: 20px;
    border-radius: 10px;
    color: #333;
}

#food-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#food-popup {
    background: #fff;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    border-radius: 16px;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-family: sans-serif;
}

#food-popup-overlay.enter #food-popup {
    transform: scale(1);
    opacity: 1;
}

#food-popup-overlay.exit #food-popup {
    transform: scale(0.8);
    opacity: 0;
}

.popup-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #f97316; /* Tailwind orange-500 */
    color: #f97316;
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    z-index: 10000;
}

#popup-img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 12px;
}

#popup-title {
	font-weight: bold;
    font-size: 22px;
    margin-bottom: 8px;
}

#popup-price {
    font-weight: bold;
    color: #d34f1b; /* Tailwind green-600 */
    margin-bottom: 10px;
}

#popup-desc {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

#popup-cart {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#popup-cart .add_to_cart_button,
#popup-cart .added_to_cart.wc-forward {
    background-color: #d34f1b;
    color: #fff !important;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    text-decoration: none !important;
}

#popup-cart .add_to_cart_button:hover,
#popup-cart .added_to_cart.wc-forward:hover {
    background-color: #bb4316;
    color: #fff !important;
}


