﻿@font-face {
    font-family: "IBM Plex Sans Arabic";
    src:
        url("fonts/IBMPlex/alfont_com_IBMPlexSansArabic-Regular.woff2") format("woff2"),
        url("fonts/IBMPlex/alfont_com_IBMPlexSansArabic-Regular.woff") format("woff"),
        url("fonts/IBMPlex/alfont_com_IBMPlexSansArabic-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Sans Arabic";
    src:
        url("fonts/IBMPlex/alfont_com_IBMPlexSansArabic-Medium.woff2") format("woff2"),
        url("fonts/IBMPlex/alfont_com_IBMPlexSansArabic-Medium.woff") format("woff"),
        url("fonts/IBMPlex/alfont_com_IBMPlexSansArabic-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Sans Arabic";
    src:
        url("fonts/IBMPlex/alfont_com_IBMPlexSansArabic-SemiBold.woff2") format("woff2"),
        url("fonts/IBMPlex/alfont_com_IBMPlexSansArabic-SemiBold.woff") format("woff"),
        url("fonts/IBMPlex/alfont_com_IBMPlexSansArabic-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Sans Arabic";
    src:
        url("fonts/IBMPlex/alfont_com_IBMPlexSansArabic-Light.woff2") format("woff2"),
        url("fonts/IBMPlex/alfont_com_IBMPlexSansArabic-Light.woff") format("woff"),
        url("fonts/IBMPlex/alfont_com_IBMPlexSansArabic-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}



html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
    color: #161616;
}

body {
    font-family: "IBM Plex Sans Arabic", sans-serif !important;
    color: #161616;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: rgba(243, 244, 246, 0.5);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #D2D6DB;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

/* Globals */

.content-wrapper {
    padding-inline: 80px;
    max-width: 1920px;
    margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 991px) {
    .content-wrapper {
        padding-inline: 40px;
    }
}

@media (max-width: 576px) {
    .content-wrapper {
        padding-inline: 16px;
    }
}

.cursor-pointer {
    cursor: pointer;
}

.padding-social {
    border-radius: 50%;
    border: 1px solid #ffffff4d;
    border-radius: 4px;
    padding: 6px;

    &:hover {
        background-color: #ffffff4d;
    }
}

.mt-10 {
    margin-top: 2.5rem !important;
}

/* =============================================
   Form Elements
   ============================================= */

/* Form Labels */
label {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px !important;
    color: #161616 !important;
}

/* Required Field Indicator */
.required {
    color: #b42318;
}

/* Input, Textarea, Select Base Styles */
select,
textarea,
input:not([type="range"]):not([type="checkbox"]):not([type="radio"]) {
    border: 1px solid #E5E7EB !important;
    outline: 0;
    background-color: #F3F4F6 !important;
    color: #161616 !important;
    direction: inherit !important;
    position: relative;
    border-radius: 8px !important;
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color 0.3s ease, border-radius 0.2s ease, border-bottom-color 0.3s ease, background-color 0.2s ease;
}

/* Sidebar Nav Button (Collapsible categories) */
.nav__btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px !important;
    border: 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
}

.nav__btn .select-arrow-overlay {
    position: static !important;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

/* Rotate arrow when section is expanded (not collapsed) */
.nav__btn:not(.collapsed) .select-arrow-overlay {
    transform: rotate(180deg);
}

.nav__btn:hover {
    color: #b87b02 !important;
}

input:not([type="range"]):not([type="checkbox"]):not([type="radio"]):focus,
textarea:focus {
    background-color: #fff !important;
    border-color: #E5E7EB !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Textarea also turns white on focus (explicit override) */
textarea:focus {
    background-color: #fff !important;
}

/* Remove number input spinners */
input[type="number"] {
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}

@keyframes expandLine {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.animated-input-group {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.animated-input-group.has-icon-outside {
    overflow: visible;
}

.animated-input-group .form-control {
    border: 1px solid #E5E7EB !important;
    background: #F3F4F6 !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    position: relative;
    z-index: 2;
    width: 100%;
    transition: border-color 0.3s ease, border-radius 0.2s ease, border-bottom-color 0.3s ease, background-color 0.2s ease;
}

.animated-input-group .form-control:focus {
    border-color: #E5E7EB !important;
    border-radius: 8px !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: #fff !important;
}

.animated-input-group .focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    /* Slightly thicker for better visibility when wrapped */
    background-color: #0d121c;
    width: 100%;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    pointer-events: none;
}

.animated-input-group .form-control:focus~.focus-line,
.animated-input-group .form-select:focus~.focus-line {
    transform: scaleX(1);
}


.animated-input-group .search-icon {
    position: absolute;
    inset-inline-start: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #161616;
    font-size: 18px;
    pointer-events: none;
    z-index: 4;
}


.animated-input-group:not(.has-prefix) .form-control:not(.form-select) {
    padding-left: 45px !important;
    padding-right: 16px !important;
}



/* Prefix handling for animated input group */
[dir="rtl"] .animated-input-group.has-prefix .form-control {
    padding-left: 45px !important;
}

[dir="ltr"] .animated-input-group.has-prefix .form-control {
    padding-right: 45px !important;
}


.animated-input-group .input-prefix {
    position: absolute;
    inset-inline-end: 1px;
    top: 1px;
    bottom: 1px;
    width: 35px;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #6B7280;
    border-radius: 7px 0 0 7px;
    z-index: 4;
}

[dir="ltr"] .animated-input-group .input-prefix {
    border-radius: 0 7px 7px 0;
}

[dir="rtl"] .animated-input-group .form-control:not(.form-select) {
    padding-right: 40px !important;
    padding-left: 14px !important;
}

.animated-input-group .form-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: none !important;
    background-color: #F3F4F6 !important;
    padding-right: 40px !important;
    padding-left: 14px !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    transition: border-color 0.3s ease, border-radius 0.2s ease, border-bottom-color 0.3s ease, background-color 0.2s ease;
    cursor: pointer;
}

.animated-input-group .form-select {
    padding-left: 40px !important;
    padding-right: 14px !important;
}

.animated-input-group .form-select:focus {
    background-color: #fff !important;
    border-top-color: #E5E7EB !important;
    border-left-color: #E5E7EB !important;
    border-right-color: #E5E7EB !important;
    border-bottom-color: #0d121c !important;
    border-bottom-width: 2px !important;
    border-radius: 8px 8px 0 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.animated-input-group .select-arrow-overlay {
    position: absolute;
    inset-inline-end: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 4;
    transition: transform 0.3s ease;
}


.animated-input-group.select-open .select-arrow-overlay {
    transform: translateY(-50%) rotate(180deg);
}


/* =============================================
   Radio Button Styles 
   ============================================= */

/* Suppress browser default focus ring */
[type="checkbox"]:focus,
[type="radio"]:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.radio-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    vertical-align: top;
    width: 100%;
}

.radio-wrapper span {
    color: #1F2A37;
    font-weight: 400;
}


/* The radio circle */
.radio-wrapper .radio-input {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid #D2D6DB;
    background-color: #fff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    margin: 0;
}

.radio-wrapper .radio-input::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background-color: #b87b02;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* ── HOVER: halo via box-shadow ── */
.radio-wrapper:hover .radio-input {
    box-shadow: 0 0 0 6px #F3F4F6 !important;
}

/* Hover dot color change */
.radio-wrapper:hover .radio-input::after {
    background-color: #a06b02 !important;
}



/* ── CHECKED: gold border, dot appears, white bg ── */
.radio-wrapper .radio-input:checked {
    border-color: #b87b02 !important;
    background-color: #fff !important;
}

.radio-wrapper .radio-input:checked::after {
    opacity: 1 !important;
}

/* Disabled */
.radio-wrapper.disabled,
.radio-wrapper .radio-input:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Error state */
.radio-wrapper.error .radio-input {
    border-color: #d92d20;
    background-color: #fef3f2;
}

.radio-wrapper.error .radio-input:checked::after {
    background-color: #d92d20;
}


/* Force direction inherit for specific input types to follow document direction */
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="url"],
[type="email"],
[type="number"],
[type="tel"],
[type="url"] {
    direction: inherit !important;
}

input:hover,
textarea:hover,
select:hover {
    border: 1px solid #9da4ae !important;
}

/* General focus rule (excluding radio/checkbox) */
input:not([type="radio"]):not([type="checkbox"]):focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-top: 1px solid #9da4ae !important;
    border-left: 1px solid #9da4ae !important;
    border-right: 1px solid #9da4ae !important;
    border-bottom: 2px solid #0d121c !important;
    border-radius: 8px 8px 0px 0px !important;
    background-color: #fff !important;
    color: #161616 !important;
}

/* Placeholders */
select::placeholder,
textarea::placeholder,
input::placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: start !important;
    color: #6c737f !important;
}

/* Phone Number Input */
.number-input {
    text-align: right !important;
}

:dir(ltr) .number-input {
    text-align: left !important;
}

/* Country Code Select */
.code-select {
    width: 120px !important;
    color: #161616 !important;
}

/* Telephone Input Border Radius (RTL) */
.tel {
    border-radius: 4px 0px 0px 4px !important;
}

/* =============================================
   Phone Field — unified country code + number input
   ============================================= */
.phone-field {
    position: relative;
    display: flex;
    align-items: stretch;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #F3F4F6;
    overflow: hidden;
    transition: border-color 0.2s ease, border-bottom-color 0.2s ease, background-color 0.2s ease;
}

/* Country code select inside phone-field */
.phone-field .phone-code-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-image: url("../assets/icons/arrow-down-01.svg") !important;
    background-repeat: no-repeat !important;
    background-size: 16px 16px !important;
    background-position: left 6px center !important;
    padding: 10px 8px 10px 28px !important;
    font-size: 14px !important;
    color: #161616 !important;
    font-weight: 500;
    min-width: 80px;
    cursor: pointer;
    flex-shrink: 0;
    outline: none !important;
    box-shadow: none !important;
    direction: ltr;
}

/* Thin vertical divider between code and number */
.phone-field .phone-divider {
    width: 1px;
    background-color: #D1D5DB;
    align-self: stretch;
    flex-shrink: 0;
    margin: 6px 0;
}

/* Number input inside phone-field */
.phone-field .phone-number-input {
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    color: #161616 !important;
    outline: none !important;
    box-shadow: none !important;
    min-width: 0;
    direction: ltr;
    text-align: left;
}

/* Focus-line shared across the whole field */
.phone-field .focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #0d121c;
    width: 100%;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    pointer-events: none;
}

/* Any child focused → expand the line + show bottom border */
.phone-field:focus-within {
    border-bottom-color: #0d121c;
    border-bottom-width: 2px;
    border-radius: 8px 8px 0 0;
    background: #fff;
}

.phone-field:focus-within .phone-divider {
    background-color: #b87b02;
}

.phone-field:focus-within .focus-line {
    transform: scaleX(1);
}

/* Hover */
.phone-field:hover {
    border-color: #9da4ae;
}


/* Select Arrow Styling */
.form-select,
.code-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("../assets/icons/arrow-down-01.svg") !important;
    background-repeat: no-repeat !important;
    background-position: left 0.75rem center !important;
    padding-left: 2.25rem !important;
    background-size: 20px 20px;
    transition: border-color 0.3s ease, border-bottom-color 0.3s ease, border-radius 0.2s ease;
}

:dir(ltr) .form-select,
:dir(ltr) .code-select {
    background-position: right 0.75rem center !important;
    padding-right: 2.25rem !important;
    padding-left: 0.75rem !important;
}

/* Login Page Styles */
.login-page-bg {
    background-color: #f3f4f6;
}

.login-form-column {
    padding: 24px;
}

.login-bg-image {
    background-image: url("/assets/images/panner.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    max-width: 480px;
}

@media (min-width: 1540px) {
    .login-bg-image {
        max-width: 630px;
    }
}

.login-form-container {
    display: flex;
    padding: 40px;
    flex-direction: column;
    gap: 16px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow:
        0 1px 3px 0 rgba(16, 24, 40, 0.05),
        0 1px 2px 0 rgba(16, 24, 40, 0.05);
    width: 100%;
    max-width: 588px;
}

.login-header {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.login-header-logo {
    width: 84px;
    height: auto;
}

.login-title {
    color: var(--Text-text-default, #161616);
    text-align: start;
    font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
    font-size: var(--Size-Display-typo-size-display-sm, 30px);
    font-weight: 700;
    line-height: var(--Line-Height-Display-line-heights-display-sm, 38px);
}

.login-form .form-label {
    color: var(--Form-field-text-label, #161616);
    text-align: start;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.login-form .form-control,
.login-form .form-select {
    height: 44px;
    padding: 0.55rem 0.85rem;
    font-size: 16px;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    transition: all 0.15s ease-in-out;
}

.login-form .form-select {
    padding-inline-end: 2.2rem;
    padding-inline-start: 2.2rem;
    background-position: left 0.75rem center;
    direction: rtl;
}

.login-form .form-select:not([value=""]):valid {
    color: #384250;
}

.login-form .form-select option {
    background: #fff;
    color: #1f2937;
    direction: rtl;
}

.login-form .form-select option:disabled {
    color: #6c737f;
}

.password-toggle {
    border: none;
    background: none;
    padding: 0;
    color: #6b7280;
    text-decoration: none;
    line-height: 1;
    z-index: 2;
}

.password-toggle:hover {
    color: #1b8354;
}

.login-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 6px;
}

.login-actions .btn {
    height: 42px;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
}

.login-btn {
    display: flex;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding: var(--Global-spacing-none, 0) var(--Button-buttons-lg-padding, 16px);
    justify-content: center;
    align-items: center;
    gap: var(--Button-buttons-lg-gap, 4px);
    border-radius: var(--Radius-radius-sm, 4px);
    background: var(--Gold-700-Color, #b87b02);
    border: none;
    color: var(--Text-text-oncolor-primary, #fff);
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    transition: background-color 0.15s ease-in-out;
}

.login-btn:hover {
    background-color: #9f7113;
    color: #fff;
}

.login-secondary-btn {
    display: flex;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding: var(--Global-spacing-none, 0) var(--Button-buttons-lg-padding, 16px);
    justify-content: center;
    align-items: center;
    gap: var(--Button-buttons-lg-gap, 4px);
    border-radius: var(--Radius-radius-sm, 4px);
    background: var(--Button-button-background-neutral-default, #f3f4f6);
    border: 1px solid #e0e3e7;
    color: var(--Text-text-default, #161616);
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.login-secondary-btn:hover {
    background: #e2e6ea;
    color: #1d2229;
}

.login-divider {
    margin: 10px 0 14px;
    border-top: 2px solid #b8eacb;
}

.login-register-copy {
    color: var(--Text-text-display, #1f2a37);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.login-register-link {
    color: var(--Link-link-primary, #1b8354);
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.login-register-link:hover {
    color: #166a42;
}

.login-info-btn {
    align-self: flex-start;
    display: flex;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding: var(--Global-spacing-none, 0) var(--Button-buttons-lg-padding, 16px);
    justify-content: center;
    align-items: center;
    gap: var(--Button-buttons-lg-gap, 4px);
    border-radius: 4px;
    border: 1px solid #cfd5db;
    background: transparent;
    color: var(--Text-text-default, #161616);
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.login-info-btn:hover {
    background: #eef1f4;
    color: #262b31;
}

.form-check-input:checked {
    background-color: #1b8354;
    border-color: #1b8354;
}

.form-check-input:focus {
    border-color: #1b8354;
    box-shadow: 0 0 0 0.2rem rgba(27, 131, 84, 0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-form-column {
        padding: 14px;
    }

    .login-form-container {
        padding: 28px 18px;
        margin: 0;
        border-radius: 10px;
    }

    .login-title {
        color: var(--Text-text-default, #161616);
        text-align: right;
        font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
        font-size: var(--Size-Display-typo-size-display-sm, 30px);
        font-style: normal;
        font-weight: 700;
        line-height: var(--Line-Height-Display-line-heights-display-sm, 38px);
        /* 126.667% */
    }

    .login-register-copy {
        color: var(--Text-text-display, #1f2a37);
        text-align: right;
        font-family: "IBM Plex Sans Arabic";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        /* 150% */
    }

    .login-register-link {
        color: var(--Link-link-primary, #1b8354);
        font-family: "IBM Plex Sans Arabic";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }

    .login-actions .btn {
        font-size: 15px;
    }

    .login-info-btn {
        font-size: 18px;
    }
}

@media (max-width: 420px) {
    .login-actions {
        gap: 10px;
    }

    .login-actions .btn {
        font-size: 14px;
        padding-inline: 6px;
    }
}

h1 {
    font-weight: 600;
    font-size: 60px;
    line-height: 72px;
    color: #161616;

    @media (max-width: 992px) {
        font-size: 31px;
        line-height: normal;
    }
}

.bg-neutral {
    background-color: #f3f4f6;
}

/* Ø§ÙØªØ±Ø§Ø¶ÙŠ: Ø¹Ø±Ø¨ÙŠ */
.logo-en {
    display: none;
}

.logo-ar {
    display: inline-block;
}

/* Ø¥Ù†Ø¬Ù„ÙŠØ²ÙŠ */
html[lang="en"] .logo-en {
    display: inline-block;
}

html[lang="en"] .logo-ar {
    display: none;
}

.brand-logo {
    height: 70px;
}

@media (max-width: 991.98px) {
    .brand-logo {
        height: 60px;
    }

    .navbar-brand {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .main-navbar {
        min-height: 80px;
    }

    .navbar-toggler {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    #lang-toggle-mobile {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

/* Topbar styles */

.title {
    font-weight: 500;
    color: #161616;
    font-size: 14px;

    @media (max-width: 768px) {
        font-size: 14px;
    }
}

.topbar-title {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 0.5rem;
}

.check {
    color: #1b8354;
    font-size: 14px;
    cursor: pointer;
}

.titleBanner,
.fa-angle-down {
    color: #1b8354;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

.topbar-container {
    background-color: #f3f4f6 !important;
    padding: 0.5rem 0rem;
    overflow-x: hidden;
}

.topbar {
    border: none !important;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.topbar-link {
    border-radius: 50%;
    border: 1px solid #1b8354;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    width: 48px;
    height: 48px;
}

.w-24-h-24 {
    width: 24px;
    height: 24px;
}

.inner-box {
    width: 76%;
    align-items: start;
    display: flex;
}

@media (max-width: 991px) {
    .inner-box {
        width: 100%;
    }
}

.topbar-container .inner-box {
    margin-inline: 0 !important;
    /* replaces .mx-4 margins in HTML */
    padding-inline: 1.5rem;
    /* preserve visual spacing */
    box-sizing: border-box;
}

@media (max-width: 576px) {
    .topbar-container .inner-box {
        padding-inline: 1rem;
        /* tighter spacing on small screens */
    }
}

.topbar-container .row.mx-4 {
    margin-inline: 0 !important;
    /* avoid content exceeding viewport width */
    padding-inline: 1.5rem;
    /* keep intended gap */
    box-sizing: border-box;
}

.topbar-footer {
    align-items: center;
    background-color: #f3f4f6;
    border: 0;
    padding-bottom: 1.5rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

/* transition helpers for topbar chevron */
.transition-icon {
    transition: transform 0.3s ease;
}

.rotate-180 {
    transform: rotate(180deg);
}

.w-20-h-20 {
    width: 20px;
    height: 20px;
}

section {
    padding-block: 40px;
}

/* hero section */
.bg-hero1 {
    /* background-image: url("../assets/images/Hero Section.svg"); */
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
}

.bg-hero2 {
    background-image: url("../assets/images/Hero Section Web - 2 copy 1.svg");
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
}

.bg-hero3 {
    background-image: url("../assets/images/Hero Section Web - 3 copy 1.svg");
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
}

.bg-hero4 {
    background-image: url("../assets/images/Hero Section Web - 4 copy 1.svg");
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
}

.img-overlay-1 {
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    width: 100%;
    height: 100%;
}

.img-overlay-2 {
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    width: 100%;
    height: 100%;
}

#HeroCarousel .item {
    min-height: 75vh;
    height: 75vh;
    display: flex;
    align-items: center;
}

@media (max-width: 576px) {

    #hero,
    #HeroCarousel,
    #HeroCarousel .item {
        min-height: 50vh;
        height: 50vh;
    }
}

#HeroCarousel .owl-dots {
    position: absolute;
    bottom: 2rem;
    inset-inline-end: 50%;
    transform: translateX(50%);
    text-align: center;

    @media (max-width: 768px) {
        bottom: 0.5rem;
    }
}

[dir="rtl"] #HeroCarousel .owl-dots {
    transform: translateX(-50%);
}

.owl-theme .owl-dots {
    display: flex;
    flex-direction: row;
    gap: .5rem;
    justify-content: center;
}

.owl-theme .owl-dots .owl-dot {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
    cursor: pointer;
    margin: 0 !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 4px;
    background: #e5e7eb;
    display: block;
    border-radius: 50%;
    transition: background 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #B87B02 !important;
}

.bottom-55 {
    bottom: -55px;

    @media (max-width: 768px) {
        bottom: -90px;
    }

    @media (max-width: 576px) {
        bottom: -139px;
    }
}

.border-card {
    border: 1px solid #d2d6db;
}

.w-card {
    width: 75%;

    @media (max-width: 960px) {
        width: 92%;
    }

    @media (max-width: 768px) {
        width: 99%;
    }
}

.title-card {
    font-size: 16px;

    @media (max-width: 768px) {
        font-size: 12px;
    }
}

.margin-top-5 {
    margin-top: 4.5rem;

    @media (max-width: 768px) {
        margin-top: 6rem;
    }
}

.padding-inline-80 {
    padding-inline: 80px;

    @media (max-width: 768px) {
        padding-inline: 20px;
    }
}

#hero .owl-dot {
    @media (max-width: 960px) {
        visibility: visible !important;
    }
}

/* Saudi Founding Day Hero Styles */
.founding-day-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 32px;
    height: 100%;
    justify-content: start;
    text-align: start;
    z-index: 2;
    position: relative;
}

.founding-day-logo {
    display: flex;
    justify-content: start;
    align-items: start;
}

.founding-day-logo-img {
    width: 120px;
    height: 120px;
    max-width: 120px;
    max-height: 120px;
}

.founding-day-title {
    color: #422e2b;
    text-align: right;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 72px;
    letter-spacing: -1.2px;
    margin: 0;
}

.founding-day-description {
    color: #181010;
    text-align: right;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
    max-width: 800px;
}

.bg-hero2 .founding-day-title,
.bg-hero3 .founding-day-title,
.bg-hero4 .founding-day-title {
    color: #fff;
}

.bg-hero2 .founding-day-description,
.bg-hero3 .founding-day-description,
.bg-hero4 .founding-day-description {
    color: #fff;
}

@media (max-width: 768px) {
    .founding-day-content {
        padding: 16px 20px;
        gap: 16px;
    }

    .founding-day-logo-img {
        width: 80px;
        height: 80px;
        max-width: 80px;
        max-height: 80px;
    }

    .founding-day-title {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -0.8px;
    }

    .founding-day-description {
        font-size: 16px;
        line-height: 24px;
    }
}

.default-color {
    color: #161616;
}

.primary-color {
    color: #384250;
}

.divider {
    background-color: #d2d6db;
    height: 1px;
}

/* navbar styles */
.navbar .nav-link {
    position: relative;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid transparent;
    border-radius: 4px;
    color: #161616;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.navbar .nav-link:hover {
    background-color: #f3f4f6;
}

.navbar .nav-link:hover::before {
    content: "";
    position: absolute;
    bottom: -2px;
    inset-inline-end: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    height: 6px;
    width: 80%;
    background: #9da4ae;
}

:dir(ltr) .navbar .nav-link:hover::before {
    transform: translate(50%, 50%);
    bottom: 3px;
}

.navbar .nav-link.active,
.navbar .nav-link[aria-current="page"] {
    background-color: #b87b02;
    color: #fff !important;
    position: relative;
    font-weight: 600;
}

/* Mobile navbar layout */
@media (max-width: 991.98px) {
    .navbar .content-wrapper {
        position: relative;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand {
        position: absolute;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
    }

    .navbar-toggler {
        order: 0 !important;
        margin-left: 0 !important;
    }

    #lang-toggle-mobile {
        order: 2 !important;
        margin-right: 0 !important;
        font-size: 14px;
        font-weight: 500;
        color: #161616;
    }
}

.navbar .nav-link.active::before,
.navbar .nav-link[aria-current="page"]::before {
    content: "";
    position: absolute;
    bottom: -2px;
    inset-inline-end: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    height: 6px;
    width: 80%;
    background: #dba102;
}

:dir(ltr) .navbar .nav-link.active::before,
:dir(ltr) .navbar .nav-link[aria-current="page"]::before {
    transform: translate(50%, 50%);
    bottom: 3px;
}

.navbar .nav-link:active::before {
    content: "";
    position: absolute;
    bottom: -2px;
    inset-inline-end: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    height: 6px;
    width: 80%;
    background: #161616;
}

.navbar .dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-inline-start: 0.35rem;
    background: url("/assets/icons/arrow-down-01.svg") no-repeat center;
    border: 0;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.navbar .nav-link.active.dropdown-toggle::after,
.navbar .nav-link[aria-current="page"].dropdown-toggle::after {
    filter: invert(1);
}

.navbar .show>.dropdown-toggle::after,
.navbar .dropdown-toggle.show::after,
.navbar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.navbar .dropdown-menu .dropdown-item {
    border-radius: 0.5rem;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
    color: #1f2a37;
    font-weight: 500;
    padding: 10px;
    text-align: start;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background-color: #f3f4f6;
    text-decoration: underline !important;
}

.navbar {
    position: relative;
}

.navbar .dropdown-menu {
    top: 100%;
    inset-inline: 0;
    max-width: none;
}

.navbar .dropdown-menu.mega-menu {
    border-radius: 12px;
    overflow: hidden;
}

.mega-inner {
    background: #fff;
}

.mega-list {
    margin: 0;
}

.mega-list .dropdown-item {
    border-radius: 8px;
    padding: 10px 12px;
    color: #1f2a37;
    font-weight: 500;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
    white-space: normal;
}

.mega-list .dropdown-item:hover {
    background-color: #f3f4f6;
    text-decoration: underline !important;
}

.dropdown {
    position: static;
}

@media (max-width: 991.98px) {

    /* offcanvas body nav layout */
    .nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
}

.offcanvas-backdrop {
    display: none !important;
}

.nav-font-size {
    font-size: 1rem;

    @media (max-width: 1270px) {
        font-size: 0.6rem;
    }
}

.w-navbar-img {
    width: 22px;
    height: 22px;

    @media (max-width: 1270px) {
        width: 16px;
        height: 16px;
    }
}

.p-navbar {
    padding-inline: 1rem !important;
    padding-block: 1.5rem !important;

    @media (max-width: 1270px) {
        padding-inline: 0.5rem !important;
        padding-block: 1rem !important;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 1000;
        padding: 1rem;
        border-top: 1px solid #ddd;
    }

    .navbar-collapse.show {
        display: block;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f2f2f2;
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

.nav__item {
    border-bottom: 1px solid var(--border);
}

.nav__btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #fff;
    border: 0;
    cursor: pointer;
    text-align: right;
    font-size: 16px;
}

.nav__btn img {
    transition: transform 0.3s ease;
}

.nav__btn[aria-expanded="true"] img {
    transform: rotate(180deg);
}

.nav__btn.active {
    background-color: #b87b02;
    color: #fff;
}

.nav__btn.active img {
    filter: invert(1);
}

.submenu {
    display: none;
    padding: 0 16px 12px;
}

.submenu.show {
    display: block;
}

.submenu a {
    display: block;
    padding: 10px 8px;
    color: #161616;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
}

.submenu a:hover {
    background-color: #f3f4f6;
    color: #1b8354;
}

.nav__item[aria-expanded="true"] .submenu {
    display: block;
}

@media (max-width: 991.98px) {

    .main-navbar .navbar-collapse,
    .main-navbar .top-icons {
        display: none !important;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
    }

    #mainMenu.drawer {
        display: none;
    }
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none !important;
    }

    #mainMenu {
        display: none !important;
    }

    .submenu {
        position: absolute;
        inset: auto auto auto 0;
        min-width: 220px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        display: none;
        padding: 6px;
    }

    .submenu.show {
        display: block;
    }

    .nav__item[aria-expanded="true"] .submenu {
        display: block;
    }
}

/* ===== Mobile only ===== */
@media (max-width: 991.98px) {

    /* offcanvas body nav layout */
    .nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
}

.margin-top-16 {
    margin-top: 16px;
}

.margin-bottom-16 {
    margin-bottom: 16px;
}

.wfull {
    width: auto;

    @media (max-width: 768px) {
        width: 100%;
    }
}

/* footer styles */
.site-footer.sfc-footer {
    background: #0d0f12;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 42px;
    padding-bottom: 0;
}

.sfc-footer a {
    color: inherit;
}

.sfc-footer__top {
    direction: ltr;
}

.sfc-footer__top .row {
    align-items: start;
}

.sfc-footer__top .row:first-child {
    margin-bottom: 24px;
}

.sfc-footer__left,
.sfc-footer__right {
    direction: rtl;
}

.sfc-footer__left {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.sfc-footer__contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.sfc-footer__contact-item {
    flex: 1 1 190px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Tab-vertical-tab-sm-button-v-padding, 2px);
    position: relative;
    padding-right: 30px;
}

.sfc-footer__contact-head {
    display: flex;
    align-items: center;
    color: #d7d8dc;
    font-size: 14px;
    font-weight: 400;
    justify-content: flex-start;
}

.sfc-footer__contact-head span {
    order: 1;
    color: var(--Text-text-oncolor-primary, #fff);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.sfc-footer__contact-head i {
    font-size: 16px;
    color: #d7d8dc;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.sfc-footer__contact-value {
    margin: 0;
    text-decoration: none;
    word-break: break-word;
    color: var(--Text-text-oncolor-primary, #fff);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.sfc-footer__apps p {
    margin: 0 0 14px;
    color: var(--Text-text-oncolor-primary, #fff);
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.sfc-footer__store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sfc-store-badge {
    min-width: 160px;
    border-radius: 8px;
    background: #ffffff;
    color: #121212;
    border: 1px solid #ffffff;
    text-decoration: none;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s ease;
}

.sfc-store-badge:hover {
    opacity: 0.88;
}

.sfc-store-badge i {
    font-size: 22px;
}

.sfc-store-badge small {
    display: block;
    font-size: 9px;
    letter-spacing: 0.04em;
    color: #6b6b6b;
    line-height: 1.15;
}

.sfc-store-badge strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    color: #111111;
}

.sfc-footer__heading {
    margin: 0 0 10px;
    color: #fff;
    text-align: start;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.sfc-footer__newsletter {
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    direction: ltr;
    max-width: 320px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.sfc-footer__newsletter button {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    background: #b87b02;
    color: #fff;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    border: 0;
    width: auto;
    min-width: 80px;
    height: 40px;
    cursor: pointer;
    white-space: nowrap;
}

.sfc-footer__newsletter input {
    flex: 1;
    border: 0;
    outline: none;
    padding: 10px 12px;
    text-align: right;
    direction: rtl;
    background: #ececec;
    color: #1a1a1a;
    height: 40px;
    min-width: 200px;
}

.sfc-footer__newsletter input::placeholder {
    color: #384250;
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.sfc-footer__social-title {
    margin: 18px 0 10px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--Text-text-oncolor-primary, #fff);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.sfc-footer__social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
    direction: rtl;
    text-align: right;
}

.sfc-social-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #72757d;
    border-radius: 4px;
    color: #e8e8ea;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sfc-social-btn:hover {
    color: #111111;
    background: rgba(255, 255, 255, 0.3);
}

.sfc-social-btn i {
    line-height: 1;
    font-size: 14px;
}

.sfc-footer__bottom {
    margin-top: 28px;
}

.sfc-footer__bottom .row {
    justify-content: space-between;
    align-items: center;
}

.sfc-footer__bottom .col-lg-7,
.sfc-footer__bottom .col-lg-5,
.sfc-footer__bottom .col-md-6,
.sfc-footer__bottom .col-12 {
    display: flex;
    align-items: center;
}

.sfc-footer__bottom .col-lg-7,
.sfc-footer__bottom .col-md-6:first-child {
    justify-content: space-between;
}

.sfc-footer__bottom .col-lg-5 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.sfc-footer__bottom .col-lg-5 img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Medium screens (tablets) - equal columns with proper alignment */
@media (min-width: 768px) and (max-width: 991.98px) {
    .sfc-footer__bottom .col-md-6:first-child {
        justify-content: space-between;
    }

    .sfc-footer__bottom .row {
        align-items: start;
    }
}

/* Small screens - stack vertically */
@media (max-width: 767.98px) {
    .sfc-footer__bottom .col-12 {
        margin-bottom: 20px;
    }

    .sfc-footer__bottom .col-12:last-child {
        margin-bottom: 0;
    }
}

.sfc-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.sfc-footer__links a {
    color: var(--Link-link-oncolor, #fff);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.sfc-footer__links a:hover {
    border-bottom-color: #d0d3d9;
    color: rgba(255, 255, 255, 0.8);
}

.sfc-footer__copyright {
    margin: 0;
    color: var(--Text-text-oncolor-primary, #fff);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

/* Hidden on desktop, shown only in mobile media query */
.sfc-footer__copyright--mobile {
    display: none;
}

.sfc-footer__logo {
    display: none;
    width: 84px;
    height: auto;
}

/* Register Page Styles */
.register-form-column {
    height: 100vh;
    overflow: hidden;
}

.register-form-container {
    max-height: 90vh;
    overflow-y: auto;
}

.register-title {
    color: var(--Text-text-default, #161616);
    text-align: right;
    font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
    font-size: var(--Size-Display-typo-size-display-sm, 30px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Line-Height-Display-line-heights-display-sm, 38px);
}

.register-label {
    text-align: right;
}

.register-input {
    text-align: right;
}

.register-country-code {
    flex: 0 0 120px;
    text-align: right;
}

.register-phone-input {
    flex: 1;
    text-align: right;
    direction: rtl;
}

.register-submit-btn {
    display: flex;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding: var(--Global-spacing-none, 0) var(--Button-buttons-lg-padding, 16px);
    justify-content: center;
    align-items: center;
    gap: var(--Button-buttons-lg-gap, 4px);
    border-radius: var(--Radius-radius-sm, 4px);
    background: var(--Gold-700-Color, #b87b02);
    color: var(--Text-text-oncolor-primary, #fff);
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    width: 50%;
    border: none;
}

.register-divider {
    background: var(--Border-border-primary-light, #b8eacb);
    height: 1px;
}

/* Date Input Styles for RTL */
input[type="date"] {
    direction: ltr !important;
    text-align: right !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    right: auto !important;
    left: 10px !important;
    position: absolute;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button {
    display: none;
}

.date-input-wrapper {
    position: relative;
}

/* Mobile responsive styles for buttons */
@media (max-width: 768px) {
    .register-submit-btn {
        width: 100%;
    }

    .login-info-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .register-submit-btn {
        width: 100%;
    }

    .login-info-btn {
        width: 100%;
    }
}

/* Success Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.success-modal {
    display: flex;
    width: 370px;
    padding: var(--Model-modal-padding, 24px);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Model-modal-gap, 8px);
    border-radius: var(--Radius-radius-md, 8px);
    background: var(--Background-background-white, #fff);
    box-shadow: 0 32px 64px -12px rgba(16, 24, 40, 0.14);
    position: relative;
    text-align: center;
    align-items: center;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background-color: #f3f4f6;
    border-radius: 4px;
}

.success-icon {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 6px;
    justify-content: center;
    align-items: center;
    border-radius: var(--Radius-radius-full, 9999px);
    background: var(--Icon-Bg-icon-success-light, #ecfdf3);
    margin-bottom: 16px;
}

.success-icon svg {
    width: 18.086px;
    height: 14.583px;
    fill: var(--Icon-icon-success, #067647);
}

.success-title {
    color: var(--Text-text-display, #1f2a37);
    text-align: center;
    font-family: "IBM Plex Sans Arabic";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 8px;
    margin: 0;
}

.success-message {
    color: var(--Text-text-primary-paragraph, #384250);
    text-align: center;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    padding-top: 8px;
}

/* Mobile responsive for modal */
@media (max-width: 400px) {
    .success-modal {
        width: 90%;
        margin: 0 20px;
    }
}

.sfc-footer__store-badge {
    display: block;
    height: 40px;
    width: auto;
    transition: opacity 0.2s ease;
}

.sfc-footer__store-badge:hover {
    opacity: 0.8;
}

@media (max-width: 991.98px) {
    .site-footer.sfc-footer {
        margin-top: 40px;
        padding-top: 28px;
    }

    /* Flatten the entire footer into a single flex column */
    .sfc-footer .content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px;
        padding-inline: 16px !important;
    }

    /* Make all wrapper elements transparent to flex layout */
    .sfc-footer .sfc-footer__top,
    .sfc-footer .sfc-footer__bottom,
    .sfc-footer .sfc-footer__top>.container-fluid,
    .sfc-footer .sfc-footer__top>.container-fluid>.row,
    .sfc-footer .sfc-footer__bottom>.row {
        display: contents !important;
    }

    /* 1: Newsletter */
    .sfc-footer__top>.container-fluid>.row:first-child>.col-md-6:nth-child(2) {
        order: 1 !important;
    }

    /* 2: Footer links + copyright */
    .sfc-footer__bottom>.row>.col-lg-7 {
        order: 2 !important;
    }

    /* 3: Contact info */
    .sfc-footer__top>.container-fluid>.row:first-child>.col-md-6:first-child {
        order: 4 !important;
    }

    /* 4: Social media + copyright */
    .sfc-footer__top>.container-fluid>.row:nth-child(2)>.col-9,
    .sfc-footer__top>.container-fluid>.row:nth-child(2)>.col-12 {
        order: 5 !important;
    }

    /* 5: Logos */
    .sfc-footer__bottom>.row>.col-lg-5 {
        order: 6 !important;
    }

    /* 6: App download */
    .sfc-footer__top>.container-fluid>.row:nth-child(2)>.col-lg-3 {
        order: 3 !important;
    }

    /* Hide desktop copyright (inside sfc-footer__content) on mobile */
    .sfc-footer__content .sfc-footer__copyright {
        display: none !important;
    }

    /* Show mobile copyright (inside col-9 social section) only on mobile */
    .sfc-footer__copyright--mobile {
        display: block !important;
    }

    /* All columns full width on mobile — zero Bootstrap gutters */
    .sfc-footer .col-md-6,
    .sfc-footer .col-lg-7,
    .sfc-footer .col-lg-5,
    .sfc-footer .col-lg-3,
    .sfc-footer .col-9,
    .sfc-footer .col-12 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        --bs-gutter-x: 0;
        margin-bottom: 0;
    }

    /* Logos column: align to start on mobile */
    .sfc-footer__bottom .col-lg-5 {
        justify-content: flex-start !important;
    }

    .sfc-footer .col-lg-3 {
        direction: rtl;
    }

    .sfc-footer__apps {
        text-align: start !important;
        align-items: flex-start !important;
        align-self: flex-start !important;
        display: flex;
        flex-direction: column;
        direction: rtl;
        width: 100%;
    }

    .sfc-footer__apps p {
        font-size: 16px;
        margin-bottom: 14px;
        text-align: start !important;
    }

    .sfc-footer__store-links {
        justify-content: flex-start !important;
    }

    .sfc-store-badge {
        min-width: 152px;
    }

    .sfc-store-badge strong {
        font-size: 18px;
    }

    .sfc-footer__right {
        text-align: start;
    }

    .sfc-footer__heading {
        font-size: 16px;
        text-align: start;
    }

    .sfc-footer__newsletter {
        margin-inline: 0;
    }

    .sfc-footer__social {
        justify-content: flex-start !important;
    }

    .sfc-footer__social-title {
        font-size: 16px;
    }

    .sfc-footer__contact-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .sfc-footer__contact-item {
        flex: 1 1 auto;
        text-align: start;
        width: 100%;
    }

    .sfc-footer__contact-head {
        justify-content: flex-start;
        margin-bottom: 5px;
    }

    .sfc-footer__contact-head span {
        font-size: 16px;
    }

    .sfc-footer__contact-value {
        font-size: 14px;
    }

    .sfc-footer__bottom {
        margin-top: 0;
        text-align: start;
    }

    .sfc-footer__links {
        justify-content: flex-start;
        gap: 8px 18px;
        max-width: none;
    }

    .sfc-footer__links a {
        font-size: 14px;
    }

    .sfc-footer__copyright {
        font-size: 12px;
    }

    .sfc-footer__logo {
        display: block;
        margin-top: 6px;
    }

    .sfc-footer__ornament {
        margin-top: 20px;
    }
}

.text-success {
    color: #1b8354;
    font-weight: 600;
}

/* Page Transition Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transition:
        opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#page-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(0px);
}

#page-loader.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Prevent scrolling when loader is active */
body:has(#page-loader:not(.hide)) {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Fallback for browsers that don't support :has() */
body.no-scroll {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

.loader-content {
    text-align: center;
    color: #161616;
    transform: scale(1);
    transition:
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#page-loader.hide .loader-content {
    transform: scale(0.95);
    opacity: 0;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.loader-spinner svg {
    width: 100%;
    height: 100%;
}

.loader-text {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* RTL support for loader */
html[dir="rtl"] .loader-content {
    direction: rtl;
}

@keyframes loadingProgress {
    0% {
        width: 0%;
        margin-left: 0%;
    }

    50% {
        width: 75%;
        margin-left: 0%;
    }

    100% {
        width: 0%;
        margin-left: 100%;
    }
}

/* Verification Form Styles */
.verification-title {
    color: var(--Text-text-default, #161616);
    text-align: right;
    font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
    font-size: var(--Size-Display-typo-size-display-sm, 30px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Line-Height-Display-line-heights-display-sm, 38px);
    margin-bottom: 16px;
}

.verification-message {
    color: var(--Text-text-display, #1f2a37);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.verification-label {
    color: var(--Form-field-text-label, #161616);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 8px;
}

.verification-input::placeholder {
    color: var(--Form-field-text-placeholder, #6c737f);
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.verification-send-btn {
    display: flex;
    min-height: 40px;
    padding: var(--Global-spacing-none, 0) var(--Button-buttons-lg-padding, 16px);
    justify-content: center;
    align-items: center;
    gap: var(--Button-buttons-lg-gap, 4px);
    border-radius: var(--Radius-radius-sm, 4px);
    border: none;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    width: 30%;
    transition: all 0.2s ease;
}

.verification-send-btn:disabled {
    color: var(--Global-text-default-disabled, #9da4ae);
    background: var(--Global-background-disabled, #e5e7eb);
    cursor: not-allowed;
}

.verification-send-btn:hover:not(:disabled) {
    background: #146b44;
    color: #ffffff;
}

.verification-send-btn:not(:disabled) {
    background: #1b8354;
    color: #ffffff;
}

.verification-send-btn:not(:disabled):hover {
    background: #146b44;
    color: #ffffff;
}

@media (max-width: 768px) {
    .verification-send-btn {
        font-size: 14px;
        width: 40%;
    }
}

.back-to-login-btn {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #1f2a37;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    padding: 8px 16px;
    border-radius: 4px;
}

.back-to-login-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* Two Factor Authentication Setup Styles */
.two-factor-setup-title {
    color: var(--Text-text-default, #161616);
    text-align: right;
    font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
    font-size: var(--Size-Display-typo-size-display-sm, 30px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Line-Height-Display-line-heights-display-sm, 38px);
    margin-bottom: 16px;
    margin-top: 16px;
}

.two-factor-setup-message {
    color: var(--Text-text-display, #1f2a37);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.qr-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px;
}

.qr-code-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.qr-code {
    border-radius: 4px;
}

.two-factor-setup-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 768px) {
    .two-factor-setup-title {
        font-size: 24px;
        line-height: 32px;
        text-align: right;
    }

    .two-factor-setup-message {
        font-size: 14px;
        line-height: 20px;
        text-align: right;
    }

    .qr-code-container {
        padding: 16px;
    }

    .qr-code-placeholder {
        padding: 12px;
    }

    .qr-code {
        width: 180px;
        height: 180px;
    }
}

/* Reset Password Styles */
.reset-password-title {
    color: var(--Text-text-default, #161616);
    text-align: right;
    font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
    font-size: var(--Size-Display-typo-size-display-sm, 30px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Line-Height-Display-line-heights-display-sm, 38px);
    margin-bottom: 16px;
    margin-top: 16px;
}

.reset-password-message {
    color: var(--Text-text-display, #1f2a37);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.reset-password-label {
    color: var(--Form-field-text-label, #161616);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.reset-password-input::placeholder {
    color: var(--Form-field-text-placeholder, #6c737f);
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.reset-password-send-btn {
    display: flex;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding: var(--Global-spacing-none, 0) var(--Button-buttons-lg-padding, 16px);
    justify-content: center;
    align-items: center;
    gap: var(--Button-buttons-lg-gap, 4px);
    border-radius: var(--Radius-radius-sm, 4px);
    background: var(--Gold-700-Color, #b87b02);
    border: none;
    color: var(--Text-text-oncolor-primary, #fff);
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    width: 30%;
    transition: all 0.2s ease;
}

@media (max-width: 768p0px00pxx) {
    .reset-password-send-btn {
        font-size: 14px;
        width: 40%;
    }
}

.reset-password-send-btn:hover:not(:disabled) {
    background: #9f7113;
    color: #fff;
}

.reset-password-send-btn:disabled {
    width: 40px;
    height: 40px440;
    height: 40px;
    background: #e5e7eb;
    color: #9da4ae;
    cursor: not-allowed;
}

/* New Password Styles */
.new-password-title {
    color: var(--Text-text-default, #161616);
    text-align: right;
    font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
    font-size: var(--Size-Display-typo-size-display-sm, 30px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Line-Height-Display-line-heights-display-sm, 38px);
    margin-bottom: 16px;
    margin-top: 16px;
}

.new-password-label {
    color: var(--Form-field-text-label, #161616);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.new-password-input::placeholder {
    color: var(--Form-field-text-placeholder, #6c737f);
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.new-password-save-btn {
    display: flex;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding: var(--Global-spacing-none, 0) var(--Button-buttons-lg-padding, 16px);
    justify-content: center;
    align-items: center;
    gap: var(--Button-buttons-lg-gap, 4px);
    border-radius: var(--Radius-radius-sm, 4px);
    background: var(--Gold-700-Color, #b87b02);
    border: none;
    color: var(--Text-text-oncolor-primary, #fff);
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    width: 30%;
    transition: all 0.2s ease;
}

@media (max-width: 768px) {
    .new-password-save-btn {
        font-size: 14px;
        width: 40%;
    }
}

.new-password-save-btn:hover:not(:disabled) {
    background: #9f7113;
    color: #fff;
}

.new-password-save-btn:disabled {
    background: #e5e7eb;
    color: #9da4ae;
    cursor: not-allowed;
}

@media (max-width: 768px) {

    .reset-password-title,
    .new-password-title {
        font-size: 24px;
        line-height: 32px;
        text-align: right;
    }

    .reset-password-message {
        font-size: 14px;
        line-height: 20px;
        text-align: right;
    }
}

/* Confirmation Page Styles */
.confirmation-page {
    min-height: calc(100vh - 140px);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.pattern-row {
    width: 100%;
    height: 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.pattern-top {
    align-self: flex-start;
}

.pattern-bottom {
    align-self: flex-end;
    margin-bottom: 0;
}

.pattern-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.confirmation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
}

.confirmation-content .success-icon {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 6px;
    justify-content: center;
    align-items: center;
    border-radius: var(--Radius-radius-full, 9999px);
    background: var(--Icon-Bg-icon-success-light, #ecfdf3);
    margin-bottom: 16px;
    color: var(--Icon-icon-success, #067647);
}

.confirmation-title {
    color: var(--Text-text-display, #1f2a37);
    text-align: center;
    font-family: "IBM Plex Sans Arabic";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
    margin-bottom: 8px;
}

.confirmation-message {
    color: var(--Text-text-primary-paragraph, #384250);
    text-align: center;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    margin-bottom: 24px;
    max-width: 400px;
}

.confirmation-login-btn {
    display: flex;
    height: 32px;
    min-height: 32px;
    max-height: 32px;
    padding: var(--Global-spacing-none, 0) var(--Button-buttons-md-padding, 12px);
    justify-content: center;
    align-items: center;
    gap: var(--Button-buttons-md-gap, 4px);
    border-radius: var(--Radius-radius-sm, 4px);
    border: 1px solid var(--Border-border-neutral-primary, #d2d6db);
    color: var(--Text-text-default, #161616);
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: transparent;
}

.confirmation-login-btn:hover {
    background-color: #f8f9fa;
    color: var(--Text-text-default, #161616);
    text-decoration: none;
    border-color: #9ca3af;
}

.confirmation-login-btn:active {
    transform: translateY(1px);
}

/* Mobile responsive for confirmation page */
@media (max-width: 768px) {
    .pattern-row {
        height: 80px;
    }

    .confirmation-content {
        padding: 20px 16px;
    }

    .confirmation-message {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .pattern-row {
        height: 60px;
    }

    .confirmation-title {
        font-size: 16px;
        line-height: 24px;
    }

    .confirmation-message {
        font-size: 13px;
        line-height: 18px;
    }
}

/* Remove footer margin on confirmation page */
.confirmation-page~.site-footer.sfc-footer,
.confirmation-page+.site-footer.sfc-footer {
    margin-top: 0 !important;
}

/* Alternative approach - target pages with confirmation content */
body:has(.confirmation-page) .site-footer.sfc-footer {
    margin-top: 0 !important;
}

/* Fallback for browsers without :has support */
.confirmation-page-body .site-footer.sfc-footer {
    margin-top: 0 !important;
}

/* About Section Styles */
.about-section-bg {
    background-image: url("../assets/images/About BK Desktop.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .about-section-bg {
        background-image: url("../assets/images/About BK Mobile.svg");
    }
}

.about-section-bg .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.about-section-bg .col-12,
.about-section-bg .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
}

.about-section-label {
    color: #b87b02;
    text-align: start;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 24px;
}

.about-title-container {
    margin-bottom: 24px;
}

.about-pattern {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.about-main-title {
    color: #1f2a37;
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    margin: 0;
}

.about-description {
    color: #6c737f;
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.about-image-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.about-main-image {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .about-main-title {
        font-size: 24px;
        line-height: 32px;
    }

    .about-description {
        font-size: 14px;
        line-height: 22px;
    }

    .about-pattern {
        width: 24px;
        height: 24px;
    }

    .about-title-container {
        justify-content: start;
        align-items: center;
        margin-top: 30px;
    }

    .about-main-title {
        text-align: start;
    }

    .about-description {
        text-align: start;
    }

    .about-section-label {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .about-content-col {
        padding-inline: 40px !important;
    }
}

@media (max-width: 576px) {
    .about-content-col {
        padding-inline: 16px !important;
    }
}

/* Events Section Styles */
.events-section {
    background: #161616;
    padding: 30px 0;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.events-title-container {
    display: flex;
    gap: 16px;
}

.events-pattern {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.events-title {
    color: #b87b02;
    text-align: right;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    margin: 0;
}

.btn-secondary-black {
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    color: #fff;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    border-radius: var(--Radius-radius-sm, 4px);
    border: 1px solid var(--Border-border-white-40, rgba(255, 255, 255, 0.4));
    transition: color 0.3s ease;
    padding: var(--Global-spacing-none, 0) var(--Button-buttons-lg-padding, 16px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--Button-buttons-lg-gap, 4px);
    background: var(--Button-button-background-transparent-hovered,
            #F3F4F6);
}

.btn-secondary-black:hover {
    background: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

@media (max-width: 768px) {
    .events-header {
        gap: 10px;
        margin-bottom: 30px;
    }

    .events-title {
        font-size: 20px;
        line-height: 28px;
    }

    .events-pattern {
        width: 20px;
        height: 20px;
    }

    .events-title-container {
        gap: 12px;
    }

    .events-view-all {
        font-size: 14px;
        white-space: nowrap;
    }
}

/* Events Carousel Styles */
.events-carousel-container {
    margin-top: 40px;
}

/* News Section Styles */
.news-title {
    color: var(--Text-text-default, #161616);
    text-align: right;
    font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
    font-size: var(--Size-Display-typo-size-display-sm, 30px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Line-Height-Display-line-heights-display-sm, 38px);
    margin: 0;
}

.btn-secondary {
    display: inline-flex;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding: var(--Global-spacing-none, 0) var(--Button-buttons-lg-padding, 16px);
    justify-content: center;
    align-items: center;
    gap: var(--Button-buttons-lg-gap, 4px);
    border-radius: var(--Radius-radius-sm, 4px);
    border: 1px solid #e5e7eb;
    background: transparent;
    color: var(--Text-text-default, #161616);
    font-family: var(--Font-Family-font-family-text, "IBM Plex Sans Arabic");
    font-size: var(--Size-Text-typo-size-text-md, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--Line-Height-Text-line-heights-text-md, 24px);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: fit-content;
}

.btn-secondary:hover {
    background-color: #f3f4f6;
    border-color: #e5e7eb;
    color: #161616;
    text-decoration: none;
}

/* News Cards Styles */
.news-cards-container {
    margin-top: 40px;
    overflow: visible;
}

.news-card {
    display: flex;
    padding: var(--Global-spacing-xl, 16px);
    flex-direction: column;
    gap: var(--Card-card-lg-gap, 24px);
    flex: 1 0 0;
    border-radius: var(--radius-lg, 16px);
    border: 1px solid var(--Border-border-neutral-primary, #d2d6db);
    background: var(--Background-background-card, #fff);
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.news-card:hover {
    cursor: pointer;
}

.news-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-md, 8px);
    display: block;
}

.news-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: var(--radius-md, 8px);
    overflow: hidden;
}

.news-card-image-wrapper .news-card-image {
    height: 100%;
    border-radius: 0;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 82px;
    pointer-events: auto;
    cursor: pointer;
    z-index: 5;
}

.video-card-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-card-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.news-card-title {
    color: var(--Text-text-display, #1f2a37);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin: 0;
    flex-grow: 1;
}

.btn-primary {
    display: inline-flex;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    padding: var(--Global-spacing-none, 0) var(--Button-buttons-lg-padding, 16px);
    justify-content: center;
    align-items: center;
    gap: var(--Button-buttons-lg-gap, 4px);
    border-radius: var(--Radius-radius-sm, 4px);
    background: var(--Gold-700-Color, #b87b02);
    color: var(--Text-text-oncolor-primary, #fff);
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
    white-space: nowrap;
    text-decoration: none;

    &.btn-sm {
        height: 32px;
        min-height: 32px;
        max-height: 32px;
        padding: var(--Global-spacing-none, 6px) var(--Button-buttons-lg-padding, 8px);
        font-size: 14px;
        line-height: 20px;

    }
}

.btn-primary:hover {
    background: #a06b02;
    color: #fff;
}

/* News Owl Carousel Styles */
.news-owl-carousel.owl-carousel {
    padding: 0;
    position: relative;
    padding-bottom: 0;
}

.news-owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.news-owl-carousel .owl-item .news-card {
    height: 100%;
}

/* Hide navigation arrows */
#NewsCarousel .owl-nav {
    display: none !important;
}

/* Show and style dots */
#NewsCarousel .owl-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    padding: 4px 0;
}

#NewsCarousel .owl-dots .owl-dot {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 4px !important;
    margin: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    cursor: pointer;
}

#NewsCarousel .owl-dots .owl-dot span {
    display: block !important;
    background: #d2d6db !important;
    border: none !important;
    box-shadow: none !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    margin: 0 !important;
    transition:
        background 0.3s,
        transform 0.3s;
}

#NewsCarousel .owl-dots .owl-dot.active span,
#NewsCarousel .owl-dots .owl-dot:hover span {
    background: #1b8354 !important;
    transform: scale(1.3);
}

@media (max-width: 767.98px) {
    .news-cards-container {
        padding: 0;
    }

    .news-owl-carousel.owl-carousel {
        padding: 0;
    }
}

.events-owl-carousel.owl-carousel {
    padding: 0 20px;
    position: relative;
    padding-bottom: 60px;
}

.events-owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.events-carousel-container {
    position: relative;
}

/* Hide navigation arrows */
#EventsCarousel .owl-nav {
    display: none !important;
}

#EventsCarousel .owl-prev,
#EventsCarousel .owl-next {
    display: none !important;
}

/* Show and style dots */
#EventsCarousel .owl-dots {
    position: absolute;
    bottom: -48px;
    left: 40%;
    transform: translateX(-50%);
    text-align: center;
    display: block !important;
}

[dir="rtl"] #EventsCarousel .owl-dots {
    transform: translateX(50%);
}

#EventsCarousel.owl-theme .owl-dots .owl-dot {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
}

#EventsCarousel.owl-theme .owl-dots .owl-dot span {
    background: #e5e7eb !important;
    border: none !important;
    box-shadow: none !important;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: background 0.3s;
}

#EventsCarousel.owl-theme .owl-dots .owl-dot.active span,
#EventsCarousel.owl-theme .owl-dots .owl-dot:hover span {
    background: #1b8354 !important;
}

.events-card,
.service-card,
.category-card {
    display: flex;
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    border-radius: 16px;
    border: 1px solid #d2d6db;
    background: #fff;
    margin: 0 10px;
    height: auto;
    min-height: 300px;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}



.events-card-logo {
    width: 165px;
    height: 64px;
    aspect-ratio: 165/64;
    object-fit: contain;
    align-self: flex-start;
}

.events-card-title,
.service-card-title,
.category-card-title {
    color: #1f2a37;
    text-align: right;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin: 0;
}

.events-card-description,
.service-card-description {
    color: #1f2a37;
    text-align: right;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    flex-grow: 1;
}

.events-card-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.events-badge {
    display: flex;
    height: 24px;
    padding: 0 8px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    width: fit-content;
}

.events-badge-date {
    border-radius: var(--radius-sm, 4px);
    border: 1px solid var(--Tag-tag-border-info-light, #b2ddff);
    background: var(--Tag-tag-background-info-light, #eff8ff);
    color: #1849a9;
}

.events-badge-location {
    color: #085d3a;
    border: 1px solid #abefc6;
    background: #ecfdf3;
}

.events-card-arrow,
.service-card-arrow {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
}

.events-card-arrow svg,
.service-card-arrow svg {
    transition: transform 0.3s ease;
}

.events-card:hover .events-card-arrow svg,
.service-card:hover .service-card-arrow svg {
    transform: translateX(-4px);
}

.service-card {
    min-height: auto;
}

.service-card-footer {
    display: flex;
    justify-content: flex-end;
}



.service-card-arrow {
    width: fit-content;
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
}

.category-card {
    margin-inline: 0;
    min-height: auto;
}

a.dga-link {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #1B8354;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    word-break: break-word;
}

a.dga-link:hover {
    text-decoration: underline;
    color: #54c08a;
}

a.dga-link:active {
    color: #88d8ad;
}

@media (max-width: 768px) {
    .events-card {
        margin: 0 5px;
        padding: 12px;
        gap: 8px;
        min-height: auto;
    }

    .events-card-logo {
        width: 140px;
        height: 54px;
    }

    .events-card-title {
        font-size: 16px;
        line-height: 24px;
    }

    .events-card-description {
        font-size: 14px;
        line-height: 21px;
    }

    .events-badge {
        font-size: 11px;
        height: 20px;
        padding: 0 6px;
    }
}

/* Breadcrumb Styles */
.breadcrumb-container {
    padding-block: 2rem;
    background-color: #161616;

    .breadcrumb {
        margin: 0 !important;
    }

    .breadcrumb-item {
        display: flex;
        align-items: center;
        padding-inline: 0 !important;

        a {
            color: #fff;
            font-size: 14px;
            text-decoration: none;

            &:hover {
                color: #9da4ae;
                text-decoration: underline;
            }
        }

        &:not(:last-child) a {
            cursor: pointer;
        }

        &+&::before {
            content: "";
            display: inline-block;
            width: 16px;
            height: 16px;
            background-image: url("../assets/icons/arrow-left-01.svg");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
            margin: 0 0.5rem;
            vertical-align: middle;
            transform: rotate(0deg);
            transition: transform 0.2s ease;
        }

        :dir(ltr) &+&::before {
            transform: rotate(180deg);
        }

        &:last-child a {
            cursor: default;
            color: #9da4ae;

            &:hover {
                color: #9da4ae;
                text-decoration: none;
            }
        }
    }
}

.breadcrumb-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #fff;
    line-height: 2.75rem;

    @media (max-width: 576px) {
        font-size: 30px;
    }
}

.sub-header {
    color: #fff;
    font-size: 1rem;
}

/* University-style UI Extensions */
.custom-header2 {
    color: #b87b02;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #f3fcf6;
    border-radius: 50%;
    height: 3rem;
    width: 3rem;

    img {
        width: 1.5rem !important;
        height: 1.5rem;
    }
}

.card-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0.8rem;
    padding: 0.8rem;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    height: 10rem;
    width: 11rem;
    background-color: white;
    transition: all 0.3s ease-in-out;

    h5 {
        font-size: 2.35rem;
        font-weight: 400;
        line-height: 2.94rem;
        color: #14573a;
        margin-top: 1.18rem;
        margin-bottom: 0.39rem;
    }

    p {
        font-size: 0.78rem;
        font-weight: 400;
        line-height: 1.18rem;
        color: #161616;
    }
}

.card-icon-container {
    .card-body {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem !important;

        .card-title-container {
            display: flex;
            align-items: baseline;
            width: 100%;

            .card-icon-title {
                font-size: 1.125rem !important;
                line-height: 1.75rem;
                font-weight: 700;
                color: #161616 !important;
                margin-top: 1.5rem;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: normal;
                cursor: default;
                word-break: break-word;
            }
        }

        .card-details {
            font-size: 1rem;
            font-weight: 400;
            color: #161616;
            line-height: 1.5rem;
            margin-top: 0.5rem;
            min-height: calc(1.5rem * 3);
            width: -webkit-fill-available;
        }
    }
}

/* Ensure lists have markers despite global reset */
.card-details ol,
.card-details ul {
    padding-inline-start: 2rem !important;
    margin-bottom: 1rem;
}

.card-details ol {
    list-style-type: decimal !important;
}

.card-details ul {
    list-style-type: disc !important;
}

.black-color {
    color: #161616 !important;
}

.text-secondary-paragraph {
    color: #6c737f;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.mb-32 {
    margin-bottom: 32px;
}

.fw-normal {
    font-weight: 400;
}

/* Global Utilities */
.m-32 {
    margin: 32px;
}

.mt-32 {
    margin-top: 32px;
}

.mb-32 {
    margin-bottom: 32px;
}

.ms-32 {
    margin-inline-start: 32px;
}

.me-32 {
    margin-inline-end: 32px;
}

.mx-32 {
    margin-inline: 32px;
}

.my-32 {
    margin-block: 32px;
}

/* All sides */
.m-40 {
    margin: 2.5rem !important;
}

/* Individual sides */
.mt-40 {
    margin-top: 2.5rem !important;
}

.mb-40 {
    margin-bottom: 2.5rem !important;
}

.ms-40 {
    margin-left: 2.5rem !important;
}

.me-40 {
    margin-right: 2.5rem !important;
}

/* Horizontal */
.mx-40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
}

/* Vertical */
.my-40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
}

.py-40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}


.g-32 {
    --bs-gutter-x: 32px;
    --bs-gutter-y: 32px;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-body {
    background-color: #F9FAFB !important;
}

.text-display {
    color: #1F2A37;
}

.text-display-sm {
    font-size: 1.875rem !important;
    line-height: 2.375rem !important;
}

.text-md {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-gold-700 {
    color: #B87B02 !important;
}

.text-default {
    color: #161616;
}

.gap-12 {
    gap: 12px;
}

@media (min-width: 992px) {
    .g-lg-32 {
        --bs-gutter-x: 2rem;
        --bs-gutter-y: 2rem;
    }

    .mb-lg-32 {
        margin-bottom: 2rem;
    }
}

.custom-gutter {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

/* Buttons */
.dga-primary-btn {
    background-color: #b87b02;
    color: #ffffff;
    border-radius: 4px;
    padding: 8px 24px;
    font-weight: 500;
    border: none;
    transition: background-color 0.3s ease;
}

.dga-primary-btn:hover {
    background-color: #9f7113;
    color: #ffffff;
}

/* Contact Form Styles */
.code-select {
    border: 1px solid #d2d6db;
    border-radius: 0 4px 4px 0;
    background-color: #f3f4f6;
    padding: 8px;
    font-size: 14px;
    outline: none;
}

:dir(ltr) .code-select {
    border-radius: 4px 0 0 4px;
}

.number-input {
    border-radius: 4px 0 0 4px !important;
}

:dir(ltr) .number-input {
    border-radius: 0 4px 4px 0 !important;
}

.file-upload-text {
    font-size: 12px;
    color: #6c737f;
    margin-bottom: 8px;
}

.attachments-btn {
    border: 1px solid #d2d6db;
    color: #384250;
    background: white;
}

.attachments-btn:hover {
    background-color: #f9fafb;
    border-color: #9da4ae;
}

/* Sidebar Styles */
.sidebar {
    position: relative;
    top: -29%;
    background: white !important;
    border: 1px solid #d2d6db !important;
    padding: 40px;
    border-radius: 16px;
}

@media (max-width: 992px) {
    .sidebar {
        margin-bottom: 40px;
        position: static;
    }
}

.text-copy,
.link {
    color: #1b8354;
    font-size: var(--font-size-16) !important;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.link:hover,
.link:focus {
    color: #54c08a;
    text-decoration: underline;
    cursor: pointer;
}

.main-text {
    font-size: 18px;
    font-weight: 700;
    color: #1f2a37;
}

.nested-text {
    font-size: 16px;
    color: #1f2a37;
    display: block;
    font-weight: 700;
}

.text-copy {
    display: flex;
    align-items: center;
    gap: 8px;
}

.show-more {
    cursor: pointer;
    color: #b87b02;
    font-weight: 600;
    font-size: 14px;
    margin-top: 16px;
    display: inline-block;
}

.show-more:hover {
    text-decoration: underline;
}

.social-media img.imgs {
    width: 24px;
    height: 24px;
}

/* =============================================
   Alert Success (Form Status)
   ============================================= */
.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

@media (max-width: 991px) {
    .heritage-top-section {
        flex-direction: column-reverse;
        /* Images top, Text bottom on mobile */
    }
}


.card-top-img-container {
    border-radius: 16px !important;
    overflow: hidden;
    background: #fff;
    border: none !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}

.card-top-img-container .card-img-top {
    height: 240px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    display: block !important;
}

.card-top-img-container .card-body {
    padding: 0 !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.card-top-img-container .card-title {
    color: #B87B02 !important;
    font-size: 18px !important;
    line-height: 28px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.card-top-img-container .card-text {
    color: #1F2A37 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    margin-bottom: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: help;
}

.card-top-img-container.offer-style {
    border: 1px solid #D2D6DB !important;
}

.card-top-img-container.offer-style .card-img-top {
    object-fit: contain !important;
    height: 100%;
}

.card-top-img-container.offer-style .card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Offer Variant for card-top-img-container */
.card-top-img-container.offer-style .card-title {
    color: #1F2A37 !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    webkit-line-clamp: 2;
    line-clamp: 2;
    cursor: pointer;
}

/* Offer Variant for card-top-img-container */
.card-top-img-container.offer-style .card-text {
    color: #384250 !important;
}


.card-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-price {
    font-size: 16px;
    line-height: 24px;
    color: #B87B02;
    font-weight: 600;
}

.card-discount {
    font-size: 16px;
    line-height: 24px;
    color: #6C737F;
    text-decoration: line-through;
}

.card-badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;

}

.card-badge {
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-badge--gold {
    background: #FFFAEB;
    border: 1px solid #FEDF89;
    color: #93370D;
    border-radius: 99999px !important;
}

.card-badge--gray {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    color: #1F2A37;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .heritage-carousel-section {
        padding-block: 40px;
    }

    .card-top-img-container .card-img-top {
        height: 200px !important;
        width: calc(100% - 24px) !important;
        margin: 12px 12px 4px 12px !important;
        border-radius: 12px !important;
    }

    .card-top-img-container .card-body {
        padding: 0 12px 16px 12px !important;
    }
}


/* Ensure equal height for carousel items */
#HeritageCarousel .owl-stage {
    display: flex !important;
}

#HeritageCarousel .owl-item {
    display: flex !important;
}

#HeritageCarousel .item {
    display: flex !important;
    flex: 1 0 auto;
    width: 100%;
}

#HeritageCarousel.owl-theme .owl-dots {
    margin-top: 2rem !important;
}



.falcon-info-card .card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* =============================================
   Product Details Page
   ============================================= */



/* ----- Images Column ----- */

.pd-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ----- Main Slider ----- */
.pd-main-slider {
    border-radius: var(--Radius-radius-md, 8px);
    overflow: hidden;
}

    .pd-main-slider .slick-slide img.pd-main-img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: var(--Radius-radius-md, 8px);
        display: block;
    }

/* ----- Nav / Thumbnail Slider ----- */
.pd-nav-slider {
    padding: 0 4px;
}

    .pd-nav-slider .slick-slide {
        padding: 0 6px;
        cursor: pointer;
    }

        .pd-nav-slider .slick-slide img.pd-thumb-img {
            width: 100%;
            height: 100px;
            object-fit: contain;
            border-radius: var(--Radius-radius-md, 8px);
            border: 2px solid transparent;
            transition: border-color 0.2s ease;
            display: block;
        }

        .pd-nav-slider .slick-current img.pd-thumb-img,
        .pd-nav-slider .slick-slide:hover img.pd-thumb-img {
            border-color: var(--Link-link-primary, #b87b02);
        }

    /* Slick arrow overrides for nav slider */
    .pd-nav-slider .slick-prev,
    .pd-nav-slider .slick-next {
        z-index: 1;
        width: 28px;
        height: 28px;
    }

    .pd-nav-slider .slick-prev {
        left: -6px;
    }

    .pd-nav-slider .slick-next {
        right: -6px;
    }

/* ----- Details Column ----- */

.pd-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Row 1 */
.pd-info-header {
    display: flex;
    align-items: flex-start;
    gap: 72px;
    align-self: stretch;
}

.pd-info-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.pd-product-name {
    color: var(--Text-text-default, #161616);
    text-align: right;
    font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
    font-size: var(--Size-Display-typo-size-display-md, 36px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--Line-Height-Display-line-heights-display-md, 44px);
    letter-spacing: -0.72px;
}

.pd-brand {
    color: var(--Link-link-primary, #1B8354);
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.pd-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-stars {
    display: flex;
    gap: 2px;
}

.pd-stars .bi-star-fill {
    color: var(--Background-background-secondary, #DBA102);
    font-size: 18px;
}

.pd-rating-count {
    color: var(--Text-text-secondary-paragraph, #6C737F);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.pd-price-box {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    border-radius: var(--Radius-radius-xs, 2px);
    border-bottom: 4px solid var(--Gold-700-Color, #B87B02);
    background: var(--Background-background-body, #F9FAFB);
    padding: 8px 16px;
    white-space: nowrap;
}

.pd-price-amount {
    color: var(--Text-text-default, #161616);
    text-align: right;
    font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
    font-size: var(--Size-Display-typo-size-display-md, 36px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--Line-Height-Display-line-heights-display-md, 44px);
    letter-spacing: -0.72px;
}

.pd-price-currency {
    color: var(--Text-text-default, #161616);
    text-align: right;
    font-family: Arshid, "IBM Plex Sans Arabic", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--Line-Height-Display-line-heights-display-md, 44px);
    letter-spacing: -0.48px;
}

/* Spec Tag Rows (below description) */
.pd-spec-row {
    display: none;
    flex-wrap: wrap;
    gap: 12px;
}

.pd-spec-row.pd-spec-row--visible {
    display: flex;
}

.pd-spec-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    width: fit-content;
}

.pd-spec-tag {
    display: flex;
    flex: 1;
    flex-direction: column;
    height: auto;
    min-height: 32px;
    padding: var(--Global-spacing-lg, 12px);
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: var(--radius-sm, 4px);
    border: 1px solid var(--Border-border-neutral-secondary, #E5E7EB);
    background: var(--Tag-tag-background-neutral-light, #F9FAFB);
}

.pd-spec-value-box {
    display: flex;
    height: 32px;
    width: 100%;
    padding: 0 var(--Global-spacing-lg, 12px);
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm, 4px);
    border: 1px solid var(--Border-border-neutral-secondary, #E5E7EB);
    background: var(--Tag-tag-background-neutral-light, #F9FAFB);
}

.pd-spec-label {
    color: var(--Text-text-primary-paragraph, #384250);
    text-align: center;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.pd-spec-value {
    color: var(--Tag-tag-text-neutral, #1F2A37);
    text-align: center;
    font-family: var(--Font-Family-font-family-text, "IBM Plex Sans Arabic");
    font-size: var(--Size-Text-typo-size-text-md, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--Line-Height-Text-line-heights-text-md, 24px);
}

/* Row 3: Availability Notice */
.pd-notice-card {
    position: relative;
    display: flex;
    align-items: center;
    width: 411px;
    max-width: 100%;
    padding: var(--Notification-notification-toast-v-padding, 16px) var(--Notification-notification-toast-desktop-h-padding, 24px);
    gap: var(--Notification-notification-gap, 16px);
    border-radius: var(--radius-md, 8px);
    background: var(--Background-background-notification-white, #FFF);
    box-shadow: 0 32px 64px -12px rgba(16, 24, 40, 0.14);
    overflow: hidden;
}

.pd-notice-indicator {
    position: absolute;
    right: 0;
    top: 0;
    width: 4px;
    height: 100%;
    opacity: 0.7;
    background: var(--Background-background-warning, #DC6803);
    border-radius: 0 var(--radius-md, 8px) var(--radius-md, 8px) 0;
}

.pd-notice-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: var(--radius-full, 9999px);
    background: var(--Icon-background-warning-light, #FFFAEB);
}

.pd-notice-icon {
    width: 20px;
    height: 20px;
}

.pd-notice-text {
    color: var(--Text-text-primary-paragraph, #384250);
    text-align: right;
    font-family: var(--Font-Family-font-family-text, "IBM Plex Sans Arabic");
    font-size: var(--Size-Text-typo-size-text-sm, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--Line-Height-Text-line-heights-text-sm, 20px);
    flex: 1;
}

/* Row 7: Tabs */
.pd-tabs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pd-tab-bar {
    display: flex;
    width: 302px;
    height: 44px;
    align-items: center;
    border-radius: var(--Radius-radius-sm, 4px);
    border-bottom: 2px solid var(--Border-border-neutral-secondary, #E5E7EB);
    position: relative;
}

.pd-tab {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--Text-text-primary-paragraph, #384250);
    text-align: center;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    position: relative;
    transition: color 0.2s ease;
    padding: 0;
}

.pd-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    left: 0;
    height: 3px;
    background: transparent;
    border-radius: var(--radius-full, 9999px);
    align-self: stretch;
    transition: background 0.2s ease;
}

.pd-tab.active {
    color: var(--Text-text-default, #161616);
    font-family: var(--Font-Family-font-family-text, "IBM Plex Sans Arabic");
    font-size: var(--Size-Text-typo-size-text-sm, 14px);
    font-weight: 700;
    line-height: var(--Line-Height-Text-line-heights-text-sm, 20px);
}

.pd-tab.active::after {
    background: var(--Gold-700-Color, #B87B02);
}

.pd-tab-pane {
    display: none;
}

.pd-tab-pane.active {
    display: block;
}

/* Tab: معلومات إضافية */
.pd-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pd-info-tag {
    display: flex;
    height: 32px;
    padding: var(--Global-spacing-none, 0) var(--Global-spacing-lg, 12px);
    justify-content: center;
    align-items: center;
    gap: var(--Global-spacing-xs, 4px);
    align-self: stretch;
    border-radius: var(--radius-sm, 4px);
    border: 1px solid var(--Border-border-neutral-secondary, #E5E7EB);
    background: var(--Tag-tag-background-neutral-light, #F9FAFB);
}

.pd-tag-label {
    color: var(--Text-text-primary-paragraph, #384250);
    text-align: center;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.pd-tag-value {
    color: var(--Tag-tag-text-neutral, #1F2A37);
    text-align: center;
    font-family: var(--Font-Family-font-family-text, "IBM Plex Sans Arabic");
    font-size: var(--Size-Text-typo-size-text-md, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--Line-Height-Text-line-heights-text-md, 24px);
}

/* Tab: المورد */
.pd-supplier-images {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 24px;
    flex-wrap: wrap;
}

.pd-supplier-img {
    width: 136px;
    height: 136px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--Radius-radius-md, 8px);
}

/* Tab: تفاصيل المنتج */
.pd-tab-text {
    color: var(--Text-text-primary-paragraph, #6C737F);
    text-align: start;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 12px;
}

.pd-tab-text:last-child {
    margin-bottom: 0;
}

/* Row 2 */
.pd-description {
    color: var(--Text-text-secondary-paragraph, #6C737F);
    text-align: start;
    font-family: "IBM Plex Sans Arabic";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

/* Row 4: Color Variants */
.pd-color-variants {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pd-color-card {
    display: flex;
    padding: var(--Tooltip-tooltip-padding, 8px);
    align-items: center;
    gap: 18px;
    border-radius: var(--Radius-radius-sm, 4px);
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.pd-color-card--selected {
    border-radius: var(--Radius-radius-md, 8px);
    border: 1px solid var(--Gold-700-Color, #B87B02);
    background: var(--Background-background-secondary-25, #FFFEF7);
}

.pd-color-swatch {
    width: 60px;
    height: 60px;
    border-radius: var(--Radius-radius-sm, 4px);
    flex-shrink: 0;
}

.pd-color-swatch--black {
    border-radius: var(--Radius-radius-sm, 4px);
    background: var(--Background-background-black, #161616);
}

.pd-color-swatch--blue {
    border-radius: var(--Radius-radius-sm, 4px);
    background: var(--Border-border-info, #175CD3);
}

.pd-color-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pd-color-name {
    color: var(--Text-text-display, #1F2A37);
    text-align: start;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.pd-color-stock--out {
    color: var(--Text-text-display, #1F2A37);
    text-align: start;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.pd-color-stock--in {
    color: var(--Text-text-secondary, #DBA102);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* Row 5: Quantity */
.pd-quantity-row {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border-radius: var(--Radius-radius-sm, 4px);
    border: 1px solid var(--Border-border-neutral-primary, #D2D6DB);
    overflow: hidden;
}

.pd-qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--Background-background-body, #F9FAFB);
    border: none;
    font-size: 20px;
    font-weight: 500;
    color: var(--Text-text-default, #161616);
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.pd-qty-btn:hover {
    background: #e5e7eb;
}

.pd-qty-input {
    width: 60px;
    height: 44px;
    border: none;
    border-right: 1px solid var(--Border-border-neutral-primary, #D2D6DB);
    border-left: 1px solid var(--Border-border-neutral-primary, #D2D6DB);
    text-align: center;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-weight: 500;
    color: var(--Text-text-default, #161616);
    background: #fff;
    outline: none;
}

.pd-qty-input::-webkit-outer-spin-button,
.pd-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Row 6: Actions */
.pd-actions-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-btn-favourite {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    flex-shrink: 0;
}

.pd-favourite-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pd-btn-add-cart {
    height: 44px;
    min-height: 44px;
    max-height: 44px;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--Text-text-oncolor-primary, #FFF);
}

/* =============================================
   Weapon Type Modal
   ============================================= */
.pd-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(16, 24, 40, 0.4);
    z-index: 1050;
    justify-content: center;
    align-items: center;
}

.pd-modal-overlay--visible {
    display: flex;
}

.pd-modal {
    display: flex;
    width: 370px;
    padding: var(--Model-modal-padding, 24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: var(--Radius-radius-md, 8px);
    background: var(--Background-background-white, #FFF);
    box-shadow: 0 32px 64px -12px rgba(16, 24, 40, 0.14);
}

.pd-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.pd-modal-icon-wrap {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 6px;
    justify-content: center;
    align-items: center;
    border-radius: var(--Radius-radius-full, 9999px);
    background: var(--Icon-Bg-icon-warning-light, #FFFAEB);
    flex-shrink: 0;
}

.pd-modal-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pd-modal-texts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: stretch;
}

.pd-modal-title {
    color: var(--Text-text-display, #1F2A37);
    text-align: center;
    font-family: "IBM Plex Sans Arabic";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.pd-modal-desc {
    color: var(--Text-text-primary-paragraph, #384250);
    text-align: center;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.pd-modal-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}

.pd-modal-btn-close {
    display: flex;
    height: 32px;
    min-height: 32px;
    max-height: 32px;
    flex: 1;
    padding: 0 var(--Button-buttons-md-padding, 12px);
    justify-content: center;
    align-items: center;
    gap: var(--Button-buttons-md-gap, 4px);
    border-radius: var(--Radius-radius-sm, 4px);
    border: 1px solid var(--Border-border-neutral-primary, #D2D6DB);
    background: transparent;
    color: var(--Text-text-default, #161616);
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pd-modal-btn-close:hover {
    background: #f3f4f6;
}

.pd-modal-btn-confirm {
    display: flex;
    height: 32px;
    min-height: 32px;
    max-height: 32px;
    flex: 1;
    padding: 0 var(--Button-buttons-md-padding, 12px);
    justify-content: center;
    align-items: center;
    gap: var(--Button-buttons-md-gap, 4px);
    border-radius: var(--Radius-radius-sm, 4px);
    border: none;
    background: var(--Button-button-background-black-default, #0D121C);
    color: var(--Text-text-oncolor-primary, #FFF);
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pd-modal-btn-confirm:hover {
    background: #1a2030;
}

/* =============================================
   Weapon Type Selection Modal (Modal 2)
   ============================================= */
.pd-modal2 {
    gap: var(--Notification-notification-h-padding, 24px);
    align-items: flex-start;
}

.pd-m2-title {
    color: var(--Text-text-display, #1F2A37);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    align-self: stretch;
}

.pd-m2-choices {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: stretch;
}

.pd-m2-radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.pd-m2-radio {
    display: none;
}

.pd-m2-radio-circle {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: var(--Radius-radius-full, 9999px);
    border: 1px solid var(--Controls-control-border, #6C737F);
    background: #FFF;
    position: relative;
    transition: border-color 0.2s ease;
}

.pd-m2-radio:checked+.pd-m2-radio-circle {
    border: 6px solid var(--Gold-700-Color, #B87B02);
}

.pd-m2-radio-label {
    color: var(--Text-text-display, #1F2A37);
    text-align: right;
    font-family: var(--Font-Family-font-family-text, "IBM Plex Sans Arabic");
    font-size: var(--Size-Text-typo-size-text-md, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--Line-Height-Text-line-heights-text-md, 24px);
}

.pd-m2-field {
    display: flex;
    flex-direction: column;
    gap: var(--Form-label-gap, 4px);
    align-self: stretch;
}

.pd-m2-field-label {
    color: var(--Form-field-text-label, #161616);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.pd-m2-field-input {
    width: 100%;
    height: 44px;
    padding: 10px 14px;
    border-radius: var(--Radius-radius-sm, 4px);
    border: 1px solid var(--Border-border-neutral-primary, #D2D6DB);
    background: #FFF;
    color: var(--Text-text-default, #161616);
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    outline: none;
    transition: border-color 0.2s ease;
    text-align: right;
}

.pd-m2-field-input::placeholder {
    color: var(--Form-field-text-placeholder, #6C737F);
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.pd-m2-field-input:focus {
    border-color: var(--Gold-700-Color, #B87B02);
}

.pd-suggested-title {
    color: var(--Text-text-default, #161616);
    text-align: right;
    font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
    font-size: var(--Size-Display-typo-size-display-sm, 30px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Line-Height-Display-line-heights-display-sm, 38px);
    margin-bottom: 24px;
}

/* Suggested Products Cards Grid */
.pd-suggested-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* On tablet: 2 columns */
@media (max-width: 991.98px) {
    .pd-suggested-cards {
        display: block;
        /* let owl carousel take over */
    }
}

/* Suggested carousel dots */
.pd-suggested-cards.owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.pd-suggested-cards.owl-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D2D6DB;
    display: block;
    transition: background 0.3s ease;
}

.pd-suggested-cards.owl-carousel .owl-dot.active span {
    background: var(--Gold-700-Color, #B87B02);
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .pd-info-header {
        flex-direction: column;
        gap: 24px;
    }

    .pd-price-box {
        align-self: flex-start;
    }

    .pd-main-img {
        height: 300px;
    }
}

/* Mobile Responsive Styles for Product Details */
@media (max-width: 991.98px) {

    /* Product name mobile styling */
    .pd-product-name {
        color: var(--Text-text-default, #161616) !important;
        text-align: right !important;
        font-family: "IBM Plex Sans Arabic" !important;
        font-size: 24px !important;
        font-style: normal !important;
        font-weight: 600 !important;
        line-height: 32px !important;
        /* 133.333% */
    }

    /* Small thumbnail images styling */
    .pd-thumbnail {
        height: 83.111px !important;
        flex: 1 0 0 !important;
        aspect-ratio: 3/2 !important;
    }

    /* Price box mobile styling */
    .pd-price-box {
        display: flex !important;
        padding: 8px 0 !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 7px !important;
        align-self: stretch !important;
        border-radius: var(--Radius-radius-xs, 2px) !important;
        border-bottom: 4px solid var(--Gold-700-Color, #B87B02) !important;
        background: var(--Background-background-body, #F9FAFB) !important;
    }

    /* Color variants - display in one row */
    .pd-color-variants {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
        flex-wrap: wrap !important;
    }

    .pd-color-card {
        flex: 1 !important;
        min-width: 0 !important;
    }
}


/* =============================================
   Offers Page Styles
   ============================================= */

.offers-page {
    padding-bottom: 80px;
    background-color: #fcfcfc;
}

/* Sidebar Styles */
.filter-sidebar {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    max-height: 150vh;
    overflow: hidden;
}

.sidebar-header {
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    padding: 24px;
    background: #F9FAFB;
    border-bottom: 1px solid #F3F4F6;
}

.sidebar-content {
    flex-grow: 1;
    overflow-y: auto;
    min-height: 0;
}

.filter-section {
    padding: 16px 8px;
    border-bottom: 1px solid #D2D6DB;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.filter-label {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #161616;
}


.filter-section:last-child {
    border-bottom: none;
}



.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Dual Range Slider Styles */
.price-slider-container {
    position: relative;
}

.price-slider-container .min-label,
.price-slider-container .max-label {
    font-size: 12px;
    line-height: 18px;
    color: #384250;
}


.range-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 6px;
    background: #F3F4F6 !important;
    border-radius: 999px;
}

.range-selected {
    position: absolute;
    height: 4px;
    background: #E5E7EB;
    /* Light grey track for the unselected part */
    border-radius: 2px;
    left: 0%;
    right: 0%;
}

/* Redefining track and selected range to match the image better */
.range-slider {
    background: #F3F4F6 !important;
}

.range-selected {
    background: #F3F4F6 !important;
    /* Selected range actually looks light in the image */
}

.range-input {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 6px;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.range-input input::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #B87B02;
    border: 2px solid #1B8354;
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.range-input input::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #B87B02;
    border: 2px solid #1B8354;
    pointer-events: auto;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Price Input Boxes */
.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}


.price-field {
    display: flex;
    align-items: center;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
}

.price-field span {
    background: #F3F4F6;
    padding: 8px 12px;
    color: #6B7280;
    border-left: 1px solid #D1D5DB;
    font-size: 14px;
}

.price-field input {
    border: none !important;
    padding: 8px !important;
    width: 100%;
    text-align: center;
    font-size: 14px;
    background: #fff !important;
}


@media (max-width: 991px) {
    .mobile-filter-trigger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .filter-sidebar.offcanvas-lg {
        width: 320px;
        background-color: #fff;
    }
}

/* Top Controls Area */
.top-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
    background-color: #F9FAFB;
    padding: 24px;
    border-radius: 20px;
}

.top-sort {
    width: 200px;
}

.sidebar-footer {
    padding: 8px;
    border-top: 1px solid #D2D6DB;
    display: flex;
    gap: 26px;
}

.btn-primary {
    background-color: #B87B02 !important;
    border-color: #B87B02 !important;
    color: #fff !important;
    border-radius: 4px !important;
    padding: 8px 16px !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #9f6b02 !important;
    border-color: #9f6b02 !important;
}

.btn-secondary-black {
    background-color: #F3F4F6 !important;
    border-color: #F3F4F6 !important;
    color: #161616 !important;
    border-radius: 4px !important;
    padding: 8px 16px !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    transition: background-color 0.2s ease;
}

.btn-secondary-black:hover {
    background-color: #E5E7EB !important;
    border-color: #E5E7EB !important;
}

@media (max-width: 991px) {
    .filter-sidebar {
        position: static;
        margin-bottom: 32px;
    }
}

/* Sidebar Toggle Icon Rotation */
.filter-section .nav__btn[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.filter-section .toggle-icon {
    transition: transform 0.3s ease;
    font-size: 14px;
}

/* Empty State Styles */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
    min-height: 400px;
}

.empty-state__image {
    max-width: 200px;
    height: auto;
    margin-bottom: 24px;
}

.riyal-svg {
    width: 12px;
    height: 13px;
}

/* Mobile Triggers Styling */
.mobile-filter-trigger,
.mobile-sort-trigger {
    background: #F3F4F6;
    border: none;
    border-radius: 4px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    transition: background 0.2s ease;
}

.mobile-filter-trigger:hover,
.mobile-sort-trigger:hover {
    background: #E5E7EB;
}

/* Sort Offcanvas Styling */
.sort-offcanvas {
    width: 100% !important;
    background-color: #fff !important;
}

.sort-offcanvas .offcanvas-body {
    height: 100%;
    display: flex;
    flex-direction: column;
}


.sort-offcanvas .offcanvas-title {
    font-size: 18px;
    font-weight: 700;
    color: #161616;
}

.sort-options-card {
    border: 1px solid #D2D6DB;
    border-radius: 0;
    padding: 16px 8px;
}

.sort-options-card .offcanvas-header {
    margin-bottom: 12px;
    padding: 0;
}


.sort-options-card .radio-wrapper:last-child {
    border-bottom: none;
}

.sort-options-card .radio-wrapper span {
    font-weight: 500;
    color: #1F2A37;
}

.sort-apply-btn {
    background-color: #B87B02 !important;
    border-color: #B87B02 !important;
    color: #fff !important;
    border-radius: 0 !important;
    padding: 14px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

.sort-apply-btn:hover {
    background-color: #a06b02 !important;
    border-color: #a06b02 !important;
}

/* Adjust top-controls for mobile triggers */
@media (max-width: 991px) {
    .top-controls {
        padding: 0 !important;
        background-color: transparent !important;
        border-radius: 0 !important;
        margin-bottom: 16px !important;
        gap: 12px !important;
    }

    .top-controls .flex-grow-1 {
        width: auto;
    }

    .top-controls .animated-input-group .form-control {
        background-color: #F3F4F6 !important;
        padding-right: 45px !important;
        /* Ensure space for search icon in RTL */
    }

    .search-icon-rtl {
        right: 12px !important;
        left: auto !important;
    }
}


.store-card-actions {
    display: flex;
    gap: 16px;
}


.navbar-cart-btn {
    position: relative;
}


.navbar-cart-badge {
    position: absolute;
    top: -5px;
    inset-inline-start: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 99px;
    background: #B87B02;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}



.cart-overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 1055;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* Cart dropdown — anchored below navbar cart icon via JS */
.cart-popup {
    position: fixed;
    width: 420px;
    padding: 8px;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 80px);
    background: #fff;
    z-index: 1060;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 4px;
    border: 1px solid #E5E7EB;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible;
}

.cart-popup::before {
    content: "";
    position: absolute;
    top: -7.5px;
    inset-inline-end: 24px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    z-index: 1;
}

.cart-popup-body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 420px;
    padding: 8px 4px;
    scrollbar-width: thin;
    scrollbar-color: #E5E7EB transparent;
}

/* Custom scrollbar for webkit */
.cart-popup-body::-webkit-scrollbar {
    width: 5px;
}

.cart-popup-body::-webkit-scrollbar-track {
    background: transparent;
}

.cart-popup-body::-webkit-scrollbar-thumb {
    background: #E5E7EB;
    border-radius: 10px;
}


.cart-popup.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}


.cart-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 99px;
    background: #B87B02;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}



.cart-close-btn:hover {
    background: #F3F4F6;
    border-color: #9DA4AE;
}

.cart-close-btn:focus,
.cart-close-btn:active,
.cart-close-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}



/* Empty state */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 100%;
    color: #9DA4AE;
    font-size: 16px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #D2D6DB;
}



.cart-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    color: #1F2A37;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}


.cart-item-price span {
    font-size: 16px;
    color: #B87B02;
}

.cart-item-img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.cart-popup-footer {
    display: flex;
    gap: 8px;

}

@media (max-width: 540px) {
    .cart-popup {
        max-width: calc(100% - 24px);
        max-height: 90vh;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(2px);
}

.status-modal {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    width: 90%;
    max-width: 480px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.modal-close-btn:hover {
    opacity: 0.7;
}

.status-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.status-icon.success {
    background: #ECFDF3;
}

.status-icon.failure {
    background: #FEF3F2;
}

.status-icon img {
    max-width: 28px;
    max-height: 28px;
}

.status-title {
    font-size: 18px;
    font-weight: 600;
    color: #1F2A37;
    margin-bottom: 8px;
}

.status-message {
    font-size: 14px;
    color: #384250;
    margin-bottom: 0;
    line-height: 1.5;
}

/* =============================================
   News Details Carousel
   ============================================= */
.news-details-carousel-wrapper {
    position: relative;
    margin-bottom: 32px;
    border-radius: 8px;
    overflow: hidden;
}

.news-details-carousel .news-carousel-img {
    width: 100%;
    height: 379px;
    object-fit: cover;
    border-radius: 8px;
}

.news-details-carousel-wrapper .carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #B87B02;
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s, opacity 0.2s;
}

.news-details-carousel-wrapper .carousel-nav-btn img {
    width: 24px;
    height: 24px;
}

.news-details-carousel-wrapper .carousel-nav-btn:hover {
    background: #9D6902;
}

.news-details-carousel-wrapper .prev-btn {
    inset-inline-start: 20px;
}

.news-details-carousel-wrapper .next-btn {
    inset-inline-end: 20px;
}

.news-details-carousel.owl-theme .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    margin-top: 0;
}

.news-details-carousel.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 1;
    margin: 5px 4px;
}

.news-details-carousel.owl-theme .owl-dots .owl-dot.active span,
.news-details-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: #B87B02;
}

.location-info-box {
    background: #F9FAFB;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    border-radius: 2px;
}


.location-title {
    font-size: 16px;
    font-weight: 700;
    color: #384250;
    line-height: 24px;
}

.location-text {
    font-size: 16px;
    color: #384250;
    line-height: 24px;
    font-weight: 600;
}

.category-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #DBA102;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

    .category-icon-wrapper img {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
        object-fit: contain;
    }

/* =============================================
   Similar Products Section Title
   ============================================= */
.similar-section-title {
    color: var(--Text-text-default, #161616);
    text-align: right;
    font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
    font-size: var(--Size-Display-typo-size-display-sm, 30px);
    font-style: normal;
    font-weight: 700;
    line-height: var(--Line-Height-Display-line-heights-display-sm, 38px);
    margin-bottom: 24px;
}

/* =============================================
   Offer Details Section
   ============================================= */
.offer-details-section {
    padding-block: 40px;
}

.offer-details-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 48px;
    border-radius: var(--Radius-radius-lg, 16px);
    border: 1px solid var(--Border-border-background-neutral, #D2D6DB);
}

/* --- Header Row: Title + Price --- */
.offer-details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    gap: 16px;
    flex-wrap: wrap;
}

.offer-details-title {
    color: var(--Text-text-default, #161616);
    text-align: right;
    font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
    font-size: var(--Size-Display-typo-size-display-md, 36px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--Line-Height-Display-line-heights-display-md, 44px);
    letter-spacing: -0.72px;
}

.offer-details-price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.offer-details-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-price-old {
    color: var(--Global-text-default-disabled, #9DA4AE);
    text-align: right;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--Line-Height-Display-line-heights-display-md, 44px);
    letter-spacing: -0.32px;
    text-decoration-line: line-through;
}

.offer-price-new {
    color: var(--Text-text-default, #161616);
    text-align: right;
    font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
    font-size: var(--Size-Display-typo-size-display-md, 36px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--Line-Height-Display-line-heights-display-md, 44px);
    letter-spacing: -0.72px;
}

.offer-expiry-badge {
    display: flex;
    padding: 4px 0;
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    background: var(--Background-background-secondary, #DBA102);
    border-radius: 4px;
    padding-inline: 8px;
}

    .offer-expiry-badge span {
        color: var(--Text-text-oncolor-primary, #FFF);
        text-align: center;
        font-family: "IBM Plex Sans Arabic";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 18px;
    }

/* --- Products Row --- */
.offer-products-row {
    display: flex;
    align-items: flex-start;
    gap: 77px;
    flex-wrap: wrap;
}

.offer-product-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 280px;
}

.offer-product-image {
    width: 302px;
    height: 302px;
    flex-shrink: 0;
    border-radius: var(--Radius-radius-md, 8px);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

    .offer-product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.offer-product-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.offer-product-name {
    color: var(--Text-text-default, #161616);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.offer-product-tag {
    display: inline-flex;
    height: 24px;
    padding: 0 8px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    border: 1px solid var(--Border-border-neutral-secondary, #E5E7EB);
    background: var(--Tag-tag-background-neutral-light, #F9FAFB);
    color: var(--Tag-tag-text-neutral, #1F2A37);
    text-align: center;
    font-family: "IBM Plex Sans Arabic";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

.offer-product-contact {
    color: var(--Text-text-secondary-paragraph, #6C737F);
    text-align: right;
    font-family: "IBM Plex Sans Arabic";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
}

.offer-product-meta {
    color: var(--Text-text-primary-paragraph, #384250);
    text-align: center;
    font-family: "IBM Plex Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .offer-product-meta .meta-label {
        color: var(--Text-text-primary-paragraph, #384250);
        font-family: "IBM Plex Sans Arabic";
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
    }

    .offer-product-meta .meta-value {
        color: var(--Tag-tag-text-neutral, #1F2A37);
        text-align: center;
        font-family: var(--Font-Family-font-family-text, "IBM Plex Sans Arabic");
        font-size: var(--Size-Text-typo-size-text-md, 16px);
        font-style: normal;
        font-weight: 500;
        line-height: var(--Line-Height-Text-line-heights-text-md, 24px);
    }

/* --- Store Card Actions --- */
.store-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.btn-add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid #D2D6DB;
    background: #fff;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

    .btn-add-to-cart:hover {
        background: #F3F4F6;
        border-color: #9DA4AE;
    }

/* --- Checkout --- */
.offer-checkout {
    display: flex;
    justify-content: center;
}

.offer-checkout-btn {
    min-width: 260px;
    padding-inline: 40px;
}

/* Responsive */
@media (max-width: 991px) {
    .offer-details-header {
        flex-direction: column-reverse;
        align-items: flex-end;
    }

    .offer-details-title {
        font-size: 24px;
        line-height: 32px;
    }

    .offer-products-row {
        gap: 32px;
    }

    .offer-product-image {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .offer-details-card {
        gap: 24px;
        padding: 16px;
    }

    .offer-details-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .offer-details-price-block {
        display: none;
    }

    .offer-details-title {
        color: var(--Text-text-default, #161616);
        text-align: right;
        font-family: "IBM Plex Sans Arabic";
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 32px;
    }

    .offer-products-row {
        gap: 8px;
    }

    .offer-product-item {
        display: flex;
        padding: 12px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        flex: 1 0 0;
        border-radius: 8px;
        border: 1px solid var(--Border-border-background-neutral, #D2D6DB);
        min-width: 0;
    }

    .offer-product-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .offer-product-info {
        gap: 4px;
        align-items: flex-start;
        width: 100%;
    }

    .offer-product-name {
        font-size: 14px;
        line-height: 20px;
        text-align: right;
    }

    .offer-product-tag,
    .offer-product-contact,
    .offer-product-meta {
        display: none;
    }

    .offer-product-item .store-card-actions {
        width: 100%;
        gap: 4px;
    }

        .offer-product-item .store-card-actions .btn-add-to-cart {
            width: 24px;
            height: 24px;
            min-width: 24px;
        }

            .offer-product-item .store-card-actions .btn-add-to-cart img {
                width: 16px;
                height: 16px;
            }

        .offer-product-item .store-card-actions .btn-primary {
            font-size: 12px !important;
            padding: 6px 8px;
            line-height: 16px;
        }

    /* Mobile-only bottom area: price, badge, actions */
    .offer-mobile-bottom {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .offer-mobile-price-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .offer-mobile-expiry {
        display: flex;
        justify-content: center;
    }

    .offer-mobile-actions {
        display: none;
    }

    .offer-price-new {
        font-size: 24px;
    }

    .offer-checkout-btn {
        width: 100%;
        min-width: unset;
    }

    /* Similar offers carousel mobile */
    .similar-offers-grid {
        display: none;
    }

    .similar-offers-carousel {
        display: block;
    }

    #SimilarOffersCarousel .owl-dots {
        margin-top: 16px;
        display: flex;
        justify-content: center;
    }

    [dir="rtl"] #SimilarOffersCarousel .owl-dots {
        direction: ltr;
    }

    #SimilarOffersCarousel.owl-theme .owl-dots .owl-dot {
        margin: 0 4px;
    }

        #SimilarOffersCarousel.owl-theme .owl-dots .owl-dot span {
            width: 8px;
            height: 8px;
            background: #D2D6DB;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        #SimilarOffersCarousel.owl-theme .owl-dots .owl-dot.active span,
        #SimilarOffersCarousel.owl-theme .owl-dots .owl-dot:hover span {
            background: #B87B02;
        }
}

/* Hide mobile-only elements on desktop */
@media (min-width: 577px) {
    .offer-mobile-bottom {
        display: none;
    }

    .similar-offers-carousel {
        display: none;
    }
}
