/* Fix Header Search Icon and Buttons */
.header-content .control-section .openMySearch,
.header-content .control-section .cart,
.header-content .control-section .account-text {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    /* margin-inline-start: 35px !important; */
    margin-inline-start: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
}

.header-content .control-section .openMySearch {
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .header-content .control-section .openMySearch {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.header-content .control-section i {
    font-size: 24px !important;
    color: #fff !important;
    line-height: 1 !important;
}

/* Fix Product Box Distortion on Homepage */
.product-item {
    background-color: #fff !important;
    /* height: 100% !important; */
    display: flex !important;
    flex-direction: column !important;
}

.product-item .img-holder {
    width: 100% !important;
    height: 300px !important;
    padding: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    background-color: #f7f7f7 !important;
}

.product-item .img-holder img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

/* Fix Category Box on Homepage */
.category-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.category-item .img-holder {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1;
    border: 2px solid #fff !important;
    border-radius: 15px !important;
}

.category-item .img-holder .img-holder-child {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
}

.category-item .img-holder img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 15px !important;
}

/* Ensure Header Content isn't shifted by gutters */
.header-content {
    direction: ltr;
}

html[dir="rtl"] .header-content {
    direction: rtl;
}

/* Sticky Header Styles */
header {
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #0083ca;
}

/* Initial State */
header .logo img {
    transition: all 0.3s ease;
    height: 83px;
    width: auto;
}

/* Active State (Scrolled) */
header.sticky-active {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Shrink Elements on Scroll (Moderate) */
header.sticky-active .logo img {
    height: 50px !important;
    width: auto !important;
}

/* Mobile Sticky Logo */
@media (max-width: 767px) {
    header.sticky-active .logo img {
        height: 45px !important;
    }
}

header.sticky-active nav>.nav-ul>li {
    padding: 15px !important;
}

header.sticky-active nav>.nav-ul>li:first-child {
    padding: 15px !important;
    margin-inline-end: 30px !important;
}

body.sticky-body {
    padding-top: 113px;
}

/* =========================================
   VENDOR REGISTRATION PAGE STYLES
   (Prefix: .vr-)
   ========================================= */

body.vendor-registration-page {
    background-color: #fcfcfc;
}

.vr-page-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
    font-family: "Bahij TheSansArabic", sans-serif;
    direction: rtl;
    text-align: right;
}

/* Header */
.vr-header {
    text-align: center;
    margin-bottom: 40px;
}

.vr-logo {
    background-color: #fff;
    padding: 20px 0 0;
    margin-bottom: 20px;
}

.vr-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.vr-page-title {
    font-size: 28px;
    font-weight: 700;
    color: #666;
    margin: 0;
    margin-bottom: 10px;
}

.vr-title-underline {
    width: 150px;
    height: 3px;
    background-color: #0083ca;
    margin: 0 auto;
}

/* Stepper */
.vr-stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.vr-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 33.33%;
}

.vr-step-icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #aeaeae;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.vr-step-label {
    font-size: 14px;
    color: #aeaeae;
    font-weight: 600;
    transition: all 0.3s;
}

/* Step Active State */
.vr-step.active .vr-step-icon {
    border-color: #0083ca;
    color: #0083ca;
    box-shadow: 0 0 0 3px rgba(0, 131, 202, 0.1);
}

.vr-step.active .vr-step-label {
    color: #0083ca;
}

/* Connector Lines */
.vr-stepper::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 16%;
    right: 16%;
    height: 4px;
    background-color: #eee;
    z-index: 1;
}

/* Form Box */
.vr-form-box {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

/* Login Link */
.vr-login-link-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    border: 1px solid #eee;
    top: -20px;
}

.vr-login-link {
    color: #444;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vr-login-link i {
    color: #28a745;
}

.vr-login-link span {
    color: #555;
    text-decoration: underline;
}

/* Inputs & Labels */
.vr-row {
    display: flex;
    /* gap: 20px; REMOVED - Using margins for better RTL support */
    margin-bottom: 20px;
    gap: 24px;
}

.vr-row>.vr-col+.vr-col {
    margin-right: 20px;
}

.vr-col {
    flex: 1;
    /* Allows columns to share space equally without overflowing */
}

.vr-col-full {
    width: 100%;
}

.vr-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    text-align: right;
}

.vr-required {
    color: red;
}

.vr-input,
.vr-select,
.vr-textarea {
    /* width: 100%; */
    width: -webkit-fill-available;
    width: -moz-fill-available;
    width: fill-available;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border 0.3s;
    background-color: #fff;
}

.vr-input:focus,
.vr-select:focus,
.vr-textarea:focus {
    border-color: #0083ca;
}

.vr-input::placeholder {
    color: #999;
}

.vr-textarea {
    height: 100px;
    resize: none;
}

/* Error State */
.vr-error-border {
    border-color: #ffcccc;
    background-color: #fff6f6;
}

.vr-error-msg {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    text-align: right;
}

/* File Input Hack */
.vr-file-input {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 3px;
    overflow: hidden;
}

.vr-file-input button {
    background: #e9e9e9;
    border: none;
    padding: 8px 15px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    border-left: 1px solid #ccc;
}

.vr-file-input .vr-file-label {
    flex-grow: 1;
    padding: 8px 10px;
    font-size: 13px;
    color: #777;
    background: #fff;
}

/* Buttons */
.vr-actions {
    display: flex;
    margin-top: 30px;
}

.vr-actions.right {
    justify-content: flex-end;
}

.vr-actions.space-between {
    justify-content: space-between;
}

.vr-btn-next {
    background-color: #0083ca;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.vr-btn-next:hover {
    background-color: #006bad;
}

.vr-btn-prev {
    background-color: #fff;
    color: #777;
    border: 1px solid #ddd;
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.vr-btn-prev:hover {
    background-color: #f9f9f9;
}

/* Steps Visibility */
.vr-step-content {
    display: none;
}

.vr-step-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Responsive */
@media (max-width: 768px) {
    .vr-row {
        flex-direction: column;
        gap: 15px;
    }

    .vr-col {
        width: 100%;
    }

    .vr-step-label {
        font-size: 12px;
    }
}

/* =========================================
   HEADER HEIGHT FIX
   ========================================= */

/* Reduce logo height for smaller header */
header .logo a img {
    height: 55px !important;
    width: auto !important;
}

/* Reduce nav items height */
nav>.nav-ul>li {
    height: 70px !important;
}

nav>.nav-ul>li:first-child {
    padding: 20px !important;
}

/* Adjust body padding to match reduced header */
body {
    padding-top: 0 !important;
}

/* Sticky header adjustments */
header.sticky-header .logo a img {
    height: 45px !important;
}

header.sticky-header nav>.nav-ul>li {
    height: 60px !important;
}

/* Mobile header adjustments */
@media (max-width: 991px) {
    header .logo a img {
        height: 40px !important;
    }

    body {
        padding-top: 0 !important;
    }
}

/* =========================================
   SEARCH BOX VISIBILITY FIX
   ========================================= */

/* Ensure search holder parent shows when toggled */
.search-holder-parent.show-search-box {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    display: flex !important;
}

/* Ensure search dropdown is visible */
.search-holder-parent .search-dropdown {
    z-index: 1001;
}

/* Fix search holder parent - use absolute positioning so it doesn't take up space when hidden */
.search-holder-parent {
    z-index: 999 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

/* Ensure header has position relative for absolute child */
header {
    position: relative !important;
}

/* =========================================
   CART PAGE FIXES
   ========================================= */

/* 1. Fix Address Tabs - Side by Side Layout */
.cart-info .cart_address-tabs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 15px !important;
    width: 100% !important;
}

.cart-info .cart_address-tabs button,
.cart-info .cart_address-tabs [role="tab"] {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    width: auto !important;
    display: flex !important;
}

/* Mobile adjustment for tabs */
@media (max-width: 576px) {
    .cart-info .cart_address-tabs {
        gap: 8px !important;
    }

    .cart-info .cart_address-tabs button {
        font-size: 11px !important;
        padding: 8px 5px !important;
    }
}

/* 2. Fix Font Awesome Icons - Ensure proper font family */
.fal,
.fa-light,
i.fal,
i[class*="fal "],
.cart-info i.fal,
.cart_address-tabs i.fal,
.map-icon-btn i.fal,
.cart_product-quantity i,
.quantity-btn i {
    font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome !important;
    font-weight: 300 !important;
    font-style: normal !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.far,
.fa-regular,
i.far {
    font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

.fas,
.fa-solid,
i.fas {
    font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome !important;
    font-weight: 900 !important;
    font-style: normal !important;
}

.fab,
.fa-brands,
i.fab {
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", FontAwesome !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

/* All FA icon elements should use the proper font */
i[class*="fa-"] {
    font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome !important;
}

/* 3. Fix Bootstrap Modal Visibility */
.modal.show,
.modal.fade.show {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.modal.show .modal-dialog {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

.modal-backdrop.show {
    opacity: 0.5 !important;
}

/* Ensure modal content is visible */
.modal.show .modal-content {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Map modal specific fixes */
#mapModal.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* =========================================
   HEADER SEARCH ICON ALIGNMENT FIX
   ========================================= */

.header-content .control-section {
    display: flex !important;
    align-items: center !important;
}

/* Align search icon container vertically */
.header-content .control-section .openMySearch {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    /* Match siblings height */
    margin-top: 0 !important;
    transform: translateY(-1px) !important;
    /* Slight lift to match exact baseline */
    padding-top: 0 !important;
}

/* =========================================
   CART PAGE RTL (ARABIC) FIXES
   ========================================= */

/* Fix Form Group Overlaps in RTL */
html[dir="rtl"] .address-content .form-group {
    margin-bottom: 20px !important;
    position: relative !important;
    width: 100% !important;
    clear: both !important;
}

html[dir="rtl"] .address-content .col-md-6 {
    float: right !important;
    /* Ensure proper float in RTL */
    clear: none !important;
}

/* Fix Input and Select Styles in RTL */
html[dir="rtl"] .address-content .form-control,
html[dir="rtl"] .address-content select {
    text-align: right !important;
    direction: rtl !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Fix Labels in RTL */
html[dir="rtl"] .address-content label {
    text-align: right !important;
    display: block !important;
    width: 100% !important;
    margin-bottom: 8px !important;
}

/* Fix Map Input Icon Positioning in RTL */
/* Fix Map Input Icon Positioning in RTL */
html[dir="rtl"] .map-input .map-icon-btn {
    left: 10px !important;
    right: auto !important;
    /* Use standard left/right to avoid logical property confusion */
    top: 50% !important;
    transform: translateY(-50%) !important;
    position: absolute !important;
    z-index: 10 !important;
}

html[dir="rtl"] .map-input {
    position: relative !important;
}

html[dir="rtl"] .map-input input {
    padding-left: 50px !important;
    /* Space for icon on left */
    padding-right: 15px !important;
}

/* =========================================
   DROPDOWN & INPUT ICON FIXES (RTL)
   ========================================= */

/* Fix Select2 Dropdown Arrow (Restore CSS Triangle) */
/* Fix Select2 Dropdown Arrow (Restore CSS Triangle) - Global/LTR Fix */
html .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #555 transparent transparent transparent !important;
    border-style: solid !important;
    border-width: 5px 4px 0 4px !important;
    height: 0 !important;
    width: 0 !important;
    margin-left: -4px !important;
    margin-top: -2px !important;
    top: 50% !important;
    left: 50% !important;
    position: absolute !important;
    transform: none !important;
    font-family: inherit !important;
    display: block !important;
    /* Force visibility */
}

/* Hide broken pseudo-elements globally */
html .select2-container--default .select2-selection--single .select2-selection__arrow::after,
html .select2-container--default .select2-selection--single .select2-selection__arrow::before {
    content: none !important;
    display: none !important;
}

/* Fix IntlTelInput Arrow (Restore CSS Triangle) - Global/LTR Fix */
html .iti__arrow,
html .iti-arrow {
    border-left: 3px solid transparent !important;
    border-right: 3px solid transparent !important;
    border-top: 4px solid #555 !important;
    border-bottom: 0 !important;
    width: 0 !important;
    height: 0 !important;
    transform: none !important;
    margin-top: -2px !important;
    font-family: inherit !important;
    opacity: 1 !important;
    content: "" !important;
    display: inline-block !important;
}

/* =========================================
   FORM SELECT RTL FIXES
   ========================================= */

html[dir="rtl"] .product-options .form-select {
    padding-left: 2.25rem !important;
    padding-right: .75rem !important;
    background-position: left .75rem center !important;
    background-size: 16px 12px !important;
    text-align: right !important;
}

.product-options .form-select {
    width: 25%;
    border-radius: 5px;
    margin-bottom: 20px;
}

html .iti__arrow::before,
html .iti-arrow::before,
html .iti__arrow::after,
html .iti-arrow::after {
    content: none !important;
}

/* =========================================
   MOBILE MENU FIXES
   ========================================= */

/* Ensure Nav is on top when active */
nav.reset-left {
    z-index: 99999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    height: 100vh !important;
    width: 100% !important;
    background-color: #fff !important;
    display: block !important;
}

/* Fix Clip Path for RTL (Button on Left) */
html[dir="rtl"] nav.reset-left {
    left: 0 !important;
    right: 0 !important;
    -webkit-clip-path: circle(150% at 50px 50px) !important;
    clip-path: circle(150% at 50px 50px) !important;
}

/* Fix Clip Path for LTR (Button on Right) */
html[dir="ltr"] nav.reset-left {
    left: 0 !important;
    right: 0 !important;
    -webkit-clip-path: circle(150% at calc(100% - 50px) 50px) !important;
    clip-path: circle(150% at calc(100% - 50px) 50px) !important;
}

.bars {
    cursor: pointer !important;
    z-index: 1002 !important;
    position: relative !important;
}

.cart-bars-holder {
    z-index: 1002 !important;
}


/* Fix Mobile Menu Height Overlay Issue and Positioning Mismatch */
@media only screen and (max-width: 992px) {
    .li-drop {
        height: auto !important;
        display: block !important;
        overflow: visible !important;
    }

    .li-drop .mega-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100% !important;
        height: auto !important;
        box-shadow: none !important;
        /* background: transparent !important; */
        background-color: #fff;
        padding: 0 10px !important;
    }

    nav>.nav-ul>li:first-child {
        position: relative;
        padding: 0 !important;
    }

    /* Reset internal structure handling to let JS do the work */
    .mega-items-parent {
        display: none;
        /* Let JS toggle this */
        flex-direction: column !important;
    }
}


/* RTL Specific Overrides (if margin adjustment is needed, usually not with absolute centering) */
/* Retaining specific RTL selectors just in case specificity is needed, 
   but pointing them to the same robust styles or simply relying on the global 'html' selector 
   which covers both [dir="rtl"] and [dir="ltr"] unless overridden. */

/* =========================================
   HEADER SEARCH ICON & ALIGNMENT FINE-TUNING
   ========================================= */

/* Header Icons Uniformity */
.header-content .control-section .openMySearch,
.header-content .control-section .account-btn,
.header-content .control-section .cartbtn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 38px !important;
    /* Enforce same height for all */
    width: 38px !important;
    /* Enforce same width if they are square-ish buttons */
    padding: 0 !important;
    /* Reset internal padding */
    margin: 0 2px !important;
    /* Slight gap */
}

.header-content .control-section .openMySearch {
    transform: none !important;
    margin-inline-start: 16px !important;
    /* Reset any previous transform */
}

/* Ensure Search Icon is centered and sized correctly */
.header-content .control-section .openMySearch i {
    font-size: 18px !important;
    line-height: 1 !important;
    margin-top: 0 !important;
}

/* Fix Select2 Alignment in RTL */
html[dir="rtl"] .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 0 !important;
    padding-left: 20px !important;
    text-align: right !important;
    direction: rtl !important;
}

html[dir="rtl"] .select2-container--default .select2-selection--single .select2-selection__arrow {
    left: 1px !important;
    right: auto !important;
}

/* Fix Phone Input (IntlTelInput) in RTL */
html[dir="rtl"] .iti {
    width: 100% !important;
    direction: ltr !important;
    /* Phone numbers are LTR */
}

html[dir="rtl"] .iti__flag-container {
    right: auto !important;
    left: 0 !important;
}

html[dir="rtl"] .iti input {
    padding-left: 52px !important;
    /* Make space for flag on left */
    padding-right: 15px !important;
    text-align: left !important;
}

/* =========================================
   ICON FIXES - RESTORE ALL BROKEN ICONS
   ========================================= */

/* Explicitly target all icon elements that might be broken */
.fa-trash,
.fa-trash-alt,
.fa-plus,
.fa-minus,
.quantity-btn i,
.cart_product-del i,
.cart_product-del:before,
.quantity-btn:before,
.plus-btn:before,
.minus-btn:before {
    font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", "Font Awesome 5 Free", FontAwesome !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    line-height: 1 !important;
    display: inline-block !important;
}

/* Fix specifically the content if needed (sometimes resetting helps) */
.fa-trash:before {
    content: "\f1f8";
}

.fa-trash-alt:before {
    content: "\f2ed";
}

.fa-plus:before {
    content: "\f067";
}

.fa-minus:before {
    content: "\f068";
}

/* Ensure quantity buttons are visible */
.cart_product-quantity .quantity-btn,
.product-quantity .quantity-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 5 !important;
}

/* Force visible color */
.cart_product-quantity .quantity-btn i,
.product-quantity .quantity-btn i {
    color: inherit !important;
    font-size: 12px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* =========================================
   ACCOUNT SIDEBAR MOBILE FIXES
   ========================================= */
@media (max-width: 991px) {
    .account-list {
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        left: -320px !important;
        /* Hidden by default */
        width: 300px !important;
        background-color: #fff !important;
        z-index: 1005 !important;
        padding-top: 60px !important;
        transition: all 0.3s ease-in-out !important;
        overflow-y: auto !important;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1) !important;
        display: block !important;
        /* Override potential display:none */
        height: 100vh !important;
    }

    .account-list.active {
        left: 0 !important;
        /* Visible */
    }

    /* Overlay styles */
    .account-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1004;
        /* Behind sidebar, above content */
        display: none;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .account-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Move trigger when active */
    .account-trigger.active {
        left: 300px !important;
        z-index: 1006 !important;
    }

    /* Ensure styles from RTL don't break logic */
    html[dir="rtl"] .account-list {
        left: auto !important;
        right: -320px !important;
    }

    html[dir="rtl"] .account-list.active {
        right: 0 !important;
        left: auto !important;
    }

    html[dir="rtl"] .account-trigger {
        right: 0;
        left: auto;
    }

    html[dir="rtl"] .account-trigger.active {
        right: 300px !important;
        left: auto !important;
    }
}

/* =========================================
   STICKY HEADER
   ========================================= */
.main-header,
body>header {
    position: sticky !important;
    position: -webkit-sticky !important;
    /* Safari support */
    top: 0 !important;
    z-index: 1000 !important;
    background-color: #0083ca !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

/* =========================================
    background-color: #0083ca !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
   CONTACT INFO SECTION (Before Footer)
   ========================================= */
.contact-info-section {
    background-color: #f9f9f9;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.contact-info-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background-color: #5cb85c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(92, 184, 92, 0.3);
}

.contact-info-icon i {
    font-size: 28px;
    color: #fff;
}

.contact-info-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.contact-info-desc {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
    line-height: 1.6;
}

.contact-info-phone,
.contact-info-email {
    font-size: 16px;
    color: #5cb85c;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.contact-info-phone:hover,
.contact-info-email:hover {
    color: #449d44;
    text-decoration: underline;
}

.contact-info-link {
    font-size: 14px;
    color: #5cb85c;
    text-decoration: underline;
    transition: color 0.3s;
}

.contact-info-link:hover {
    color: #449d44;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info-items {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-item {
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }

    .contact-info-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 576px) {
    .contact-info-section {
        padding: 30px 0;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
    }

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

    .contact-info-title {
        font-size: 16px;
    }
}