/* Container & Glass Buttons */
.webfymt-btn-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    font-family: 'Inter', sans-serif;
    flex-wrap: wrap;
}

.wf-btn {
    padding: 18px 45px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: none;
    font-size: 13px;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px); /* Glassmorphism on buttons */
}

.wf-btn-order {
    background: #e63946;
    color: white;
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
}

.wf-btn-reserve {
    background: #ffffff;
    color: #000;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.wf-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* The Ultra-Modern Glassmorphism Modal */
.wf-modal {
    display: none;
    position: fixed;
    z-index: 99999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent overlay */
    backdrop-filter: blur(25px); /* Strong background blur - প্রিমিয়াম লুকের চাবিকাঠি */
    -webkit-backdrop-filter: blur(25px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 20px;
}

.wf-modal.show {
    display: flex;
    opacity: 1;
}

/* Modal Content Box - Like a floating App Window */
.wf-modal-content {
    position: relative;
    width: 95%;
    max-width: 1300px;
    height: 90vh; /* ডেস্কটপে ৯০% হাইট */
    background: #000; /* Next.js theme uses dark, keep it black here */
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
    transform: scale(0.9) translateY(100px); /* স্লাইড-আপ ও জুম-আউট এনিমেশন */
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.wf-modal.show .wf-modal-content {
    transform: scale(1) translateY(0);
}

/* মোবাইলের জন্য ফুল-স্ক্রিন লাক্সারি অ্যাপ লুক */
@media (max-width: 768px) {
    .wf-modal { padding: 0; background: rgba(0, 0, 0, 0.9); }
    .wf-modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: scale(1) translateY(100%); /* মোবাইলে পুরোপুরি নিচ থেকে উঠে আসবে */
    }
    .wf-modal.show .wf-modal-content {
        transform: scale(1) translateY(0);
    }
}

/* Minimal Close Button - গ্লোরিয়াফুডের চাইতেও ক্লিন */
.wf-close {
    position: absolute;
    right: 30px;
    top: 25px;
    color: #fff;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 99999;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wf-close:hover {
    background: #e63946;
    transform: rotate(90deg) scale(1.1);
}

/* The Iframe Container */
#wfIframe {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
}