@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-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-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-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-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;
  background: #F9FAFB;
}

/* 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 */
a {
  text-decoration: none;
}

a.dga-link-white {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

a.dga-link-white:hover {
  opacity: 0.8;
  text-decoration: underline;
  text-decoration-color: #ffffff;
  color: #ffffff;
}

a.dga-link-white img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

a.dga-link-white:hover img {
  transform: translateX(2px);
}



.content-wrapper {
  padding-inline: 80px;
  max-width: 1920px;
  margin: 0 auto;
}

.content-wrapper-container {
  padding: 48px;
  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;
  }

  .content-wrapper-container {
    padding-block: 24px;
    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;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.mt-40 {
  margin-top: 40px;
}

.pb-40 {
  padding-bottom: 40px !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;
}

/* 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);
}


input:not([type="range"]):not([type="checkbox"]):not([type="radio"]):focus,
textarea:focus {
  background-color: #fff !important;
  border-color: #e5e7eb !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: 8px 16px !important;
  font-size: 16px !important;
  line-height: 24px;
  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:hover {
  border-color: #9da4ae !important;
}

.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;
}

[dir="rtl"].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;
  padding-block: 6px !important;
}

[dir="ltr"] .animated-input-group.has-prefix .form-control {
  padding-right: 45px !important;
  padding-block: 6px !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.search-input .form-control {
  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: 8px 16px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  font-size: 16px !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;
  color: #6c737f !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-customized {
  margin-bottom: 0 !important;
}

.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-color: #9da4ae !important;
}

/* General focus rule (excluding radio/checkbox) */
input:not([type="radio"]):not([type="checkbox"]):not([type="tel"]):focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
  background-color: #fff !important;
  color: #161616 !important;
}

.animated-input-group textarea.form-control {
  padding: 12px 16px !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 wrapper — holds select + rotatable arrow */
.phone-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}


.phone-number-input {
  border-radius: 0 8px 8px 0 !important;
  border-left: 1px solid #dee2e6 !important;
}

/* Overlay arrow icon — rotates via JS class */
.phone-code-arrow {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  pointer-events: none;
  transition: transform 0.25s ease;
  z-index: 3;
}

.phone-select-wrapper:focus-within .phone-code-arrow,
.phone-select-wrapper.select-open .phone-code-arrow,
.animated-input-group:focus-within .phone-code-arrow {
  transform: translateY(-50%) rotate(180deg) !important;
}

.phone-select-wrapper {
  padding: 8px 16px;
}

/* Country code select — no background-image arrow (overlay handles it) */
.phone-field .phone-code-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  font-size: 14px !important;
  color: #161616 !important;
  font-weight: 500;
  cursor: pointer;
  flex-shrink: 0;
  outline: none !important;
  box-shadow: none !important;
}

select option {
  padding: 12px 16px;
}

/* Number input inside phone-field */
.phone-field .phone-number-input {
  flex: 1;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  color: #161616 !important;
  outline: none !important;
  box-shadow: none !important;
  min-width: 0;
}

/* 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;
}

/* Password Field — unified input + trailing icon toggle */
.password-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;
  height: 44px;
}

.password-field .form-control {
  flex: 1;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  color: #161616 !important;
  outline: none !important;
  box-shadow: none !important;
  min-width: 0;
  z-index: 1;
}

.password-field .password-toggle {
  border: none !important;
  border-radius: 0 !important;
  background: #f3f4f6 !important;
  padding-inline: 14px !important;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.password-field:focus-within {
  border-radius: 8px !important;
  background: #fff;
}

.password-field:focus-within .password-toggle {
  background: #f3f4f6 !important;
}

.password-field .focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  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;
}

.password-field:focus-within .focus-line {
  transform: scaleX(1);
}

.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("/Content/new-dga/assets/images/panner.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
}

.login-form-container {
  display: flex;
  padding: 40px;
  flex-direction: column;
  gap: 32px;
  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-inner-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.login-form,
.register-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}



.login-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: -8px;
  /* Corrects the 32px gap from form to 24px below divider */
}



.login-header-logo {
  width: 100px;
  min-height: 86px;
}

.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-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-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-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: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 16px;

  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-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;
  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;
  }


  .pd-price-amount {
    font-size: 24px !important;
    line-height: 32px !important;
  }

  .pd-suggested-title {
    font-size: 18px !important;
    line-height: 28px !important;
    margin-bottom: 8px !important;
  }

  .register-falcon-section {
    gap: 24px;
  }

  .profile-tabs-content {
    padding-block: 24px !important;
    padding-inline: 16px !important;
  }

  .login-form-container {
    padding: 40px 16px;
    margin: 0;
    border-radius: 10px;
  }

  .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);
    /* 126.667% */
  }

  .login-register-copy {
    color: var(--Text-text-display, #1f2a37);
    text-align: start;
    font-family: "IBM Plex Sans Arabic";
    font-size: 16px;

    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-weight: 400;
    line-height: 24px;
  }

  .login-actions .btn {
    font-size: 15px;
  }

  .login-info-btn {
    font-size: 18px;
  }

  .message-actions a {
    width: 100%;
  }

  .sucess-wrrapper {
    padding: 80px 0;
  }

  .success-page {
    padding: 80px 16px;
  }
}

@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: 66px;
  }

  .navbar-brand {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .main-navbar {
    min-height: 80px;
  }

  .navbar-toggler {
    padding-top: 1rem;
    padding-bottom: 1rem;
    z-index: 100;
  }

  #lang-toggle-mobile {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

/* Topbar styles */

.title {
  font-weight: 500;
  color: #161616;
  font-size: 16px;
  line-height: 24px;
}

.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;
}

/* gallery */
.gallery-item {
  border: 1px solid #F3F4F6;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px;
}

.gallery-caption {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1F2A37;
}

.image-gallery {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: 250px;
  min-height: 250px;
}

.timestamp-info {
  padding: 24px 0 40px 0;
}

.timestamp-info p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1F2A37;
}

.video-header {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #1F2A37;
}

.video-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1F2A37;
}

.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-hero-section {
  background-image: url("../assets/images/Hero Section.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: 70.64vh;
  height: 70.64vh;
  display: flex;
  align-items: center;
}

@media (max-width: 576px) {

  #hero,
  #HeroCarousel,
  #HeroCarousel .item {
    min-height: 50vh;
    height: 50vh;
  }
}

#HeroCarousel .owl-dots {
  position: absolute;
  bottom: 2.5rem;
  inset-inline-end: 50%;
  transform: translateX(50%);
  text-align: center;
}

#HeroCarousel .owl-dots {
  transform: translateX(-50%);
}

.owl-theme .owl-dots {
  display: flex;
  flex-direction: row;
  gap: 0.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: 0 !important;
  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-logo {
  display: flex;
  justify-content: start;
  align-items: start;
}

.founding-day-logo-img {
  width: 120px;
  height: 120px;
  max-width: 120px;
  max-height: 120px;
}

.accordion-item {
  padding: 16px;
  border-bottom: 1px solid #d2d6db;
  border-radius: 0 !important;
}

@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-toggler:focus {
  box-shadow: none;
}

.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;
    z-index: 100 !important;
    position: relative;
    pointer-events: auto !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("/Content/new-dga/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;
}

.no-caret::after {
  display: none !important;
}

.dropdown-chevron {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-chevron,
.dropdown.show .dropdown-chevron {
  transform: rotate(180deg);
}

.profile-dropdown-wrapper {
  position: relative !important;
}

.navbar .dropdown-menu {
  top: 100%;
  inset-inline: 0;
  max-width: none;
}

.profile-dropdown-menu {
  width: max-content !important;
  min-width: 200px !important;
  inset-inline-start: 0 !important;
  inset-inline-end: auto !important;
  transform: none !important;
}

.profile-dropdown-menu .dropdown-item {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.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: start;
  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: #b87b02;
}

.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%;
  }
}

/* terms section */
#terms-section .content-wrapper p {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  color: #161616 !important;
  margin: 0 !important;
  font-family: "IBM Plex Sans Arabic" !important;
  text-indent: unset !important;

}

#terms-section .content-wrapper h2 {
  font-size: 30px !important;
  font-weight: 700 !important;
  color: #b87b02 !important;
  font-family: "IBM Plex Sans Arabic" !important;

}

#terms-section .content-wrapper p span {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  color: #161616 !important;
  margin: 0 !important;
  font-family: "IBM Plex Sans Arabic" !important;
}

#terms-section .content-wrapper p ol,
#terms-section .content-wrapper p ul {
  padding-inline-start: 1.25rem !important;
  margin: 0 !important;
}

#terms-section .content-wrapper p ol li,
#terms-section .content-wrapper p ul li {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  color: #161616 !important;
  margin: 0 !important;
  font-family: "IBM Plex Sans Arabic" !important;
}

/* 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;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.sfc-footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
}

.sfc-footer__contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sfc-footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sfc-footer__contact-info span {
  color: var(--Text-text-oncolor-primary, #fff);
  text-align: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.sfc-footer__contact-value {
  margin: 0;
  text-decoration: none;
  word-break: break-word;
  color: var(--Text-text-oncolor-primary, #fff);
  text-align: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 16px;

  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: 16px;
  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-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: 8px 16px;
  text-align: start;
  direction: rtl;
  unicode-bidi: plaintext;
  background: #ececec;
  color: #1a1a1a;
  height: 40px;
  min-width: 200px;
}

.sfc-footer__newsletter input::placeholder {
  color: #384250;
  text-align: right !important;
  direction: rtl;
  font-family: "IBM Plex Sans Arabic";
  font-size: 16px;
  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: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 16px;

  font-weight: 500;
  line-height: 24px;
}

.sfc-footer__social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
  direction: rtl;
  text-align: start;
}

.sfc-social-btn {
  width: 32px;
  height: 32px;
  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: 86px;
  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: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 14px;
  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: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 14px;

  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: 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);
}

.register-label {
  text-align: start;
}

.register-input {
  text-align: start;
}

.register-country-code {
  flex: 0 0 120px;
  text-align: start;
}

.register-phone-input {
  flex: 1;
  text-align: start;
  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-weight: 500;
  line-height: 24px;
  width: 50%;
  border: none;
}



/* 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%;
  }

}

@media (max-width: 576px) {
  .register-submit-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: 28px;
  height: 28px;
  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: 14px;

  font-weight: 400;
  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-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 {
    padding-top: 24px;
  }

  /* Flatten the entire footer into a single flex column */
  .sfc-footer .content-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px;
    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: 14px;
    text-align: start;
    line-height: 20px;
  }

  .sfc-footer__newsletter {
    margin-inline: 0;
  }

  .sfc-footer__social {
    justify-content: flex-start !important;
  }

  .sfc-footer__social-title {
    font-size: 16px;
    margin-top: 0;
  }

  .sfc-footer__contact-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
  }

  .sfc-footer__contact-item {
    flex: 0 0 auto;
  }

  .sfc-footer__contact-info {
    justify-content: flex-start;
  }

  .sfc-footer__contact-info 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: 14px;
    line-height: 20px;

  }

  .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: 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);
  margin-bottom: 16px;
}

.verification-message {
  color: var(--Text-text-display, #1f2a37);
  text-align: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 16px;

  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
}

.verification-label {
  color: #1F2A37;
  font-size: 16px;
  line-height: 24px;
}

.SetupCode {
  word-break: break-all;
}

.verification-input::placeholder {
  color: var(--Form-field-text-placeholder, #6c737f);
  font-family: "IBM Plex Sans Arabic";
  font-size: 16px;

  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-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);
  font-size: var(--Size-Display-typo-size-display-sm, 30px);

  font-weight: 700;
  line-height: var(--Line-Height-Display-line-heights-display-sm, 38px);

}

.two-factor-setup-message {
  color: var(--Text-text-display, #1f2a37);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}



.qr-code {
  border-radius: 4px;
}

.two-factor-setup-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {

  .qr-code-container {
    padding: 16px;
  }

  .qr-code-placeholder {
    padding: 12px;
  }

  .qr-code {
    width: 180px;
    height: 180px;
  }
}

/* Reset Password Styles */
.reset-password-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.reset-password-form>div {
  width: 100%;
}

.reset-password-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);
}

.reset-password-message {
  color: var(--Text-text-display, #1f2a37);
  text-align: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 16px;

  font-weight: 400;
  line-height: 24px;
}

.reset-password-label {
  color: var(--Form-field-text-label, #161616);
  text-align: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 14px;

  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-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-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: 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);
}

.new-password-label {
  color: var(--Form-field-text-label, #161616);
  text-align: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 14px;

  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-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-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: start;
  }

}

/* 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-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-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-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;
  overflow: hidden;
}

.about-club-image {
  max-width: 100%;
}

.about-club-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .about-section-bg {
    background-image: url("../assets/images/About BK Mobile.svg");
    padding-block: 24px;
  }
}

.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: 14px;
  margin-top: 47px;
}

.about-title-container {
  margin-bottom: 24px;
}

.about-pattern {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.about-main-title {
  color: #1f2a37;
  text-align: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  margin: 0;
}

.about-description {
  color: #6c737f;
  text-align: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 16px;

  font-weight: 400;
  line-height: 24px;
}

.about-description p span {
  font-family: "IBM Plex Sans Arabic" !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  color: #6c737f !important;

}

.about-image-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.about-main-image {
  max-width: 100%;
  height: auto;
  min-height: 424px;
}

@media (max-width: 768px) {
  .about-main-title {
    font-size: 30px;
    line-height: 38px;
  }

  .about-main-image {
    min-height: 227px !important;
  }


  .about-pattern {
    width: 24px;
    height: 24px;
  }

  .about-title-container {
    justify-content: start;
    align-items: center;
    margin-top: 30px;
  }

  .about-section-label {
    margin-top: 24px;
  }
}

.about-content-col {
  padding-inline: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@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;
}

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.events-title-container {
  display: flex;
  gap: 16px;
}

.events-pattern {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.events-title {
  color: #b87b02;
  text-align: start;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-size: 30px;

  font-weight: 700;
  line-height: 38px;
  margin: 0;
}

.btn-secondary-black {
  min-height: 40px;
  max-height: 40px;
  color: #161616;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-size: 16px;
  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: 8px 16px;
  background: #F3F4F6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--Button-buttons-lg-gap, 4px);
}




@media (max-width: 768px) {
  .events-header {
    gap: 10px;
    margin-bottom: 32px;
  }


  .events-pattern {
    width: 20px;
    height: 20px;
  }

  .events-title-container {
    gap: 12px;
  }

  .events-view-all {
    font-size: 14px;
    white-space: nowrap;
  }

  .btn-secondary-black {
    padding: 6px 12px;
  }
}



/* News Section Styles */
.news-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);
  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-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;
  max-height: 40px;
  padding: 8px 16px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:disabled {
  color: #9DA4AE;
  background: #E5E7EB;
  border-color: transparent;
  cursor: not-allowed;
}

.btn-secondary-outline {
  color: #161616 !important;
  border: 1px solid #D2D6DB !important;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-height: 40px;
}

.btn-secondary-outline:hover {
  background-color: #f3f4f6 !important;
  text-decoration: none !important;
  color: #161616;

}

/* News Cards Styles */
.news-cards-container {
  overflow: visible;
  margin-top: 32px;
  padding-bottom: 60px;
}

.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-wrapper {
  position: relative;
  width: 100%;
  height: 250px !important;
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
}

.news-card-image {
  width: 100% !important;
  height: 250px !important;
  object-fit: cover !important;
  border-radius: var(--radius-md, 8px);
  display: block !important;
}

.news-card-image-wrapper .news-card-image {
  height: 100% !important;
  border-radius: 0 !important;
}

.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: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  line-height: 28px;
  flex-grow: 1;
  min-height: 56px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.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-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: 8px 12px !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }
}

.btn-primary:hover {
  background: #a06b02;
  color: #fff;
}

.btn-primary:disabled,
.btn-primary.disabled {
  background: #E5E7EB !important;
  color: #9DA4AE !important;
  border-color: transparent !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
}

.btn-primary:disabled .riyal-white,
.btn-primary.disabled .riyal-white {
  filter: brightness(0) !important;
}

.btn-primary:disabled:hover,
.btn-primary.disabled:hover {
  background: #E5E7EB !important;
  color: #9DA4AE !important;
}

/* 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 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  z-index: 10;
}

#NewsCarousel .owl-dots .owl-dot {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !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: 12px !important;
  height: 12px !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: #b87b02 !important;
}


.news-card {
  display: flex !important;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #d2d6db;
  border-radius: 16px;
  padding: 16px;
  text-decoration: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}




.p-secondary {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #6C737F;
}





.events-owl-carousel.owl-carousel {
  position: relative;
}

.events-owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.events-carousel-container {
  position: relative;
  padding-bottom: 60px;
  margin-top: 32px;

}

/* Hide navigation arrows */
#EventsCarousel .owl-nav {
  display: none !important;
}

#EventsCarousel .owl-prev,
#EventsCarousel .owl-next {
  display: none !important;
}

#EventsCarousel .owl-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
}


.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 24px !important;
}

#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: #B87B02 !important;
}

.events-card,
.service-card,
.category-card {
  display: flex !important;
  padding: 16px;
  flex-direction: column;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid #d2d6db;
  background: #fff;
  height: 100%;
  min-height: 474px;
  cursor: pointer;

}



.events-card img:not(.events-card-arrow img) {
  width: 100%;
  height: 170px;
  object-fit: cover;
  flex-shrink: 0;
}

.events-card-title,
.service-card-title,
.category-card-title {
  color: #1f2a37;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.events-card-description,
.service-card-description {
  color: #667085 !important;
  font-size: 15px !important;
  line-height: 22px !important;
  margin-bottom: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.events-card-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}

.events-card-arrow,
.service-card-arrow {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
}

.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-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: #B87B02;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  word-break: break-word;
}

a.dga-link:hover {
  text-decoration: underline;
  color: #e8db87;
}

a.dga-link:active {
  color: #e8db87;
}

@media (max-width: 768px) {

  #news {
    padding-top: 0 !important;
  }

  .offer-details-section {
    padding-bottom: 24px !important;
  }

  .similar-offers-carousel {
    padding-top: 0;
  }

  .offer-price-old {
    font-size: 20px !important;
    line-height: 30px !important;
  }

  .events-card-logo {
    width: 140px;
    height: 54px;
  }


  .events-badge {
    font-size: 12px;
    height: 28px;
    padding: 3px 8px;
  }
}

/* Breadcrumb Styles */
.breadcrumb-container {
  padding-block: 2.5rem;
  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;
      }
    }

    a.alt-link {
      color: #9da4ae;
    }

    &: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-container.breadcrumb-white {
  background-color: transparent !important;
  padding-bottom: 0px !important;
}

.breadcrumb-container.breadcrumb-white .breadcrumb-item a {
  color: #9da4ae !important;
}

.breadcrumb-container.breadcrumb-white .breadcrumb-title {
  color: #161616 !important;
}

.breadcrumb-container.breadcrumb-white .sub-header {
  color: #384250 !important;
}

.breadcrumb-container.breadcrumb-white .breadcrumb-item+.breadcrumb-item::before {
  filter: invert(72%) sepia(8%) saturate(225%) hue-rotate(176deg) brightness(88%) contrast(85%);
}

.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;

  @media (max-width: 768px) {
    font-size: 30px;
    margin-block: 24px;
    line-height: 1.5;
  }
}

.heritage-main-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #b87b02;

  @media (max-width: 768px) {
    font-size: 30px;
    margin-block: 24px;
    line-height: 1.5;
  }
}

.heritage-text {
  font-size: 18px;
  color: #161616;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 28px;

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 24px;
  }
}

.about-club-content {

  p {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #6C737F !important;
    line-height: 24px !important;
  }

  p span {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #6C737F !important;
    line-height: 24px !important;
  }
}

.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 {
  border-radius: 16px;

  .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-24 {
  margin-block: 24px;
}

.my-32 {
  margin-block: 32px;
}

/* All sides */
.m-40 {
  margin: 2.5rem !important;
}

/* Individual sides */
.mt-40 {
  margin-top: 2.5rem !important;
}

.my-4 {
  margin: 1rem 0 !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;
}

.gap-32 {
  gap: 32px;
}

@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 */
.btn {
  border-radius: 4px !important;
  padding: 8px 16px !important;
  font-weight: 500 !important;
  font-size: 16px !important;
}

.dga-primary-btn {
  background-color: #b87b02;
  color: #ffffff;
  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: #64748b;
  margin-bottom: 16px;
}

.attachments-btn {
  border: 1px solid #d2d6db;
  color: #384250;
  background: white;
}

.attachments-btn:hover {
  background-color: #f9fafb;
  border-color: #9da4ae;
}

/* Sidebar Styles */
.sidebar {
  position: relative;
  background: white !important;
  border: 1px solid #d2d6db !important;
  padding: 40px;
  border-radius: 16px;
  min-height: 626px;
  margin-top: -100px;
  margin-bottom: 40px;
}


@media (max-width: 992px) {
  .sidebar {
    position: static;
    min-height: 396px;
    margin-top: 32px;
    margin-bottom: 40px;
  }
}

.text-copy,
.link {
  color: #1b8354;
  font-size: var(--font-size-16) !important;

  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;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
}

.card-top-img-container .card-img-wrapper {
  height: 200px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}

.card-top-img-container .card-img-top {
  width: 100% !important;
  height: 100% !important;
  object-fit: fill !important;
  border-radius: 0 !important;
}

.card-top-img-container .card-customized-img-top {
  height: 250px !important;
  width: 100% !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  display: block !important;
}

.card-top-img-container .card-body {
  padding: 0 !important;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.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;
  gap: .75rem;
}



.card-top-img-container.offer-style .card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  text-align: start;
  min-width: 0;
  width: 100%;
}

.card-top-img-container.offer-style .card-body>div {
  width: 100%;
  min-width: 0;
}

/* Offer Variant for card-top-img-container */
.card-top-img-container.offer-style .card-title {
  color: #1f2a37 !important;
  font-size: 18px !important;
  line-height: 28px !important;
  height: 56px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}


/* 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--gold img {
  width: fit-content !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;
  }

}

/* 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;
}

.register-falcon-wrapper {
  background: #fff;
  border-radius: 1rem;
}

.heritage-info-section .falcon-info-card h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

/* =============================================
   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: start;
  font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
  font-size: var(--Size-Display-typo-size-display-md, 36px);

  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-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: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 18px;

  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: start;
  font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
  font-size: var(--Size-Display-typo-size-display-md, 36px);

  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: start;
  font-family: Arshid, "IBM Plex Sans Arabic", sans-serif;
  font-size: 24px;

  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-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-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: start;
  font-family: var(--Font-Family-font-family-text, "IBM Plex Sans Arabic");
  font-size: var(--Size-Text-typo-size-text-sm, 14px);

  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: fit-content;
  max-width: 100%;
  height: 44px;
  align-items: center;
  border-bottom: 2px solid var(--Border-border-neutral-secondary, #e5e7eb);
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
}

.pd-tab-bar::-webkit-scrollbar {
  display: none;
}

.pd-tab-bar::after {
  content: "";
  padding-right: 1px;
}

.pd-tab {
  flex: 0 0 auto;
  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-weight: 500;
  line-height: 20px;
  position: relative;
  transition: color 0.2s ease;
  padding: 12px 16px;
}

.pd-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  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: 24px;
}

.pd-info-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pd-tag-label {
  color: #384250;
  text-align: center;
  font-family: "IBM Plex Sans Arabic";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.pd-tag-value {
  display: flex;
  height: 40px;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
  color: #1F2A37;
  text-align: center;
  font-family: "IBM Plex Sans Arabic";
  font-size: 16px;
  font-weight: 500;
  min-width: 85px;
}

/* 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-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-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-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-weight: 700;
  line-height: 24px;
}

.pd-color-stock--in {
  color: var(--Text-text-secondary, #dba102);
  text-align: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 16px;

  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: 56px;
  height: 32px;
  padding: 8px 16px;
  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: 71px;
  height: 32px;
  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: 40px;
  max-width: 193px;
  min-height: 40px;
  max-height: 40px;
  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: 24px;
  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-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-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;
  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-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;
  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-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)
   ============================================= */
.nafath-modal {
  width: 702px !important;
}

.nafath-modal .pd-modal-body {
  align-items: stretch !important;
}

.nafath-modal .pd-modal-title,
.nafath-modal .pd-modal-desc {
  text-align: start;
}

.pd-modal2 {
  display: flex;
  width: 370px;
  padding: 24px;
  min-width: 370px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  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-m2-title {
  color: var(--Text-text-display, #1f2a37);
  text-align: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 18px;

  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: start;
  font-family: var(--Font-Family-font-family-text, "IBM Plex Sans Arabic");
  font-size: var(--Size-Text-typo-size-text-md, 16px);

  font-weight: 500;
  line-height: var(--Line-Height-Text-line-heights-text-md, 24px);
}



.pd-m2-field-label {
  color: var(--Form-field-text-label, #161616);
  text-align: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 14px;

  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-weight: 400;
  line-height: 24px;
  outline: none;
  transition: border-color 0.2s ease;
  text-align: start;
}

.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);
}

/* Payment Methods Grid */
.pd-payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-self: stretch;
}

.pd-payment-modal {
  width: 528px;
}

.pd-payment-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid var(--Border-border-neutral-primary, #d2d6db);
  background: var(--Background-background-card, #fff);
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 80px;
}

.pd-payment-card:hover {
  border-color: var(--Gold-700-Color, #b87b02);
  box-shadow: 0 2px 8px rgba(184, 123, 2, 0.1);
}

.pd-payment-card.pd-payment-card--selected {
  border: 3px solid #b87b02;
  background: var(--Background-background-card, #fff);
}

.pd-payment-logo {
  max-width: 100%;
  object-fit: contain;
}

/* Mobile responsive for modals */
@media (max-width: 576px) {
  .pd-modal {
    width: 90%;
    margin: 0 20px;
  }

  .pd-modal2 {
    margin: 0 20px;
  }
}

.pd-suggested-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);
  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
   ============================================= */

/* 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;
}

@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;
  gap: 24px;
}

.empty-state__image {
  max-width: 200px;
  height: auto;
  margin-bottom: 16px;
}

.empty-state__text {
  font-weight: 400;
  color: #161616;
  margin-bottom: 24px;
}

.empty-cart-actions .btn {
  min-width: 195px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 576px) {
  .empty-cart-actions {
    width: 100%;
  }

  .empty-cart-actions .btn {
    min-width: 0 !important;
    flex: 1;
  }
}

.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;
  }
}



.navbar-cart-btn {
  position: relative;
}

.navbar-cart-badge {
  position: absolute;
  top: 0px;
  inset-inline-start: 3px;
  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: 328px;
  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;
  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 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  padding: 0 !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.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: 12px 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;
  font-weight: 400;
  margin: 0;
  color: #1f2a37;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price span {
  font-size: 16px;
  color: #b87b02;
  font-weight: 400;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.cart-popup-footer {
  display: flex;
  gap: 8px;
  width: 100%;
}

.cart-popup-footer>* {
  flex: 1;
  text-align: center;
  justify-content: center;
}

.cart-item-delete {
  padding: 0 !important;
}

@media (max-width: 540px) {
  .cart-popup {
    left: 12px !important;
    right: 12px !important;
    inset-inline-start: 12px !important;
    inset-inline-end: 12px !important;
    width: calc(100vw - 24px) !important;
    max-width: none !important;
    max-height: 80vh;
  }

  .cart-popup::before {
    display: none !important;
  }
}

.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: 8px;
  padding: 24px;
  width: 90%;
  max-width: 370px;
  display: flex;
  gap: 8px;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: modalSlideIn 0.3s ease-out;
  position: relative;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  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: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.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;
}

.status-message {
  font-size: 14px;
  color: #384250;
  margin-bottom: 0;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* =============================================
   News Details Carousel
   ============================================= */
#news {
  overflow-x: hidden;
}

.news-details-carousel-wrapper {
  position: relative;
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
}

.news-owl-carousel {
  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: 48px;
  height: 48px;
  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: 12px;
  height: 12px;
  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: 400;
}

.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;
}

/* =============================================
   Profile Page (حسابي) Styles
   ============================================= */

.profile-page-bg {
  background-color: #f9fafb;
}

.profile-sidebar {
  padding: 16px;
  min-height: 690px;
}

.profile-img-container {
  position: relative;
  width: 120px;
  height: 120px;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: #f9fafb;
}

.profile-upload-btn {
  bottom: -5px;
  background: #fffef2;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 8px;
}

.profile-upload-btn:hover {
  background: #f3f4f6;
}

.profile-nav .nav-link {
  border-radius: 0;
  padding: 8px 16px !important;
  color: #161616;
  font-weight: 600;
  font-size: 14px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  border: none !important;
  outline: none !important;
  position: relative;
  background: transparent !important;
  box-shadow: none !important;
}

.profile-nav .nav-link::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 4px;
  height: 24px;
  background-color: #9da4ae;
  border-radius: 9999px;
  transition: transform 0.2s ease;
  transform-origin: center;
}

.profile-nav .nav-link:not(:first-child) {
  border-top: none !important;
  margin-block: 8px !important;
  position: relative;
}

.profile-nav .nav-link:not(:first-child)::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #d2d6db;
}

.profile-nav .nav-link:hover,
.profile-nav .nav-link.active {
  background-color: #f3f4f6 !important;
}

.profile-nav .nav-link:hover::before,
.profile-nav .nav-link.active::before {
  transform: translateY(-50%) scaleY(1);
}

.mobile-profile-sidebar .profile-nav .nav-link::before {
  display: none !important;
}

.profile-nav .nav-link .nav-arrow {
  transition: transform 0.2s ease;
}

[dir="ltr"] .profile-nav .nav-link .nav-arrow {
  transform: rotate(180deg);
}

.profile-content-title {
  font-size: 24px;
  font-weight: 700;
  color: #161616;
  line-height: 32px;
}

.input-with-action {
  display: flex;
  align-items: stretch;
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 44px;
}

.logout-link {
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 20px !important;
  color: #b42318 !important;
}

.input-with-action .change-btn {
  background-color: #0d121c !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 8px 16px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400 !important;
  transition: background-color 0.2s ease;
}

.input-with-action .change-btn:hover {
  background-color: #1a2233 !important;
}

.input-with-action .focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  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;
}

.input-with-action:focus-within .focus-line {
  transform: scaleX(1);
}

.ltrText {
  direction: ltr;
  display: inline-block;
}

.btn-light-gray {
  background-color: #d2d6db !important;
  color: #384250 !important;
}

/* Modals */
.modal-title {
  color: #161616;
  font-size: 18px;
  font-weight: 600;
}

.btn:active {
  border-color: transparent !important;
  outline: none !important;
}

.btn-dark-blue {
  background-color: #0d121c;
  color: #fff;
}

.btn-dark-blue:disabled {
  background: #e5e7eb;
  color: #9da4ae;
  border: none;
  opacity: revert;
}

.btn-dark-blue:hover {
  background-color: #1a2233;
  color: #fff;
}

.dga-secondary-outline {
  border-color: #d2d6db !important;
}

.dga-secondary-outline:hover {
  background-color: #e5e7eb;
}

.dga-btn-danger {
  background: #D92D20 !important;
  color: #fff !important;
}

.h-44 {
  height: 44px;
}

.min-vh-75 {
  min-height: 75vh;
}

@media (max-width: 991px) {
  .min-vh-75 {
    min-height: auto;
  }
}

/* =============================================
   Similar Products Section Title
   ============================================= */
.similar-section-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);
}

/* =============================================
   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: start;
  font-family: var(--Font-Family-font-family-display, "IBM Plex Sans Arabic");
  font-size: var(--Size-Display-typo-size-display-md, 36px);

  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: start;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-size: 24px;

  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.32px;
  text-decoration-line: line-through;
}

.offer-price-new {
  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-md, 36px);

  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: 26px;
  min-width: 302px;
}

.continue-white {
  filter: brightness(0) invert(1);
}

.offer-expiry-badge span {
  color: var(--Text-text-oncolor-primary, #fff);
  text-align: center;
  font-family: "IBM Plex Sans Arabic";
  font-size: 12px;
  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;
  min-width: 0;
}

.offer-product-name {
  color: var(--Text-text-default, #161616);
  text-align: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.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-weight: 500;
  line-height: 18px;
}

.offer-product-contact {
  color: var(--Text-text-secondary-paragraph, #6c737f);
  text-align: start;
  font-family: "IBM Plex Sans Arabic";
  font-size: 18px;

  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-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-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%;
  margin-top: auto;
}

.btn-add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 40px;
  max-height: 40px;
  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;
}

.store-max-label {
  font-size: 12px;
  line-height: 18px;
  color: #384250;
}

/* --- Checkout --- */
.offer-checkout {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.offer-checkout-btn {
  min-width: 193px;
  padding-inline: 40px;
}

/* success modal  */
.success-page {
  background: #FFFFFF;
  max-width: 928px;
  border-radius: 16px;
  padding: 48px;
}

/* 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: start;
    font-family: "IBM Plex Sans Arabic";
    font-size: 24px;

    font-weight: 600;
    line-height: 32px;
  }

  section.offer-details-carousel,
  .offer-details-carousel .content-wrapper {
    padding-inline: 0 !important;
    padding-block: 0 !important;
  }

  .offer-products-row {
    gap: 8px;
  }

  .similar-section-title {
    font-size: 18px;
    margin-bottom: 8px;
    padding-inline: 16px;
  }

  .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: start;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
  }

  .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-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-grid .offer-style {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .similar-offers-grid .card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 40px;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
  }

  .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;
  }
}

/* My Offers Tab Styles */

/* My Offers Card Refinements */
.card-countdown {
  display: flex;
  gap: 8px;
}

.countdown-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown-item .animated-input-group {
  width: 100%;
  cursor: default;
}

.countdown-item .form-control {
  height: 48px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #f3f4f6 !important;
  border: 1px solid #d2d6db !important;
  border-radius: 8px !important;
  font-size: 18px;
  font-weight: 600;
  color: #161616 !important;
  padding: 0 !important;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease !important;
}

/* Enable animation for non-input countdown boxes on hover and focus */
.countdown-item .animated-input-group:hover .focus-line,
.countdown-item .animated-input-group:focus-within .focus-line {
  transform: scaleX(1);
}

.countdown-item .animated-input-group:hover .form-control {
  background-color: #fff !important;
  border-color: #9da4ae !important;
}

.countdown-item .form-label {
  margin-bottom: 0 !important;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #384250;
  order: 2;
  /* Ensure label stays below if flex-direction is changed */
}

.offer-status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  width: fit-content;
}

.badge-ended {
  background: #fef3f2;
  color: #912018;
  border: 1px solid #fecdca;
}

.badge-accepted {
  background: #ecfdf3;
  color: #085d3a;
  border: 1px solid #abefc6;
}

.badge-pending {
  background: #fffaeb;
  color: #93370d;
  border: 1px solid #fedf89;
}

/* Date Input Custom Icon */
.date-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.date-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  z-index: 10;
}

.date-calendar-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
  opacity: 0.6;
}

/* My Offers Tab Styles */

/* My Offers Card Refinements */
.card-countdown {
  display: flex;
  gap: 8px;
}

.countdown-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown-item .animated-input-group {
  width: 100%;
  cursor: default;
}

.countdown-item .form-control {
  height: 48px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #f3f4f6 !important;
  border: 1px solid #d2d6db !important;
  border-radius: 8px !important;
  font-size: 18px;
  font-weight: 600;
  color: #161616 !important;
  padding: 0 !important;
  transition: background-color 0.2s ease, border-color 0.2s ease !important;
}

/* Enable animation for non-input countdown boxes on hover and focus */
.countdown-item .animated-input-group:hover .focus-line,
.countdown-item .animated-input-group:focus-within .focus-line {
  transform: scaleX(1);
}

.countdown-item .animated-input-group:hover .form-control {
  background-color: #fff !important;
  border-color: #9da4ae !important;
}

.countdown-item .form-label {
  margin-bottom: 0 !important;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #384250;
  order: 2;
  /* Ensure label stays below if flex-direction is changed */
}


.badge-ended {
  background: #fef3f2;
  color: #912018;
  border: 1px solid #fecdca;
}

.badge-accepted {
  background: #ecfdf3;
  color: #085d3a;
  border: 1px solid #abefc6;
}

.badge-pending {
  background: #fffaeb;
  color: #93370d;
  border: 1px solid #fedf89;
}

/* Date Input Custom Icon */
.date-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.date-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  z-index: 10;
}

.date-calendar-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
  opacity: 0.6;
}

[dir="rtl"] .date-calendar-icon {
  left: 12px;
  right: auto;
}

.owl-carousel .owl-item .events-card-arrow img {
  width: auto !important;
  display: inline-block !important;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: #b87b02;
}

.stepper {
  display: flex;
  align-items: flex-start;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 213px;
}

/* 🔥 الخط */
.step::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: #d2d6db;
}

.step:last-child {
  width: auto;
  min-width: auto;
  max-width: fit-content;
}

.step .label {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #6c737f;
  text-align: left;
  max-width: 200px;
}

.step:last-child::after {
  display: none;
}

.step .circle {
  width: 32px;
  height: 32px;
  color: #d2d6db;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #d2d6db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 1;
}



.step-submit {
  display: none;
}

.step.active .circle,
.step.done .circle {
  color: #d39e00;
  border-color: #d39e00;
}

.step.active .label {
  color: #1f2a37;
  font-weight: 500;
}

.step.done .circle {
  background: #d39e00;
  color: #fff;
}

.step.done::after {
  background: #d39e00;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

.stepper-wrapper.read-only .step .circle {
  color: #d39e00;
  border-color: #d39e00;
}

.stepper-wrapper.read-only .step .label {
  color: #1f2a37;
  font-weight: 500;
  text-align: start;
}



@media (max-width: 576px) {


  .step {
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-height: auto;
    max-width: 100%;
  }

  .step::after {
    top: 59px;
    right: 17.5px;
    height: calc(100% - 32px);
    width: 2px;
    background: #d2d6db;
  }

  .step .label {
    text-align: start;
    margin: 0;
  }
}

/* Step Counter Styles */
.step-counter {
  display: none;
}

@media (max-width: 768px) {
  .step-counter {
    display: block;
    color: var(--Stepper-stepper-text-secondary, #384250);
    text-align: start;
    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);
  }

  .start-service-btn {
    width: 100%;
  }

  /* Hide all steps on mobile by default, EXCEPT for read-only stepper */
  .stepper:not(.read-only-stepper) .step {
    display: none !important;
  }

  .stepper-wrapper.read-only .stepper {
    flex-direction: column !important;
    width: fit-content;
    gap: 32px;
  }

  .stepper-wrapper.read-only .stepper .step {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px;
    width: auto;
    min-height: auto;
    flex: none;
    position: relative;
  }

  .stepper-wrapper.read-only .step .label {
    margin: 4px 0 0 0;
    text-align: start;
    max-width: none;
    word-wrap: break-word;
    color: #161616;
    font-size: 16px;
    flex: 1;
  }

  .stepper-wrapper.read-only .step .circle {
    flex-shrink: 0;
    color: #b87b02;
    border-color: #b87b02;
  }

  /* Show only the active step on mobile for interactive stepper */
  .stepper-wrapper:not(.read-only) .stepper .step.active {
    display: flex !important;
    flex-direction: column;
    align-items: start;
    gap: 8px;
  }

  /* Hide the line after step on mobile, EXCEPT for read-only stepper */
  .stepper:not(.read-only-stepper) .step::after,
  .stepper:not(.read-only-stepper) .step::before {
    display: none !important;
  }

  .stepper-wrapper.read-only .step::after {
    display: block !important;
    position: absolute;
    top: 16px;
    bottom: -48px;
    width: 2px;
    height: auto;
    background: #d2d6db;
    z-index: 0;
  }

  [dir="rtl"] .stepper-wrapper.read-only .step::after {
    right: 15px;
    left: auto;
  }

  [dir="ltr"] .stepper-wrapper.read-only .step::after {
    left: 15px;
    right: auto;
  }

  .stepper-wrapper.read-only .step:last-child::after {
    display: none !important;
  }

  .stepper-wrapper {
    align-items: start !important;
    width: 100%;
  }

  .sfc-falcon-image {
    max-height: 227px;
  }
}

.register-falcon-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Phone Input Custom Styles - High Specificity to override global rules */
.phone-field.animated-input-group {
  display: flex !important;
  align-items: center !important;
  background: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 8px;
  overflow: hidden;
}



.phone-field.animated-input-group .form-control.phone-code-input {
  border: none !important;
  background: transparent !important;
  width: 75px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  z-index: 2;
  text-align: center;
  color: #6C737F !important;
}

.phone-field.animated-input-group .form-control.phone-number-input {
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex-grow: 1;
}

.phone-field.animated-input-group::after {
  content: "";
  position: absolute;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background-color: #d2d6db;
  z-index: 3;
}

[dir="ltr"] .phone-field.animated-input-group::after {
  left: 74px;
}

[dir="rtl"] .phone-field.animated-input-group::after {
  right: 74px;
}

.phone-field.animated-input-group .focus-line {
  z-index: 4;
}


.upload-wrapper {
  max-width: 600px;
  margin: auto;
}

/* Custom Dropzone */
.dropzone {
  border: 2px dashed #d2d6db !important;
  border-radius: 4px !important;
  background: #f3f4f6 !important;
  padding: 24px !important;
  text-align: center;
  transition: all 0.3s ease;
}

/* Hover & Drag */
.dropzone.dz-drag-hover {
  border-color: #067647;
  background: #f6fef9;
}

.dropzone:hover {
  border-color: #067647;
  background: #f6fef9;
}

.dz-message {
  margin: 0 !important;
}


.upload-icon {
  margin-bottom: 24px;
}

.upload-text {
  color: #1f2a37;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.upload-subtext {
  font-size: 12px;
  color: #384250;
}

.dropzone:hover .upload-icon svg path,
.dropzone.dz-drag-hover .upload-icon svg path {
  fill: #067647;
}

.dropzone:hover .upload-text,
.dropzone.dz-drag-hover .upload-text,
.dropzone:hover .upload-subtext,
.dropzone.dz-drag-hover .upload-subtext {
  color: #067647;
}

.dropzone .upload-btn {
  margin-top: 24px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
  color: #161616;
  background: #f3f4f6;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.dropzone .upload-btn:hover {
  background: #e5e7eb;
  color: #9da4ae;
}

.dropzone-image-preview img {
  width: stretch;
  border-radius: .25rem;
  max-height: 220px;
}

.dropzone-box-content {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px;
  background: #F3F4F6;
  border: 1px solid #D2D6DB;
  border-radius: 4px;
}

.dropzone-box-content .d-flex {
  min-width: 0;
  flex: 1;
}

.dropzone-box-content h4 {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #161616;
}

.dropzone-file-name {
  position: relative;
  cursor: pointer;
}

.dropzone-file-name:hover::after {
  content: attr(data-full);
  position: absolute;
  left: 0;
  top: 100%;
  background: #000;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 4px;
  z-index: 10;
}

.dropzone-box-content h4 {
  font-size: 14px;
  font-weight: 500;
  color: #161616;
}

.dropzone-box-content .remove-image {
  cursor: pointer;
}

/* Maintenance Modal Styles */
.maintenance-modal .modal-dialog {
  max-width: 484px;
}

.maintenance-modal .modal-content {
  border-radius: 8px;
  border: none;
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 16px 24px;
  gap: 12px;
}

.maintenance-modal .modal-content::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #53B1FD;
}

[dir="rtl"] .maintenance-modal .modal-content::after {
  right: 0;
  border-radius: 0 12px 12px 0;
}

[dir="ltr"] .maintenance-modal .modal-content::after {
  left: 0;
  border-radius: 12px 0 0 12px;
}


.maintenance-modal .info-icon-wrapper {
  width: 40px;
  height: 40px;
  background: #EFF8FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.maintenance-modal .modal-close-btn {
  position: absolute;
  top: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

[dir="rtl"] .maintenance-modal .modal-close-btn {
  left: 20px;
}

[dir="ltr"] .maintenance-modal .modal-close-btn {
  right: 20px;
}

.maintenance-modal .modal-title {
  font-size: 16px;
  line-height: 24px;
  color: #1F2A37;
  margin: 0;
  font-weight: 600;
}

.maintenance-modal .modal-text p {
  font-size: 14px;
  line-height: 20px;
  color: #384250;
  margin: 0;
}

.maintenance-modal .modal-close-link {
  color: #161616 !important;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  background: none;
  border: none;
  padding: 6px 12px;
  margin-top: 16px;
}

/* Privacy Modal Styles */
.privacy-modal .modal-dialog {
  max-width: 702px;
}

.privacy-modal .modal-content {
  border-radius: 8px;
  padding: 24px;
  position: relative;
  border: none;
  background: #fff;
}





.privacy-modal .modal-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #1F2A37;
}

.privacy-modal .modal-description {
  font-size: 16px;
  line-height: 24px;
  color: #4B5563;
}

.privacy-modal .modal-description a {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .pd-suggested-section {
    padding-top: 24px;
  }


  .pd-btn-add-cart {
    max-width: 100% !important;
    width: 100%;
    order: 1;
  }

  .pd-tags-row {
    gap: 16px !important;
  }

}


/* =============================================
   Hospitals List Page
   ============================================= */
.hospitals-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.city-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.city-name {
  color: #b87b02;
  font-size: 30px;
  font-weight: 700;
}

.hospitals-sub-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.group-title {
  color: #161616;
  font-size: 16px;
  font-weight: 700;
}

.hospitals-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hospitals-list li {
  color: #161616;
  font-size: 16px;
  font-weight: 400;
}

/* =============================================
   cart List Page
   ============================================= */
.cart-page-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-billing-summary {
  background: #F9FAFB;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-billing-summary .billing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-billing-summary .billing-label {
  font-size: 16px;
}

.cart-billing-summary .billing-value {
  font-size: 16px;
}

.billing-note {
  font-size: 14px;
  color: #161616;
  margin-top: 24px;
  padding-right: 24px;
}



.cart-list-item {
  display: flex;
  justify-content: space-between;
  padding-block: 24px;
  border-bottom: 1px solid #D2D6DB;
}

.cart-list-item:first-child {
  padding-top: 0;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cart-item-delete {
  background: transparent;
  border: none;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-bottom: 36px;
}

.cart-item-delete:hover {
  opacity: 0.7;
}



.cart-item-content {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
}

.cart-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #161616;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
}

.cart-item-subtitle {
  font-size: 12px;
  color: #384250;
}

.cart-item-price-container {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  color: #161616;
}


.cart-footer-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: flex-start;
}

.cart-page-product-img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .cart-list-item {
    align-items: flex-end;
  }

  .cart-list-item .pd-qty-btn {
    width: 40px;
  }

  .cart-list-item .pd-qty-input {
    width: 40px;
  }

  .cart-footer-actions {
    margin-top: 24px;
    width: 100%;
  }

  .cart-footer-actions .btn {
    flex: 1;
    width: auto !important;
  }
}

/* =============================================
   Shared Table Styles
   ============================================= */
.sfc-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.sfc-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}

.sfc-table thead {
  background: #F3F4F6;
}

.sfc-table th {
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 500;
  color: #384250;
  border: 1px solid #D2D6DB;
}

.sfc-table td {
  padding: 20px 16px;
  font-size: 16px;
  color: #161616;
  border: none !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
}

.sfc-table tr {
  border: none !important;
}


.sfc-table tr:nth-child(even) {
  background: #F9FAFB;
}


.sfc-table .status-text {
  color: #384250 !important;
}

.table-btn-cell button {
  padding: 6px !important;
  width: 32px !important;
  height: 32px !important;
}




/* =============================================
   Checkout Page Styles
   ============================================= */
.checkout-page {
  background: #F9FAF9;
}

.checkout-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  max-width: 876px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 768px) {
  .checkout-card {
    padding: 24px 16px;
  }

  .tab-content {
    padding: 24px 16px !important;
  }

  .sfc-radio-group {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .w-50 {
    width: 100% !important;
  }
}

.shipping-sub-ui {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.shipping-options-title {
  font-size: 16px;
  font-weight: 600;
  color: #161616;
  margin-bottom: 8px;
}

.order-summary-box {
  background: #F9FAFB;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sfc-radio-label {
  font-weight: 500 !important;
}

.sfc-radio-label-customized {
  font-size: 16px;
  font-weight: 500 !important;
}

.order-summary-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #B87B02;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  line-height: 24px;
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}


@media (max-width: 768px) {
  .checkout-actions .btn {
    flex: 1 !important;
  }


}

/* Step 2 Specific Styles */
.store-summary-card {
  background: #F9FAFB;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.store-title {
  color: #B87B02;
  font-size: 20px;
  font-weight: 600;
}

.store-info-row {
  display: flex;
  justify-content: space-between;
}

.store-meta {
  color: #4B5563;
  font-size: 16px;
}

.store-value {
  color: #161616;
  font-size: 16px;
}

@media (max-width: 768px) {

  .store-summary-card {
    padding: 12px;
  }

  .store-value {
    font-size: 14px;
  }

  .store-meta {
    font-size: 14px;
  }

}

.price-amount {
  color: #B87B02;
  font-weight: 600;
}

.products-flex-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 24px;
  margin-bottom: 40px;
}


.payment-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #B87B02;
  margin-bottom: 12px;
}

.payment-methods-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-method-item {
  border: 1px solid #D2D6DB;
  padding: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  transition: all 0.3s;
  margin-bottom: 0 !important;
  width: calc(50% - 6px);
}

.payment-method-item input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.payment-method-item.active,
.payment-method-item:has(input:checked) {
  border-color: #B87B02;
  border-width: 3px;
}

.payment-logo img {
  max-width: 154px;
  max-height: 100px;
  object-fit: contain;
}

.order-divider {
  height: 1px;
  background: #D2D6DB;
}

.order-summary-box .order-divider {
  margin-top: 8px;
  margin-bottom: 8px;
}

.total-label {
  font-size: 20px;
  font-weight: 600;
  color: #161616;
}

.total-value {
  font-size: 20px;
  font-weight: 600;
  color: #B87B02;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Modal Styles */
.shipping-modal .modal-content {
  border-radius: 12px;
  border: none;
}

.shipping-modal .modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #161616;
}

.shipping-rules-list {
  padding-right: 0;
  list-style: disc;
  margin: 0 !important;
}

.shipping-rules-list li {
  position: relative;
  padding-right: 16px;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 400;
  color: #384250;
}

.shipping-rules-list li::before {
  content: "•";
  position: absolute;
  right: 0;
  color: #384250;
}

.price-value {
  color: #161616 !important;
  font-weight: 600;
}

.vat-note {
  font-size: 16px;
  font-weight: 600;
  color: #161616;
}

.shipping-alert-box {
  background: #FFF;
  border: 1px solid #D2D6DB;
  border-right: 8px solid #DC6803;
  border-radius: 8px;
  padding: 16px;
}

.warning-alert-box {
  background: #FFF;
  border: 1px solid #D2D6DB;
  border-right: 8px solid #DC6803;
  border-radius: 8px;
  padding: 16px;
}

.alert-title {
  font-size: 16px;
  font-weight: 600;
  color: #1F2A37;
}

.alert-icon .icon-circle {
  width: 40px;
  height: 40px;
  background: #FFFAEB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-list {
  padding-right: 16px;
  margin-bottom: 0;
  list-style: disc;
}

.alert-list li {
  font-size: 14px;
  line-height: 20px;
  color: #384250;
  margin-bottom: 4px;
}

.shipping-total-footer {
  font-size: 16px;
  font-weight: 600;
  color: #161616;
}



@media (max-width: 768px) {
  .payment-methods-grid {
    gap: 8px;
  }

  .payment-method-item {
    padding: 12px;
  }

  .payment-section-title {
    margin-top: 24px;
    margin-bottom: 8px;
  }
}

/* Delete Modal Styles */
.delete-confirm-modal .status-icon.failure {
  background: #FEF3F2 !important;
  border: 8px solid #FFF1F0;
}