        :root {
            --primary-gold: #F2D79B;
            --secondary-gold: #9F7528;
            --bg-light-cream: #EBEBE5;
            --bg-light-second: #F9F9F7;
            --bg-white-color: #fff;
            --border-color: #DBD8D4;
            --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            --dark-footer: #191919;
            --heading-color: #191919;
            --body-text-color: #524736;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light-second);
            color: var(--body-text-color);
            font-size: 15px;
        }

        .accordion {
            background: transparent !important;
            --bs-accordion-bg: transparent;
            --bs-accordion-border-width: none;
            --bs-accordion-btn-focus-box-shadow: 0;

        }

        .accordion-button {
            background-color: transparent !important;
            padding: 0px;

        }

        /* ===== STYLE ONLY ARROW ICON ===== */
        .gm-accordion .accordion-button::after {
            background-color: var(--secondary-gold);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-position: center;
            background-size: 12px;
            cursor: pointer;
        }

        div#gmGetrankeCollapse {
            padding-top: 15px;
        }


        p {
            font-family: 'Open Sans', sans-serif;
            font-weight: 400;
            font-size: 15px;
            line-height: 150%;

        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .heading-font,
        .nav-link,
        .btn {
            font-family: 'DM Serif Display', serif;
            font-weight: 400;
            line-height: 1.5;
            color: var(--heading-color);
        }

        h1::first-letter,
        h2::first-letter,
        h3::first-letter,
        h4::first-letter,
        h5::first-letter,
        h6::first-letter,
        .heading-font::first-letter,
        .nav-link::first-letter,
        .btn::first-letter {
            text-transform: capitalize;
        }

        /* Top Bar Style */

        .top-bar-wrapper {
            background-color: var(--bg-light-cream);
            position: sticky;
            top: 0;
            z-index: 1;
        }

        .summary-bar .summary-bar-list {
            display: flex;
        }

        .summary-bar-list .summary-item {
            padding: 12px 8px;
            border-left: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex: 1;
        }

        .summary-item .label {
            margin-bottom: 4px;
            line-height: 1.5;
            padding: 0px 8px 0px;
        }

        .summary-item .value {
            color: var(--heading-color);
            font-weight: 600;
            line-height: 1.5;
            padding: 0px 8px;
        }

        .summary-bar .input-group-item .form-control {
            background-color: inherit;
            border: none;
            padding: 0px 4px;
            width: 100%;
            position: relative;
            font-weight: 600;
            border: 1px solid #c0c0c0;
            padding: 4px 7px;
        }

        .summary-bar .input-group-item .form-control:focus,
        .lang-box .form-select:focus {
            box-shadow: 0 0 0 0px rgba(13, 110, 253, .25);
            border-radius: 2px;
        }

        .summary-bar .input-group-item .form-control::-webkit-calendar-picker-indicator {
            opacity: 0;
            position: absolute;
            left: 0;
            width: 100%;
        }

        .lang-box {
            /* position: relative;
            display: inline-block; */
            display: none;
        }

        .lang-box>i {
            left: 8px;
        }

        .lang-box .form-select {
            font-size: 14px;
            padding: 8px 40px 8px 30px;
        }

        /* card style */
        .packages-item-header>span i:before {
            border-radius: 50%;
            margin-right: 12px;
            color: var(--border-color);
            font-size: 32px;
            line-height: 1;
            position: absolute;
            left: -15px;
        }

        .packages-item-header>span.checked i:before {
            background-color: #C9FFCF;
            color: var(--heading-color);
        }

        .packages-point-wrap {
            position: relative;
            padding-left: 46px;
            margin-top: 40px;
        }

        .packages-point-wrap::before {
            content: '';
            position: absolute;
            left: 0px;
            top: 50px;
            width: 1px;
            height: calc(100% - 20px);
            background-color: var(--border-color);
        }

        .packages-item-header {
            padding-bottom: 1rem;
        }

        .list-title-section>h2 {
            font-size: 24px;
            font-weight: 500;
            line-height: 1.3;
            color: var(--heading-color);
        }

        .list-title-section .subtext>p {
            font-weight: 400;
            font-size: 16px;
            line-height: 1.5;
            color: var(--body-text-color);
        }

        /* tabs and card style */
        .meal-price-tabs {
            gap: 15px;
            border: none;
        }

        .meal-price-tabs-content {
            padding: 30px 0px;
        }

        .meal-price-tabs .nav-link {
            border: 1px solid var(--border-color);
            border-radius: 50px;
            padding: 10px 18px;
            background: var(--bg-white-color);
            color: var(--heading-color);
            transition: all 0.2s ease-in-out;
        }

        .meal-price-tabs .nav-link.active,
        .meal-price-tabs .nav-link:hover,
        .meal-price-tabs .nav-link:focus {
            background: var(--dark-footer);
            color: var(--bg-white-color);
            border-color: var(--dark-footer);
        }

        .price-tabs-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--primary-gold);
            display: inline-block;
            margin-right: 6px;
            border: 2px solid var(--bg-light-cream);
        }

        .meal-price-tabs .active .price-tabs-dot,
        .meal-price-tabs .nav-link:hover .price-tabs-dot {
            background: var(--secondary-gold);
            border: 2px solid var(--bg-light-cream);
        }

        .menu-pricing-radio-card {
            cursor: pointer;
            display: block;
            height: 100%;
        }

        .menu-pricing-radio-card input[type="radio"] {
            display: none;
        }

        .menu-pricing-card {
            background: var(--bg-white-color);
            border-radius: 16px;
            padding: 20px;
            position: relative;
            height: 100%;
            border: 1px solid transparent;
            transition: all 0.3s ease-in-out;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .menu-pricing-card.active {
            border: 2px solid var(--heading-color);
        }

        .menu-price-head .menu-img {
            border-radius: 10px;
            overflow: hidden;
        }

        .menu-pricing-card .badge-plan {
            background: var(--primary-gold);
            color: var(--secondary-gold);
            padding: 4px 16px;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 12px;
        }

        .menu-pricing-card .menu-title {
            font-size: 20px;
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .menu-pricing-card .menu-desc {
            margin-bottom: 12px;
        }

        .menu-pricing-card .food-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin: 0 0 24px;
        }

        .menu-pricing-card .food-list li {
            background: var(--bg-light-second);
            border-radius: 4px;
            padding: 6px 8px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 15px;
            font-weight: 500;
        }

        .menu-pricing-card .food-list img {
            width: 35px;
            height: 35px;
            object-fit: contain;
        }

        .small-price {
            font-size: 14px;
            margin-bottom: 4px;
            color: #666666;
        }

        .main-price {
            font-size: 20px;
            font-weight: 600;
        }

        .select-btn {
            background: var(--bg-light-cream);
            border: none;
            padding: 8px 24px;
            border-radius: 6px;
            transition: all 0.3s ease-in-out;
            text-align: center;
        }

        .menu-pricing-radio-card:hover .menu-pricing-card {
            border-color: var(--heading-color);
        }

        .menu-pricing-radio-card:hover .menu-pricing-card .select-btn {
            background-color: var(--primary-gold);
        }

        .menu-pricing-radio-card input[type="radio"]:checked+.menu-pricing-card {
            border-color: var(--heading-color);
        }

        .menu-pricing-radio-card input[type="radio"]:checked+.menu-pricing-card .select-btn {
            background-color: var(--primary-gold);
        }

        /* ===== CHECKBOX CARD (ISOLATED - NO CONFLICT) ===== */

        .individual-questions-wrapper .menu-pricing-radio-card input[type="checkbox"] {
            display: none;
        }

        /* DEFAULT */
        .individual-questions-wrapper .menu-pricing-card {
            border: 1px solid transparent;
            position: relative;
        }

        /* HOVER */
        .individual-questions-wrapper .menu-pricing-radio-card:hover .menu-pricing-card {
            border-color: var(--heading-color);
        }

        /* CHECKED STATE */
        .individual-questions-wrapper .menu-pricing-radio-card input[type="checkbox"]:checked+.menu-pricing-card {
            border: 2px solid var(--heading-color);
            background: #fff;
        }

        /* BUTTON ACTIVE */
        .individual-questions-wrapper .menu-pricing-radio-card input[type="checkbox"]:checked+.menu-pricing-card .select-btn {
            background-color: var(--primary-gold);
        }

        .ribbon.heading-font {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--secondary-gold);
            position: absolute;
            padding: 4px 40px;
            right: -35px;
            transform: rotate(45deg);
            top: 20px;
            color: var(--bg-white-color);
            font-size: 13px;
        }

        .meal-info-box {
            background-color: var(--bg-light-cream);
            padding: 20px;
            border-radius: 10px;
        }

        .meal-info-box ul {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .meal-info-box ul li {
            display: flex;
            align-items: center;
            justify-content: start;
            gap: 6px;
        }

        .meal-info-box .feature-icon {
            width: 26px;
            height: 26px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .row .col-20 {
            width: 20%;
            flex: 0 0 auto;
            padding-left: 5px;
            padding-right: 5px;
            margin-top: 10px;
        }

        .beverages-price-tabs-wrapper .ribbon.heading-font {
            font-size: 10px;
            top: 12px;
            right: -25px;
            padding: 2px 20px;
        }

        .beverages-price-tabs-wrapper .menu-pricing-card {
            padding: 20px 12px 16px;
            border-radius: 4px;
        }

        .beverages-price-tabs-wrapper .menu-pricing-card .menu-title {
            margin-top: 10px;
            word-break: break-all;
        }

        .beverages-price-tabs-wrapper .menu-pricing-card .food-list li,
        .beverages-price-tabs-wrapper .menu-desc,
        .beverages-price-tabs-wrapper .small-price {
            font-size: 12px;
        }

        .beverages-price-tabs-wrapper .menu-pricing-card .food-list img {
            width: auto;
            height: 24px;
            object-fit: contain;
        }

        .games-price-tabs-wrapper .menu-price-content {
            padding: 10px 0px;
        }

        .games-price-tabs-wrapper .list-content,
        .list-content {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .list-content li {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .games-price-tabs-wrapper .list-content {
            list-style: disc;
            padding-left: 1.5rem;

        }

        /* sidebar Style */
        .sidebar-checkout-wrap {
            background-color: var(--bg-white-color);
            border-radius: 10px;
            position: fixed;
            top: 0px;
            right: 0;
            z-index: 1;
            max-width: 320px;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow-x: scroll;
            scroll-behavior: smooth;
        }

        .sidebar-checkout-wrap .sidbar-checkout-head {
            text-align: center;
            padding: 20px 20px 40px;
        }

        .sidebar-checkout-wrap .sidbar-checkout-head>img {
            max-width: 120px;
        }

        .sidbar-checkout-content {
            padding: 20px;
        }

        .sidbar-checkout-content .side-menu li {
            display: flex;
            gap: 12px;
            padding: 10px;
            align-items: center;
            color: var(--heading-color);
            position: relative;
        }

        .sidbar-checkout-content .side-menu li i {
            color: var(--border-color);
        }

        .sidbar-checkout-content .side-menu li.active i,
        .color-checked::before {
            background-color: #C9FFCF;
            font-size: 18px;
            line-height: 1;
            border-radius: 50%;
            color: var(--heading-color);
        }

        .list-content .color-checked::before {
            background-color: var(--primary-gold);
        }

        .sidbar-checkout-content .side-menu li.progress-work {
            background-color: var(--bg-light-second);
            border-radius: 10px;
        }

        .sidbar-checkout-content .side-menu li.progress-work i {
            color: var(--heading-color);
        }

        .sidbar-checkout-content .side-menu li.progress-work:after {
            content: '\F138';
            position: absolute;
            right: 12px;
            display: block;
            font-family: bootstrap-icons !important;
        }

        .sidbar-checkout-foot {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: auto;
        }

        .sidbar-checkout-foot .checkout-info {
            font-size: 14px;
        }

        .sidbar-checkout-foot .checkout-info .nop {
            border: 1px solid var(--border-color);
            width: 32px;
            height: 32px;
        }

        .sidbar-checkout-foot .checkout-info .nop {
            border: 1px solid var(--border-color);
            width: 32px;
            height: 32px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            border-radius: 6px;
            margin-right: 6px;
        }

        .info-icon {
            position: relative;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
        }

        .tooltip-info-text {
            visibility: hidden;
            width: 260px;
            font-size: 12px;
            background-color: var(--bg-light-cream);
            padding: 12px 8px;
            border-radius: 4px;
            position: absolute;
            z-index: 1;
            opacity: 0;
            transition: opacity .6s;
        }

        .tooltip-info-top {
            bottom: 125%;
            left: 0%;
        }

        .tooltip-info-top::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 4%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: var(--bg-light-cream) transparent transparent transparent;
        }

        .info-icon:hover .tooltip-info-text {
            visibility: visible;
            opacity: 1;
        }

        .info-icon:hover i.bi::before {
            background-color: #C9FFCF;
            line-height: 1;
            border-radius: 50%;
            color: var(--heading-color);
        }

        .info-icon i {
            font-size: 18px;
        }

        .border-dashed {
            border-top: 1px dashed var(--border-color);
            padding: 10px 0px;
            margin-top: 40px;
        }

        .sidbar-checkout-foot .btn,
        .btn.btn-gold {
            padding-top: 10px;
            padding-bottom: 10px;
            background-color: var(--primary-gold);
            transition: all 0.2s ease-in-out;
        }

        .sidbar-checkout-foot .btn:hover,
        .btn.btn-gold:hover {
            background-color: var(--secondary-gold);
            color: var(--bg-white-color);
        }

        .sidbar-checkout-foot .pdf-link {
            background-color: inherit;
            padding: 0;
        }

        /* checkout-details Style */
        .checkout-details-step {
            padding: 15px 0px;
            border-bottom: 1px solid var(--border-color);
        }

        .checkout-details-step>ul {
            gap: 40px;
            font-size: 18px;
            justify-content: center;
        }

        .checkout-details-step>ul li {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .checkout-details-step>ul li i {
            background-color: var(--border-color);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
        }

        .checkout-details-step>ul li.active i {
            background-color: var(--primary-gold);
        }

        .checkout-details-form-wrap {
            padding: 65px 35px 0px 110px;
        }

        /* form Style */
        .row .form-details-wrap {
            padding: 0px 0px;
        }

        .checkout-details-form-wrap .form-label {
            font-size: 14px;
        }

        .details-form-note {
            font-size: 14px;
        }

        .checkout-details-form-wrap .form-label .req {
            color: #FF540B;
        }

        .checkout-details-form-wrap .form-control,
        .checkout-details-form-wrap .form-select {
            font-size: 15px;
            padding: 10px 20px;
            border-radius: 10px;
            border-color: var(--border-color);
        }

        .checkout-details-form-wrap .form-control::placeholder {
            color: var(--body-text-color);
            opacity: 0.8;
        }

        .checkout-details-form-wrap .form-control:focus,
        .checkout-details-form-wrap .form-select:focus,
        .checkout-details-form-wrap .form-check-input:focus {
            box-shadow: none;
            border: 1px solid var(--primary-gold);
        }

        .checkout-details-form-wrap .participants-num,
        .discount-code-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            overflow: hidden;
            background: #fff;
            padding: 5px;
        }

        .checkout-details-form-wrap .participants-num input,
        .discount-code-box input {
            border: none;
            text-align: center;
            padding-top: 5px;
            padding-bottom: 5px;
            width: 70%;
        }

        .checkout-details-form-wrap .participants-num input:focus {
            border: none;
        }

        .participants-num input::-webkit-outer-spin-button,
        .participants-num input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .participants-num input[type=number] {
            -moz-appearance: textfield;
        }

        .checkout-details-form-wrap .participants-num button {
            width: 33px;
            height: 33px;
            border: none;
            cursor: pointer;
            border-radius: 5px;
            background-color: var(--primary-gold);
            transition: all ease-in-out 0.2s;
            opacity: 0.9;

        }

        .checkout-details-form-wrap .participants-num button:hover {
            opacity: 1;
        }

        .checkout-details-form-wrap .mb-4 {
            margin-bottom: 30px !important;
        }

        .row .order-items-details-wrap {
            background-color: var(--bg-white-color);
            padding: 0px 70px;
            border-left: 1px solid var(--border-color);
        }

        .order-items-details-top {
            padding: 0px 40px;
        }

        .items-details-head {
            padding: 30px 0px;
            border-bottom: 1px solid var(--border-color);
        }

        .order-heading h4 {
            font-size: 20px;
        }

        .items-details-head a,
        .checkout-details-wrapper a {
            color: var(--body-text-color);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .badge-count,
        .badge-edit-icon {
            background-color: #F4F4F4;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
        }

        .order-items {
            padding: 10px 0px 10px;
            border-bottom: 1px dashed var(--border-color);
        }

        .order-items .item-title {
            font-size: 18px;
            margin-bottom: 6px;
        }

        .order-items .item-price {
            font-weight: 600;
            text-align: right;
        }

        .order-items .item-discount {
            color: green;
        }

        .order-items:last-child {
            border-bottom: 0px;
        }

        .discount-code-wrap {
            margin-top: 40px;
            margin-bottom: 20px;
        }

        .discount-code-wrap .discount-code-box input {
            text-align: left;
            font-size: 15px;
            width: inherit;
        }

        .discount-code-wrap .discount-code-box button {
            font-size: 15px;
        }

        .discount-code-wrap .discount-code-box .apply-btn {
            padding: 4px 16px;
        }

        .discount-code-box .form-control:focus {
            box-shadow: none;
        }

        .checkout-summary-box {
            background: var(--bg-light-second);
            border-radius: 25px;
            padding: 35px;
        }

        .checkout-summary-box .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 25px;
        }

        .checkout-summary-box .summary-row.total {
            font: 18px;
            font-weight: 600;
            color: var(--heading-color);
        }

        .checkout-bottom-note {
            font-size: 14px;
            text-align: center;
            padding: 15px 0px;
        }

        /* Billing info */
        .checkout-details-form-wrap .form-radio-row {
            gap: 20px;
        }

        .form-radio-row .form-check-input {
            width: 18px;
            height: 18px;
            margin-top: .1em;
            border: 2px solid #6b5f57
        }

        .form-radio-row .form-check-input:checked {
            background-color: #ff6a00;
            border-color: #ff6a00
        }

        .form-radio-row .form-check-label {
            font-size: 16px;
            margin-left: 8px
        }

        /* Adress Details Style */
        .address-details-wrap .address-details {
            background-color: var(--bg-white-color);
            padding: 20px 25px;
            border-radius: 10px;
            margin-bottom: 25px;
        }

        .address-details .list-content {
            padding: 10px 0px;
            gap: 5px;
        }

        .confirmation-checkbox input[type="checkbox"] {
            padding-top: 2px;
            width: 15px;
            height: 15px;
        }

        .confirmation-text {
            font-size: 13px;
        }

        .order-heading .option-text {
            width: 50%;
        }

        /* Invoice Style */
        .row .invoice-details-wrapper {
            padding: 0px 110px 0px 35px;
        }

        .invoice-btn {
            text-align: right;
            padding: 15px 0px;
        }

        .invoice-btn .pdf-btn {
            background: var(--heading-color);
            color: var(--bg-white-color);
            border: none;
            padding: 8px 24px;
            border-radius: 8px;
            transition: 0.2s all ease-in-out;
        }

        .invoice-btn .pdf-btn .pdf-btn-icon {
            color: #E5252A;
            margin-right: 4px;
            font-size: 20px;

        }

        .invoice-btn .pdf-btn:hover {
            background-color: var(--heading-color);
            opacity: 0.9;
        }

        /* Invoice Preview */
        .info-invoice-preview {
            background: #fff;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .info-sticky-top {
            position: sticky;
            top: 20px;
        }

        .info-invoice-preview .info-logo {
            max-width: 130px;
        }

        .info-invoice-meta>div {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            padding: 6px 0px;
            border-bottom: 1px solid var(--border-color);
        }

        .info-invoice-meta>div:last-child {
            border: none;
        }

        .info-invoice-meta>div>span {
            font-weight: 600;
            font-size: 14px;
        }

        .info-invoice-address p {
            font-size: 13px;
        }


        /* Table Styles */
        .info-invoice-table-container {
            width: 100%;
            overflow-x: auto;
            border-bottom: 1px solid var(--border-color);
        }

        .info-invoice-table {
            width: 100%;
            border-collapse: collapse;
        }

        .info-invoice-table thead tr {
            border: 1px solid var(--border-color);
            background-color: var(--bg-light-second);
            border-radius: 4px;
        }

        .info-invoice-table th {
            color: var(--heading-color);
            text-transform: capitalize;
            font-size: 12px;
            font-weight: 400;
            padding: 4px 8px;
            text-align: left;
        }

        .info-invoice-table td {
            padding: 10px 8px;
            vertical-align: top;
            text-align: left;
            font-size: 14px;
        }

        .info-invoice-table td b {
            font-weight: 600;
            font-family: 'DM Serif Display', serif;
            color: var(--heading-color);
            margin-bottom: 8px;
            display: inline-block;
        }

        /* Footer Summary */
        .info-invoice-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 12px;
        }

        .info-invoice-footer .gm-total-note p {
            font-size: 13px;
            font-style: italic;
        }

        .info-invoice-footer .gm-total-card {
            padding: 15px 20px;
            background-color: var(--bg-light-second);
        }

        .gm-total-card .small-quote {
            font-size: 12px;
        }

        .gm-total-card .total-price {
            font-size: 18px;
            font-weight: 600;
        }

        .info-invoice-preview .info-bank-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 10rem;
            padding-top: 20px;

        }

        .info-invoice-preview .info-bank-grid p {
            font-size: 10px;
        }

        .page-template-wp-custom-template-en-konfigurator .wp-block-template-part {
            margin-top: 0px;
            top: 0;
        }

        .invoice-details-main-wrap-a4 {
            overflow: auto;
        }

        /* Hide bottom bar by default everywhere */
        .gm-mobile-bar,
        .gm-mobile-popup {
            display: none;
        }

        input#Participants {
            border: 1px solid #c0c0c0;
            padding: 4px 7px;
        }

        /* ===== FLEX TICKET (ISOLATED SECTION) ===== */

        .flex-ticket-wrapper {
            margin-top: 20px;
        }

        .flex-ticket-card {
            display: block;
            cursor: pointer;
        }

        .flex-ticket-card input {
            display: none;
        }

        .flex-ticket-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid transparent;
            background: var(--bg-white-color);
            border-radius: 16px;
            padding: 20px 40px;
            transition: all 0.3s ease;
            gap: 30px;
        }

        /* LEFT */
        .flex-ticket-left {
            flex: 0 0 20%;
        }

        .flex-ticket-left h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
        }

        /* CENTER */
        .flex-ticket-center {
            flex: 1;
            padding: 0 20px;
        }

        .flex-ticket-center p {
            margin: 0;
            font-size: 14px;
            line-height: 1.6;
        }

        /* RIGHT */
        .flex-ticket-right {
            flex: 0 0 auto;
            font-weight: 600;
            font-size: 18px;
            color: var(--heading-color);
        }

        /* HOVER */
        .flex-ticket-card:hover .flex-ticket-inner {
            border-color: var(--heading-color);
        }

        /* ACTIVE (SELECTED) */
        .flex-ticket-card input:checked+.flex-ticket-inner {
            border: 2px solid var(--heading-color);
            background: #fff;
        }

        /* ===== PAYMENT BOX (ISOLATED) ===== */

        .gm-payment-box {
            margin-top: 20px;
            padding: 18px;
            border-radius: 4px;
            background: var(--bg-light-second);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        .gm-payment-title {
            font-size: 14px;
            margin-bottom: 12px;
            color: var(--heading-color);
        }

        .gm-payment-logos {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .gm-payment-logos img {
            height: 22px;
            object-fit: contain;
        }

        .gm-payment-note {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 13px;
            line-height: 1.5;
            color: var(--body-text-color);
        }

        .gm-payment-note i {
            color: #28a745;
            font-size: 16px;
            margin-top: 2px;
        }

        /* ===== START / END TIME (ISOLATED) ===== */

        .gm-time-range {
            padding: 12px 8px;
            border-left: 1px solid var(--border-color);
            flex: 1.2;
        }

        .gm-time-inner {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }

        .gm-time-block {
            display: flex;
            flex-direction: column;
        }

        .gm-time-block .label {
            font-size: 13px;
            color: var(--body-text-color);
            margin-bottom: 4px;
            white-space: nowrap;
        }


        .gm-time-block .value {
            font-weight: 600;
            color: var(--heading-color);
            white-space: nowrap;
        }


        /* ===== TOP BAR INPUT STYLE ===== */

        .gm-input-style {
            width: 100%;
            max-width: 120px;
            border: 1px solid #c0c0c0;
            padding: 4px 7px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            color: #000;
            background-color: transparent;
            text-align: left;
        }

        /* REMOVE DEFAULT INPUT LOOK */
        .gm-input-style:focus {
            outline: none;
            box-shadow: none;
            border-color: var(--primary-gold);
        }

        /* OPTIONAL: ALIGN SAME AS PARTICIPANTS */
        .summary-item .value input {
            height: 36px;
        }


        /* PDF Print start */
        @media print {

            @page {
                margin: 0;
            }


            body * {
                visibility: hidden;
                margin: 0;
            }

            /* Show only .page */
            .invoice-details-main-wrap-a4,
            .invoice-details-main-wrap-a4 * {
                visibility: visible;
            }

            /* Position it properly */
            .invoice-details-main-wrap-a4 {
                position: absolute;
                top: 0;
                left: 0;
                width: 100% !important;
            }

            .invoice-details-main-wrap-a4 .info-invoice-preview {
                min-width: 100%;
                max-width: 100%;
            }
        }

        /* PDF Print End */

        /* X-Large devices (large desktops, less than 1400px) */
        @media (max-width: 1399.98px) {
            .order-heading .option-text {
                width: 65%;
            }
        }

        /* Large devices (desktops, less than 1200px) */
        @media (max-width: 1199.98px) {

            body,
            p,
            .input-group-item .form-control {
                font-size: 13px;
            }

            .summary-item .label,
            .summary-item .value {
                padding-left: 0;
                padding-right: 0;
            }

            .sidebar-checkout-wrap {
                max-width: 260px;
            }

            .lang-box .form-select {
                padding-right: 30px;
            }

            .packages-point-wrap {
                margin-top: 30px;
                padding-left: 30px;
            }

            .meal-price-tabs .nav-link {
                font-size: 15px;
            }

            .meal-price-tabs-content .tab-pane .row>*,
            .games-price-tabs-wrapper .row>*,
            .individual-route-wrapper .row>*,
            .individual-questions-wrapper .row>*,
            .personal-care-tabs-wrapper .row>* {
                padding: 0px 8px;
                margin-top: 16px;
            }

            .menu-pricing-card {
                padding: 16px 12px;
            }

            .menu-pricing-card .menu-title {
                font-size: 18px;
            }

            .menu-pricing-card .food-list img {
                width: 28px;
                height: 28px;
            }

            .menu-pricing-card .food-list li {
                font-size: 13px;
            }

            .small-price {
                font-size: 12px;
            }

            .main-price {
                font-size: 16px;
            }

            .meal-info-box ul {
                gap: 12px;
            }

            .packages-item-header>span {
                font-size: 24px;
                top: 5px;
                left: -10px;
            }

            .col-20 {
                width: 33.33%;
            }

            .row .form-details-wrap {
                padding: 0px;
            }

            .checkout-details-form-wrap {
                padding: 35px 25px 35px 45px;
            }

            .checkout-details-form-wrap .mb-4 {
                margin-bottom: 25px !important;
            }

            .checkout-details-step>ul {
                gap: 20px;
                font-size: 16px;
            }

            .checkout-details-step>ul li i {
                padding: 6px;
            }

            .checkout-details-step>ul li i {
                font-size: 13px;
            }

            .checkout-details-step>ul li {
                gap: 8px;
            }

            .order-items-details-top {
                padding: 0px 20px;
            }

            .row .order-items-details-wrap {
                padding: 0px 25px;
            }

            .items-details-head {
                padding: 20px 0px;
            }

            .order-heading h4 {
                font-size: 18px;
            }

            .checkout-bottom-note {
                font-size: 13px;
            }

            .checkout-summary-box .summary-row {
                margin-bottom: 15px;
            }

            .checkout-bottom-note {
                padding: 20px 0px;
            }

            .row .invoice-details-wrapper {
                padding: 0px 45px 0px 25px;
            }

            .info-invoice-preview {
                max-width: 595px;
                min-width: 595px;
            }
        }

        /* Medium devices (tablets, less than 992px) */
        @media (max-width: 991.98px) {

            .row .col-20 {
                width: 33%;
            }

            /* Forms Style */
            .row .order-items-details-wrap {
                border-left: none;
                border-top: 1px solid var(--border-color);
            }

            .checkout-details-step>ul {
                justify-content: center;
            }

            .checkout-details-step>ul li i {
                font-size: 12px;
            }

            .checkout-details-form-wrap {
                padding: 35px 30px 35px 30px;
            }

            .checkout-details-form-wrap .form-label {
                font-size: 13px;
            }

            .checkout-details-form-wrap .form-control,
            .checkout-details-form-wrap .form-select {
                font-size: 14px;
                padding: 9px 18px;
            }

            .checkout-details-form-wrap .participants-num button {
                width: 30px;
                height: 30px;
            }

            .checkout-details-form-wrap .participants-num,
            .discount-code-box {
                padding-top: 4px;
                padding-bottom: 4px;
            }

            .sidbar-checkout-foot .btn,
            .btn.btn-gold {
                padding-top: 8px;
                padding-bottom: 8px;
            }

            .checkout-summary-box {
                padding: 30px;
            }

            .address-details .list-content {
                padding: 5px 0px;
            }

            .row .form-details-wrap {
                padding: 0px 0px;
            }

            .row .order-items-details-wrap {
                padding: 0px 30px;
            }

            .discount-code-wrap .discount-code-box input,
            .discount-code-wrap .discount-code-box button {
                font-size: 14px;
            }

            .form-radio-row .form-check-input {
                width: 16px;
                height: 16px;
            }

            .form-radio-row .form-check-label {
                font-size: 15px;
            }

            .form-radio-row .form-check-label {
                margin-left: 4px;
            }

            .order-heading .option-text {
                width: 40%;
            }

            .row .invoice-details-wrapper {
                padding: 0px 30px 60px 30px;
                border-left: 0px !important;
                border-top: 1px solid var(--border-color);
            }

            .info-invoice-preview {
                max-width: 100%;
                min-width: 100%;
            }

            .sidebar-checkout-wrap {
                display: none;
            }

            /* SHOW sticky bar + popup */
            body .gm-mobile-bar,
            body .gm-mobile-popup {
                display: block !important;
            }

            /* Popup & Bottom Bar */
            /* ===== MOBILE BAR ===== */
            .gm-mobile-bar,
            .gm-mobile-popup {
                display: block;
            }

            .gm-mobile-bar {
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                background-color: var(--primary-gold);
                border-top: 1px solid #ddd;
                z-index: 9999;
                padding: 10px 14px;
            }

            .gm-bar-inner {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 10px;
            }

            .gm-bar-price {
                font-size: 16px;
                font-weight: 600;
                margin-left: auto;
                margin-right: 6px;
                /* controls gap between price & arrow */
            }

            .gm-bar-checkout {
                background-color: var(--secondary-gold);
                color: #fff;
                border: none;
                padding: 8px 14px;
                border-radius: 6px;
                font-weight: 500;
            }

            .gm-bar-toggle {
                background-color: var(--secondary-gold);
                color: #fff;
                border: none;
                border-radius: 50%;
                padding: 3px;
                width: 30px;
                height: 30px;
                font-size: 14px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            /* ===== POPUP ===== */
            .gm-mobile-popup {
                position: fixed;
                left: 0;
                bottom: -100%;
                width: 100%;
                height: 55%;
                background: #fff;
                z-index: 10000;
                transition: 0.35s ease;
                border-radius: 20px 20px 0 0;
                box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
            }

            .gm-mobile-popup.active {
                bottom: 0;
            }

            .gm-popup-box {
                padding: 20px;
                height: 100%;
                display: flex;
                flex-direction: column;
            }

            .gm-popup-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-size: 20px;
                font-weight: 600;
                margin-bottom: 15px;
                padding-bottom: 12px;

                border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
            }

            .gm-popup-close {
                width: 30px;
                height: 30px;
                border: none;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                background: var(--secondary-gold);
                color: #fff;
                font-size: 22px;
                line-height: 0;
                /* 👈 VERY IMPORTANT */
            }

            .gm-popup-body {
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }

            /* Checkout Button */
            .gm-popup-checkout {
                background: var(--primary-gold);
                border: none;
                padding: 12px;
                border-radius: 8px;
                font-weight: 600;
            }

            /* Popup Buttons Wrapper */
            .gm-popup-actions {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            /* Download PDF Button */
            .gm-popup-pdf {
                background-color: var(--secondary-gold);
                color: #fff;
                border: none;
                padding: 12px;
                border-radius: 8px;
                font-weight: 500;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
            }

            /* ============================= */
            /* 4. STRUCTURED ROW LAYOUT */
            /* ============================= */
            .gm-popup-summary p {
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-size: 15px;
                margin-bottom: 10px;
                color: var(--body-text-color);
            }

            /* LEFT LABEL */
            .gm-popup-summary p strong {
                font-weight: 500;
                color: var(--body-text-color);
            }

            /* RIGHT VALUE */
            .gm-popup-summary p span,
            .gm-popup-summary p strong:last-child {
                font-weight: 600;
                color: var(--heading-color);
            }


            /* ============================= */
            /* 5. INFO ICON FIX */
            /* ============================= */
            .gm-popup-summary p i {
                margin-right: 6px;
                font-size: 14px;
                color: #777;
            }

            /* align icon + text */
            .gm-popup-summary p:nth-child(2) strong {
                display: flex;
                align-items: center;
                gap: 6px;
            }


            /* ============================= */
            /* 6. TOTAL ROW IMPROVEMENT */
            /* ============================= */
            .gm-popup-summary p:last-child {
                font-size: 16px;
                font-weight: 600;
                /* reduced from 700 for premium feel */
                color: var(--heading-color);
            }


            /* ============================= */
            /* 7. DASHED DIVIDER (MATCH SIDEBAR) */
            /* ============================= */
            .gm-popup-summary hr {
                margin: 14px 0;
                border: none;
                border-top: 1px dashed var(--border-color);
            }

            /* ===== POPUP ROW SYSTEM (UNIQUE) ===== */

            .gm-popup-summary .gm-row {
                display: flex;
                align-items: center;
                justify-content: space-between;
                font-size: 14px;
                margin-bottom: 12px;
            }

            /* LEFT */
            .gm-popup-summary .gm-left {
                display: flex;
                align-items: center;
                gap: 6px;
                color: #333;
            }

            /* CENTER BOX */
            .gm-popup-summary .gm-center {
                margin-left: auto;
                margin-right: 15px;
            }

            .gm-popup-summary .gm-box {
                background: #f4f4f4;
                border: 1px solid #dedede;
                padding: 4px 10px;
                border-radius: 6px;
                font-size: 13px;
                min-width: 32px;
                text-align: center;
            }

            /* RIGHT PRICE */
            .gm-popup-summary .gm-right {
                font-weight: 500;
            }

            /* INFO ROW */
            .gm-popup-summary .gm-info i {
                color: #777;
                font-size: 14px;
            }

            /* DASHED LINE (MATCH SIDEBAR) */
            .gm-popup-summary .gm-divider {
                border-top: 1px dashed #ccc;
                margin: 14px 0;
            }

            /* TOTAL */
            .gm-popup-summary .gm-total {
                font-weight: 700;
                font-size: 16px;
            }

            .mobile-logo {
                padding: 10px 0;
            }

            .mobile-logo img {
                max-width: 120px;
            }

        }

        /* Small devices (landscape phones, less than 768px) */
        @media (max-width: 767.98px) {
            .row .form-details-wrap {
                padding: 0px 0px;
            }

            .checkout-details-form-wrap {
                padding: 35px 20px 35px 20px;
            }

            .row .invoice-details-wrapper {
                padding: 0px 20px 40px 20px;
            }

            .checkout-details-step>ul {
                gap: 8px;
            }

            .checkout-details-step>ul li {
                gap: 6px;
            }

            .checkout-details-step>ul li i {
                font-size: 10px;
            }

            .checkout-details-step>ul li i {
                padding: 4px;
            }

            .checkout-details-form-wrap .mb-4 {
                margin-bottom: 20px !important;
            }

            .checkout-details-form-wrap .row {
                gap: 20px;
            }

            .row .order-items-details-wrap {
                padding: 0px 20px;
            }

            .order-items-details-top {
                padding: 0px 10px;
            }

            .checkout-summary-box {
                padding: 20px;
                border-radius: 15px;
            }

            .list-content li {
                gap: 4px;
                flex-wrap: wrap;
            }

            .address-details-wrap .address-details {
                margin-bottom: 20px;
            }

            .order-heading .option-text {
                width: 75%;
            }

            .info-invoice-preview {
                max-width: 595px;
                min-width: 595px;
            }

            .sidebar-checkout-wrap {
                display: none;
            }

            .packages-point-wrap::before {
                position: absolute;
                left: 8px;
            }

            .packages-item-header>span i:before {
                font-size: 28px;
                position: absolute;
                left: -6px;
                top: 2px;
            }

            .packages-point-wrap {
                padding-left: 32px;
                padding-right: 3px;
            }

            .row .col-20 {
                width: 50%;
            }

            body .gm-mobile-bar,
            body .gm-mobile-popup {
                display: block !important;
            }

            .gm-mobile-bar {
                padding: 10px 14px;
            }

            .gm-bar-price {
                font-size: 16px;
            }

            .gm-bar-checkout {
                padding: 8px 14px;
                font-size: 14px;
            }

            body {
                padding-bottom: 90px;
            }

            .summary-bar-list {
                display: grid !important;
                grid-template-columns: 1fr 1fr;
                gap: 8px;
                padding-top: 6px;
                align-items: center;
            }

            .summary-bar-list .summary-item {
                padding: 5px 8px;
                flex: unset;
                width: auto;
                min-width: unset;
            }

            /* MAKE INPUT FULL WIDTH */
            .summary-item input {
                width: 100%;
            }





            .flex-ticket-inner {
                flex-direction: column !important;
                align-items: flex-start;
                gap: 12px;
                padding: 20px;
            }

            /* LEFT (TITLE) */
            .flex-ticket-left {
                width: 100%;
                flex: unset;
            }

            .flex-ticket-left h3 {
                font-size: 18px;
                margin-bottom: 4px;
            }

            /* CENTER (TEXT) */
            .flex-ticket-center {
                width: 100%;
                max-width: 100%;
                flex: unset;
            }

            .flex-ticket-center p {
                font-size: 14px;
                line-height: 1.6;
            }

            /* RIGHT (PRICE → move bottom right) */
            .flex-ticket-right {
                width: 100%;
                display: flex;
                justify-content: flex-end;
                margin-top: 6px;
            }

            .flex-ticket-right span {
                font-size: 16px;
                font-weight: 600;
            }
            .top-bar-wrapper{
                position: relative;
            }
        }

        @media (max-width: 991.98px) and (min-width: 768px) {

            body .gm-mobile-bar,
            body .gm-mobile-popup {
                display: block !important;
            }

            .gm-mobile-bar {
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                padding: 12px 18px;
                background-color: var(--primary-gold);
                z-index: 9999;
            }

            .gm-bar-inner {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 14px;
            }

            .gm-bar-price {
                font-size: 18px;
                font-weight: 600;
            }

            .gm-bar-checkout {
                padding: 10px 18px;
                font-size: 15px;
            }

            /* prevent overlap */
            body {
                padding-bottom: 100px;
            }
        }

        /* X-Small devices (portrait phones, less than 576px) */
        @media (max-width: 575.98px) {
            .address-details-wrap .address-details {
                padding: 15px 20px;
            }

            .form-radio-row .form-check-label {
                font-size: 14px;
            }

            .checkout-details-step>ul {
                flex-wrap: wrap;
            }
        }