/* Google Fonts Loading */
        @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;900&family=Cinzel:wght@500;700;900&display=swap');

        /* Scoped container styling targeting only this widget wrapper */
        #bpq-widget-wrapper {
            font-family: 'Tajawal', 'Inter', sans-serif;
            background-color: #0d0d0f;
            color: #f3f4f6;
            border-radius: 20px;
            border: 1px solid rgba(199, 166, 104, 0.15);
            position: relative;
            overflow: hidden;
            direction: rtl;
            text-align: right;
            width: 100%;
            max-width: 1200px;
            margin: 20px auto;
            box-sizing: border-box;
        }

        #bpq-widget-wrapper * {
            box-sizing: border-box;
        }

        /* Font configurations */
        #bpq-widget-wrapper h1,
        #bpq-widget-wrapper h2,
        #bpq-widget-wrapper .bpq-serif {
            font-family: 'Cinzel', 'Tajawal', serif;
        }

        /* Outer layout */
        .bpq-container {
            display: flex;
            flex-direction: column;
        }



        /* =========================================
       MAIN CONTENT PANEL
       ========================================= */
        .bpq-main-content {
            flex: 1;
            padding: 30px 25px;
        }

        @media (min-width: 768px) {
            .bpq-main-content {
                padding: 40px;
            }
        }

        /* Header block */
        .bpq-header {
            margin-bottom: 35px;
            border-right: 3px solid #c7a668;
            padding-right: 15px;
        }

        .bpq-eyebrow {
            font-size: 12px;
            font-weight: 700;
            color: #8e8e93;
            letter-spacing: 1px;
            display: block;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .bpq-title-row {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .bpq-h1 {
            font-size: 26px;
            font-weight: 900;
            color: #f3f4f6;
            margin: 0;
            line-height: 1.2;
        }

        .bpq-spark-icon {
            color: #c7a668;
            animation: bpq-pulse 2s infinite ease-in-out;
        }

        .bpq-desc {
            font-size: 13.5px;
            color: #a1a1aa;
            line-height: 1.6;
            margin-top: 10px;
            max-width: 650px;
        }

        /* Form Design Cards */
        .bpq-card {
            background: #101012;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 25px;
            box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.02);
            transition: border-color 0.3s ease;
        }

        .bpq-card:hover {
            border-color: rgba(199, 166, 104, 0.15);
        }

        .bpq-card-title-row {
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding-bottom: 12px;
            margin-bottom: 20px;
        }

        .bpq-card-title-row svg {
            color: #c7a668;
        }

        .bpq-card-heading {
            font-size: 14px;
            font-weight: bold;
            color: #e5e7eb;
            letter-spacing: 0.5px;
        }

        /* Form Fields Grid */
        .bpq-grid-2 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        @media (min-width: 768px) {
            .bpq-grid-2 {
                grid-template-columns: 1fr 1fr;
            }
        }

        .bpq-grid-3 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin-top: 16px;
        }

        @media (min-width: 768px) {
            .bpq-grid-3 {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }

        .bpq-col-full {
            grid-column: 1 / -1;
        }

        /* Field Styles */
        .bpq-field-group {
            display: flex;
            flex-direction: column;
        }

        .bpq-label {
            font-size: 12px;
            font-weight: 600;
            color: #a1a1aa;
            margin-bottom: 8px;
        }

        .bpq-label-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .bpq-error-span {
            font-size: 10px;
            color: #f87171;
            font-weight: normal;
        }

        .bpq-required-mark {
            color: #c7a668;
            font-weight: bold;
        }

        .bpq-input-wrap {
            position: relative;
            display: flex;
            align-items: center;
        }

        .bpq-input-wrap svg.bpq-input-icon {
            position: absolute;
            right: 12px;
            color: #52525b;
            pointer-events: none;
            width: 16px;
            height: 16px;
        }

        /* Select specific arrow custom styling */
        .bpq-select-wrap svg.bpq-arrow-icon {
            position: absolute;
            left: 12px;
            color: #52525b;
            pointer-events: none;
            width: 14px;
            height: 14px;
        }

        .bpq-input {
            width: 100% !important;
            background: #18181b !important;
            border: 1px solid #3f3f46 !important;
            border-radius: 8px !important;
            padding: 11px 36px 11px 12px !important;
            color: #f3f4f6 !important;
            font-size: 13.5px !important;
            outline: none !important;
            transition: all 0.3s ease !important;
        }

        .bpq-input::placeholder {
            color: #a1a1aa !important;
            opacity: 0.5 !important;
            font-weight: 300 !important;
        }

        /* Adjust inputs that don't have right icons */
        .bpq-input-wrap-no-icon .bpq-input {
            padding-right: 12px !important;
        }

        .bpq-input:focus {
            border-color: #c7a668 !important;
            box-shadow: 0 0 10px rgba(199, 166, 104, 0.12) !important;
        }

        .bpq-eyebrow {
            color: #c7a668 !important;
        }

        /* Red outline for invalid inputs */
        .bpq-input-error {
            border-color: rgba(239, 68, 68, 0.5) !important;
        }

        select.bpq-input {
            appearance: none !important;
            -webkit-appearance: none !important;
            cursor: pointer !important;
        }

        textarea.bpq-input {
            resize: none !important;
            height: 75px !important;
            padding-right: 12px !important;
        }

        /* Guest Counter Custom */
        .bpq-counter-input-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #3f3f46;
            border-radius: 8px;
            background: #18181b;
            padding: 4px;
            height: 42px;
        }

        .bpq-counter-btn {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            border: 1px solid #3f3f46;
            background-color: #27272a;
            color: #e5e7eb;
            font-size: 16px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            user-select: none;
            transition: all 0.3s ease;
        }

        .bpq-counter-btn:hover {
            border-color: #c7a668;
            color: #c7a668;
        }

        .bpq-counter-value {
            font-size: 13.5px;
            font-weight: bold;
            font-family: monospace;
            color: #f0ebe1;
        }


        /* Submit Actions Container */
        .bpq-actions-row {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 15px;
        }

        @media (min-width: 768px) {
            .bpq-actions-row {
                flex-direction: row;
                align-items: center;
            }
        }

        .bpq-btn-primary {
            flex: 1;
            height: 48px;
            border-radius: 8px;
            background-color: #c7a668;
            color: #08080a;
            border: none;
            font-size: 13.5px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(199, 166, 104, 0.2);
            transition: all 0.3s ease;
        }

        .bpq-btn-primary:hover {
            background-color: #b08f53;
            box-shadow: 0 4px 20px rgba(199, 166, 104, 0.35);
        }

        .bpq-btn-primary:active {
            transform: scale(0.99);
        }

        .bpq-btn-secondary {
            height: 48px;
            padding: 0 20px;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: #d1d5db;
            font-size: 13px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .bpq-btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.06);
            border-color: rgba(199, 166, 104, 0.3);
            color: #f3f4f6;
        }

        .bpq-privacy-notice {
            text-align: center;
            font-size: 11px;
            color: #52525b;
            margin-top: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .bpq-privacy-notice svg {
            color: #c7a668;
        }


        /* =========================================
       SUCCESS TICKET VIEW (DIGITAL VOUCHER)
       ========================================= */
        .bpq-success-panel {
            display: none;
            /* Triggered via JS */
            text-align: center;
            padding: 30px 10px;
        }

        .bpq-success-orb {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: rgba(199, 166, 104, 0.08);
            border: 2px solid #c7a668;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c7a668;
            margin: 0 auto 20px auto;
            animation: bpq-bounce 1s infinite alternate;
        }

        .bpq-success-heading {
            font-size: 22px;
            font-weight: bold;
            color: #f3f4f6;
            margin: 0 0 10px 0;
        }

        .bpq-success-subtext {
            font-size: 12.5px;
            color: #a1a1aa;
            max-w: 500px;
            margin: 0 auto 25px auto;
            line-height: 1.6;
        }

        /* Prestigious Boarding Pass Receipt design */
        .bpq-voucher-card {
            max-width: 550px;
            margin: 0 auto 30px auto;
            background-color: #101013;
            border: 2px dashed rgba(199, 166, 104, 0.35);
            border-radius: 16px;
            padding: 25px;
            text-align: right;
            position: relative;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .bpq-voucher-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding-bottom: 15px;
            margin-bottom: 20px;
        }

        .bpq-voucher-logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .bpq-voucher-logo-badge {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid #c7a668;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #0c0b09;
        }

        .bpq-v-brand {
            font-family: 'Cinzel', serif;
            font-size: 13px;
            font-weight: bold;
            color: #e5e7eb;
        }

        .bpq-v-desc {
            font-family: 'Cinzel', serif;
            font-size: 8.5px;
            letter-spacing: 2.2px;
            color: #c7a668;
            text-transform: uppercase;
            display: block;
            margin-top: 1px;
        }

        .bpq-voucher-id-area {
            text-align: left;
        }

        .bpq-id-title {
            font-size: 9px;
            color: #52525b;
            display: block;
        }

        .bpq-id-code {
            font-size: 13px;
            font-weight: bold;
            font-family: monospace;
            color: #c7a668;
            background-color: #1a1815;
            border: 1px solid rgba(199, 166, 104, 0.15);
            padding: 3px 10px;
            border-radius: 4px;
            display: inline-block;
            margin-top: 3px;
            direction: ltr;
        }

        /* Voucher Table Data */
        .bpq-voucher-specs {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .bpq-spec-row {
            display: grid;
            grid-template-columns: 140px 1fr;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.03);
            padding-bottom: 10px;
        }

        .bpq-spec-name {
            font-size: 11.5px;
            color: #71717a;
        }

        .bpq-spec-val {
            font-size: 12px;
            font-weight: bold;
            color: #e5e7eb;
            text-align: left;
        }

        .bpq-spec-val-ltr {
            direction: ltr;
        }

        .bpq-voucher-notes-block {
            background-color: #141418;
            border: 1px solid #1e1e24;
            border-radius: 8px;
            padding: 10px 15px;
            margin-top: 12px;
        }

        .bpq-notes-title-inner {
            font-size: 11px;
            color: #52525b;
            display: block;
            margin-bottom: 4px;
        }

        .bpq-notes-content-inner {
            font-size: 11.5px;
            color: #d1d5db;
            line-height: 1.5;
            margin: 0;
        }

        .bpq-voucher-total-row {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 15px;
            margin-top: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .bpq-total-label {
            font-size: 12.5px;
            font-weight: bold;
            color: #c7a668;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .bpq-total-price {
            font-family: monospace;
            font-size: 14px;
            font-weight: bold;
            color: #fdfbf7;
            background-color: #0c0c0e;
            border: 1px solid rgba(255, 255, 255, 0.04);
            padding: 4px 10px;
            border-radius: 6px;
        }

        .bpq-voucher-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 20px;
            padding-top: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 9px;
            color: #52525b;
        }

        .bpq-voucher-footer span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .bpq-success-actions-row {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-w: 550px;
            margin: 0 auto;
        }

        @media (min-width: 576px) {
            .bpq-success-actions-row {
                flex-direction: row;
            }
        }

        .bpq-btn-whatsapp {
            flex: 1.3;
            height: 44px;
            background-color: #059669;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.3s;
        }

        .bpq-btn-whatsapp:hover {
            background-color: #047857;
        }

        .bpq-btn-new-calc {
            flex: 1;
            height: 44px;
            background-color: #16161a;
            border: 1px solid #c7a668;
            color: #c7a668;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .bpq-btn-new-calc:hover {
            background-color: rgba(199, 166, 104, 0.08);
            color: #e6cb9a;
        }

        .bpq-btn-print {
            height: 44px;
            padding: 0 15px;
            background-color: #0c0b09;
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #a1a1aa;
            border-radius: 8px;
            font-size: 12px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .bpq-btn-print:hover {
            background-color: #141417;
            color: #f3f4f6;
        }


        /* =========================================
       SUBMIT LOADER SIMULATOR
       ========================================= */
        .bpq-loader-overlay {
            display: none;
            /* Triggered via JS */
            position: absolute;
            inset: 0;
            background-color: rgba(7, 7, 8, 0.96);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 100;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 20px;
            text-align: center;
            user-select: none;
        }

        /* concentric luxury loaders */
        .bpq-spinner-grid {
            position: relative;
            width: 90px;
            height: 90px;
            margin-bottom: 25px;
        }

        .bpq-ring-1 {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 3px solid transparent;
            border-top-color: #c7a668;
            animation: bpq-spin 1.2s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
        }

        .bpq-ring-2 {
            position: absolute;
            inset: 8px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-bottom-color: #e6cb9a;
            animation: bpq-spin 1.8s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite reverse;
        }

        .bpq-ring-3 {
            position: absolute;
            inset: 16px;
            border-radius: 50%;
            border: 1px solid transparent;
            border-top-color: #c7a668;
            animation: bpq-spin 0.9s linear infinite;
        }

        .bpq-ring-brand {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cinzel', serif;
            font-size: 16px;
            font-weight: 900;
            color: #c7a668;
        }

        .bpq-loader-status-container {
            height: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .bpq-loader-heading {
            font-size: 15px;
            font-weight: bold;
            color: #f3f4f6;
            margin: 0;
            transition: opacity 0.3s;
        }

        .bpq-loader-sub {
            font-size: 12px;
            color: rgba(199, 166, 104, 0.8);
            margin-top: 6px;
            transition: opacity 0.3s;
        }

        .bpq-loader-firm {
            font-family: 'Cinzel', serif;
            font-size: 9px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(199, 166, 104, 0.3);
            margin-top: 35px;
        }


        /* HISTORIC SUBMISSIONS DRAWER */
        .bpq-history-drawer {
            display: none;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 30px;
            padding-top: 25px;
        }

        .bpq-history-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .bpq-history-title-comb {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .bpq-history-title-comb svg {
            color: #c7a668;
        }

        .bpq-history-title-inner {
            font-size: 13.5px;
            font-weight: bold;
            color: #f3f4f6;
        }

        .bpq-clear-history-btn {
            background: none;
            border: none;
            color: #f87171;
            font-size: 10px;
            cursor: pointer;
            padding: 0;
        }

        .bpq-clear-history-btn:hover {
            text-decoration: underline;
        }

        .bpq-history-container {
            max-height: 240px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 12.5px;
            padding-left: 5px;
        }

        /* Custom scrollbar solely inside this widget history box */
        .bpq-history-container::-webkit-scrollbar {
            width: 4px;
        }

        .bpq-history-container::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.01);
        }

        .bpq-history-container::-webkit-scrollbar-thumb {
            background: #242427;
            border-radius: 999px;
        }

        .bpq-history-container::-webkit-scrollbar-thumb:hover {
            background: #c7a668;
        }

        .bpq-history-item {
            background: #111114;
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 8px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        @media (min-width: 768px) {
            .bpq-history-item {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
        }

        .bpq-hist-item-left {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .bpq-hist-header-badge-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .bpq-hist-id-pill {
            font-family: monospace;
            font-size: 10px;
            font-weight: bold;
            color: #c7a668;
            background-color: #1a1815;
            padding: 1px 6px;
            border: 1px solid rgba(199, 166, 104, 0.1);
            border-radius: 3px;
        }

        .bpq-hist-fullname-inner {
            font-size: 12px;
            font-weight: bold;
            color: #e5e7eb;
        }

        .bpq-hist-date-inner {
            font-size: 9.5px;
            color: #52525b;
        }

        .bpq-hist-details-specs {
            font-size: 11px;
            color: #a1a1aa;
            line-height: 1.4;
        }

        .bpq-hist-details-specs strong {
            color: #d1d5db;
        }

        .bpq-hist-status-col {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px dashed rgba(255, 255, 255, 0.04);
        }

        @media (min-width: 768px) {
            .bpq-hist-status-col {
                flex-direction: column;
                align-items: flex-end;
                justify-content: initial;
                margin-top: 0;
                padding-top: 0;
                border-top: none;
                gap: 6px;
            }
        }

        .bpq-hist-est-lbl {
            font-size: 9.5px;
            color: #52525b;
            display: block;
        }

        .bpq-hist-est-val {
            font-family: monospace;
            font-size: 11px;
            font-weight: bold;
            color: #e5e7eb;
        }

        .bpq-hist-status-pill {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 9px;
            color: #fbbf24;
            background: rgba(251, 191, 36, 0.06);
            border: 1px solid rgba(251, 191, 36, 0.15);
            padding: 3px 8px;
            border-radius: 4px;
        }

        .bpq-pulse-marker {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background-color: #fbbf24;
            animation: bpq-pulse 1s infinite alternate;
        }


        /* KEYFRAMES */
        @keyframes bpq-spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes bpq-pulse {
            0% {
                opacity: 0.4;
            }

            100% {
                opacity: 1;
            }
        }

        @keyframes bpq-bounce {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-6px);
            }
        }

        /* Print styling rules is vital to output luxury print correctly */
        @media print {
            body * {
                visibility: hidden;
            }

            #bpq-widget-wrapper,
            #bpq-widget-wrapper .bpq-voucher-card,
            #bpq-widget-wrapper .bpq-voucher-card * {
                visibility: visible;
            }

            #bpq-widget-wrapper {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                border: none;
                box-shadow: none;
                background: #ffffff;
                color: #000000;
            }

            #bpq-widget-wrapper .bpq-voucher-card {
                border-color: #000000;
                box-shadow: none;
                background: #ffffff;
                color: #000000;
                width: 100%;
                max-width: 100%;
            }

            #bpq-widget-wrapper .bpq-sidebar,
            #bpq-widget-wrapper .bpq-main-content>form,
            #bpq-widget-wrapper .bpq-header,
            #bpq-widget-wrapper .bpq-badges-grid,
            #bpq-widget-wrapper .bpq-success-actions-row,
            #bpq-widget-wrapper .bpq-success-heading,
            #bpq-widget-wrapper .bpq-success-subtext,
            #bpq-widget-wrapper .bpq-success-orb {
                display: none !important;
            }
        }

        /* Entrance Animations */
        @keyframes bpq-fade-up {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bpq-sidebar {
            opacity: 0;
            animation: bpq-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .bpq-header {
            opacity: 0;
            animation: bpq-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
        }

        .bpq-card {
            opacity: 0;
            animation: bpq-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .bpq-card:nth-of-type(1) {
            animation-delay: 0.3s;
        }

        .bpq-card:nth-of-type(2) {
            animation-delay: 0.4s;
        }

        .bpq-card:nth-of-type(3) {
            animation-delay: 0.5s;
        }

        .bpq-card:nth-of-type(4) {
            animation-delay: 0.6s;
        }

        .bpq-card:nth-of-type(5) {
            animation-delay: 0.7s;
        }

        .bpq-actions-row {
            opacity: 0;
            animation: bpq-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
        }

        /* abu alkhair */
        .bpq-card-heading {
            color: #c7a668 !important;
        }


        .bpq-b-desc {
            color: #a6a6a9;

        }

        .bpq-privacy-notice {
            color: #b1b1b1;

        }

        .bpq-input::placeholder {
            color: rgba(255, 255, 255, 0.45);
            /* غير اللون حسب تصميمك */
            opacity: 1;
            /* مهم لبعض المتصفحات */
        }

        svg.bpq-spark-icon {
            display: none;
        }
#bpq-widget-wrapper option {

    background: #111111 !important;
}