/* Order Online Modal */
.order-online-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0,0,0,0);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}
.order-online-modal.show {
    background: rgba(0,0,0,0.8);
    opacity: 1;
    visibility: visible;
}
.order-online-modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}
.order-online-modal .center-alignment-box {
    display: table;
    height: 100%;
    width: 100%;
    pointer-events: none;
    padding: 0 10px;
}
.order-online-modal .center-align {
    display: table-cell;
    vertical-align: middle;
    pointer-events: none;
}
.order-online-modal .modal-dialog {
    max-width: 600px;
    margin: 0 auto;
}
.order-online-modal .modal-content {
    background-color: #000;
    border-radius: 0;
    border: 1px solid #e5e5e5;
    margin: 0 auto;
    max-width: 600px;
    padding: 23px 19px;
    position: relative;
    pointer-events: all;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.order-online-modal .modal-bckgrnd {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
}
.order-online-modal .modal-header {
    padding: 0;
    border: 0;
    text-align: right;
    position: relative;
    z-index: 1;
}
.order-online-modal .modal-header .close {
    position: relative;
    opacity: 1;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-block;
}
.order-online-modal .modal-header .close:hover:after,
.order-online-modal .modal-header .close:hover:before {
    background: #fff;
}
.order-online-modal .modal-header .close:after,
.order-online-modal .modal-header .close:before {
    content: "";
    background: #858382;
    position: absolute;
    top: calc(50% + 2px);
    left: 50%;
    width: 38px;
    height: 4px;
    opacity: 1;
    transition: all 0.4s;
}
.order-online-modal .modal-header .close:before {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.order-online-modal .modal-header .close:after {
    transform: translate(-50%, -50%) rotate(45deg);
}
.order-online-modal .modal-body {
    padding: 32px 0 69px;
    border-radius: 0;
    position: relative;
    z-index: 1;
}
.order-online-modal .popup_heading {
    text-align: center;
    margin: 0;
}
.order-online-modal .popup_heading.top {
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
    margin: 0;
}
.order-online-modal .popup_heading.main {
    color: #fff;
    font-family: magnitealt;
    font-size: 76px;
    line-height: 1.5;
}
.order-online-modal .popup_heading.sub {
    font-size: 17px;
    letter-spacing: 1px;
    color: #a6a6a6;
    margin: 0 0 13px;
}
.order-online-modal .popup-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}
.order-online-modal .popup-btns .btn-link {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    min-height: 50px;
    margin: 0 !important;
    background: red;
    color: #fff;
    text-decoration: none;
    padding: 10px 30px;
    width: 100%;
    max-width: 300px;
    transition: all 0.3s;
}
.order-online-modal .popup-btns .btn-link:hover {
    background: #a01830;
}
.order-online-modal .popup-btns .btn-link .text {
    font-size: 16px;
}

/* Test Page Styles */
.test-modal-page {
    padding: 100px 20px;
    text-align: center;
    min-height: 60vh;
}
.test-trigger-btn {
    padding: 15px 40px;
    font-size: 18px;
    cursor: pointer;
    background: red;
    color: #fff;
    border: none;
    border-radius: 4px;
    transition: all 0.3s;
}
.test-trigger-btn:hover {
    background: #a01830;
}