@charset "UTF-8";
/*
Author        :
Author Uri    :
Template Name :
Version       : 3.1
*/
/*----------------------------------------------
[Table of contents]
...
----------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  /* Core Brand Colors (Neon & Dark Theme Base) */
  --primary-color: 111, 79, 242;
  /* Main PURPLE */
  --primary-rgb: 111, 79, 242;
  --secondary-color: 0, 243, 255;
  /* Neon CYAN */
  --secondary-rgb: 0, 243, 255;
  --accent-color: 255, 0, 85;
  /* Neon PINK */
  --accent-rgb: 255, 0, 85;

  --heading-font: "Play", "Tajawal", sans-serif;
  --body-font: "Inter", "Tajawal", sans-serif;
  /* Changed to Inter for better readability */

  /* Ultimate Dark Gaming Palette - UPDATED */
  --bg-color1: #12121a;
  /* Deepest Background - Softer Dark */
  --bg-color2: rgba(255, 255, 255, 0.03);
  --bg-color2-rgb: 22, 24, 27;
  /* Card Background */
  --bg-color3: rgba(255, 255, 255, 0.03);
  /* Hover/Active Background */
  --bg-color4: rgba(255, 255, 255, 0.05);
  /* Input/Secondary */
  --bg-color5: rgba(255, 255, 255, 0.05);

  --heading-color: #ffffff;
  --body-color: #b0b3b8;
  /* Softer text color for eyes */

  --border-color1: rgba(255, 255, 255, 0.05);
  --border-color2: rgba(255, 255, 255, 0.1);
  --border-color3: rgba(255, 255, 255, 0.05);

  --input-color: rgba(255, 255, 255, 0.03);

  --shadow1: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
  /* Stronger shadows for depth */
  --shadow2: 0 8px 15px rgba(0, 0, 0, 0.3);
  --shadow3: 0 0 20px rgba(111, 79, 242, 0.15);
  /* Primary Glow Shadow */

  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-blur: blur(15px);

  --radius: 16px;
  /* Slightly tighter radius for game cards */
  --radius-sm: 8px;
  --transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  /* Smoother animation */

  /* Utils */
  --white: #ffffff;
  --black: #000000;
  --success: #00c9a7;
  --danger: #de4437;
  --warning: #ffc107;
  --info: #0dcaf0;
  --btn-hover-bg: rgb(var(--primary-rgb), 0.9);

  /* Typography Scale */
  --h1-size: 2.5rem;
  /* 40px */
  --h2-size: 2rem;
  /* 32px */
  --h3-size: 1.5rem;
  /* 24px */
  --h4-size: 1.25rem;
  /* 20px */
  --h5-size: 1rem;
  /* 16px */
  --h6-size: 0.875rem;
  /* 14px */
  --body-size: 0.9375rem;
  /* 15px */
  --small-size: 0.8125rem;
  /* 13px */

  /* Gradients */
  --main-gradient: linear-gradient(135deg, rgb(var(--primary-rgb)) 0%, #a200ff 100%);
  --neon-gradient: linear-gradient(45deg, #00f3ff, #00ff88);
  --dark-gradient: linear-gradient(to bottom, #1e2022, #131517);

  /* Island System Tokens */
  --island-gap: 10px;
  --sidebar-island-w: 280px;
  --sidebar-island-bg: rgba(13, 17, 23, 0.6);
  --sidebar-island-glass: blur(25px) saturate(180%);
}

/* ==============================================
   ANIMATED BACKGROUND - Dynamic Floating Orbs
   ============================================== */
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  /* Changed from 100% to auto to fix scroll lock */
  min-height: 100%;
  scrollbar-width: auto;
  scrollbar-color: #4a4d55 var(--bg-color1);
  scroll-behavior: smooth;
  overflow-y: auto;
  /* Changed to auto */
  overflow-x: hidden;
  background: var(--bg-color1);
}

body {
  position: relative;
  background-color: transparent;
  background-image: none;
  background-attachment: scroll;
  min-height: 100vh;
  margin: 0;
  padding: 0 !important;
  width: 100%;
  /* overscroll-behavior-y: none; REMOVED to prevent scroll blocking */
  overflow-y: auto;
  /* Ensure body scrolls if html doesn't */
  overflow-x: hidden;

  /* Typography & Layout */
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--body-color);
  font-size: var(--body-size);
  -webkit-text-size-adjust: 100%;
  display: flex;
  flex-direction: column;
}

.main-wrapper {
  width: 100%;
  overflow-x: hidden;
  /* Manage overflow here to not break sticky header on body */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(111, 79, 242, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(0, 243, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 5% 90%, rgba(255, 0, 85, 0.1) 0%, transparent 40%),
    var(--bg-color1);
  animation: backgroundPulse 20s ease-in-out infinite alternate;
  will-change: opacity;
  transform: translateZ(0);
  /* Hardware Acceleration */
}

body::after {
  content: '';
  position: fixed;
  /* Fixed position without scroll jitter */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* Ensure full viewport coverage */
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 10%, rgba(108, 92, 231, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(0, 206, 201, 0.08) 0%, transparent 40%),
    radial-gradient(circle 300px at 50% 50%, rgba(255, 255, 255, 0.01) 0%, transparent 100%);
  will-change: transform;
  transform: translateZ(0);
  /* Hardware Acceleration */
}

@keyframes backgroundPulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.85;
  }

  100% {
    opacity: 1;
  }
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

/* ==============================================
   SECTION TRANSPARENCY - Show animated background
   ============================================== */
.exclusive-offers-section,
.dark-category-section,
.seagm-grid-section,
.hero-section,
.dark-hero-cinematic,
.dark-about-section,
.dark-blog-section,
.dark-campaign-section,
.dark-contact-section,
.dark-testimonial-section,
.dark-top-up-section,
.dark-why-chose-us-section,
.buy-card-section,
.top-up-section,
.card-section,
section[class*="section"] {
  background-color: transparent !important;
  background: transparent !important;
}

/* ==============================================
   GLASSMORPHISM - Modals, Dropdowns, Popups
   ============================================== */
.modal-content,
.dropdown-menu,
.mega-menu,
.nice-select .list,
.select2-dropdown,
.cookie-consent,
.language-modal,
.currency-modal,
.popover,
.tooltip-inner,
.offcanvas {
  background: rgba(18, 18, 26, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5) !important;
}

/* Strict Typography Reset */

/* Admin Heading Scale - Unified */
h1 {
  font-size: var(--h1-size) !important;
}

h2 {
  font-size: var(--h2-size) !important;
}

h3 {
  font-size: var(--h3-size) !important;
}

h4 {
  font-size: var(--h4-size) !important;
}

h5 {
  font-size: var(--h5-size) !important;
}

h6 {
  font-size: var(--h6-size) !important;
}

@media (max-width: 991px) {
  h2 {
    font-size: 1.25rem !important;
    /* 20px */
  }

  h3 {
    font-size: 1rem !important;
    /* 16px */
  }

  h4 {
    font-size: 0.9375rem !important;
    /* 15px */
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

/* Visibility Control for Icons/Logos - Enforced Dark Mode */
.logo-dark {
  display: block !important;
}

.logo-light {
  display: none !important;
}

/* Admin-style Global Reset Override */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


h1,
h2,
h3,
h4,
h5,
h6,
.title {
  color: var(--heading-color) !important;
  font-family: var(--heading-font);
  font-weight: 600;
}

/* Ensure consistent text colors */
p,
span,
li,
label {
  color: var(--body-color);
}



/*----------------------------------------------
Reset section start
----------------------------------------------*/
.rtl {
  direction: rtl;
}

.reviews .active,
.desktop-view-wrapper .nav-link.active,
.widget-link.active {
  color: rgb(var(--primary-rgb));
}

::-moz-selection {
  color: rgb(var(--primary-rgb));
  background: rgb(var(--primary-rgb), 0.1);
}

::selection {
  color: rgb(var(--primary-rgb));
  background: rgb(var(--primary-rgb), 0.1);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -webkit-appearance: textfield;
  appearance: textfield;
  -moz-appearance: textfield;
}

/*----------------------------------------------
preloader section start
----------------------------------------------*/
#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  background-color: var(--bg-color1);
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader img {
  max-width: 150px;
  animation: rotate 2s infinite;
}

/*----------------------------------------------
preloader end
----------------------------------------------*/
/*----------------------------------------------
scroll up section start
----------------------------------------------*/
.scroll-up {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99999;
}

.rtl .scroll-up {
  left: 50px;
  right: auto;
}

@media (max-width: 767px) {
  .scroll-up {
    bottom: 50px;
    right: 20px;
  }

  .rtl .scroll-up {
    left: 20px;
  }

  .manualPayBox {
    flex-direction: column;
    align-items: start !important;
    padding-top: 10px;
  }

  .headerIconCheev {
    display: none;
  }
}

.scroll-up i {
  color: #fff;
  height: 40px;
  width: 40px;
  background: var(--btn-bg1);
  border-radius: 4px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.scroll-up i:hover {
  background: var(--btn-bg2);
}

/*----------------------------------------------
scroll up end
----------------------------------------------*/
*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 10px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: none;
  color: rgb(var(--primary-rgb));
}

button {
  background: none;
  border: none;
  padding: 0;
}

/* Duplicate Heading Block Removed - See Unified Block Above */



img {
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

figure {
  margin: 0;
}

.logo {
  max-width: 120px;
  min-width: 80px;
}

.footer-logo {
  max-width: 120px;
}

.footer-widget-1 {
  width: 100%;
}

/* Global Glassmorphism Enforcement */
.card,
.cmn-box,
.dashboard-box,
.custom-card,
.list-group-item,
.navbar,
.sidebar {
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

body.no-scroll {
  overflow: hidden !important;
  height: 100vh;
  /* Lock height when sidebar is open */
}

textarea.form-control {
  height: initial;
  border-radius: var(--radius);
}

.form-label {
  color: var(--heading-color);
  text-transform: capitalize;
  font-size: var(--body-size);
  margin-bottom: 5px;
  font-weight: 600;
}

.form-select {
  color: var(--heading-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3csvg%3e");
  background-size: 16px 12px;
  background-repeat: no-repeat;
}

option {
  background-color: var(--bg-color2);
  color: var(--heading-color);
}

.form-control,
.form-select {
  border-radius: var(--radius);
  background-color: var(--input-color);
  border: 1px solid var(--border-color1);
  height: 42px;
  color: var(--heading-color);
  font-size: 0.875rem;
  padding: 0.5rem;
}

.form-control::-moz-placeholder,
.form-select::-moz-placeholder {
  color: var(--body-color);
  opacity: 0.6;
}

.form-control::placeholder,
.form-select::placeholder {
  color: var(--body-color);
  opacity: 0.6;
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.15);
  border: 1px solid rgb(var(--primary-rgb));
  background-color: var(--bg-color2);
  color: var(--heading-color);
}

.input-group {
  height: 45px;
  border-radius: var(--radius);
}

.input-group-text {
  min-width: 45px;
  border: 1px solid var(--border-color1);
  display: flex;
  justify-content: center;
  background-color: rgb(var(--primary-rgb), 0.1);
  border-radius: var(--radius) 0 0 var(--radius);
}

.rtl .input-group-text {
  border-radius: 0 var(--radius) var(--radius) 0;
}

/*----------------------------------------------
intlTelInput section start
----------------------------------------------*/
.iti {
  display: flex;
}

.iti__selected-flag {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}

.iti__country-list {
  box-shadow: var(--shadow1);
  border: 1px solid var(--border-color1);
  border-radius: var(--radius);
  background-color: var(--bg-color3);
}

.iti-mobile .iti__country-list {
  z-index: 9999;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgb(var(--primary-rgb), 0.1);
  border-radius: 15px !important;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgb(var(--primary-rgb), 0.1);
}

.iti__arrow {
  border-top: 4px solid var(--white);
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid var(--white);
}

.rtl .iti--allow-dropdown .iti__flag-container,
.rtl .iti--separate-dial-code .iti__flag-container {
  right: 0;
  left: auto;
}

.rtl .iti__selected-flag {
  border-top-left-radius: 0;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 10px;
}

.rtl .iti--allow-dropdown input,
.rtl .iti--allow-dropdown input[type=tel],
.rtl .iti--allow-dropdown input[type=text],
.rtl .iti--separate-dial-code input,
.rtl .iti--separate-dial-code input[type=tel],
.rtl .iti--separate-dial-code input[type=text] {
  padding-left: 6px !important;
  padding-right: 96px;
}

.iti__country-list {
  background-color: var(--bg-color3);
}

/*----------------------------------------------
intlTelInput end
----------------------------------------------*/
/*----------------------------------------------
Select2 section start
----------------------------------------------*/
img.img-flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-color2);
}

span.select2.select2-container.select2-container--default {
  width: 100% !important;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  border: 1px solid var(--border-color1);
  height: 48px;
  display: flex;
  align-items: center;
  background: var(--bg-color3);
  font-size: var(--body-size);
  padding: 0.5rem;
  border-radius: var(--radius);
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.lanCurrencyModalImage {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.select2-container .select2-dropdown {
  border: 1px solid var(--border-color2);
  background-color: var(--bg-color3);
}

.select2-container .select2-dropdown .select2-search__field {
  border-radius: 5px;
  border: 1px solid var(--border-color2);
  outline: 0;
}

.select2-container .select2-selection--single:focus,
.select2-container .select2-selection--multiple:focus {
  border: 1px solid var(--border-color1);
  box-shadow: none;
}

.select2-container .select2-dropdown .select2-search__field {
  background-color: var(--bg-color1);
}

.select2-container .select2-dropdown .select2-search__field:focus-visible {
  box-shadow: none;
  border: 1px solid var(--border-color2);
  color: var(--heading-color);
}

.select2-results__option {
  border-radius: 5px;
}

.select2-results__option span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: rgb(var(--primary-rgb));
}

.select2-container--default .select2-results__option--selected {
  background: rgb(var(--primary-rgb));
  color: var(--white);
}

.select2-container--default .select2-results__option--selected:hover {
  background-color: rgb(var(--primary-rgb));
  color: var(--white);
}

.select2-container--default .select2-results>.select2-results__options {
  text-transform: capitalize;
  padding: 5px;
  max-height: 300px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid rgb(var(--primary-rgb));
  box-shadow: 0 0 0 4px rgba(0, 141, 255, 0.1);
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid var(--border-color2);
  height: 45px;
  display: flex;
  align-items: center;
  background-color: var(--bg-color1);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-right: 10px;
  text-transform: capitalize;
  color: var(--heading-color) !important;
  padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--heading-color);
}

.select2-container--default .select2-selection--single .select2-selection__rendered span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--body-color) transparent transparent transparent;
  border-width: 4px 4px 0 4px;
  margin-left: -10px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent rgb(var(--primary-rgb)) transparent;
  border-width: 0 4px 4px 4px;
}

.rtl .select2-container--default .select2-selection--single .select2-selection__arrow {
  left: 5px;
}

.rtl .select2-container .select2-selection--single .select2-selection__rendered {
  text-align: right;
  width: 100%;
}

.rtl .select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-left: -4px;
}

/*----------------------------------------------
Select2 end
----------------------------------------------*/
/*----------------------------------------------
Breadcrumb start
----------------------------------------------*/
.breadcrumb {
  display: inline-flex;
  justify-content: center;
  margin-top: 10px;
  background-color: var(--white);
  padding: 7px 20px;
  border-radius: 15px !important;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: "\f105";
  color: var(--heading-color);
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
}

.breadcrumb .breadcrumb-item.active {
  color: rgb(var(--primary-rgb));
  text-transform: capitalize;
}

.rtl .breadcrumb-item+.breadcrumb-item::before {
  float: right;
  padding-left: var(--bs-breadcrumb-item-padding-x);
  transform: rotate(180deg);
}

/*----------------------------------------------
Breadcrumb end
----------------------------------------------*/
/* Removed duplicate hidden scrollbar styles */

/* Global Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  /* Consistent width */
  height: 6px;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgb(var(--primary-rgb), 0.8);
  visibility: visible;
  opacity: 1;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(var(--primary-rgb));
}

/* Removed duplicate hidden scrollbar styles */

.owl-nav .owl-prev,
.owl-nav .owl-next {
  width: 35px;
  height: 35px;
  border-radius: 50% !important;
  background: rgb(var(--primary-rgb)) !important;
  background-size: 200% auto !important;
  color: var(--white) !important;
  font-size: 1rem !important;
  transition: var(--transition);
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background-position: center right !important;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 5px;
  background: rgb(var(--primary-rgb));
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: rgb(var(--primary-rgb));
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots span {
  background: rgb(var(--primary-rgb));
  width: 30px;
  height: 5px;
}

.owl-theme .owl-dots .owl-dot span {
  transition: all 0.5s ease-in-out;
}

.rtl .owl-nav .owl-next,
.rtl .owl-nav .owl-prev {
  transform: rotate(180deg);
}

.modal {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.modal-content {
  background: rgba(20, 20, 28, 0.98) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
}

.modal-header {
  border-bottom: 1px solid var(--border-color2);
  padding: 12px 16px;
}

.modal-header .modal-title {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 500;
}

.modal-footer {
  border-top: 1px solid var(--border-color1);
}

@media (min-width: 576px) {
  #lang-currency-modal .modal-content {
    padding: 1rem;
  }
}

/* Global Premium Modal Style - Exact Polish */
.seagm-modal-style,
#lang-currency-modal .modal-content,
#formModal .modal-content,
#add-fund-modal .modal-content,
#app-download-modal .modal-content {
  background: rgba(20, 20, 28, 0.88) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7) !important;
}

.cmn-btn-close {
  font-size: 1.125rem;
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 1px solid var(--border-color1);
  opacity: 1;
  box-shadow: none;
  border-radius: var(--radius);
  transition: var(--transition);
  background-color: var(--bg-color3);
  color: var(--heading-color);
}

.cmn-btn-close:hover {
  background-color: rgb(var(--primary-rgb));
  color: var(--white);
  border-color: rgb(var(--primary-rgb));
}

.accordion-button {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 10px !important;
  text-transform: capitalize;
  background-color: var(--bg-color2);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
  background: transparent;
  color: rgb(var(--primary-rgb));
}

.accordion-button::after {
  background-size: 18px;
}

.accordion-item {
  margin: 10px 0;
  border-radius: 15px;
  border: none;
  background-color: var(--bg-color2);
  color: var(--white);
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid var(--border-color1);
}

.video-box {
  position: relative;
}

.video-box img {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid var(--border-color1);
}

.avatar-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar-box .thumbs-area img {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 3px;
  border: 1px solid var(--border-color1);
  box-shadow: var(--shadow1);
}

.avatar-box .content-area i {
  margin: 0 5px;
  color: rgb(var(--primary-rgb));
}

.ui-widget.ui-widget-content {
  width: 100%;
  border-color: var(--border-color1);
}

.ui-datepicker td {
  padding: 5px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: none;
  background: transparent;
  color: var(--heading-color);
  text-align: center;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.ui-state-default:hover {
  color: rgb(var(--primary-rgb));
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  color: rgb(var(--primary-rgb));
  border: 1px solid rgb(var(--primary-rgb));
}

.ui-widget-header {
  background-color: rgba(var(--primary-rgb), 0.1);
  border: none;
}

.ui-state-hover {
  background: transparent !important;
}

.ui-datepicker-next,
.ui-datepicker-prev {
  border: 1px solid var(--border-color1);
  cursor: pointer;
}

/*----------------------------------------------
Reset end
----------------------------------------------*/
/*----------------------------------------------
Reusable style section start
----------------------------------------------*/
.language-box .dropdown-toggle {
  padding: 12px 20px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  background-color: var(--bg-color2);
  border-radius: 60px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-box .dropdown-toggle:hover {
  background-color: rgb(var(--primary-rgb), 0.1);
}

.language-box .dropdown-toggle img {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  border-radius: 50%;
}

.language-box .dropdown-menu {
  padding: 0;
  border: none;
  border-radius: 15px;
  min-width: initial;
}

.language-box .dropdown-menu .dropdown-item {
  padding: 7px 15px;
  text-transform: capitalize;
  align-items: center;
  border-radius: 0;
}

.language-box .dropdown-menu .dropdown-item img {
  width: 25px;
  min-width: 25px;
  height: 25px;
  min-height: 25px;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .language-box {
    display: flex;
    justify-content: center;
  }

  .dropdown-toggle.show::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
}

@media (max-width: 575px) {
  .language-box .dropdown-toggle {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .language-box .dropdown-toggle .text {
    display: none;
  }

  .login-btn,
  .desktop-view {
    transition: none;
  }
}

.cmn-box {
  border: 1px solid var(--border-color1);
  border-radius: 16px;
  padding: 30px 20px;
  transition: var(--transition);
}

.cmn-box:hover {
  background-color: var(--bg-color2);
}

.cmn-box:hover .title {
  color: rgb(var(--primary-rgb));
}

.cmn-box:hover .title .text-stroke {
  -webkit-text-stroke: 1px rgb(var(--primary-rgb));
}

.cmn-box .title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
  transition: var(--transition);
}

.cmn-box .title .text-stroke {
  -webkit-text-stroke: 1px var(--body-color);
  color: var(--white);
  font-size: 2rem;
}

.text-underline {
  position: relative;
  z-index: 1;
  display: inline-flex;
}

.text-underline::after {
  -webkit-mask-image: url(../img/svg/download2.svg);
  mask-image: url(../img/svg/download2.svg);
  background-position: bottom;
  background-repeat: no-repeat;
  bottom: -0.1em;
  content: "";
  display: block;
  height: 0.3em;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
  background: var(--gradient-bg);
}

.link {
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.link:hover {
  text-decoration: underline;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box .form-control {
  border-radius: var(--radius);
  padding-right: 50px;
}

.search-box .search-btn {
  position: absolute;
  background-color: rgb(var(--primary-rgb));
  width: 45px;
  height: 90%;
  border-radius: var(--radius);
  right: 2px;
}

.search-box .search-btn i {
  color: var(--white);
  font-size: 1.125rem;
}

.rtl .search-box .search-btn {
  left: 2px;
  right: auto;
}

.rtl .search-box .search-btn i {
  transform: rotateY(180deg);
}

.rtl .search-box .form-control {
  padding-right: 10px;
  padding-left: 50px;
}

.search-box2 {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box2.active .search-result {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-box2 .form-control {
  background-color: var(--bg-color1);
  border-radius: 15px !important;
  height: 40px;
  padding: 6px 40px 6px 12px;
}

.search-box2 .search-btn2 {
  transition: var(--transition);
  position: absolute;
  right: 15px;
  height: calc(100% - 12px);
  border-radius: 15px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-transform: capitalize;
  gap: 10px;
  font-size: 1rem;
}

/* --- SEAGM Style Search Dropdown --- */
.search-results-dropdown {
  position: absolute;
  left: auto;
  right: 0;
  top: calc(100% + 10px);
  width: 100%;
  min-width: 380px;
  background: rgba(20, 20, 28, 0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  z-index: 9999;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
  /* Controlled by JS toggling display/none */
  padding-bottom: 5px;
}

.rtl .search-results-dropdown {
  left: auto;
  right: 0;
}



.search-dropdown-header {
  padding: 12px 15px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-result-item {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  text-decoration: none !important;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.search-result-item .item-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.search-result-item .img-area img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
}

.search-result-item .title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-item .category-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  background: transparent;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* More Result Link */
.search-more-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  font-size: 0.85rem;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.02);
  margin-top: 5px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.search-more-link:hover {
  background: rgba(255, 255, 255, 0.05);
}

.search-more-link i {
  font-size: 0.7rem;
  color: #888;
}

.no-results {
  padding: 20px;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.search-box2 .search-result .search-item {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.3;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-box2 .search-result .search-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.search-box2 .search-result .search-item .icon-area {
  font-size: 0.95rem;
  color: rgb(var(--primary-rgb));
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-box2 .search-result .search-item .img-area img {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 6px;
  object-fit: cover;
}

/* Item content - left side (icon + title) */
.search-box2 .search-result .search-item .item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.search-box2 .search-result .search-item .title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-box2 .search-result .search-item .category-badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #888;
  background: transparent;
  padding: 0;
  flex-shrink: 0;
}

.search-box2 .search-result .search-item .sub-title {
  margin-top: 3px;
  font-size: 0.7rem;
  color: #777;
}

.search-box2 .search-result .search-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-box2 .search-result .recent-clear {
  border-bottom: 1px solid var(--border-color1);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: capitalize;
  padding: 10px 20px;
}

@media (min-width: 768px) {
  .search-box2 .form-control {
    width: 350px;
  }

  .mobileCoupon {
    max-width: 425px !important;
    width: 100% !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .search-box2 .form-control {
    width: 258px;
  }
}

.rtl .search-box2 .form-control {
  padding: 6px 12px 6px 40px;
}

.rtl .search-box2 .search-btn2 {
  right: auto;
  left: 15px;
}

.rtl .search-box2 .search-btn2 i {
  transform: rotate(90deg);
}

.search-box3 {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box3 .form-control {
  background-color: var(--bg-color1);
  border-radius: 15px !important;
  height: 50px;
  padding: 6px 115px 6px 12px;
}

.search-box3 .search-btn {
  transition: var(--transition);
  position: absolute;
  right: 6px;
  background-color: rgb(var(--primary-rgb));
  height: calc(100% - 12px);
  border-radius: 15px !important;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-transform: capitalize;
  gap: 10px;
  font-size: 1rem;
}

.search-box3 .search-btn:hover {
  background-color: rgb(var(--primary-rgb), 0.8);
  color: var(--white);
}

.multiple-search-section {
  margin-top: 50px;
}

.multiple-search-box-wrapper {
  position: relative;
  padding: 20px;
}

.multiple-search-box-wrapper::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.multiple-search-box {
  background-color: rgb(var(--primary-rgb));
  border-radius: 5px;
  z-index: 1;
  position: relative;
  padding: 10px;
}

.multiple-search-box .filter-btn {
  border: 1px solid var(--border-color1);
  background-color: rgb(var(--primary-rgb));
  padding: 10px 20px;
  font-weight: 600;
}

.multiple-search-box .btn-check:checked+.btn,
.multiple-search-box .btn-check+.btn:hover {
  background-color: rgb(var(--primary-rgb));
  color: rgb(var(--primary-rgb));
  box-shadow: var(--shadow1);
}

.multiple-search-box .multiple-search-box-inner {
  display: flex;
  gap: 10px;
}

.multiple-search-box .form-control {
  height: 60px;
  border: none;
  box-shadow: none;
  background-color: transparent;
  padding-left: 35px;
  text-transform: capitalize;
}

.multiple-search-box .select2-container .select2-selection--single:focus,
.multiple-search-box .select2-container .select2-selection--multiple:focus {
  box-shadow: none;
}

.multiple-search-box .select2-container .select2-selection--single,
.multiple-search-box .select2-container .select2-selection--multiple {
  height: 48px;
  background-color: transparent;
  border: none;
  padding: 0.5rem;
}

.multiple-search-box .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 18px;
}

.multiple-search-box .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: 400;
}

.multiple-search-box .input-box {
  position: relative;
  width: 100%;
}

.multiple-search-box .input-box .icon {
  color: rgb(var(--primary-rgb));
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.multiple-search-box .input-box:not(:last-of-type) {
  border-right: 1px solid var(--border-color1);
}

.multiple-search-box .input-box.active .search-result {
  opacity: 1;
  visibility: visible;
}

.multiple-search-box .search-result {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: var(--bg-color2);
  box-shadow: var(--shadow3);
  border-radius: 15px;
  z-index: 100;
  border: 1px solid var(--border-color1);
  color: var(--body-color);
  max-height: 346px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  margin-top: 5px;
}

.multiple-search-box .search-result .search-item {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
  cursor: pointer;
}

.multiple-search-box .search-result .search-item:hover {
  background-color: rgb(var(--primary-rgb), 0.1);
}

.multiple-search-box .search-result .search-item .icon-area {
  font-size: 1.375rem;
  color: rgb(var(--primary-rgb));
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.multiple-search-box .search-result .search-item .img-area img {
  width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 3px;
}

.multiple-search-box .search-result .search-item .title {
  font-size: 1rem;
  text-transform: capitalize;
  color: var(--heading-color);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.multiple-search-box .search-result .search-item .sub-title {
  font-size: 0.75rem;
  text-transform: capitalize;
  color: var(--heading-color);
}

.multiple-search-box .search-result .search-item:not(:last-child) {
  border-bottom: 1px solid var(--border-color1);
}

.multiple-search-box .search-result .recent-clear {
  border-bottom: 1px solid var(--border-color1);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: capitalize;
  padding: 10px 20px;
}

.multiple-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: capitalize;
  width: 100%;
  height: 52px;
  /* Standardize height */
  background-color: rgb(var(--primary-rgb));
  color: #ffffff !important;
  border-radius: 15px;
  transition: var(--transition);
  max-width: 150px;
  font-weight: 500;
  border: 1px solid rgb(var(--primary-rgb));
  font-size: 1rem;
}

.multiple-search-btn:hover {
  background-color: var(--btn-hover-bg);
  box-shadow: var(--shadow2);
}

@media (max-width: 991px) {
  .multiple-search-section {
    margin-top: 30px;
  }

  .multiple-search-box-wrapper::after {
    border-radius: 15px;
  }

  .multiple-search-box {
    border-radius: 15px;
  }

  .multiple-search-box .input-box:not(:last-of-type) {
    border-right: none;
    border-bottom: 1px solid var(--border-color1);
  }

  .multiple-search-box-inner {
    background-color: transparent;
    flex-direction: column;
  }

  .multiple-search-box-inner .form-control {
    background-color: rgb(var(--primary-rgb));
    border-radius: 15px;
  }

  .multiple-search-btn {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .multiple-search-box-inner {
    background-color: transparent;
    flex-direction: column;
  }

  .multiple-search-box-inner .form-control {
    background-color: rgb(var(--primary-rgb));
    border-radius: 15px;
  }

  .mobileCoupon {
    max-width: 500px;
    width: 100%;
  }

  .mobileSearchBtn {
    position: absolute;
    right: 6px;
    color: #fff;
    padding: 3px 19px !important;
  }

  .input-box {
    border-right: none;
  }

  .input-box .icon-area {
    left: 10px;
  }

  .multiple-search-btn {
    width: 100%;
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .multiple-search-box .nav {
    margin-bottom: 20px;
    position: static;
  }
}

.rtl .multiple-search-box .form-control {
  padding-left: 0.75rem;
  padding-right: 35px;
}

.rtl .multiple-search-box .input-box .icon {
  left: auto;
  right: 10px;
}

.rtl .select2-container .select2-selection--single,
.rtl .select2-container .select2-selection--multiple {
  padding: 0.5rem;
}

@media (min-width: 992px) {
  .rtl .multiple-search-box .input-box:not(:last-of-type) {
    border-right: none;
    border-left: 1px solid var(--border-color1);
  }
}

@media (max-width: 575px) {
  .rtl .input-box {
    border-left: none;
  }

  .rtl .input-box .icon-area {
    right: 10px;
  }
}

/*----------------------------------------------
Offcanvas section start
----------------------------------------------*/
.offcanvas .accordion-button {
  font-size: 1rem;
  font-weight: 500;
}

.offcanvas.offcanvas-end {
  border-left: 1px solid var(--border-color2);
}

/*----------------------------------------------
Offcanvas end
----------------------------------------------*/
.shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.rtl .shape {
  right: auto;
  left: 0;
  transform: rotateY(180deg);
}

.shape2 {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
}

.shape3 {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.section-header {
  margin-bottom: 30px;
}

.top-right-radius-0 {
  border-top-right-radius: 0 !important;
}

.top-left-radius-0 {
  border-top-left-radius: 0 !important;
}

.bottom-right-radius-0 {
  border-bottom-right-radius: 0 !important;
}

.bottom-left-radius-0 {
  border-bottom-left-radius: 0 !important;
}

.highlight {
  color: rgb(var(--primary-rgb));
}

.highlight-title {
  background-color: var(--yellow);
  padding: 3px 0 5px 10px;
}

.bg-highlight {
  background: rgb(var(--primary-rgb)) !important;
}

.text-gradient {
  background-image: linear-gradient(90deg, #47beb9, #ddcd86);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cmn-btn {
  background-color: rgb(var(--primary-rgb));
  padding: 0.65rem 1.5rem;
  transition: var(--transition);
  font-size: 0.9375rem;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  gap: 8px;
  border-radius: 15px;
  font-weight: 500;
  border: 1px solid rgb(var(--primary-rgb));
}

.cmn-btn:hover {
  background-color: var(--btn-hover-bg);
  color: #ffffff !important;
  box-shadow: var(--shadow2);
}

.cmn-btn2 {
  background-color: var(--bg-color3);
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid var(--border-color2);
  transition: var(--transition);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--heading-font);
  color: rgb(var(--primary-rgb));
}

.cmn-btn2:hover {
  color: rgb(var(--primary-rgb));
  background-color: var(--bg-color2);
}

.cmn-btn4 {
  background-color: rgb(var(--primary-rgb));
  color: rgb(var(--primary-rgb));
  padding: 10px 20px;
  border: 1px solid var(--border-color1);
  transition: var(--transition);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  gap: 5px;
  font-weight: 500;
}

.cmn-btn4:hover {
  color: rgb(var(--primary-rgb));
  box-shadow: var(--shadow2);
  background-color: var(--btn-hover-bg);
}

.social-btn {
  background: var(--bg-color3);
  padding: 10px 20px;
  border: 1px solid var(--border-color1);
  transition: var(--transition);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  gap: 5px;
  font-weight: 500;
  color: var(--white);
  border-radius: 15px !important;
}

.social-btn:hover {
  color: rgb(var(--primary-rgb));
}

.social-btn img {
  width: 16px;
}

.lang-currency-btn {
  padding: 7px 8px;
  border-radius: 60px;
  border: 1px solid var(--border-color1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--body-size);
  font-weight: 500;
}

.lang-currency-btn:hover {
  background-color: var(--bg-color3);
  color: var(--white);
}

.lang-currency-btn img {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  border-radius: 50%;
}



@media (max-width: 575px) {
  .nav-login-btn .text-box {
    display: none;
  }

  .nav-login-btn .icon-box {
    width: 40px;
    height: 40px;
  }
}

.nav-cart-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-color2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav-cart-btn:hover {
  background-color: rgb(var(--primary-rgb), 0.1);
}

@media (max-width: 575px) {
  .nav-cart-btn {
    width: 40px;
    height: 40px;
  }
}

.view-all-btn {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 1.125rem;
}

.round-btn {
  position: relative;
  overflow: hidden;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgb(var(--black), 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  padding: 10px 25px;
  color: var(--heading-color);
}

.round-btn:hover {
  color: var(--white);
  z-index: 1;
  position: relative;
  border-color: rgb(var(--primary-rgb));
}

.round-btn p {
  font-size: 1.25rem;
  text-transform: capitalize;
}

.round-btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  color: var(--white);
  border-radius: 50%;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  background: rgb(var(--primary-rgb));
  z-index: -1;
}

.round-btn:hover span {
  width: 225%;
  height: 562.5px;
  z-index: -1;
}

.round-btn i {
  font-size: 1.25rem;
  transform: rotate(45deg);
}

.round-box-content {
  color: var(--heading-color);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  text-align: center;
  border: 1px solid var(--border-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--small-size);
  position: relative;
}

.round-box-content:hover {
  color: var(--heading-color);
}

.round-box-content:hover .curved-circle {
  animation-play-state: paused;
}

.curved-circle {
  text-transform: uppercase;
  animation: rotate 20s linear infinite;
}

.round-box-content .inner-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  padding: 10px;
  border: 1px solid var(--border-color1);
  border-radius: 50%;
}

.round-box-content .inner-icon i {
  font-size: 1.25rem;
  background-color: rgb(var(--primary-rgb));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transform: rotate(45deg);
  width: 100%;
  height: 100%;
}

.kew-btn {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: var(--transition);
}

.kew-btn:hover {
  color: var(--white);
}

.kew-btn:hover .kew-arrow .kt-two {
  left: 100px;
}

.kew-btn:hover .kew-arrow .kt-one {
  left: 14px;
}

.kew-btn .kew-text {
  background-color: rgb(var(--primary-rgb));
  padding: 0 24px;
  border-radius: 15px !important;
  height: 46px;
  display: flex;
  align-items: center;
}

.kew-btn .kew-arrow {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgb(var(--primary-rgb));
  overflow: hidden;
  margin-left: -4px;
  transform: rotate(-40deg);
}

.kew-btn .kew-arrow .kt-one,
.kew-btn .kew-arrow .kt-two {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
}

.kew-btn .kew-arrow .kt-two {
  left: 14px;
}

.kew-btn .kew-arrow .kt-one {
  left: -30px;
}

.rtl .kew-btn .kew-arrow {
  transform: rotate(215deg);
  margin-left: 0;
  margin-right: -4px;
}

.make-offer-btn {
  text-transform: capitalize;
  display: inline-flex;
  gap: 5px;
  transition: var(--transition);
  cursor: pointer;
}

.make-offer-btn:hover {
  gap: 10px;
}

/*----------------------------------------------
Alerts section start
----------------------------------------------*/
.alert {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 15px;
  border-left: 15px solid;
}

.alert .icon-area i {
  font-size: 1.875rem;
  margin-right: 15px;
}

.alert .title {
  font-size: 1.125rem;
  text-transform: capitalize;
  font-weight: 600;
}

.alert .title,
.alert .description {
  color: var(--heading-color);
}

.alert-dismissible .btn-close {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 2;
  transform: translateY(-50%);
  padding: 0;
  background: none;
  height: initial;
  width: initial;
}

.alert-dismissible .btn-close i {
  font-size: 1.5rem;
}

.alert-success {
  color: #3AC279;
  background: #C5F7DC;
  border-color: #C5F7DC;
  border-left-color: #3ac279;
}

.alert-success .btn-close {
  color: #3AC279;
}

.alert-danger {
  color: #E9594C;
  background: #FFCFCB;
  border-color: #FFCFCB;
  border-left-color: #E9594C;
}

.alert-danger .btn-close {
  color: #E9594C;
}

.alert-warning {
  color: #E89F29;
  background: #FFE8C3;
  border-color: #FFE8C3;
  border-left-color: #E89F29;
}

.alert-warning .btn-close {
  color: #E89F29;
}

.alert-message {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fcf2e3;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.75rem;
  color: var(--heading-color);
  font-weight: 500;
}

.alert-message i {
  color: var(--orange);
  font-size: 1rem;
}

.dark-theme .alert-message {
  background-color: #a38558;
}

/*----------------------------------------------
Alerts end
----------------------------------------------*/
/*----------------------------------------------
Cmn tab section start
----------------------------------------------*/
.cmn-tabs .nav-pills {
  display: flex;
  width: 100%;
  gap: 10px;
  background-color: var(--bg-color2);
  padding: 7px;
  border-radius: 15px;
}

.cmn-tabs .nav-pills .nav-link {
  padding: 8px 20px;
  text-transform: capitalize;
  color: var(--heading-color);
  font-family: var(--heading-font);
  width: 100%;
  border-radius: 15px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 7px;
}

.cmn-tabs .nav-pills .nav-link.active,
.cmn-tabs .nav-pills .show>.nav-link {
  background: rgb(var(--primary-rgb)) !important;
  color: var(--white) !important;
  box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.cmn-tabs .nav-pills .nav-item {
  flex: 1;
}

.cmn-tabs .nav-pills .nav-link {
  justify-content: center;
}

/*----------------------------------------------
Cmn tab section end
----------------------------------------------*/

@media (max-width: 991px) {

  /* Restore standard container behavior to align with the rest of the page */
  .container.mobile-full-width {
    padding-left: var(--bs-gutter-x, 0.75rem) !important;
    padding-right: var(--bs-gutter-x, 0.75rem) !important;
    max-width: 100% !important;
    width: 100% !important;
    position: static !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .container.mobile-full-width .row {
    margin-left: calc(var(--bs-gutter-x, 0.75rem) * -1) !important;
    margin-right: calc(var(--bs-gutter-x, 0.75rem) * -1) !important;
    --bs-gutter-x: 1.5rem !important;
  }

  .container.mobile-full-width [class*="col-"] {
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5) !important;
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5) !important;
  }

  /* Centered and Clean Tabs Header */
  .cmn-tabs .nav-pills {
    display: flex !important;
    width: 100% !important;
    gap: 8px !important;
    background-color: var(--bg-color2);
    padding: 8px !important;
    border-radius: 15px 15px 0 0 !important;
    flex-wrap: wrap !important;
  }

  .cmn-tabs .nav-pills .nav-item {
    flex: 1 !important;
  }

  .cmn-tabs .nav-pills .nav-link {
    width: 100% !important;
    justify-content: center !important;
    font-size: 0.85rem !important;
    padding: 8px 12px !important;
    border-radius: 10px !important;
  }

  /* Tab Content Box - Matching Price Box aesthetics */
  .tab-content .tab-pane .card {
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 0 0 15px 15px !important;
    /* Rounded bottom to complete the unit */
    background: var(--bg-color2) !important;
    box-shadow: none !important;
  }

  .tab-content .tab-pane .card-body {
    padding: 20px 15px !important;
  }

  /* Hide scrollbar while keeping functionality */
  .cmn-tabs .nav-pills::-webkit-scrollbar {
    height: 0px !important;
    background: transparent !important;
  }
}

/*----------------------------------------------
Cmn tab2 section start
----------------------------------------------*/
.cmn-tabs2 {
  background-color: var(--bg-color6);
}

.cmn-tabs2 .nav-pills .nav-link {
  color: var(--heading-color);
  opacity: 0.7;
  font-size: var(--small-size);
  transition: var(--transition);
  border-radius: 0;
  border-bottom: 1px solid transparent;
}

.cmn-tabs2 .nav-pills .nav-link.active,
.cmn-tabs2 .nav-pills .nav-link:hover {
  opacity: 1;
  background-color: transparent;
  border-bottom: 1px solid rgb(var(--primary-rgb));
}

/*----------------------------------------------
Cmn tab2 end
----------------------------------------------*/
@keyframes jkit-ripple {
  70% {
    box-shadow: 0 0 0 15px currentColor;
    opacity: 0;
  }

  100% {
    box-shadow: 0 0 0 0 currentColor;
    opacity: 0;
  }
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: calc(100% - 25px);
  transform: translateY(-50%);
  z-index: 1;
}

.video-play-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: rgb(var(--primary-rgb));
  border-radius: 50%;
  box-shadow: 0 0 0 0 currentColor;
  animation: jkit-ripple 1.5s infinite;
  opacity: 0.6;
  z-index: -1;
}

.video-play-btn i {
  color: var(--white);
  background: rgb(var(--primary-rgb));
  height: 45px;
  width: 45px;
  font-size: var(--body-size);
  transition: var(--transition);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

section {
  padding: 80px 0;
}

@media (max-width: 991px) {
  section {
    padding: 50px 0;
  }
}

.cmn-para-text {
  max-width: 700px;
  font-size: 1rem;
}

.section-title {
  max-width: 550px;
  margin-bottom: 10px;
}

.section-subtitle {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  text-transform: capitalize;
  gap: 5px;
  background-color: var(--bg-color2);
  padding: 4px 15px;
  border-radius: 15px;
}

@media (max-width: 991px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

.social-box {
  display: flex;
  gap: 10px;
}

.social-box li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color3);
  color: rgb(var(--primary-rgb));
  border: 1px solid var(--border-color1);
  border-radius: 15px;
}

.social-box li a:hover {
  background-color: rgb(var(--primary-rgb));
  color: var(--white);
}

.star ul li i {
  color: rgb(var(--primary-rgb));
}

.star-list li .active {
  color: var(--orange);
  opacity: 1;
}

.opacity {
  opacity: 0.5;
}

.badge {
  font-weight: 500;
  text-transform: capitalize;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 15px !important;
}

.badge.text-bg-success {
  background-color: #00a96e !important;
}

.badge.text-bg-danger {
  background-color: #ff5861 !important;
}

.badge.badge.text-bg-info {
  color: var(--white) !important;
}

.badge.badge.text-bg-success {
  color: var(--white) !important;
}

.rtl .badge {
  margin-right: 8px;
  margin-left: 0;
}

hr {
  margin: 10px 0;
  border-color: var(--border-color2);
  opacity: 1;
}

.footer-hr {
  margin: 30px 0;
  border-color: var(--border-color1);
}

.cmn-hr {
  background-color: transparent;
  background-image: linear-gradient(90deg, rgba(206, 211, 246, 0) 0, #a9aaad 38%, #a9aaad 64%, rgba(206, 211, 246, 0) 99%);
  opacity: 0.3;
  border-top: initial;
  height: 1px;
  margin: 50px 0;
}

.cmn-hr2 {
  margin: 20px 0;
  border-color: var(--border-color1);
}

hr.divider {
  margin-top: 50px;
  padding: 0;
  overflow: visible;
  border: none;
  border-top: 1px solid var(--border-color2);
  color: #6e6d7a;
  text-align: center;
  opacity: 0.75;
}

hr.divider:after {
  content: "Or continue with";
  display: inline-block;
  position: relative;
  top: -12px;
  padding: 0 16px;
  background: var(--bg-color2);
  color: var(--heading-color);
}

.dropdown-menu {
  max-height: 30rem;
  min-width: 13rem;
  overflow-y: auto;
  border-radius: var(--radius);
  padding: 8px;
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
}

.dropdown-menu .dropdown-item {
  border-radius: var(--radius);
  padding: 5px 12px;
  transition: none !important;
  font-size: var(--body-size);
  font-family: "Roboto", sans-serif;
  margin-bottom: 5px;
  text-transform: capitalize;
  font-weight: 500;
  display: flex;
  gap: 5px;
  color: var(--heading-color);
}

.dropdown-menu .dropdown-item:hover {
  background: rgb(var(--primary-rgb));
  color: var(--white);
}

.title-border {
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  border-radius: 30px;
}

.title-border::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -50px;
  height: 5px;
  width: 70px;
  border: 1px solid rgb(var(--primary-rgb));
  border-radius: 30px;
  overflow: hidden;
}

.title-border::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -33px;
  height: 5px;
  width: 35px;
  background-color: rgb(var(--primary-rgb));
  animation: divider-effect 5s linear infinite;
}

#slider {
  height: 10px;
}

#slider .noUi-connect {
  background-color: rgb(var(--primary-rgb));
}

#slider .noUi-handle {
  height: 18px;
  width: 18px;
  top: -5px;
  right: -9px;
  /* half the width */
  border-radius: 9px;
  background-color: rgb(var(--primary-rgb));
}

#slider .noUi-handle::after,
#slider .noUi-handle::before {
  background: transparent;
}

.slider-value {
  margin-top: 10px;
  text-align: center;
}

.bg-img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.text-with-icon {
  display: inline-flex;
  gap: 5px;
}

.multi-step-progress-section {
  width: 100%;
}

.multi-step-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.multi-step-list .item {
  position: relative;
}

.multi-step-list .item::before {
  content: "";
  width: 100%;
  height: 2px;
  right: 50%;
  top: 35px;
  position: absolute;
  background-color: var(--light-gray);
}

.multi-step-list .item:first-child::before {
  display: none;
}

.multi-step-list .item.active::before {
  background-color: rgb(var(--primary-rgb));
}

.multi-step-list .item.active .icon-area {
  outline-color: rgb(var(--primary-rgb));
  background-color: rgb(var(--primary-rgb));
  color: rgb(var(--primary-rgb));
}

.multi-step-list .item.active .title {
  color: var(--heading-color);
}

.multi-step-list .item .progress-link {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.multi-step-list .item .icon-area {
  color: rgb(var(--primary-rgb));
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--light-gray);
  z-index: 1;
  border: 4px solid rgb(var(--primary-rgb));
  outline: 2px solid var(--light-gray);
}

.multi-step-list .item .icon-area img {
  width: 40px;
}

.multi-step-list .item .title {
  font-weight: 500;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .multi-step-progress-section {
    margin-left: 50px;
  }

  .multi-step-list {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .multi-step-list .item .progress-link {
    flex-direction: row;
    justify-content: start;
  }

  .multi-step-list .item::before {
    width: 2px;
    height: 100%;
    left: 35px;
    top: -100%;
  }
}

.rtl .multi-step-list .item::before {
  left: 50%;
  right: auto;
}

@media (max-width: 767px) {
  .rtl .multi-step-progress-section {
    margin-right: 50px;
    margin-left: 0;
  }

  .rtl .multi-step-list .item::before {
    right: 35px;
  }
}

.cmn-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cmn-list .item {
  display: flex;
  gap: 15px;
}

.cmn-list .item .icon-box {
  width: 60px;
  min-width: 60px;
  height: 60px;
  color: rgb(var(--primary-rgb));
  font-size: 1.5rem;
  background-color: var(--bg-color3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.rtl .cmn-list .item:not(:last-child)::after {
  left: 0;
  right: 12px;
}

.cmn-list2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cmn-list2 .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.cmn-list2 .list-label {
  white-space: nowrap;
  text-transform: capitalize;
}

.rtl .cmn-list .item:not(:last-child)::after {
  left: 0;
  right: 12px;
}

.reviews div i {
  color: var(--border-color1);
}

.reviews div .active {
  color: var(--orange);
  opacity: 1;
}

.ratings {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 5px;
}

.ratings:not(:checked)>input {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.ratings:not(:checked)>label {
  cursor: pointer;
  font-size: 2.25rem;
  color: var(--border-color1);
}

.ratings:not(:checked)>label:before {
  content: "★";
}

.ratings>input:checked+label:hover,
.ratings>input:checked+label:hover~label,
.ratings>input:checked~label:hover,
.ratings>input:checked~label:hover~label,
.ratings>label:hover~input:checked~label {
  color: var(--orange);
}

.ratings:not(:checked)>label:hover,
.ratings:not(:checked)>label:hover~label {
  color: var(--orange);
}

.ratings>input:checked~label {
  color: var(--orange);
}

.average-review .card-box {
  text-align: center;
}

.average-review .card-box i {
  color: var(--orange);
  font-size: var(--body-size);
}

.average-review .index {
  display: inline-block;
  margin-bottom: 5px;
}

.average-review .progress {
  width: 100%;
  height: 10px;
}

.average-review .progress .progress-bar {
  background: rgb(var(--primary-rgb));
}

.countdown-area {
  display: flex;
  gap: 10px;
}

.countdown-area #countdown1 {
  display: flex;
}

.country-flags-container .item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border-radius: 5px;
  text-transform: capitalize;
}

.country-flags-container .item:hover {
  background-color: rgb(var(--primary-rgb), 0.1);
}

.country-flags-container .item img {
  width: 25px;
  border: 1px solid var(--border-color1);
  height: 18px;
  border-radius: 3px;
}

.category-modal-section .category-list {
  padding-bottom: 10px;
}

.category-modal-section .category-list .item {
  min-width: 212px;
}

@media (max-width: 1199px) {
  .category-modal-section .category-list {
    flex-wrap: wrap;
    justify-content: start;
  }

  .category-modal-section .category-list .item {
    box-shadow: var(--shadow1);
  }
}

@media (max-width: 575px) {
  .category-modal-section .category-list {
    flex-wrap: wrap;
    justify-content: start;
  }

  .category-modal-section .category-list .item {
    width: 100%;
  }
}

.Location-modal-section .country-flags-container .item {
  justify-content: center;
}

.Location-modal-section .search-box {
  position: sticky;
  top: 0;
}

.card {
  background-color: var(--bg-color2);
  border: 1px solid none;
  box-shadow: none;
  border-radius: 15px;
}

.card .card-header {
  padding: 20px;
  background-color: rgb(var(--primary-rgb));
  padding-bottom: 15px;
  border-color: var(--border-color1);
}

.card .card-header .title {
  display: flex;
  align-items: center;
  gap: 5px;
}

.card .card-header .title .icon-area {
  color: rgb(var(--primary-rgb));
}

.card .card-body {
  padding: 20px;
}

.nice-select {
  width: 100%;
  border-color: var(--border-color1);
  text-transform: capitalize;
  font-size: 1rem;
  background-color: var(--bg-color2);
}

.nice-select .option {
  text-transform: capitalize;
}

.nice-select .option.selected {
  border-left: 2px solid rgb(var(--primary-rgb));
}

.nice-select .list {
  min-width: 200px;
  background-color: var(--bg-color3);
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: rgb(var(--primary-rgb), 0.1);
}

.nice-select:focus {
  border-color: transparent;
}

.rtl .nice-select.right .list {
  left: 0;
  right: auto;
}

.range-area .irs--flat .irs-bar {
  height: 3px;
  background-color: rgb(var(--primary-rgb));
}

.range-area .irs--flat .irs-line {
  height: 3px;
}

.range-area .irs--flat .irs-from,
.range-area .irs--flat .irs-to,
.range-area .irs--flat .irs-single {
  background: rgb(var(--primary-rgb));
}

.range-area .irs--flat .irs-from:before,
.range-area .irs--flat .irs-to:before,
.range-area .irs--flat .irs-single:before {
  border-top-color: rgb(var(--primary-rgb));
}

.range-area .irs--flat .irs-handle>i:first-child {
  width: 12px;
  height: 12px;
  border-radius: 7px;
  background-color: rgb(var(--primary-rgb));
  border: 4px solid rgb(var(--primary-rgb));
}

.range-area .irs--flat .irs-handle {
  width: 0;
  height: 0;
}

.range-area .irs--flat .irs-handle>i:first-child {
  top: -2px;
  left: 0;
}

.range-area .irs--flat .irs-min,
.range-area .irs--flat .irs-max {
  display: none;
}

.checkbox-categories-area .categories-list {
  padding-right: 5px;
}

.checkbox-categories-area .category-link {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  text-transform: capitalize;
  padding: 7px 16px;
  transition: var(--transition);
  border-radius: 40px;
  font-weight: 500;
}

.checkbox-categories-area .category-link:hover {
  background-color: rgb(var(--primary-rgb), 0.1);
}

.checkbox-categories-area .category-link:not(:last-child) {
  margin-bottom: 10px;
}

.checkbox-categories-area .form-check {
  margin: 15px 0;
}

.checkbox-categories-area .form-check .form-check-input {
  cursor: pointer;
  border-radius: 5px;
}

.checkbox-categories-area .form-check .form-check-input:checked+.form-check-label {
  color: rgb(var(--primary-rgb));
}

.checkbox-categories-area .form-check .form-check-label {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  text-transform: capitalize;
}

.rtl .checkbox-categories-area .categories-list {
  padding-right: 0;
  padding-left: 5px;
}

.fancybox__container {
  z-index: 99999;
}

.fancybox-carousel {
  width: 100%;
  margin: 0 auto 1rem auto;
  --carousel-button-color: rgb(var(--primary-rgb));
  --carousel-button-bg: #fff;
  --carousel-button-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%), 0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  --carousel-button-svg-stroke-width: 2.5;
  border-radius: 5px;
  overflow: hidden;
}

.fancybox-carousel .carousel__slide {
  width: 100%;
  padding: 0;
}

.fancybox-carousel .carousel__slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 5/3;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0px !important;
  max-height: 570px;
}

.fancybox-carousel .carousel__button.is-prev {
  left: 1rem;
}

.fancybox-carousel .carousel__button.is-next {
  right: 1rem;
}

.fancybox-carousel .carousel__button:focus {
  outline: none;
  box-shadow: 0 0 0 0px rgb(var(--primary-rgb));
}

.fancybox-carousel .carousel__button svg {
  color: rgb(var(--primary-rgb));
}

.thumb_carousel .carousel__slide {
  opacity: 0.5;
  padding: 0;
  margin: 5px;
  width: 150px;
  height: 100px;
  cursor: pointer;
}

.thumb_carousel .carousel__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2px;
}

.thumb_carousel .carousel__slide.is-nav-selected {
  opacity: 1;
}

.rtl .thumb_carousel,
.rtl .main_carousel {
  direction: ltr;
}

@media (max-width: 767px) {
  .carousel__button {
    width: 40px;
    height: 40px;
  }
}

/*----------------------------------------------
user nav Profile start
----------------------------------------------*/
.profile-box {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 0;
}

.profile-box:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 10px);
  transform: scaleY(1);
}

.profile-box .profile {
  cursor: pointer;
  border: 1px solid var(--border-color1);
  background-color: var(--bg-color2);
  border-radius: 50%;
  padding: 2px;
}

.profile-box .profile img {
  width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 50%;
}

.profile-box .user-dropdown {
  background: var(--bg-color3);
  width: 200px;
  overflow: hidden;
  padding-top: 0;
  padding-left: 0;
  position: absolute;
  right: 0;
  top: 55px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: 0 0;
  transition: var(--transition);
  z-index: 3;
}

.profile-box .user-dropdown li {
  list-style: none;
}

.profile-box .user-dropdown li button {
  width: 190px;
  height: 38px;
  padding: 5px;
  margin: 5px;
  margin-bottom: 0;
  border-radius: 5px;
  font-size: var(--small-size);
}

.profile-box .user-dropdown li a {
  color: var(--heading-color);
  font-weight: 400;
  padding: 5px;
  margin: 5px;
  border-radius: 5px;
  display: flex;
  transition: 0.4s;
}

.profile-box .user-dropdown li a:active,
.profile-box .user-dropdown li a:focus,
.profile-box .user-dropdown li a:hover {
  background-color: rgb(var(--primary-rgb), 0.1);
}

.profile-box .user-dropdown li a:last-child {
  border-bottom: none;
}

.profile-box .user-dropdown li a i {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  color: rgb(var(--primary-rgb));
  margin: 0 5px;
  font-size: 1rem;
  text-align: center;
}

.rtl .navbar-brand {
  margin-right: 0;
  margin-left: var(--bs-navbar-brand-margin-end);
}

.rtl .navbar .nav-right {
  left: 60px;
  right: auto;
}

.rtl .profile-box .user-dropdown {
  left: 0;
  right: auto;
}

/*----------------------------------------------
user nav Profile end
----------------------------------------------*/
.notification-panel {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 0px 0;
}

.notification-panel:hover .notification-dropdown {
  visibility: visible;
  opacity: 1;
  top: 54px;
  transform: scale(1);
}

.notification-panel .dropdown-box {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  max-height: 285px;
}

.notification-panel .dropdown-box::-webkit-scrollbar {
  width: 0px;
  height: 100%;
}

.notification-panel .dropdown-box::-webkit-scrollbar-track {
  background: var(--ghostColor);
}

.notification-panel .dropdown-box::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 5px;
}

.notification-panel .dropdown-box::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

.notification-panel .notification-dropdown {
  background: var(--bg-color3);
  box-shadow: var(--shadow2);
  width: 290px;
  max-height: 336px;
  overflow: hidden;
  padding: 5px;
  padding-bottom: 44px;
  position: absolute;
  right: -60px;
  top: 54px;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: 0 0;
  transition: var(--transition);
  z-index: 151;
}

.notification-panel .notification-dropdown li:not(:last-child) {
  border-bottom: 1px solid var(--border-color1);
}

.notification-panel .notification-dropdown li:not(:first-child) a {
  margin-top: 5px;
}

.notification-panel .notification-dropdown li a {
  padding: 10px 10px 10px 15px;
  display: flex;
  gap: 10px;
  white-space: normal;
  transition: var(--transition);
  margin-bottom: 5px;
  border-radius: 5px;
}

.notification-panel .notification-dropdown li a:not(:first-child) {
  margin-top: 5px;
}

.notification-panel .notification-dropdown li a:active,
.notification-panel .notification-dropdown li a:focus,
.notification-panel .notification-dropdown li a:hover {
  background: rgb(var(--primary-rgb), 0.1);
}

.notification-panel .notification-dropdown li a i {
  background: rgb(var(--primary-rgb));
  border-radius: 5px;
  padding: 0px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-panel .notification-dropdown li a .text {
  width: calc(100% - 40px);
}

.notification-panel .notification-dropdown li a .text p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 5px;
}

.notification-panel .notification-dropdown li a .text .time {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgb(var(--primary-rgb));
}

.notification-panel .notification-dropdown .clear-all {
  font-weight: 500;
  font-size: 1rem;
  text-transform: capitalize;
  text-align: center;
  padding: 10px 10px 11px 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--border-color1);
  background-color: var(--bg-color3);
}

.notification-panel .notification-dropdown .clear-all a {
  color: rgb(var(--primary-rgb));
  transition: 0.4s;
}

.notification-panel .notification-dropdown .clear-all a:hover {
  color: rgb(var(--primary-rgb));
}

.dropdown-toggle {
  position: relative;
  display: flex;
}

.dropdown-toggle i {
  font-size: 1.125rem;
  color: var(--heading-color);
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-toggle .count {
  background: rgb(var(--primary-rgb));
  min-width: 18px;
  height: 18px;
  width: 18px;
  border-radius: 3px 6px 3px 6px;
  color: var(--white);
  position: absolute;
  top: -8px;
  right: -15px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rtl .notification-panel .dropdown-toggle .count {
  right: auto;
  left: -4px;
}

.rtl .notification-panel .notification-dropdown {
  left: -60px;
  right: auto;
}

.rtl .dropdown-toggle .count {
  right: auto;
  left: -4px;
}

.shopping-cart {
  position: relative;
}

.shopping-cart:hover .cart-dropdown {
  top: calc(100% + 15px);
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}

.shopping-cart .menu-cart-top {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 10px 25px;
  border-bottom: 1px solid var(--border-color2);
}

.shopping-cart .menu-cart-top h5 {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 1.125rem;
}

.shopping-cart .dropdown-box {
  overflow-y: auto;
  width: 100%;
  height: 100%;
  max-height: 328px;
  padding: 0 5px 23px 5px;
}

.shopping-cart .dropdown-box .dropdown-item {
  font-weight: 500;
}

.shopping-cart .dropdown-box .dropdown-item small {
  color: var(--body-color);
}

.shopping-cart .cart-dropdown {
  background: var(--bg-color3);
  width: 360px;
  max-height: 470px;
  overflow: hidden;
  padding-bottom: 102px;
  padding-top: 0px;
  padding-left: 0;
  position: absolute;
  right: -90px;
  top: 50px;
  border-radius: 5px;
  transition: var(--transition);
  z-index: 151;
  transform: scaleY(0);
  transform-origin: 0 0;
  visibility: hidden;
  opacity: 0;
}

.shopping-cart .cart-dropdown li .dropdown-item {
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--heading-color);
  white-space: normal;
  padding: 15px;
  margin: 5px 0;
  border-radius: 5px;
}

.shopping-cart .cart-dropdown li .dropdown-item:hover {
  background-color: rgb(var(--primary-rgb), 0.1);
}

.shopping-cart .cart-dropdown li .dropdown-item:hover .title {
  color: rgb(var(--primary-rgb));
}

.shopping-cart .cart-dropdown li .dropdown-item img {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 15px;
  -o-object-fit: cover;
  object-fit: cover;
}

.shopping-cart .cart-dropdown li .dropdown-item .text {
  width: calc(100% - 100px);
  position: relative;
}

.shopping-cart .cart-dropdown li .dropdown-item .text .title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  transition: var(--transition);
  color: var(--white);
  font-size: 0.9375rem;
}

.shopping-cart .cart-dropdown li .dropdown-item .close {
  color: var(--body-color);
  transition: var(--transition);
  width: 25px;
  height: 25px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shopping-cart .cart-dropdown li .dropdown-item .close:hover {
  color: var(--white);
  background-color: var(--bg-color1);
}

.shopping-cart .cart-dropdown li:not(:last-child) {
  border-bottom: 1px solid var(--border-color1);
}

.shopping-cart .cart-dropdown .cart-bottom {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background: var(--bg-color3);
}

.shopping-cart .cart-dropdown .cart-bottom .sub-total {
  margin-bottom: 0;
  padding: 7px 15px;
  background-color: var(--bg-color2);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--white);
}

.shopping-cart .cart-dropdown .cart-bottom .btn-area {
  padding: 15px;
}

@media (max-width: 575px) {
  .shopping-cart .cart-dropdown {
    width: 290px;
    right: -150px;
  }

  .shopping-cart .cart-dropdown li a {
    padding: 15px;
  }
}

.rtl .navbar .dropdown .dropdown-menu {
  text-align: right;
}

.rtl .shopping-cart .cart-dropdown {
  right: auto;
  left: -90px;
}

.rtl .shopping-cart .cart-dropdown li a .text .close {
  right: auto;
  left: 0;
}

.rtl .shopping-cart .cart-dropdown .cart-bottom p span {
  float: left;
}

.rtl .notification-panel .notification-dropdown {
  right: auto;
  left: -60px;
}

.rtl .notification-panel .notification-dropdown li a i {
  margin-right: 0;
  margin-left: 5px;
}

@media (max-width: 575px) {
  .rtl .shopping-cart .cart-dropdown {
    width: 290px;
    left: -75px;
  }
}

.profile-box2 {
  text-align: center;
}

.profile-box2 .image-area {
  margin-bottom: 15px;
}

.profile-box2 .cover {
  border-radius: 5px;
  height: 100px;
  width: 100%;
}

.profile-box2 .profile-img {
  width: 80px;
  height: 80px;
  min-width: 60px;
  border-radius: 50%;
  margin-top: -40px;
  padding: 2px;
  border: 1px solid var(--border-color1);
  background-color: rgb(var(--primary-rgb));
  box-shadow: var(--shadow1);
}

.profile-box3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-box3:hover {
  color: var(--heading-color);
}

.profile-box3 .img-box img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.profile-box3 .author-name {
  text-transform: capitalize;
  margin-bottom: 0;
}

/*----------------------------------------------
Chat section start
----------------------------------------------*/
.single-btn-box {
  display: flex;
  align-items: center;
  gap: 5px;
}

.single-btn {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: rgb(var(--primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9375rem;
  color: var(--grayish-blue);
}

.single-btn.active {
  background-color: rgb(var(--primary-rgb));
  color: var(--white);
}

.single-btn.active:hover {
  background-color: rgb(var(--primary-rgb));
  color: var(--white);
}

.single-btn:hover {
  color: rgb(var(--primary-rgb));
  background: rgb(var(--primary-rgb), 0.2);
}

.single-btn2 {
  width: 40px;
  height: 40px;
  border-radius: 15px;
  margin-right: 10px;
  font-size: 1rem;
  color: var(--white);
}

.single-btn2:hover {
  background-color: rgb(var(--primary-rgb), 0.1);
}

@media (max-width: 575px) {
  .single-btn2 {
    font-size: var(--body-size);
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
}

.rtl .single-btn2 {
  margin-right: 0;
  margin-left: 10px;
}

.message-send-btn {
  min-width: 40px;
  height: 40px;
  border-radius: 15px;
  background-color: rgb(var(--primary-rgb));
  margin-left: 10px;
  color: var(--heading-color);
  font-size: 1rem;
}

@media (max-width: 575px) {
  .message-send-btn {
    height: 30px;
    min-width: 30px;
    font-size: var(--body-size);
    margin-left: 5px;
  }
}

.rtl .message-send-btn {
  margin-right: 10px;
  margin-left: 0;
}

.chat-conversation-btn {
  height: 40px;
  width: 40px;
  background: rgb(var(--primary-rgb));
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  font-size: 1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-transform: capitalize;
  border: 1px solid rgb(var(--primary-rgb));
}

.chat-conversation-btn:hover {
  color: rgb(var(--primary-rgb));
  background: var(--white);
}

.message-container {
  border: 1px solid var(--border-color1);
  background-color: var(--bg-color1);
  border-radius: 15px;
  min-height: 500px;
}

.message-container .chat-box {
  position: relative;
  background-color: var(--gray);
  background-color: var(--bg-color2);
  margin: 20px;
  border-radius: 15px;
  padding: 5px 0;
  position: relative;
}

.message-container .chat-box .header-section {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  margin: 15px;
  background-color: var(--bg-color3);
  border-radius: 15px;
}

.message-container .chat-box .profile-info {
  display: flex;
  align-items: center;
}

.message-container .chat-box .profile-info .thumbs-area {
  margin-right: 10px;
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-color1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-container .chat-box .profile-info .thumbs-area img {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  border: 1px solid var(--border-color1);
}

.message-container .chat-box .profile-info .content-area .title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--heading-color);
}

.message-container .chat-box .profile-info .content-area .description {
  font-size: var(--small-size);
}

.message-container .chat-box .chat-box-inner {
  max-height: 425px;
  overflow-y: auto;
  padding: 15px;
}

.message-container .chat-box .message-bubble {
  display: flex;
  margin: 25px 0;
}

.message-container .chat-box .message-bubble .message-thumbs {
  margin-right: 10px;
}

.message-container .chat-box .message-bubble .message-thumbs img {
  border-radius: 50%;
  min-width: 30px;
  min-height: 30px;
  width: 30px;
  height: 30px;
}

.message-container .chat-box .message-bubble .message-text-box {
  max-width: 85%;
}

.message-container .chat-box .message-bubble .message-text-box .message-text {
  padding: 5px 10px;
  border-radius: 15px;
  border-top-left-radius: 0;
  background: rgb(var(--primary-rgb));
  color: var(--heading-color);
}

.message-container .chat-box .message-bubble .message-text-box .attach-file-box {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
}

.message-container .chat-box .message-bubble .message-text-box .time {
  margin-bottom: 0;
  margin-top: 2px;
  font-size: 0.75rem;
}

.message-container .chat-box .message-bubble-right {
  flex-direction: row-reverse;
}

.message-container .chat-box .message-bubble-right .message-thumbs {
  margin-right: 0;
  margin-left: 10px;
}

.message-container .chat-box .message-bubble-right .message-text-box .message-text {
  border-top-left-radius: 15px;
  border-top-right-radius: 0;
  background: var(--bg-color3);
  color: var(--white);
}

.message-container .chat-box .message-bubble-right .message-text-box .attach-file-box {
  justify-content: end;
}

.message-container .chat-box .message-bubble-right .message-text-box .time {
  text-align: right;
}

.message-container .chat-box .chat-box-bottom {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: var(--bg-color3);
  margin: 0 15px 15px 15px;
  border-radius: 15px;
}

.message-container .chat-box .chat-box-bottom textarea {
  height: 40px;
  border-radius: 15px;
}

.message-sidebar {
  height: 100%;
  position: relative;
  border-right: 1px solid var(--border-color1);
  display: flex;
  flex-direction: column;
}

.message-sidebar .header-section {
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.message-sidebar .header-section .section-title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--heading-color);
  text-transform: capitalize;
  margin-right: 10px;
}

.message-sidebar .conversations-wrapper {
  padding: 5px;
  max-height: 470px;
  overflow-y: auto;
  flex-grow: 1;
}

.message-sidebar .conversations-wrapper li {
  border-left: 2px solid transparent;
  transition: var(--transition);
  border-radius: 5px;
}

.message-sidebar .conversations-wrapper li .item-link {
  display: block;
  padding: 15px;
  position: relative;
  overflow-x: hidden;
}

.message-sidebar .conversations-wrapper li .item-link .item-header .chat-action {
  position: absolute;
  right: -20px;
  display: flex;
  top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.message-sidebar .conversations-wrapper li .item-link .item-header .chat-action i {
  font-size: 0.75rem;
  margin: 0 5px;
  color: var(--heading-color);
}

.message-sidebar .conversations-wrapper li .item-link .item-header .chat-action i:hover {
  color: rgb(var(--primary-rgb));
}

.message-sidebar .conversations-wrapper li .item-link .chat-title {
  font-size: var(--body-size);
  color: var(--heading-color);
  text-transform: capitalize;
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: 5px;
}

.message-sidebar .conversations-wrapper li .item-link .chat-info {
  color: var(--grayish-blue);
  display: flex;
  justify-content: space-between;
  font-size: var(--body-size);
}

.message-sidebar .conversations-wrapper li .item-link .chat-info .chat-date {
  text-transform: capitalize;
  color: var(--grayish-blue);
}

.message-sidebar .conversations-wrapper li:nth-child(odd) {
  background-color: var(--bg-color1);
}

.message-sidebar .conversations-wrapper li.active,
.message-sidebar .conversations-wrapper li:hover {
  border-left: 2px solid rgb(var(--primary-rgb));
  background-color: rgb(var(--primary-rgb), 0.1);
}

.message-sidebar .conversations-wrapper li:hover .item-header .chat-action {
  right: 10px;
  opacity: 1;
  visibility: visible;
}

.message-sidebar .message-sidebar-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  background-color: var(--bg-color1);
  border-bottom-left-radius: 5px;
}

@media (max-width: 767px) {
  .message-container .message-sidebar .conversations-wrapper {
    max-height: 300px;
  }

  .message-container .chat-box {
    margin-top: 0;
  }

  .message-container .chat-box .chat-box-inner {
    max-height: 300px;
  }
}

@media (max-width: 575px) {
  .message-container .chat-box .chat-box-bottom {
    padding: 7px 10px;
    margin: 0 10px 10px 10px;
  }

  .message-container .chat-box .chat-box-bottom textarea {
    height: 35px;
  }
}

.rtl .message-sidebar .header-section .section-title {
  margin-right: 0;
  margin-left: 10px;
}

.rtl .message-sidebar .conversations-wrapper li {
  border-left: none;
  border-right: 2px solid transparent;
}

.rtl .message-sidebar .conversations-wrapper li.active,
.rtl .message-sidebar .conversations-wrapper li:hover {
  border-left: none;
  border-right: 2px solid rgb(var(--primary-rgb));
}

.rtl .message-sidebar .conversations-wrapper li .item-link .item-header .chat-action {
  left: -20px;
  right: auto;
}

.rtl .message-sidebar .conversations-wrapper li:hover .item-header .chat-action {
  left: 10px;
}

.rtl .chat-box .profile-info .thumbs-area {
  margin-right: 0;
  margin-left: 10px;
}

.rtl .chat-box .message-bubble .message-thumbs {
  margin-right: 0;
  margin-left: 10px;
}

.rtl .chat-box .message-bubble .message-text {
  border-top-left-radius: 15px;
  border-top-right-radius: 0;
}

.rtl .chat-box .message-bubble-right .message-thumbs {
  margin-right: 10px;
  margin-left: 0;
}

.rtl .chat-box .message-bubble-right .message-text-box .message-text {
  border-top-right-radius: 15px;
  border-top-left-radius: 0;
}

.rtl .chat-box .message-bubble-right .message-text-box .time {
  text-align: left;
}

.dark-theme .message-container .chat-box {
  background-color: var(--bg-color1);
}

.offcanvas.offcanvas-end {
  border-left: none;
}

.message-offcanvas .message-sidebar .conversations-wrapper {
  max-height: initial;
}

.message-offcanvas .message-sidebar {
  border-right: none;
}

/*----------------------------------------------
Chat section end
----------------------------------------------*/
/*----------------------------------------------
File of Image upload section start
----------------------------------------------*/
.file-upload-wrap {
  position: relative;
}

.file-upload-wrap .file-upload-input {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 0;
}

.file-upload-wrap .file-upload-input:hover+.drag-text {
  background-color: rgb(var(--primary-rgb), 0.1);
}

.file-upload-wrap .drag-text {
  padding: 100px 30px;
  border: 2px dashed rgb(var(--primary-rgb));
  border-radius: 5px;
  transition: var(--transition);
  text-align: center;
}

.file-upload-wrap .drag-text .icon-area {
  font-size: 3.125rem;
  margin-bottom: 15px;
  color: rgb(var(--primary-rgb));
}

.file-upload-wrap .drag-text .title {
  font-size: 1.375rem;
}

/*----------------------------------------------
File of Image upload section end
----------------------------------------------*/
/*----------------------------------------------
Payment section start
-----------------------------------------------*/
.payment-container-list {
  margin-top: 20px;
  height: 480px;
  overflow: auto;
  padding: 5px;
}

.payment-container-list .item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-container-list .item:not(:last-child) {
  margin-bottom: 15px;
}

.payment-container-list .form-check-label {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  cursor: pointer;
  border-radius: 5px;
  transition: var(--transition);
  gap: 15px;
  border: 1px solid var(--border-color1);
  outline: 1px solid transparent;
  background-color: var(--bg-color3);
}

.payment-container-list .form-check-label .image-area img {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
}

.payment-container-list .form-check-label .content-area {
  padding-right: 30px;
}

.payment-container-list .form-check-input {
  position: absolute;
  right: 15px;
}

.payment-container-list .form-check-input[type=radio]:checked+.form-check-label {
  background-color: rgb(var(--primary-rgb), 0.1);
  border-color: rgb(var(--primary-rgb));
  outline: 1px solid rgb(var(--primary-rgb));
}

.rtl .payment-container-list .form-check-label .content-area {
  padding-right: 0;
  padding-left: 30px;
}

.rtl .payment-container-list .form-check-input {
  left: 15px;
  right: auto;
}

.transfer-details-section .link {
  color: var(--heading-color);
}

.transfer-list {
  padding: 15px;
  margin-bottom: 20px;
}

.transfer-list h5 {
  margin-bottom: 0;
}

.transfer-list .title:not(:last-child) {
  margin-bottom: 20px;
}

.transfer-list .item {
  display: flex;
  justify-content: space-between;
}

.transfer-list .item:not(:last-child) {
  margin-bottom: 10px;
}

/*-----------------------------------------------
Payment section end
-----------------------------------------------*/
/*----------------------------------------------
Cmn table start
----------------------------------------------*/
.cmn-table {
  border-radius: 15px;
}

.cmn-table table {
  margin-bottom: 0;
  color: var(--body-color);
}

.cmn-table table thead tr th {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--heading-color);
  padding: 20px 10px;
  text-transform: capitalize;
  background-color: var(--bg-color1);
}

.cmn-table table thead tr th:first-child {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}

.cmn-table table thead tr th:last-child {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.cmn-table tbody td {
  padding: 15px 10px;
}

.cmn-table tbody td .icon-area {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  color: rgb(var(--primary-rgb));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
}

.cmn-table tbody td .icon-area.icon1 {
  background-color: var(--lime-green);
}

.cmn-table tbody td .icon-area.icon2 {
  background-color: var(--soft-red);
}

.cmn-table tbody,
.cmn-table td,
.cmn-table tfoot,
.cmn-table th,
.cmn-table thead,
.cmn-table tr {
  border: none;
}

.cmn-table .profile-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cmn-table .profile-box .img-box img {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 15px;
  -o-object-fit: cover;
  object-fit: cover;
}

.cmn-table .profile-box .text-box {
  text-transform: capitalize;
  font-weight: 500;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  color: var(--body-color);
}

@media (min-width: 768px) {
  .table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: transparent;
  }
}

@media (max-width: 991px) {
  .cmn-btn {
    font-size: 1rem;
  }

  .cmn-table .table-img {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }

  .cmn-table .text-bold {
    font-weight: 500;
  }
}

@media (max-width: 767px) {
  .table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: var(--bg-color1);
  }

  .table-striped>tbody>tr:nth-of-type(even)>* {
    --bs-table-accent-bg: rgb(var(--primary-rgb), 0.1);
  }

  .table-responsive .table thead {
    display: none;
  }

  .table-responsive .table tbody tr {
    display: block;
    border: 1px solid var(--border-color2);
    border-radius: 5px;
  }

  .table-responsive .table tbody tr:not(:last-child) {
    margin-bottom: 5px;
  }

  .table-responsive .table tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none !important;
    margin: 0 !important;
    padding: 10px 15px;
  }

  .table-responsive .table tbody tr td::before {
    content: attr(data-label);
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-right: 15px;
  }
}

.rtl .cmn-table table thead tr th:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.rtl .cmn-table table thead tr th:last-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.dark-theme .cmn-table {
  background-color: var(--bg-color4);
}

.dark-theme .cmn-table table {
  color: rgb(var(--primary-rgb));
}

.dark-theme .cmn-table table thead tr th {
  color: rgb(var(--primary-rgb));
  background-color: var(--bg-color6);
}

.dark-theme .cmn-table .table-responsive .table tbody tr td::before {
  color: rgb(var(--primary-rgb));
}

.dark-theme .table-striped>tbody>tr:nth-of-type(odd)>* {
  color: rgb(var(--primary-rgb));
}

/*----------------------------------------------
Cmn table end
----------------------------------------------*/
@keyframes marquee-right {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }

  50% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes topToBottom {
  0% {
    top: -5px;
  }

  100% {
    top: 5px;
  }
}

@keyframes jump {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -20px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes jumpTwo {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 20px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes moveUp {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1);
  }

  25% {
    opacity: 0;
    transform: translateX(10px) translateY(-10px) scale(0.9);
  }

  26% {
    opacity: 0;
    transform: translateX(-10px) translateY(10px) scale(0.9);
  }

  55% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1);
  }
}

.border-effect {
  display: inline !important;
  width: 100%;
  background-repeat: no-repeat;
  background-position-y: -2px;
  background-image: linear-gradient(transparent calc(100% - 1px), rgb(var(--primary-rgb)) 1px);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: 0 100%;
  backface-visibility: hidden;
}

.border-effect:hover {
  background-image: linear-gradient(transparent calc(100% - 1px), rgb(var(--primary-rgb)) 1px);
  background-size: 100% 100%;
}

.slick-dots li.slick-active {
  outline: 1px solid rgb(var(--primary-rgb));
  border-radius: 50%;
}

.slick-dots li.slick-active button::before {
  color: rgb(var(--primary-rgb));
}

.slick-dots li button {
  width: 7px;
  height: 7px;
}

.slick-dots li button::before {
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  color: rgb(var(--primary-rgb));
}

.tag-list2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-list2 .item {
  text-transform: capitalize;
  padding: 3px 15px;
  border-radius: 99999px;
  background-color: var(--bg-color4);
}

@media (min-width: 768px) {
  .h-md-100 {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .rtl .text-md-start {
    text-align: right !important;
  }
}

.isotope-btn-group {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.isotope-btn-group button {
  padding: 10px 20px;
  border: 1px solid var(--border-color1);
  border-radius: 5px;
  font-weight: 400;
  background-color: var(--bg-color3);
  box-shadow: var(--shadow1);
  transition: var(--transition);
  font-size: 16px;
  color: var(--white);
}

.isotope-btn-group button:hover {
  background-color: rgb(var(--primary-rgb));
}

.isotope-btn-group button.active {
  background-color: rgb(var(--primary-rgb));
  color: var(--white);
}

.isotope-btn-group button.active:hover {
  background-position: center right;
}

/*----------------------------------------------
/*----------------------------------------------
Reusable style section end
----------------------------------------------*/
/*----------------------------------------------
Margin top start
----------------------------------------------*/
.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-190 {
  margin-top: 190px;
}

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
Margin bottom start
----------------------------------------------*/
.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-150 {
  margin-bottom: 150px;
}

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
Padding top start
----------------------------------------------*/
.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-150 {
  padding-top: 150px !important;
}

.pt-190 {
  padding-top: 190px;
}

.pt-200 {
  padding-top: 200px;
}

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
Padding bottom
----------------------------------------------*/
.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-150 {
  padding-bottom: 150px;
}

/*----------------------------------------------
Padding bottom
----------------------------------------------*/


/* .seagm-header display: contents removed to allow sticky positioning */

.custom-container {
  max-width: 1440px;
}

/* --- Tier 1: Top Bar (Pre-Top) --- */
.header-pre-top {
  background: transparent;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.3s ease;
}

/* Top bar when scrolled */
.header-pre-top.scrolled {
  background: rgba(18, 18, 26, 0.9);
}

.pre-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-nav,
.mini-nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-nav li a,
.mini-nav-right li a {
  color: #999;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mini-nav li a:hover,
.mini-nav-right li a:hover {
  color: #fff;
}

.app-link {
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 4px;
  color: #fff !important;
}

.mini-flag {
  width: 30px;
  height: 20px;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}


.mobile-grid-btn {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
}

/* Top Mini Dropdown Styles */
.top-mini-dropdown .nav-link {
  cursor: pointer;
  padding: 0 !important;
  line-height: normal;
  font-size: 12px !important;
  font-weight: 500 !important;
}

.top-dropdown-menu {
  background: rgba(20, 20, 31, 0.9) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 10px 0 !important;
  min-width: 180px;
  transform: translateY(15px);
  transition: all 0.3s var(--transition-bounce);
  opacity: 0;
  visibility: hidden;
  display: block !important;
  z-index: 1000;
}

.top-mini-dropdown:hover .top-dropdown-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.top-dropdown-menu .dropdown-item {
  color: #ccc !important;
  font-size: 13px !important;
  padding: 10px 20px !important;
  transition: all 0.2s;
}

.top-dropdown-menu .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #fff !important;
  padding-left: 25px !important;
}

/* End of original style.css */

/* 🚀 Agent Pilot Funnel Premium Styles */
.agent-pilot-section .glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.agent-pilot-section .glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--primary-rgb), 0.3);
  transform: translateY(-5px);
}

.agent-pilot-section .section-header .title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

/* 🗺️ Smart Geo Premium Styles */
.smart-geo-premium .custom-select-trigger {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.smart-geo-premium .custom-select-trigger.active {
  border-color: rgb(var(--primary-rgb));
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.2);
}

.smart-geo-premium .custom-options-container {
  position: absolute;
  width: 100%;
  background: #1a1a24;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-top: 8px;
  z-index: 1000;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.smart-geo-premium .custom-options-container.open {
  display: block !important;
}

.smart-geo-premium .custom-option {
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.smart-geo-premium .custom-option:hover {
  background: rgba(var(--primary-rgb), 0.1);
}

.smart-geo-premium .custom-option.selected {
  background: rgba(var(--primary-rgb), 0.2);
  border-right: 3px solid rgb(var(--primary-rgb));
}

/* 🚦 Transport Mode & Transporter Styles */
.transport-mode-grid,
.transporter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
}

.transport-card,
.transporter-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.transport-card:hover,
.transporter-card:hover {
  border-color: rgb(var(--primary-rgb));
  background: rgba(var(--primary-rgb), 0.05);
}

.transport-card.active,
.transporter-card.active {
  background: rgba(var(--primary-rgb), 0.1);
  border-color: rgb(var(--primary-rgb));
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.2);
}

.transport-card i,
.transporter-card i {
  font-size: 2rem;
  color: rgb(var(--primary-rgb));
  margin-bottom: 10px;
  display: block;
}

/* Drawer styles */
.drawer-group-title {
  color: var(--primary-color, #ffd700);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 20px;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 800;
  opacity: 0.6;
}

/* New Dropdown Drawer (Mobile) */
.seagm-top-drawer {
  background: #1a1b1e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Match top bar */
  padding: 10px 0;
  position: relative;
  /* Changed from absolute to relative for accordion push effect */
  width: 100%;
  z-index: 1045;
  /* Below top bar (if needed) but above main content context */
}

.top-drawer-list {
  display: flex;
  flex-wrap: wrap;
  /* Allow wrapping if too many items */
  gap: 15px;
  /* Spacing between items */
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: flex-start;
  /* Align left */
}

.top-drawer-list li {
  flex: 0 0 auto;
  /* Auto width, not fixed column */
}

.top-drawer-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  transition: 0.2s;
  white-space: nowrap;
  /* Prevent text wrap inside button */
}

.top-drawer-list li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.top-drawer-list li a i {
  font-size: 14px;
  color: rgb(var(--primary-color));
  /* Highlight icon color */
}

/* --- Tier 2: Main Bar --- */
.header-main {
  padding: 15px 0;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  position: sticky;
  top: 0;
  z-index: 1040;
  box-shadow: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

/* Header when scrolled */
.header-main.scrolled {
  background: rgba(18, 18, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.main-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-logo img {
  height: 32px;
  width: auto;
}

.desktop-menu {
  flex-grow: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none !important;
}

.nav-list>li>a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  transition: 0.2s;
}

/* --- Mega Menu Logic (Professional Reset) --- */
.nav-list .with-mega-menu {
  position: relative;
}

.nav-list .mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 500px;
  height: auto !important;
  /* CRITICAL: Allow natural height */
  overflow: visible !important;
  /* CRITICAL: Don't clip content */
  background-color: #1a1b1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

  /* Hiding Logic - Using Visibility/Opacity for Smoothness */
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;

  z-index: 9000;
  pointer-events: none;
}

/* Show Logic - JS-controlled classes ONLY (no CSS hover) */
/* This prevents dropdown from opening when hovering empty space */
.nav-list .with-mega-menu.menu-open .mega-menu,
.nav-list .mega-menu.show-menu {
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
  display: block !important;
}

/* Elevate active menu item above others */
.nav-list .with-mega-menu.menu-open {
  z-index: 9999 !important;
}

/* RTL: Mega menu opens towards left (inside) */
html[dir="rtl"] .nav-list .mega-menu {
  left: auto !important;
  right: 0 !important;
}

/* Elevate hovered/active menu item above others */
.nav-list li.with-mega-menu:hover,
.nav-list li.with-mega-menu.menu-open {
  z-index: 9999 !important;
}

/* Grid Layout */
.nav-list .mega-menu .mega-list-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.nav-list .mega-menu .mega-list-grid li {
  width: 100%;
  display: block !important;
}

/* Link Styling */
.nav-list .mega-menu .mega-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 0.5rem !important;
  border-radius: 12px;
  color: #ccc;
  text-decoration: none !important;
  transition: 0.2s;
  background: transparent;
}

.nav-list .mega-menu .mega-link:hover {
  background: rgba(255, 255, 255, 0.05);
  /* Subtle hover */
  color: #fff;
  transform: translateX(5px);
  /* Slight movement */
}

.nav-list .mega-menu .mega-link .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 18px;
  /* Larger Icon Size */
}

.nav-list .mega-menu .mega-link .text-box {
  display: flex;
  flex-direction: column;
}

.nav-list .mega-menu .mega-link .cat-name {
  font-weight: 600;
  font-size: 14px;
  display: block;
  color: #fff;
  line-height: 1.2;
}

/* Clean up input/labels */
.nav-list li input,
.nav-list li label {
  display: none !important;
}

/* Desktop Dropdowns - but NOT mega-menu grid */
.nav-list li ul:not(.mega-list-grid) {
  position: absolute;
  top: 100%;
  left: 0;
  background: #212226;
  min-width: 240px;
  padding: 15px 0;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* CRITICAL: Ensure mega-list-grid is ONLY visible/interactive when parent mega-menu is ACTIVE */
.nav-list .with-mega-menu.menu-open .mega-menu .mega-list-grid,
.nav-list .with-mega-menu:hover .mega-menu .mega-list-grid {
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  pointer-events: auto !important;
}

/* Base state for mega-list-grid when CLOSED */
.nav-list .mega-menu .mega-list-grid {
  pointer-events: none !important;
  visibility: hidden !important;
}

.nav-list li:hover>ul,
.nav-list li.is-active>ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-list li ul li a {
  color: #ccc;
  padding: 10px 25px;
  display: block;
  font-size: 13px;
  text-decoration: none !important;
}

.nav-list li ul li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* Search Box */
.header-search-box {
  width: 250px;
}

.search-input-group {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.search-input-group input {
  width: 100%;
  background: transparent;
  border: none;
  height: 36px;
  /* Unified Height */
  padding: 0 35px 0 14px;
  color: #fff;
  font-size: 13px;
  border-radius: 8px;
}

.search-input-group i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 13px;
}

/* Actions Container */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* User Profile & Cart */
/* Support for Split Header Actions on Mobile */
@media (max-width: 991px) {
  .main-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0;
  }

  .header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 !important;
  }

  .mobile-left-actions {
    display: flex;
    align-items: center;
    z-index: 10;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
  }

  .user-actions {
    gap: 8px !important;
  }
}

.user-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.wallet-balance-custom a {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 12px;
  height: 36px;
  /* Unified Height */
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.wallet-balance-custom a:hover {
  background: rgba(var(--primary-rgb), 0.12);
  border-color: rgba(var(--primary-rgb), 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.2);
}

.wallet-balance-custom i {
  color: rgb(var(--primary-rgb));
  font-size: 16px !important;
  text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
}

.wallet-balance-custom .balance-amount {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .wallet-balance-custom {
    display: none;
    /* Hide by default on mobile */
  }

  .mobile-left-actions .wallet-balance-custom {
    display: flex;
    /* Only show the one on the left */
  }

  .wallet-balance-custom a {
    padding: 0 10px;
    height: 36px;
    /* Unified Height for mobile as well */
    gap: 6px;
    border-radius: 8px;
  }

  .wallet-balance-custom .balance-amount {
    font-size: 11px;
  }

  .wallet-balance-custom i {
    font-size: 14px !important;
  }
}

/* Wallet Add Fund Modal Styles */
.wallet-modal-custom {
  background: rgba(18, 18, 26, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(111, 79, 242, 0.2) !important;
  border-radius: 24px !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6) !important;
}

.wallet-modal-custom .current-balance-card {
  background: linear-gradient(135deg, rgba(111, 79, 242, 0.15) 0%, rgba(111, 79, 242, 0.05) 100%);
  border: 1px solid rgba(111, 79, 242, 0.2);
  padding: 1rem;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.wallet-modal-custom .current-balance-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(111, 79, 242, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.wallet-modal-custom .current-balance-card .label {
  color: #b0b3b8;
  font-size: 0.85rem;
  font-weight: 500;
}

.wallet-modal-custom .current-balance-card .value {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  text-shadow: 0 0 15px rgba(111, 79, 242, 0.3);
}

.wallet-modal-custom .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}

.wallet-modal-custom .amount-input-wrapper {
  position: relative;
}

.wallet-modal-custom .amount-input-wrapper input {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  height: 55px;
  border-radius: 15px;
  padding: 1rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
}

[dir="rtl"] .wallet-modal-custom .amount-input-wrapper input {
  padding: 1rem;
}

.wallet-modal-custom .amount-input-wrapper input:focus {
  border-color: rgb(var(--primary-rgb)) !important;
  box-shadow: 0 0 15px rgba(111, 79, 242, 0.15) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.wallet-modal-custom .amount-input-wrapper .currency-label {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(var(--primary-rgb));
  font-weight: 800;
  font-size: 0.9rem;
  pointer-events: none;
}

[dir="rtl"] .wallet-modal-custom .amount-input-wrapper .currency-label {
  right: auto;
  left: 1rem;
}

.shadow-glow {
  box-shadow: 0 8px 25px rgba(111, 79, 242, 0.3);
  transition: var(--transition);
}

.shadow-glow:hover {
  box-shadow: 0 12px 30px rgba(111, 79, 242, 0.5);
  transform: translateY(-2px);
}

.btn-primary.shadow-glow {
  background: var(--main-gradient);
  border: none;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.action-btn {
  position: relative;
}

.action-btn a {
  color: #b0b3b8;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.action-btn i {
  font-size: 18px;
}

.badge.header-cart-notification {
  position: absolute;
  top: -8px;
  right: -8px;
  background: rgb(var(--primary-color));
  color: #fff;
  font-size: 10px;
  padding: 3px 5px;
  border-radius: 50%;
  min-width: 18px;
}

.header-profile-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  /* Adjusted Squircle */
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
  transition: var(--transition);
}

.header-profile-img:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
  transform: scale(1.05);
}

/* Profile Dropdown Customization */
.profile-dropdown-seagm {
  background: #25262a !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 8px !important;
  padding: 10px !important;
  min-width: 200px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5) !important;
}

.profile-dropdown-seagm .user-info-dropdown {
  padding: 1rem;
  margin-bottom: 5px;
  text-align: start;
}

.profile-dropdown-seagm .user-info-dropdown h6 {
  font-size: 13px !important;
  color: #fff;
  margin: 0 0 2px 0;
  font-weight: 600;
}

.profile-dropdown-seagm .user-info-dropdown span {
  font-size: 11px !important;
  color: #888;
}

.profile-dropdown-seagm .dropdown-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  margin: 4px 0 !important;
}

.profile-dropdown-seagm .dropdown-item {
  font-size: 12px !important;
  color: #ccc !important;
  padding: 6px 15px !important;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}

.profile-dropdown-seagm .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #fff !important;
}

.profile-dropdown-seagm .dropdown-item i {
  font-size: 14px !important;
  /* Smaller icons */
  width: 20px;
  text-align: center;
}

.btn-sign-in:hover {
  background: #fff;
  color: #121212 !important;
}

/* Actions */

.btn-sign-in {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  /* Unified Height */
  border: 1px solid #4a4d52;
  color: #fff !important;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

/* --- Mobile Navigation Burger --- */
.mobile-burger-btn {
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* --- SEAGM Custom Sidebar (SLIDE FROM LEFT) --- */
.seagm-sidebar-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9991;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  overflow: hidden;
}

.seagm-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.seagm-sidebar-content {
  position: fixed;
  top: 10px !important;
  bottom: 130px !important;
  left: calc(-1 * var(--sidebar-island-w) - 20px);
  width: var(--sidebar-island-w);
  max-width: 85vw;
  height: auto;
  background: var(--sidebar-island-bg) !important;
  backdrop-filter: var(--sidebar-island-glass) !important;
  -webkit-backdrop-filter: var(--sidebar-island-glass) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  z-index: 9992;
  overflow: hidden;
  padding: 0;
}

.seagm-sidebar-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transition: 0.5s;
  pointer-events: none;
}

.seagm-sidebar-overlay.active .seagm-sidebar-content::before {
  left: 100%;
  transition-delay: 0.3s;
}

.seagm-sidebar-overlay.active .seagm-sidebar-content {
  top: 10px !important;
  bottom: 130px !important;
  left: var(--island-gap);
  right: auto;
}

.sidebar-header {
  padding: 0.8rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
}

.sidebar-logo img {
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(111, 79, 242, 0.4));
}

.sidebar-close {
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(237, 76, 120, 0.1);
  border: 1px solid rgba(237, 76, 120, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-close:hover {
  color: #fff;
  background: #ed4c78;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 20px rgba(237, 76, 120, 0.4);
}

.sidebar-menu-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sidebar-menu-body::-webkit-scrollbar {
  display: none;
}

.sidebar-nav-list {
  list-style: none;
  padding: 0 0.8rem;
  margin: 0;
}

.sidebar-nav-list li {
  margin-bottom: 2px;
}

.sidebar-nav-list li.expanded {
  background: transparent !important;
}

.sidebar-nav-list li a {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: none;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sidebar-nav-list li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.sidebar-nav-list li ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.sidebar-nav-list li ul.show {
  display: block;
}

.sidebar-nav-list li ul li {
  margin-bottom: 0 !important;
}

.sidebar-nav-list li ul li a {
  padding: 0.35rem 1.2rem 0.35rem 2.4rem !important;
  font-size: 0.85rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.45);
  background: transparent !important;
  border: none !important;
}

.sidebar-nav-list li ul li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

/* Mobile Mega Menu inside sidebar */
.sidebar-nav-list .mega-menu {
  position: static !important;
  display: none;
  width: 100%;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  pointer-events: auto !important;
}

.sidebar-nav-list .mega-menu.show {
  display: block !important;
}

.sidebar-nav-list .mega-menu .mega-list-grid {
  display: block !important;
  grid-template-columns: none;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
}

.sidebar-nav-list .mega-menu .mega-list-grid li {
  border-bottom: none;
  margin-bottom: 0 !important;
}

.sidebar-nav-list .mega-menu .mega-link {
  padding: 0.35rem 1.2rem 0.35rem 2.4rem !important;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: transparent !important;
  border: none !important;
}

.sidebar-nav-list .mega-menu .mega-link:hover {
  background: rgba(255, 255, 255, 0.04);
}

.sidebar-nav-list .mega-menu .mega-link .icon-box {
  width: 24px;
  flex-shrink: 0;
  color: rgb(var(--primary-color));
}

.sidebar-nav-list .mega-menu .mega-link .text-box {
  flex-grow: 0;
  flex-shrink: 0;
}

.sidebar-nav-list .mega-menu .mega-link .cat-name {
  color: #ccc;
  font-size: 13px;
  font-weight: 400;
}

.sidebar-nav-list .mega-menu .mega-link:hover .cat-name {
  color: #fff;
}

/* Arrow indicator for expandable items */
.sidebar-nav-list .with-mega-menu>a::after {
  content: '\f078';
  /* fa-chevron-down */
  font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  transition: transform 0.3s;
}

.sidebar-nav-list .with-mega-menu.expanded>a::after {
  transform: rotate(180deg);
}

/* RTL Support - Sidebar from RIGHT */
html[dir="rtl"] .seagm-sidebar-overlay {
  direction: rtl;
}

html[dir="rtl"] .seagm-sidebar-content {
  left: auto !important;
  right: calc(-1 * var(--sidebar-island-w) - 20px) !important;
  top: 10px !important;
  bottom: 130px !important;
  box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.5) !important;
}

html[dir="rtl"] .seagm-sidebar-overlay.active .seagm-sidebar-content {
  left: auto !important;
  right: var(--island-gap) !important;
}

/* RTL Sidebar Header - Reverse order */
html[dir="rtl"] .sidebar-header {
  flex-direction: row-reverse;
}

html[dir="rtl"] .sidebar-nav-list li ul li a,
html[dir="rtl"] .sidebar-nav-list .mega-menu .mega-link {
  padding: 0.5rem !important;
}

html[dir="rtl"] .sidebar-nav-list .mega-menu .mega-link .cat-name {
  text-align: start;
}

html[dir="rtl"] .sidebar-nav-list .with-mega-menu>a::after {
  margin-left: 0;
  margin-right: auto;
}

/* Side Footer Sign In */
.sidebar-footer {
  padding: 1rem;
  margin-top: auto;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  background: transparent;
}

.sidebar-login-btn {
  display: block;
  width: 100%;
  background: rgba(111, 79, 242, 0.1) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(111, 79, 242, 0.2) !important;
  color: #fff !important;
  text-align: center;
  padding: 0.8rem !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sidebar-login-btn:hover {
  background: rgb(var(--primary-rgb)) !important;
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .main-nav-wrapper {
    justify-content: space-between;
    gap: 15px;
  }

  .header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header-search-box {
    width: auto;
  }
}

/* RTL Support */
.rtl .seagm-header {
  direction: rtl;
}

.rtl .seagm-sidebar-content {
  left: auto !important;
  right: calc(-1 * var(--sidebar-island-w) - 20px) !important;
  top: 10px !important;
  bottom: 130px !important;
}

.rtl .seagm-sidebar-overlay.active .seagm-sidebar-content {
  right: var(--island-gap) !important;
  left: auto !important;
}

.rtl .nav-list li ul {
  left: auto;
  right: 0;
}

.rtl .sidebar-nav-list li ul li a {
  padding: 12px 45px 12px 25px;
}


/*----------------------------------------------
Bottom Mobile, Tab nav end
----------------------------------------------*/
/*----------------------------------------------
00. Hero section start
----------------------------------------------*/
.hero-section {
  background-color: var(--bg-color1);
}

.hero-section .trending-offers-carousel .owl-nav {
  top: calc(0% - 90px);
}

.hero-swiper {
  position: relative;
}

.hero-swiper .autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: rgb(var(--primary-rgb));
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 50%;
}

.hero-swiper .autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 3px;
  stroke: var(--white);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.hero-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 5px;
  background: var(--black);
  border-radius: 0;
  transition: var(--transition);
}

.hero-swiper .swiper-pagination-bullet-active {
  background: rgb(var(--primary-rgb));
  width: 30px;
}

.slider-box {
  background-color: var(--bg-color3);
  padding: 40px;
  border-radius: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
}

.slider-box::after {
  content: "";
  position: absolute;
  background-image: url(../img/hero/1.avif);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slider-box .text-box {
  width: 70%;
}

.slider-box .text-box .title {
  margin-top: 20px;
  text-transform: uppercase;
  color: var(--heading-color);
}

.slider-box .text-box .description {
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 600;
  max-width: 450px;
}

.slider-box .img-box {
  margin-left: -300px;
  z-index: -1;
}

.lime-green-box::after {
  background-image: url(../img/hero/shalnark_ryuseih_by_otaku_zonee_dhjavfg-375w-2x.png);
}

.pale-blue-box {
  background-color: #9ac4ff;
}

.dark-moderate-blue-box::after {
  background-image: url(../img/hero/1.avif);
}

.very-light-blue-box::after {
  background-image: url(../img/hero/dai_dragon_quest_png_render_by_marcopolo157_dhbmv1a-pre.png);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .slider-box .text-box {
    width: 80%;
  }

  .slider-box .text-box .title {
    font-size: 2.25rem;
  }
}

@media only screen and (max-width: 991px) {
  .slider-box .text-box .section-subtitle {
    font-size: var(--body-size);
  }

  .slider-box .text-box .title {
    font-size: 1.875rem;
    line-height: 40px;
  }

  .slider-box .text-box .description {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .slider-box {
    padding: 20px;
  }

  .slider-box .text-box {
    width: 100%;
  }
}

.rtl .slider-box::after {
  transform: rotateY(180deg);
}

.rtl .hero-swiper .autoplay-progress {
  right: auto;
  left: 16px;
}

/*----------------------------------------------
Hero section end
----------------------------------------------*/
/*----------------------------------------------
00. Exclusive offer section start
----------------------------------------------*/
.exclusive-offer-section {}

/*----------------------------------------------
Exclusive offer section end
----------------------------------------------*/
/*----------------------------------------------
00. About section start
----------------------------------------------*/
.about-section {}

.about-section .img-box {
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .about-section .text-box {
    text-align: center;
  }

  .about-section .img-box {
    max-width: 450px;
  }
}

/*----------------------------------------------
About section end
----------------------------------------------*/
/*----------------------------------------------
Flash deal section end
----------------------------------------------*/
.flash-deal-section {}

.flash-deal-section .left-side .img-box {
  max-width: 200px;
  margin: 0 auto;
}

.flash-deal-section .left-side .text-box {
  text-align: center;
  margin-top: 25px;
}

.flash-deal-section .countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.flash-deal-section .countdown .single-countdown {
  text-align: center;
  font-weight: 700;
}

.flash-deal-section .countdown h5 {
  font-size: 2.25rem;
  padding: 15px;
  background-color: var(--bg-color3);
  border-radius: 15px;
}

.flash-deal-section .product-box .text-box .price .promo-price {
  font-size: 1.125rem;
  color: rgb(var(--primary-rgb));
}

.flash-deal-section-inner {
  background-color: var(--bg-color1);
  padding: 40px;
  border-radius: 15px;
}

.product-box {
  padding: 10px;
  display: flex;
  border-radius: 15px;
  background-color: var(--bg-color3);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  gap: 15px;
}

.product-box:hover .img-box img {
  transform: scale(1.03);
}

.product-box:hover .title {
  color: rgb(var(--primary-rgb));
}

.product-box .img-box {
  max-width: 110px;
  min-width: 110px;
  height: 120px;
  overflow: hidden;
  border-radius: 5px;
}

.product-box .img-box img {
  width: 100%;
  height: 100%;
  transition: var(--transition);
  border-radius: 5px;
}

.product-box .text-box {
  font-size: 0.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-box .text-box .title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.product-box .text-box .name {
  margin-bottom: 0;
  font-size: var(--body-size);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.product-box .text-box .bottom-info {
  margin-top: 10px;
}

.product-box .text-box .price {
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-box .text-box .price .promo-price {
  font-weight: 500;
  font-size: var(--body-size);
}

.product-box .text-box .price .promo-price .number {
  color: var(--heading-color);
}

.product-box .text-box .price .discount {
  font-size: 0.75rem;
  background-color: var(--bg-color2);
  background-color: rgb(var(--primary-rgb), 0.5);
  padding: 2px 10px;
  border-radius: 3px;
}

.product-box .text-box .price .sell {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--body-size);
}

.product-box .text-box .price .line-through {
  text-decoration: line-through;
  white-space: nowrap;
  font-size: var(--body-size);
}

.region {
  font-size: 1rem;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 7px;
}

.region img {
  border-radius: 16px;
  width: 20px;
  height: 20px;
}



/* --- Interactive Service Cards (3D Glass) --- */
.product-details-section {
  background: transparent;
  padding: 40px 0;
}

.product-box2 {
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 15px !important;
  padding: 0.5rem !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
  height: 100%;
  text-decoration: none !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-box2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.product-box2:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(var(--primary-rgb), 0.4) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(var(--primary-rgb), 0.1);
}

.product-box2.active {
  background: rgba(var(--primary-rgb), 0.1) !important;
  border-color: rgba(var(--primary-rgb), 0.8) !important;
  box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.2), inset 0 0 15px rgba(var(--primary-rgb), 0.1) !important;
}

.product-box2 .left-side {
  display: flex;
  align-items: center;
  gap: 0.5rem !important;
  /* Unified Gap: Image to Content */
}

.product-box2 .img-box {
  max-width: 46px;
  min-width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.product-box2 .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-box2:hover .img-box img {
  transform: scale(1.1);
}

.product-box2 .text-box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 0 !important;
}

[dir="rtl"] .product-box2 .text-box {
  padding: 0 !important;
}

.product-box2 .title {
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  color: #ffffff !important;
  margin-bottom: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.product-box2 .price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: end;
}

[dir="rtl"] .product-box2 .price {
  align-items: flex-start;
  text-align: start;
}

.product-box2 .promo-price {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #fff 0%, rgb(var(--primary-rgb)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1 !important;
}

.product-box2 .original-price.line-through {
  font-size: 0.85rem;
  opacity: 0.5;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1 !important;
}

.variable-calc-box {
  width: 100%;
  flex-grow: 1;
}

.variable-calc-box .custom-calc-input {
  flex: 1;
  min-width: 100px;
}

.service-variable {
  padding: 0.5rem !important;
  display: flex !important;
  gap: 0.5rem !important;
  /* Unified Gap: Image to Counter */
}

.service-variable .left-side {
  padding: 0;
  display: flex;
  align-items: center;
  margin: 0 !important;
}

.service-variable .right-side {
  flex-grow: 1;
  margin: 0 !important;
}

[dir="rtl"] .service-variable .left-side {
  margin: 0 !important;
}

.service-variable .variable-calc-box {
  width: 100%;
}

.service-variable .custom-calc-input {
  border-radius: 10px !important;
  background: rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  height: 46px !important;
  /* Standard height matching other services */
}

.service-variable .custom-calc-input .input-group-text {
  min-width: 36px !important;
}

/* 2-Column Services Grid on Mobile */
@media (max-width: 767px) {
  .col-6 .product-box2 {
    flex-direction: row !important;
    padding: 0.5rem !important;
    gap: 0.5rem !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .col-6 .product-box2 .left-side {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem !important;
    /* Mobile Unified Gap */
    flex: 1 !important;
    min-width: 0 !important;
    flex-wrap: nowrap !important;
  }

  .col-6 .product-box2 .text-box {
    padding: 0 !important;
    text-align: start !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  .col-6 .product-box2 .title {
    font-size: 0.85rem !important;
    line-height: 1.2;
    margin-bottom: 0px;
  }

  .col-6 .product-box2 .img-box {
    max-width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .col-6 .product-box2 .right-side {
    width: auto !important;
    display: flex;
    justify-content: flex-end !important;
    margin-top: 0 !important;
    flex-shrink: 0 !important;
  }

  .col-6 .product-box2 .price {
    align-items: flex-end !important;
    text-align: end !important;
  }

  .col-6 .product-box2 .promo-price {
    font-size: 0.95rem !important;
    -webkit-text-fill-color: inherit !important;
    background: none !important;
    color: rgb(var(--primary-rgb)) !important;
  }

  .col-6 .product-box2.service-variable {
    gap: 0.5rem !important;
  }

  .col-6 .product-box2.service-variable .left-side {
    margin: 0 !important;
    gap: 0 !important;
    /* Image only side */
  }

  .col-12 .product-box2 {
    padding: 0.5rem !important;
    flex-direction: row !important;
  }

  .col-12 .product-box2 .right-side {
    flex-grow: 1 !important;
    margin-left: 10px;
  }

  .col-12 .product-box2 .variable-calc-box {
    width: 100% !important;
  }

  .col-12 .product-box2 .custom-calc-input {
    width: 100% !important;
    flex: 1 !important;
    height: 46px !important;
    /* Standard height matching other services */
    display: flex;
    /* Added for centering */
    align-items: center;
    /* Added for centering */
    justify-content: center;
    /* Added for centering */
  }

  .col-12 .product-box2 .img-box {
    max-width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 12px;
  }
}

.product-box3 {
  background-color: var(--bg-color3);
  padding: 10px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-box3 .img-box .owl-item img {
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
  width: 100%;
}

.product-box3 .text-box .title {
  font-size: 0.9375rem;
  font-weight: 600;
}

.product-box3 .text-box .price {
  margin-top: 5px;
}

.product-box3 .owl-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.trending-offers-carousel {
  position: relative;
}

.trending-offers-carousel .owl-nav {
  position: absolute;
  top: calc(0% - 100px);
  right: 0;
}

@media (max-width: 991px) {
  .flash-deal-section .countdown h5 {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .flash-deal-section-inner {
    padding: 20px;
  }

  .product-box .text-box .title {
    font-size: 14px;
  }

  .product-box .text-box .price .promo-price {
    font-size: 16px;
  }
}

.rtl .trending-offers-carousel .owl-nav {
  right: auto;
  left: 0;
}

.rtl .trending-offers-carousel .owl-nav .owl-next {
  transform: rotate(180deg);
}

.rtl .trending-offers-carousel .owl-nav .owl-prev {
  transform: rotate(180deg);
}

/*----------------------------------------------
Flash deal section end
----------------------------------------------*/
/*----------------------------------------------
00. Trending game section start
----------------------------------------------*/
.trending-game-section {
  background-color: var(--bg-color1);
}

/*----------------------------------------------
Trending game section start
----------------------------------------------*/
.trending-game-section.glass-section-wrapper {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}

.trending-game-section .section-header h2 {
  font-size: 1.4rem !important;
  font-weight: 800;
  background: linear-gradient(90deg, #fff 10%, #5a3cc7 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.trending-game-section .section-header p {
  font-size: 0.95rem;
  opacity: 0.7;
}

/* Glass Card */
/* Base Category Box (used on other pages) */
.category-box {
  background-color: var(--bg-color2);
  border: 1px solid var(--border-color1);
  padding: .5rem;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: auto !important;
  align-self: flex-start;
}

.category-box .img-box {
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1/1;
  height: auto;
}

.category-box .img-box img {
  border-radius: 15px;
  transition: var(--transition);
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.category-box .text-box .title {
  font-weight: 500;
  font-size: 0.9375rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.category-box:hover .img-box img {
  transform: scale(1.03);
}

/* Glass Card Variant (Specific to Trending Section) */
.category-box.glass-card {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 20px !important;
  padding: 0.5rem !important;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  height: auto !important;
  display: flex;
  flex-direction: column;
  gap: 0.5rem !important;
}

.category-box.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.08),
      transparent);
  transition: 0.6s;
  z-index: 2;
  pointer-events: none;
}

.category-box.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.category-box.glass-card:hover::before {
  left: 100%;
}

.category-box.glass-card .img-box {
  border-radius: 15px;
  aspect-ratio: 1/1;
  height: auto;
  overflow: hidden;
  position: relative;
}

.category-box.glass-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.category-box.glass-card:hover .img-box img {
  transform: scale(1.02);
}

.category-box.glass-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0.7;
  transition: 0.3s;
}

.category-box.glass-card .text-box {
  padding: 0;
  text-align: start;
}

.category-box.glass-card .text-box .title {
  color: var(--white) !important;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.2;
  margin-bottom: 2px !important;
}

.category-box.glass-card:hover .text-box .title {
  color: rgb(var(--secondary-rgb)) !important;
}

/* New Premium Glass Button */
.glass-explore-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.85rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none !important;
  z-index: 1;
}

.glass-explore-btn i {
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-explore-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(var(--primary-rgb), 0.5);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3),
    0 0 10px rgba(var(--primary-rgb), 0.15);
  transform: translateY(-2px);
  color: #fff !important;
}

.glass-explore-btn:hover i {
  transform: translateX(6px);
}

/* Shiny Glint Effect */
.glass-explore-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transform: skewX(-30deg);
  pointer-events: none;
  z-index: 2;
}

.glass-explore-btn:hover::after {
  left: 150%;
  transition: 0.7s ease-in-out;
}

/* Decorative Background Orb */
.section-bg-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 75%);
  top: 50%;
  right: -150px;
  transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
  animation: orbPulse 8s ease-in-out infinite alternate;
}

@keyframes orbPulse {
  from {
    transform: translateY(-50%) scale(1);
    opacity: 0.6;
  }

  to {
    transform: translateY(-50%) scale(1.2);
    opacity: 0.9;
  }
}

/* RTL Support for Orb */
.rtl .section-bg-orb {
  right: auto;
  left: -150px;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .trending-game-section.glass-section-wrapper {
    padding: 60px 0;
  }

  .category-box.glass-card .img-box {
    height: 160px;
  }

  .trending-game-section .section-header h2 {
    font-size: 1.8rem !important;
  }
}

/*----------------------------------------------
Trending game section end
----------------------------------------------*/
/*----------------------------------------------
00. Why choose us section start
----------------------------------------------*/
.why-choose-us-section {}

.why-choose-us-section .img-box {
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .why-choose-us-section .img-box {
    max-width: 450px;
  }
}

/*----------------------------------------------
Why choose us section end
----------------------------------------------*/
/*----------------------------------------------
17. Faq section start
----------------------------------------------*/
.faq-section {}

.faq-section .accordion-button {
  color: var(--heading-color);
  font-weight: 500;
  font-size: 1.125rem;
  border-radius: 10px !important;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  box-shadow: none;
  background: transparent;
  color: rgb(var(--primary-rgb));
}

.faq-section .accordion-item {
  margin: 10px 0;
  border-radius: 15px;
  border: none;
  background-color: var(--bg-color2);
}

.faq-section .accordion-button::after {
  background: url(../img/accordion/plus.png);
  width: 25px;
  height: 25px;
  background-color: rgb(var(--primary-rgb));
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
}

.faq-section .accordion-button:not(.collapsed)::after {
  background: url(../img/accordion/minus.png);
  width: 25px;
  height: 25px;
  background-color: rgb(var(--primary-rgb));
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
}

.rtl .accordion-button {
  text-align: right;
}

.rtl .accordion-button::after {
  margin-right: auto;
  margin-left: 0;
}

.buy-game-id-section {}

.testimonial-section {}

.testimonial-box {
  display: flex;
  gap: 25px;
}

.testimonial-box .img-box {
  max-width: 350px;
  min-width: 350px;
  height: 410px;
}

.testimonial-box .img-box img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
}

.testimonial-box .quote-icon {
  font-size: 2.5rem;
  color: rgb(var(--primary-rgb), 0.5);
}

.testimonial-box .reviews li .active {
  color: rgb(var(--primary-rgb));
}

.testimonial-carousel .owl-nav {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .testimonial-box {
    gap: 10px;
    flex-direction: column;
  }

  .testimonial-box .img-box {
    margin: 0 auto;
  }

  .testimonial-box .quote-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 575px) {
  .testimonial-box .img-box {
    max-width: 350px;
    min-width: 272px;
    height: 324px;
  }
}

.rtl .testimonial-carousel .owl-nav {
  right: auto;
  left: 0;
}

/*----------------------------------------------
Testimonial end
----------------------------------------------*/
/*----------------------------------------------
18. Blog section start
----------------------------------------------*/
.blog-section {
  z-index: 0;
  position: relative;
}

.blog-box {
  border-radius: 16px;
  background-color: var(--bg-color3);
  padding: 20px;
}

.blog-box:hover .img-box img {
  transform: scale(1.03);
}

.blog-box .img-box {
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 24px;
  display: flex;
  height: 275px;
}

.blog-box .img-box img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  transition: var(--transition);
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-box .text-box .title {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 20px;
}

.meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 1rem;
}

.meta .item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
  position: relative;
  font-weight: 500;
  font-size: var(--body-size);
}

.meta .item a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta .item.tag {
  background-color: rgb(var(--primary-rgb), 0.5);
  padding: 2px 10px;
  border-radius: 4px;
}

.meta .item.tag:hover a {
  color: var(--heading-color);
}

.rtl .meta .item:not(:last-child)::after {
  left: auto;
  right: calc(100% + 22px);
}

@media (max-width: 375px) {
  .rtl .meta .item:not(:last-child)::after {
    right: calc(100% + 11px);
  }
}

.blog-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}

.blog-btn .text-box {
  display: flex;
  gap: 8px;
  white-space: nowrap;
}

.rtl .blog-btn .text-box i {
  transform: rotate(-90deg);
}

.content-box-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

.content-box-bottom .author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-box-bottom .author .img-area img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.content-box-bottom .author .text-area {
  font-weight: 500;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-btn .arrow-img-box {
    display: none;
  }
}

@media (max-width: 991px) {
  h5 {
    font-size: 1.125rem;
  }

  .blog-box .blog-author .author-info span {
    font-size: var(--body-size);
  }
}

@media (max-width: 375px) {
  .blog-box {
    gap: 10px;
  }

  .meta {
    gap: 30px;
  }

  .meta .item:not(:last-child)::after {
    left: calc(100% + 11px);
  }

  .blog-btn .arrow-img-box {
    display: none;
  }
}

.rtl .blog-box .blog-author .author-img {
  margin-right: 0;
  margin-left: 10px;
}

/*----------------------------------------------
Blog section end
----------------------------------------------*/
/*----------------------------------------------
00. Author section start
----------------------------------------------*/
.author-section {}

.author-section .map-section iframe {
  height: 300px;
}

.author-box {
  position: relative;
  background-color: var(--bg-color2);
  padding: 30px;
  border-radius: 15px;
  z-index: 0;
  overflow: hidden;
}

.author-box-top {
  display: flex;
  gap: 40px;
}

.author-box-top .thumbs-area img {
  width: 250px;
  height: 250px;
  min-width: 250px;
  border-radius: 15px;
  background-color: var(--bg-color3);
  padding: 5px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767px) {
  .author-box {
    text-align: center;
  }

  .author-box-top {
    flex-direction: column;
  }

  .author-box-top .thumbs-area img {
    width: 150px;
    height: 150px;
    min-width: 150px;
  }
}

@media (max-width: 575px) {
  .author-box-top .content-area {
    display: flex;
    flex-direction: column;
  }
}

.author-box2 {
  position: relative;
  background-color: var(--bg-color1);
  z-index: 0;
}

.author-box2 .user-info {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.author-box2 .user-info .img-box {
  margin-bottom: 15px;
}

.author-box2 .user-info .img-box img {
  margin-top: -150px;
  width: 170px;
  min-width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: rgb(var(--primary-rgb));
  box-shadow: var(--shadow2);
  -o-object-fit: cover;
  object-fit: cover;
  border: 2px solid var(--bg-color2);
}

.author-box2 .user-info .text-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}

.author-box2 .user-info .text-box .user-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 15px;
  -moz-column-gap: 25px;
  column-gap: 25px;
}

.author-box2 .user-info .text-box .user-meta .item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-box2 .user-info .text-box .user-meta .item i {
  width: 30px;
  height: 30px;
  background-color: rgb(var(--primary-rgb), 0.1);
  color: rgb(var(--primary-rgb));
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-box2 .user-info-bottom {
  padding-top: 25px;
  border-top: 1px solid var(--border-color1);
}

.author-box2 .user-info-bottom .counts {
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  gap: 10px;
}

.author-box2 .user-info-bottom .counts .count span {
  display: block;
  color: rgb(var(--primary-rgb));
}

.author-box2 .cmn-btn4 {
  padding: 10px 15px;
  background-color: rgb(var(--primary-rgb));
  color: var(--heading-color);
}

.author-box2 .cmn-btn4:hover {
  color: rgb(var(--primary-rgb));
  border-color: var(--border-color2);
}

.author-box2 .cmn-btn4.share #shareBlock {
  right: 0;
  left: auto;
}

.followers {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.followers .follower {
  position: relative;
}

.followers .follower .profile-img-link {
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.followers .follower:hover .creator {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 10px);
}

.followers .follower img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.followers .follower .creator {
  position: absolute;
  text-align: center;
  width: 200px;
  background-color: rgb(var(--primary-rgb));
  padding: 10px;
  border: 1px solid var(--border-color1);
  box-shadow: var(--shadow1);
  border-radius: 15px;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.followers .follower .creator .cover {
  width: 100%;
  height: 80px;
  border-radius: 15px;
}

.followers .follower .creator .profile-img {
  width: 65px;
  height: 65px;
  margin-top: -35px;
}

@media (max-width: 991px) {
  .author-box2 .user-info .img-box img {
    margin-top: -80px;
  }
}

@media (max-width: 767px) {
  .author-box2 .left-side {
    flex-direction: column;
  }

  .author-box2 .left-side .contact-item {
    justify-content: center;
  }

  .author-box2 {
    text-align: center;
  }
}

.rtl .author-box2 .cmn-btn4.share #shareBlock {
  left: 0;
  right: auto;
}

.author-box3 {
  background-color: rgba(var(--primary-rgb), 0.1);
  padding: 40px;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 15px;
  box-shadow: var(--shadow1);
  display: flex;
  align-items: center;
  gap: 30px;
}

.author-box3 .img-box img {
  width: 200px;
  height: 200px;
  border-radius: 15px;
}

.author-box3 .text-box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.author-box3 .text-box .item {
  display: flex;
  gap: 7px;
}

.author-box3 .cmn-btn4 {
  padding: 10px 15px;
}

.author-box3 .text-box-bottom {
  margin-top: 30px;
}

.author-box3 .cmn-btn4.share #shareBlock {
  right: 0;
  left: auto;
}

@media (max-width: 767px) {
  .author-box3 {
    flex-direction: column;
  }

  .author-box3 .text-box {
    text-align: center;
  }

  .author-box3 .text-box .item {
    justify-content: center;
  }
}

.page-tabs {
  display: flex;
  margin-bottom: 30px;
}

.page-tabs .item {
  padding: 10px;
  flex-grow: 1;
  text-align: center;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border-color1);
}

.page-tabs .item.active {
  border-bottom: 2px solid rgb(var(--primary-rgb));
  background-color: var(--bg-color1);
  color: rgb(var(--primary-rgb));
  font-weight: 600;
}

/*----------------------------------------------
Author section end
----------------------------------------------*/
/*----------------------------------------------
19. Newsletter section start
----------------------------------------------*/
.newsletter-section {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.newsletter-section .content-area {
  font-family: var(--heading-font);
  color: var(--body-color);
  line-height: 40px;
  font-weight: 500;
}

.newsletter-section .content-area .subscribe-normal-text {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--heading-color);
}

.newsletter-section .newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter-section .newsletter-form .form-control {
  border-radius: 15px !important;
  height: 55px;
  background-color: var(--bg-color1);
  padding: 10px 165px 10px 20px;
  border-color: transparent;
}

.newsletter-section .newsletter-form .form-control:focus {
  border-color: rgb(var(--primary-rgb));
}

.newsletter-section .newsletter-form .subscribe-btn {
  transition: var(--transition);
  position: absolute;
  right: 5px;
  background-color: rgb(var(--primary-rgb));
  height: calc(100% - 10px);
  border-radius: 15px !important;
  padding: 10px 40px;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  font-weight: 600;
}

.newsletter-section .newsletter-form .subscribe-btn:hover {
  background-color: rgb(var(--primary-rgb), 0.8);
  color: var(--heading-color);
}

.newsletter-section-inner {
  background-color: var(--bg-color3);
  padding: 50px 40px;
  border-radius: 15px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .newsletter-section .content-area .subscribe-small-text {
    font-size: 1.25rem;
  }

  .newsletter-section .content-area .subscribe-normal-text {
    font-size: 2.125rem;
  }

  .newsletter-section .newsletter-form .subscribe-btn {
    padding: 10px 15px;
  }

  .newsletter-section .newsletter-form .form-control {
    padding: 10px 110px 10px 10px;
  }
}

@media (max-width: 767px) {
  .newsletter-section .content-area {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .newsletter-section .newsletter-section-inner {
    padding: 20px;
  }

  .newsletter-section .newsletter-form .form-control {
    height: 50px;
  }
}

.rtl .newsletter-section .newsletter-form .form-control {
  padding: 10px 20px 10px 165px;
}

.rtl .newsletter-section .newsletter-form .subscribe-btn {
  left: 5px;
  right: auto;
}

@media (max-width: 991px) {
  .rtl .newsletter-section .newsletter-form .form-control {
    padding: 10px 10px 10px 110px;
  }
}

@media (max-width: 575px) {
  .rtl .newsletter-section .newsletter-form .subscribe-btn {
    left: 3px;
  }
}

/*----------------------------------------------
Newsletter end
----------------------------------------------*/
/*----------------------------------------------
20. Footer section start
----------------------------------------------*/
/* Ensure footer transparency overrides variables */
.footer-section {
  position: relative;
  z-index: 0;
  padding-bottom: 20px;
  background: transparent !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--body-color);
}

.footer-section .footer-widget .widget-title {
  position: relative;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-size: 1.25rem;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer-widget .widget-logo {
  margin-bottom: 20px;
  display: inline-flex;
}

.footer-widget ul li {
  line-height: 2.5;
}

.footer-widget .widget-link {
  margin-left: 18px;
  position: relative;
}

.footer-widget .widget-link:hover {
  color: rgb(var(--primary-rgb));
}

.footer-widget .widget-link::before {
  border-radius: 2px;
  height: 7px;
  width: 7px;
  content: "";
  left: -17px;
  top: 6px;
  position: absolute;
  background-color: rgb(var(--primary-rgb));
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  gap: 10px;
}

.contact-item i {
  color: rgb(var(--primary-rgb));
}

.rtl .footer-section .footer-widget .widget-title::before,
.rtl .footer-section .footer-widget .widget-title::after {
  right: 0;
  left: auto;
}

.rtl .footer-section .footer-widget .widget-link {
  margin-left: 0;
  margin-right: 18px;
}

.rtl .footer-section .footer-widget .widget-link::before {
  left: auto;
  right: -17px;
}

.rtl .footer-section .footer-widget .contact-item i {
  margin-right: 0;
  margin-left: 10px;
}

/*----------------------------------------------
Footer section end
----------------------------------------------*/
/*----------------------------------------------
21. Copyright section start
----------------------------------------------*/
.copyright-section {
  background: transparent !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  font-size: 1rem;
}

.copyright-inner {
  padding: 20px 0;
}

.payment-gateway {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-gateway img {
  width: 42px;
  height: 28px;
  border-radius: 4px;
}

@media (max-width: 575px) {
  .copyright-area {
    text-align: center;
  }
}

/*----------------------------------------------
Copyright end
----------------------------------------------*/
/*----------------------------------------------
16. Banner section start
----------------------------------------------*/
/* --- Hero Stage (Banner Enhancements) --- */
.banner-section {
  position: relative;
  padding: 60px 0 !important;
  background-image: url(../img/banner/bg-footer.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  background-color: #050508;
  overflow: hidden;
}

/* Base App Header Layout */
.app-header-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 25px;
}

.product-details-hero {
  background: #050508 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 20px 0 !important;
}

.product-details-hero .hero-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(60px) brightness(0.4) saturate(1.8);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
  transform: scale(1.1);
}

.product-details-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, transparent 0%, rgba(5, 5, 8, 0.2) 40%, #050508 90%);
  z-index: 1;
  pointer-events: none;
}

/* Force side-by-side icon and title on all screens */
.product-details-hero .app-header-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 20px !important;
  text-align: right !important;
  /* For Arabic */
}

.rtl .product-details-hero .app-header-container {
  flex-direction: row !important;
  /* Keep icon first in DOM then name */
  justify-content: flex-start !important;
  text-align: right !important;
}

.rtl .product-details-hero .app-info-wrapper {
  padding-left: 0 !important;
  padding-right: 20px !important;
  text-align: right !important;
}

.rtl .product-details-hero .app-title {
  text-align: right !important;
}

.app-badge-container {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 15px !important;
  overflow-x: auto;
  scrollbar-width: none;
}

.app-badge-container::-webkit-scrollbar {
  display: none;
}

.rtl .app-badge-container {
  flex-direction: row !important;
  justify-content: flex-start !important;
}

.app-icon-wrapper {
  position: relative;
  z-index: 5;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.app-icon {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 30px !important;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(var(--primary-rgb), 0.15);
  animation: iconFloat 6s infinite alternate ease-in-out;
  background: #0a0a0f;
}

@keyframes iconFloat {
  0% {
    transform: translateY(0) rotate(-2deg);
  }

  100% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.app-info-wrapper {
  z-index: 5;
  text-align: start;
}

.app-title {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  letter-spacing: -1px;
  margin-bottom: 0px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  line-height: 1.1;
}

.app-region-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 500;
}

.app-region-text i {
  margin-right: 6px;
}

.rtl .app-region-text i {
  margin-right: 0;
  margin-left: 6px;
}

.app-badge,
.btn-favorite-toggle.badge-style {
  height: 42px !important;
  padding: 0 16px !important;
  border-radius: 12px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  transition: all 0.3s ease;
}

.btn-favorite-toggle.badge-style.active {
  background: rgba(var(--primary-rgb), 0.15) !important;
  border-color: rgba(var(--primary-rgb), 0.3) !important;
  color: rgb(var(--primary-rgb)) !important;
}

.app-badge.glass-white {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}

.app-badge.glass-success {
  background: rgba(46, 213, 115, 0.1);
  color: #2ed573 !important;
  border-color: rgba(46, 213, 115, 0.2) !important;
}

/* Glass Note Card */
.glass-dark {
  background: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px);
}

/* Mobile Specific App Header - The "App Store" Look */
@media (max-width: 767px) {
  .product-details-hero .app-icon {
    width: 70px !important;
    height: 70px !important;
    border-radius: 15px !important;
  }

  .product-details-hero .app-title {
    font-size: 1.2rem !important;
    margin-bottom: 4px !important;
  }

  .product-details-hero .app-badge,
  .product-details-hero .btn-favorite-toggle.badge-style {
    height: 34px !important;
    padding: 0 10px !important;
    font-size: 0.75rem !important;
    border-radius: 10px !important;
  }
}

/* Restore generic banner defaults if shifted */
.banner-section:not(.product-details-hero)::after {
  background: radial-gradient(circle at center, transparent 0%, #050508 85%);
}

/* Strict RTL Overrides for Mobile and Desktop */
.rtl .banner-section {
  text-align: right;
}

.rtl .app-title {
  text-align: right;
}

.rtl .app-info-wrapper {
  text-align: right !important;
  align-items: flex-start;
}

.rtl .app-header-container {
  flex-direction: row-reverse !important;
}

.rtl .app-badge {
  flex-direction: row-reverse;
}

/* Premium Note Card - Glassmorphism style */
.premium-glass-note {
  background: rgba(255, 61, 0, 0.08);
  /* Red glass tint */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 61, 0, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 0.3rem 0.5rem !important;
}

.premium-glass-note:hover {
  background: rgba(255, 61, 0, 0.12);
  border-color: rgba(255, 61, 0, 0.4);
  transform: translateY(-1px);
}

.premium-glass-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #ff3d00, transparent);
}

.note-icon-wrapper {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.note-icon-wrapper i {
  color: #ff3d00;
  position: relative;
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 61, 0, 0.3);
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.tracking-wider {
  letter-spacing: 1px;
}

/* Sidebar & Form Re-engineering */
.sidebar-widget-area {
  position: sticky;
  top: 110px;
  background: rgba(20, 20, 30, 0.1) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px;
  padding: 1rem !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.sidebar-widget-area .list-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-widget-area .form-control {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 14px !important;
  color: #ffffff !important;
  padding: 8px 20px !important;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.sidebar-widget-area .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.sidebar-widget-area .form-control:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(var(--primary-rgb), 0.5) !important;
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1) !important;
}

.sidebar-widget-area .cmn-btn {
  height: 52px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, #12d8fa 100%) !important;
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.15);
  position: relative;
  overflow: hidden;
}

.sidebar-widget-area .cmn-btn2 {
  height: 36px !important;
  font-size: 0.9rem !important;
  font-weight: 300 !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--white) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.sidebar-widget-area .cmn-btn2:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(var(--primary-rgb), 0.5) !important;
}

.sidebar-widget-area .cmn-tabs .nav-pills {
  display: flex !important;
  width: 100% !important;
  padding: 5px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
}

.sidebar-widget-area .cmn-tabs .nav-pills .nav-item {
  flex: 1 !important;
}

.sidebar-widget-area .cmn-tabs .nav-pills .nav-link {
  width: 100% !important;
  justify-content: center !important;
  font-size: 0.85rem !important;
  padding: 8px 5px !important;
  border-radius: 10px !important;
}

.sidebar-widget-area .cmn-tabs .nav-pills .nav-link.active {
  background: rgb(var(--primary-rgb)) !important;
  color: #fff !important;
  box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.sidebar-widget-area .cmn-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

/* Redundant style removed to avoid conflicts */

.custom-calc-input .input-group-text {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.custom-calc-input input {
  color: #fff !important;
  font-weight: 600;
}

@media (max-width: 991px) {
  .sidebar-widget-area {
    margin-top: 30px;
    position: relative;
    top: 0;
  }
}

.breadcrumb-area {
  text-align: center;
}

.breadcrumb-area h3 {
  text-transform: capitalize;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.note-box {
  display: flex;
  gap: 15px;
}

.note-box .icon-box {
  display: flex;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--orange);
  color: rgb(var(--primary-rgb));
  background-color: var(--bg-color3);
  width: 35px;
  min-width: 35px;
  height: 35px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.note-box .text-box h6 {
  color: var(--heading-color);
}

.banner-section2 {
  padding-top: 250px;
  position: relative;
}

.banner-section2::after {
  content: "";
  position: absolute;
  background-image: url(../img/banner/rUYpAGFByr2MLYP7LVVmGihd1gVZh9.webp);
  background-color: #000;
  top: 0;
  left: 0;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  z-index: -1;
}

@media (min-width: 768px) {
  .banner-section .row {
    align-items: center;
    /* Center align image and text */
  }
}

@media (max-width: 991px) {
  .banner-section2 {
    padding-top: 150px;
  }

  .banner-section h3 {
    font-size: 2.25rem;
  }

  .breadcrumb-area {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .banner-section2 {
    padding-top: 50px;
  }
}

@media (max-width: 575px) {
  .banner-section {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: start;
  }
}



/*----------------------------------------------
Banner end
----------------------------------------------*/
/*----------------------------------------------
24. Contact section start
----------------------------------------------*/
/* --- Premium Contact Section --- */
.contact-section.glass-section-wrapper {
  overflow-x: hidden !important;
  overflow-y: visible !important;
  position: relative;
  width: 100%;
}

.glass-card-premium {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.glass-card-premium:hover {
  transform: translateY(-10px);
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-item.glass-card-premium {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
}

.contact-item .icon-box {
  width: 60px;
  height: 60px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgb(var(--primary-rgb));
  transition: all 0.3s ease;
}

.contact-item:hover .icon-box {
  background: rgba(var(--primary-rgb), 0.2);
  border-color: rgb(var(--primary-rgb));
  color: #fff;
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
}

.contact-item .content .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.contact-item .content .value {
  color: var(--heading-color);
  font-weight: 700;
}

/* Form Styles */
.glass-input-group {
  position: relative;
}

.glass-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  padding: 15px 20px !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
}

.glass-input:focus {
  background: rgba(0, 0, 0, 0.3) !important;
  border-color: rgb(var(--primary-rgb)) !important;
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.2) !important;
  outline: none;
}

/* Button */
.glass-btn-premium {
  background: linear-gradient(135deg, rgb(var(--primary-rgb)) 0%, #4a34a3 100%);
  border: none;
  padding: 16px 32px;
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.glass-btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.5);
  filter: brightness(1.1);
}

/* Visuals */
.visual-card {
  position: relative;
  z-index: 1;
}

.floating-img {
  animation: float 6s ease-in-out infinite;
}

.glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px !important;
  height: 400px !important;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/*----------------------------------------------
Contact end
----------------------------------------------*/
/*----------------------------------------------
24. Login Signup section start
----------------------------------------------*/
.login-register-section {}

.login-register-form {
  padding: 30px;
  z-index: 1;
  position: relative;
  background-color: var(--bg-color2);
  border-radius: 15px;
}

.login-register-form .logo-area {
  margin-bottom: 20px;
  display: inline-flex;
}

.login-register-form .cmn-btn {
  height: 45px;
}

.login-register-form .cmn-btn2 {
  height: 45px;
  border-radius: 5px;
}

.login-register-form .cmn-btn-group .btn img {
  width: 16px;
}

.password-box {
  position: relative;
  display: flex;
  align-items: center;
}

.password-box .form-control {
  padding-right: 35px;
}

.password-box .password-icon {
  position: absolute;
  right: 15px;
  cursor: pointer;
  color: var(--body-color);
}

@media (max-width: 991px) {
  .login-register-section .login-register-form {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .login-register-section .login-register-form {
    margin: auto;
  }
}

@media (max-width: 575px) {
  .login-register-section .login-register-form {
    padding: 20px;
  }
}

.rtl .password-box .form-control {
  padding-right: 0.75rem;
  padding-left: 35px;
}

.rtl .password-box .password-icon {
  right: auto;
  left: 15px;
}

.rtl .login-register-box .img-box img {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

/*----------------------------------------------
Login Signup end
----------------------------------------------*/
/*----------------------------------------------
25. Blog details section start
----------------------------------------------*/
.blog-details-section {}

.blog-details-section .meta {
  justify-content: initial;
}

.blog-details-section .blog-box-large .thumbs-area img {
  border-radius: 15px;
  max-height: 420px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-details-section .blog-box-large .content-area {
  max-width: 100%;
}

.blog-details-section .blog-box-large .content-area .blog-title {
  margin-bottom: 20px;
}

.blog-details-section .blog-box-large .content-area .para-text {
  margin-bottom: 20px;
}

.blog-quote-box {
  margin: 20px 0;
  position: relative;
  background-color: var(--bg-color2);
  padding: 25px;
  border-left: 2px solid rgb(var(--primary-rgb));
  border-radius: 15px;
}

.blog-quote-box .icon-area {
  position: absolute;
  font-size: 3.75rem;
  color: rgb(var(--primary-rgb));
  top: 5px;
  right: 20px;
  opacity: 0.1;
  z-index: 0;
}

.blog-quote-box .content {
  position: relative;
  z-index: 1;
}

.blog-quote-box .title {
  position: relative;
  padding: 10px 0 0 30px;
  margin: 0;
  display: flex;
  align-items: center;
}

.blog-quote-box .title::after {
  position: absolute;
  content: "";
  background-color: rgb(var(--primary-rgb));
  width: 20px;
  height: 2px;
  left: 0;
}

.social-share-box {
  margin-top: 30px;
}

.social-share-box .title {
  text-transform: capitalize;
  margin-bottom: 10px;
}

#shareBlock {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#shareBlock .btn-light {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background-color: var(--bg-color3);
  border: none;
}

.sidebar-categories-area li {
  padding: 10px 0;
}

.sidebar-categories-area li a {
  font-size: 1.125rem;
  display: flex;
  justify-content: space-between;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.sidebar-categories-area li a:hover {
  color: rgb(var(--primary-rgb));
}

.sidebar-categories-area li:first-child {
  padding-top: 0;
}

.sidebar-categories-area li:last-child {
  padding-bottom: 0;
}

.sidebar-categories-area li:not(:last-child) {
  border-bottom: 1px solid var(--border-color1);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list .item {
  font-size: 1rem;
  padding: 10px 15px;
  transition: var(--transition);
  border-radius: 5px;
  background-color: var(--bg-color3);
  gap: 5px;
  font-weight: 500;
  text-transform: capitalize;
  border: 1px solid var(--border-color1);
}

.tag-list .item:hover {
  color: var(--heading-color);
  background-color: rgb(var(--primary-rgb));
}

.tag-list .item:last-child {
  margin-bottom: 0;
}

/* Blog/Generic Sidebar widgets */
.sidebar-widget-list .sidebar-widget-area {
  padding: 25px;
  background-color: var(--bg-color2);
  border-radius: 15px;
  margin-bottom: 25px;
}

.sidebar-widget-list .sidebar-widget-area .title {
  margin-bottom: 15px;
  text-transform: capitalize;
}

.sidebar-widget-area .sidebar-widget-item {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.sidebar-widget-area .sidebar-widget-item:hover .content-area .title {
  color: rgb(var(--primary-rgb));
}

.sidebar-widget-area .sidebar-widget-item:hover .img-area img {
  transform: scale(1.03);
}

.sidebar-widget-area .sidebar-widget-item .img-area {
  width: 80px;
  min-width: 80px;
  height: 80px;
  overflow: hidden;
}

.sidebar-widget-area .sidebar-widget-item .img-area img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  transition: var(--transition);
}

.sidebar-widget-area .sidebar-widget-item .content-area {
  margin-left: 15px;
  width: calc(100% - 100px);
}

.sidebar-widget-area .sidebar-widget-item .content-area .title {
  font-size: 1.125rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  transition: all ease 0.3s;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.sidebar-widget-area .sidebar-widget-item .content-area .widget-date {
  display: flex;
  gap: 5px;
  color: var(--body-color);
  font-size: var(--body-size);
}

.sidebar-widget-area .sidebar-widget-item .content-area .widget-date i {
  color: rgb(var(--primary-rgb));
}

.sidebar-widget-area .sidebar-widget-item:not(:last-child) {
  margin-bottom: 20px;
}

.sidebar-widget-area .widget-title {
  margin-bottom: 20px;
  position: relative;
  text-transform: capitalize;
  display: flex;
  gap: 10px;
}

.sidebar-widget-area .widget-title::before {
  content: "";
  width: 5px;
  border-radius: 6px;
  background-color: rgb(var(--primary-rgb));
}

.featured-products-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.featured-products-box .img-box {
  width: 90px;
  min-width: 90px;
  height: 90px;
}

.featured-products-box .img-box img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.featured-products-box .text-box .title {
  font-size: 1.125rem;
  color: var(--heading-color);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  margin-bottom: 5px;
}

.featured-products-box .text-box .title:hover {
  color: rgb(var(--primary-rgb));
}

.featured-products-box .text-box .price .promo-price {
  color: rgb(var(--primary-rgb));
  font-size: 1.25rem;
}

.featured-products-box .text-box .price .original-price {
  font-size: 1rem;
}

.featured-products-box .text-box .line-through {
  text-decoration: line-through;
  white-space: nowrap;
  font-size: var(--body-size);
}

.rtl .sidebar-widget-item .content-area {
  margin-left: 0;
  margin-right: 15px;
}

.rtl .sidebar-widget-area .widget-title::before,
.rtl .sidebar-widget-area .widget-title::after {
  right: 0;
  left: auto;
}

.rtl .blog-quote-box {
  border-left: none;
  border-right: 2px solid rgb(var(--primary-rgb));
  padding: 25px 40px 20px 20px;
}

.rtl .blog-quote-box .icon-area {
  left: 20px;
  right: auto;
}

.rtl .blog-quote-box .icon-area i {
  transform: rotateY(180deg);
}

.rtl .blog-quote-box .title {
  padding: 10px 30px 0 0;
}

.rtl .blog-quote-box .title::after {
  left: auto;
  right: 0;
}

/*----------------------------------------------
Blog details end
----------------------------------------------*/
/*----------------------------------------------
26. Pagination section start
----------------------------------------------*/
.pagination-section {
  display: flex;
  justify-content: end;
}

.pagination-section nav .pagination .page-item .page-link {
  margin: 5px;
  width: 40px;
  height: 40px;
  border-radius: 15px !important;
  color: var(--heading-color);
  background-color: var(--bg-color3);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-color1);
  box-shadow: none;
}

.pagination-section nav .pagination .page-item .page-link:hover,
.pagination-section nav .pagination .page-item .page-link:focus {
  background-color: rgb(var(--primary-rgb));
  color: var(--heading-color);
  border: 1px solid rgb(var(--primary-rgb));
}

.pagination-section nav .pagination .page-item.active .page-link {
  background-color: rgb(var(--primary-rgb));
  color: var(--heading-color);
  border-color: rgb(var(--primary-rgb));
}

.rtl .pagination-section nav .pagination .page-item .page-link i {
  transform: rotate(180deg);
}

/*----------------------------------------------
Pagination end
----------------------------------------------*/
/*----------------------------------------------
Policy section start
----------------------------------------------*/
.policy-section {
  position: relative;
  z-index: 0;
}

.policy-section ul,
.policy-section ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.policy-section ul {
  list-style: circle;
}

.policy-section ol {
  list-style: decimal;
}

.policy-section .shape2 {
  top: auto;
  bottom: 150px;
}

.policy-section .shape3 {
  top: 150px;
}

.rtl .policy-section ul,
.rtl .policy-section ol {
  padding-left: 0;
  padding-right: 2rem;
}

/*----------------------------------------------
Policy section end
----------------------------------------------*/
/*----------------------------------------------
27. Error section start
----------------------------------------------*/
.error-section {
  overflow: hidden;
  height: 100vh;
  width: 100%;
  /* Changed from 100vw to fix horizontal displacement */
  background-color: var(--bg-color1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-section .error-content {
  color: var(--body-color);
}

.error-section .error-content .error-title {
  font-size: 9.375rem;
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1;
}

.error-section .error-content .error-info {
  font-size: 2.5rem;
  line-height: 1.3;
}

.error-section .error-content .btn-area {
  margin-top: 30px;
}

.error-section .error-content .btn-area .cmn-btn {
  text-transform: none;
}

@media (max-width: 991px) {
  .error-section {
    padding: 100px 0;
  }

  .error-section .error-content .error-title {
    font-size: 6.25rem;
  }

  .error-section .error-content .error-info {
    font-size: 1.875rem;
  }
}

@media (max-width: 575px) {
  .error-section {
    text-align: center;
    min-height: 100%;
    min-width: 100%;
  }
}

/*----------------------------------------------
Error end
----------------------------------------------*/
/*----------------------------------------------
Products section start
----------------------------------------------*/
.products-section {}

/*----------------------------------------------
Products section end
----------------------------------------------*/
/*----------------------------------------------
Product details section start
----------------------------------------------*/
.product-details-section {
  padding-top: 100px;
}

.item-count {
  padding: 5px 8px;
  width: auto;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-color1);
  border-radius: 15px;
  transition: var(--transition);
  color: var(--heading-color);
  background-color: transparent !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.item-count:hover {
  box-shadow: var(--shadow1);
}

.item-count input {
  border: none;
  outline: none;
  width: 40px;
  text-align: center;
  background: transparent !important;
  color: var(--heading-color);
}

.btn-inc-dec {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--heading-color);
}

.btn-inc-dec:hover {
  background-color: var(--bg-color2);
}

.review-item {
  border: 1px solid var(--border-color1);
  padding: 20px 15px;
  border-radius: 15px;
  color: var(--body-color);
}

.card-body {
  color: var(--body-color);
}

.author-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-profile .img-box img {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 15px;
}

.related-card {
  display: flex;
  border: 1px solid var(--border-color1);
  border-radius: 5px;
}

.related-card:hover .img-box img {
  transform: scale(1.05);
}

.related-card:not(:last-child) {
  margin-bottom: 20px;
}

.related-card .img-box {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 80px;
  min-width: 80px;
  height: 100%;
  min-height: 80px;
  overflow: hidden;
}

.related-card .img-box img {
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.related-card .text-box {
  font-size: 0.9375rem;
  padding: 10px;
}

.related-card .text-box h6 {
  font-size: 1rem;
}

.related-card .text-box p {
  color: var(--body-color);
  margin-top: 5px;
}

.info-box {
  position: relative;
}

.info-box:hover .info-text {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

/* Enforce visible text in Product Detail Tabs (Description, Guide, Reviews) */
.product-details-section .tab-content .card-body {
  color: var(--body-color);
}

.product-details-section .tab-content .card-body p,
.product-details-section .tab-content .card-body span,
.product-details-section .tab-content .card-body li,
.product-details-section .tab-content .card-body div {
  color: var(--body-color);
}

.product-details-section .tab-content .card-body h1,
.product-details-section .tab-content .card-body h2,
.product-details-section .tab-content .card-body h3,
.product-details-section .tab-content .card-body h4,
.product-details-section .tab-content .card-body h5,
.product-details-section .tab-content .card-body h6,
.product-details-section .tab-content .card-body strong,
.product-details-section .tab-content .card-body b {
  color: var(--heading-color) !important;
}

.product-details-section .tab-content .card-body pre {
  background: var(--bg-color3);
  color: var(--body-color);
  padding: 10px;
  border-radius: 5px;
}

.info-box .info-icon {
  cursor: pointer;
}

.info-box .info-icon:hover {
  color: rgb(var(--primary-rgb));
}

.info-box .info-text {
  position: absolute;
  background-color: var(--bg-color3);
  right: -10px;
  top: 100%;
  z-index: 1;
  width: 250px;
  border: 1px solid var(--border-color1);
  padding: 10px;
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: 0 0;
  transition: var(--transition);
}

.product-card {
  background-color: var(--bg-color2);
  padding: 25px;
  border-radius: 15px;
}

.product-card:not(:last-child) {
  margin-bottom: 30px;
}

.product-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--body-size);
}

.product-card-item:hover {
  color: rgb(var(--primary-rgb));
}

.product-card-item:hover .img-box img {
  transform: scale(1.03);
}

.product-card-item .img-box {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 15px;
  overflow: hidden;
}

.product-card-item .img-box img {
  border-radius: 15px;
  transition: var(--transition);
}

.product-card-item .text-box .title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading-color);
}

.iframe-video {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.iframe-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

@media (max-width: 767px) {
  .product-details-section {
    padding-top: 28px;
  }
}

/*----------------------------------------------
Product details section end
----------------------------------------------*/
/*----------------------------------------------
00. Cart section start
----------------------------------------------*/
.cart-table table {
  color: var(--body-color);
}

.cart-table tbody td {
  padding: 20px 15px;
}

.cart-table thead tr {
  background-color: var(--bg-color2);
}

.cart-table thead th {
  text-transform: capitalize;
  padding: 20px 15px;
}

.cart-table thead th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.cart-table thead th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.cart-table tbody,
.cart-table td,
.cart-table tfoot,
.cart-table th,
.cart-table thead,
.cart-table tr {
  border: none;
}

.cart-table tbody tr {
  border-bottom: 1px solid var(--border-color1);
  border-radius: 15px;
  margin: 10px 0;
}

.cart-table .cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-table .cart-item .img-box {
  width: 60px;
  min-width: 60px;
  height: 60px;
}

.cart-table .cart-item .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}

.cart-table .cart-item .title {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

@media (min-width: 768px) {
  .cart-table .cart-item-count {
    margin: 0 auto;
  }
}

.rtl .cart-table thead th:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.rtl .cart-table thead th:last-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

/*----------------------------------------------
Cart section end
----------------------------------------------*/
/*----------------------------------------------
Reviews details section start
----------------------------------------------*/
.reviews-details-section {}

.reviews-details-section .isotop-content {
  background-color: var(--bg-color2);
  padding: 25px;
  border-radius: 15px;
  font-size: 1rem;
}

.sidebar-card-box {
  background-color: var(--bg-color2);
  padding: 25px;
  border-radius: 15px;
}

.sidebar-card-box .header-box {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--border-color1);
  padding-bottom: 20px;
}

.sidebar-card-box .header-box .img-box {
  width: 90px;
  min-width: 90px;
  height: 100px;
}

.sidebar-card-box .header-box .img-box img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.reviews-rating-box {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  border: 1px solid var(--border-color1);
  padding: 20px;
  border-radius: 15px;
}

.reviews-rating-box .item {
  text-align: center;
}

.progress-box .progress-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.progress-box .progress-item h6 {
  max-width: 80px;
  width: 100%;
}

.progress-box .progress-item .progress {
  width: 100%;
  height: 5px;
}

.progress-box .progress-item .progress .progress-bar {
  background-color: rgb(var(--primary-rgb));
  transition: all 5s;
}

.reviews-single {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.reviews-single:not(:last-child) {
  margin-bottom: 20px;
}

.reviews-single .left-side {
  display: flex;
  gap: 10px;
  min-width: 215px;
}

.reviews-single .left-side .img-box {
  width: 45px;
  min-width: 45px;
  height: 45px;
}

.reviews-single .left-side .img-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.reviews-single .left-side .text-box .title {
  display: flex;
  align-items: center;
  gap: 5px;
}

.reviews-single .left-side .text-box .title i {
  font-size: 0.9375rem;
  color: rgb(var(--primary-rgb));
}

.reviews-single .left-side .text-box .contact-item {
  font-size: 1rem;
}

.reviews-single .right-side {
  display: flex;
  gap: 5px;
}

.reviews-single .right-side .reviews {
  font-size: 1rem;
}

@media (max-width: 767px) {
  .reviews-single {
    flex-direction: column;
  }

  .reviews-single .right-side {
    flex-direction: column;
  }
}

/*----------------------------------------------
Reviews details section end
----------------------------------------------*/
/*----------------------------------------------
Cart section start
----------------------------------------------*/
.cart-section {}

/*----------------------------------------------
Cart section section end
----------------------------------------------*/
/*----------------------------------------------
Checkout section start
----------------------------------------------*/
.checkout-section {}

/*----------------------------------------------
Checkout section section end
----------------------------------------------*/
/*----------------------------------------------
Sell post details section start
----------------------------------------------*/
.sell-post-details-section {}

@media (min-width: 576px) {
  .sell-post-details-section .product-box3 {
    flex-direction: row;
    padding: 20px;
    align-items: center;
  }

  .sell-post-details-section .product-box3 .img-box {
    width: 200px;
    min-width: 200px;
    height: 200px;
  }

  .sell-post-details-section .product-box3 .img-box .owl-item img {
    height: 200px;
  }

  .sell-post-details-section .product-box3 .text-box .title {
    font-size: 1.25rem;
  }
}

/*----------------------------------------------
Sell post details section end
----------------------------------------------*/
/*----------------------------------------------
Offer chat section start
----------------------------------------------*/
.offer-conversion-section {}

.client-question-box {
  background-color: var(--bg-color2);
  padding: 10px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.client-question-box .img-box img {
  width: 40px;
}

@media (min-width: 576px) {
  .offer-conversion-section .product-box3 {
    flex-direction: row;
    padding: 15px;
    align-items: center;
  }

  .offer-conversion-section .product-box3 .img-box {
    width: 200px;
    min-width: 200px;
    height: 200px;
  }

  .offer-conversion-section .product-box3 .img-box .owl-item img {
    height: 200px;
  }
}

.about-section .text-box div pre {
  color: var(--body-color) !important;
  font-family: var(--body-font) !important;
  font-size: 1rem !important;
  overflow: hidden !important;
  margin-bottom: 0 !important;
}

/*----------------------------------------------
Offer chat section end
----------------------------------------------*/
/*----------------------------------------------
16. Docs section start
----------------------------------------------*/
.docs-nav {
  background-color: var(--bg-color2);
  border-bottom: 1px solid var(--border-color1);
}

.docs-section-title {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color2);
}

.docs-title {
  padding: 20px 0;
}

.docs-section {
  padding: 20px 0;
}

.docs-link {
  text-decoration: underline;
  color: rgb(var(--primary-rgb));
}

.language-bash {
  background-color: var(--bg-color4);
  border-radius: 5px;
  position: relative;
}

.language-bash:hover .copy-code {
  opacity: 1;
  visibility: visible;
}

.language-bash .line-numbers-rows {
  position: absolute;
  color: #9e9e9e;
  left: 0;
  top: 15px;
  border-right: 1px solid #9e9e9e;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg-color4);
  font-size: var(--body-size);
}

.language-bash .line-numbers-rows span {
  display: block;
}

.language-bash .docs-pre {
  padding: 0 0 0 30px;
  position: relative;
  overflow: hidden;
}

.language-bash .copy-code {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--bg-color5);
  width: 30px;
  height: 30px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  border: 1px solid transparent;
}

.language-bash .copy-code:hover {
  border: 1px solid var(--border-color2);
}

.language-bash pre code.hljs::-webkit-scrollbar {
  background-color: var(--bg-color4);
}

.language-bash pre code.hljs::-webkit-scrollbar-thumb {
  visibility: hidden;
  opacity: 0;
}

.language-bash pre code.hljs:hover::-webkit-scrollbar-thumb {
  visibility: visible;
  opacity: 1;
}

.navbar-toggler {
  background: var(--primary-color);
  color: var(--white);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  box-shadow: none;
}

.cmn-btn-close {
  font-size: 1.125rem;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 15px;
  color: var(--white);
  padding: 0;
  margin: 0;
  opacity: 1;
  box-shadow: none;
}

.sidebar-btn {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  color: var(--white);
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-section {
  background-color: var(--bg-color1);
  box-shadow: var(--shadow1);
  width: 300px;
  height: 100%;
  padding: 20px;
  position: absolute;
  left: -300px;
  top: 0;
  transition: var(--transition);
  z-index: 2;
  border-right: 1px solid var(--border-color1);
}

.sidebar-section .nav-area {
  position: relative;
  overflow-y: auto;
  height: 100%;
}

.sidebar-section .nav-area .nav-item .nav-content {
  margin-left: 30px;
}

.sidebar-section .nav-area .nav-item .nav-content li a {
  padding: 5px;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.sidebar-section .nav-area .nav-item .nav-content li a.active {
  color: var(--primary-color);
}

.sidebar-section .nav-area .nav-item .nav-content li a i {
  font-size: 0.5rem;
  margin-right: 5px;
  border-radius: 50%;
}

.sidebar-section .nav-area .nav-link {
  color: var(--heading-color);
  display: flex;
  align-items: center;
  padding: 7px 0;
  font-weight: 600;
  font-size: 1rem;
}

.sidebar-section .nav-area .nav-link:hover {
  color: rgb(var(--primary-rgb));
}

.sidebar-section .nav-area .nav-link i {
  transition: transform 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border-radius: 5px;
}

.sidebar-section .nav-area .nav-link i.first {
  margin-right: 5px;
}

.sidebar-section .nav-area .nav-link i.last {
  margin-left: auto;
  background-color: var(--bg-color2);
}

.sidebar-section .nav-area .nav-link:not(.collapsed) i.last {
  transform: rotate(180deg);
}

.sidebar-section .toggle-sidebar-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -35px;
  width: 35px;
  height: 35px;
  background-color: var(--bg-color1);
}

.hljs {
  background-color: transparent;
}

main {
  position: relative;
  width: calc(100% - 300px);
  margin-left: auto;
  color: var(--body-color);
}

main .main-inner {
  max-width: 1000px;
  margin: auto;
  padding: 50px;
}

main .main-wrapper {
  padding: 30px;
}

main .content-side {
  padding: 20px;
  overflow-y: auto;
}

main .editor-side {
  overflow-y: auto;
  background-color: var(--bg-color2);
}

main .editor-side .editor-header {
  background-color: var(--bg-color3);
  position: sticky;
  top: 0;
  z-index: 1;
}

main .editor-side .editor-header .editor-title {
  color: var(--heading-color);
  padding: 20px;
  border-bottom: 1px solid var(--border-color3);
}

main .editor-side .language-bash {
  border-radius: 0;
}

.editor-content-area {
  background-color: var(--bg-color4);
}

.editor-content-area .language-bash-inner {
  position: relative;
  height: 400px;
  overflow-y: auto;
}

.editor-content-area .language-bash-inner::-webkit-scrollbar {
  background-color: var(--bg-color4);
}

.editor-content-area .language-bash-inner::-webkit-scrollbar-thumb {
  visibility: hidden;
  opacity: 0;
}

.editor-content-area .language-bash-inner:hover::-webkit-scrollbar-thumb {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 1200px) {
  .main-wrapper {
    display: flex;
  }

  .content-side {
    width: 50%;
    height: calc(100vh - 75px);
  }

  .editor-side {
    width: 50%;
    height: calc(100vh - 75px);
  }
}

@media (max-width: 991px) {
  .sidebar-section {
    left: -300px;
  }

  main {
    width: 100%;
  }

  .toggle-sidebar .sidebar-section {
    left: 0;
  }
}

@media (max-width: 575px) {
  main .main-inner {
    padding: 20px;
  }
}

.rtl .sidebar-section .nav-area .nav-link i.first {
  margin-right: 0;
  margin-left: 5px;
}

.rtl .sidebar-section .nav-area .nav-link i.last {
  margin-left: 0;
  margin-right: auto;
}

.rtl .sidebar-section .nav-item .nav-content {
  margin-left: 0;
  margin-right: 30px;
}

.rtl .sidebar-section .nav-item .nav-content li a i {
  margin-right: 0;
  margin-left: 5px;
}

.rtl main {
  margin-left: 0;
  margin-right: auto;
}

.rtl .sidebar-section {
  left: auto;
  right: -300px;
  border-right: none;
  border-left: 1px solid var(--border-color1);
}

@media (max-width: 991px) {
  .rtl .sidebar-section {
    right: -300px;
    left: auto;
  }

  .rtl .toggle-sidebar .sidebar-section {
    right: 0;
    left: auto;
  }
}

.rtl .language-bash .docs-pre {
  padding: 0 30px 0 0;
}

.rtl .language-bash .line-numbers-rows {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 1px solid #9e9e9e;
}

.rtl .language-bash .copy-code {
  right: auto;
  left: 15px;
}

/*----------------------------------------------
Docs end
----------------------------------------------*/

.lang-currency-btn {
  cursor: pointer;
}

.error-section .error-content .error-info {
  font-size: 1.3125rem;
  line-height: 1.3;
  padding-top: 20px;
}

.error-section .error-content .error-title {
  font-size: 2.625rem;
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1;
}


.dark-offer-maker-list .sellpost-offer-box {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  background-color: var(--bg-color2);
  border: 1px solid var(--border-color2);
  border-radius: 15px;
  margin-bottom: 15px;
  transition: box-shadow 0.3s ease;
}

.dark-offer-maker-list .sellpost-offer-box:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dark-offer-maker-list .flex-shrink-0 img {
  border: 2px solid #ddd;
  padding: 2px;
}

.dark-offer-maker-list .flex-shrink-0 span {
  display: block;
  text-align: center;
  font-size: var(--body-size);
  font-weight: bold;
  margin-top: 8px;
}

.dark-offer-maker-list .flex-grow-1 {
  flex-grow: 1;
  margin-left: 15px;
}

.dark-offer-maker-list .flex-grow-1 h6 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.dark-offer-maker-list .flex-grow-1 p {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 10px 0;
}

.dark-offer-maker-list .btn-group-sm .btn {
  border: none;
  padding: 5px 10px;
  font-size: var(--body-size);
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.dark-offer-maker-list .dropdown-menu {
  min-width: 150px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dark-offer-maker-list .dropdown-item {
  font-size: var(--body-size);
  transition: background-color 0.3s ease;
  margin-bottom: 0;
}

.dark-offer-maker-list .badge {
  padding: 5px 10px;
  font-size: var(--small-size);
  border-radius: 15px;
  text-transform: capitalize;
  margin-left: 0;
}

.dark-offer-maker-list .base-color {
  margin-bottom: 8px;
}

.dark-offer-maker-list .badge.bg-warning {
  background-color: var(--warning);
  color: #fff;
}

.dark-offer-maker-list .badge.bg-success {
  background-color: var(--success);
  color: #fff;
}

.dark-offer-maker-list .badge.bg-danger {
  background-color: var(--danger);
  color: #fff;
}

.dark-offer-maker-list .badge.bg-info {
  background-color: var(--info);
  color: #fff;
}

.dark-offer-maker-list .fa-clock {
  margin-right: 5px;
  color: #888;
}

.badge.text-bg-primary {
  color: rgb(var(--primary-rgb)) !important;
  background-color: rgba(var(--primary-rgb), var(--bs-bg-opacity, 0.1)) !important;
}

.badge.text-bg-primary::before {
  background-color: rgb(var(--primary-rgb)) !important;
}

.badge.text-bg-secondary {
  color: RGBA(108, 117, 125) !important;
  background-color: RGBA(108, 117, 125, var(--bs-bg-opacity, 0.1)) !important;
}

.badge.text-bg-secondary::before {
  background-color: RGBA(108, 117, 125) !important;
}

.badge.text-bg-success {
  color: var(--success) !important;
  background-color: rgba(0, 201, 167, 0.1) !important;
  /* approximated from var */
}

.badge.text-bg-success::before {
  background-color: var(--success) !important;
}

.badge.text-bg-danger {
  color: var(--danger) !important;
  background-color: rgba(222, 68, 55, 0.1) !important;
  /* approximated from var */
}

.badge.text-bg-danger::before {
  background-color: var(--danger) !important;
}

.badge.text-bg-warning {
  color: var(--warning) !important;
  opacity: 1;
  background-color: rgba(255, 193, 7, 0.1) !important;
  /* approximated from var */
}

.badge.text-bg-warning::before {
  background-color: var(--warning) !important;
}

.badge.text-bg-info {
  color: var(--info) !important;
  opacity: 1;
  background-color: rgba(13, 202, 240, 0.1) !important;
  /* approximated from var */
}

.badge.text-bg-info::before {
  background-color: var(--info) !important;
}

.badge.text-bg-dark {
  color: RGBA(33, 37, 41) !important;
  opacity: 1;
  background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 0.1)) !important;
}

.badge.text-bg-dark::before {
  background-color: RGBA(33, 37, 41) !important;
}

@media only screen and (max-width: 767px) {
  .sell-post-details-section .badge {
    margin-left: 0;
  }

  .sell-post-details-section .post_specification_form {
    flex-wrap: wrap;
    gap: 10px !important;
  }

  .sellpost-offer-box:last-child {
    flex-direction: column;
    align-items: flex-start;
  }

  .dark-offer-maker-list .flex-grow-1 {
    margin-left: 0 !important;
  }

  .dark-offer-maker-list .btn-group-sm {
    margin-top: 10px;
  }

  .post-user-info h6 {
    margin-bottom: 0;
  }

  .text-area-inside {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .buyBtn {
    top: 66%;
    right: 10px;
  }
}

.notificationDropIcon {
  position: relative;
}

.notificationDropIcon .notificationDropNum {
  position: absolute;
  right: 0;
  top: 0;
  background: rgb(var(--primary-rgb));
  min-width: 18px;
  height: 18px;
  width: 18px;
  border-radius: 3px 6px 3px 6px;
  color: var(--white);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notificationDropIcon .notifications {
  max-width: 20rem;
}

.cursor-pointer {
  cursor: pointer;
}

.errorImageMain {
  height: 150px;
  margin: 40px;
}

#cookieAlert {
  background: rgba(20, 20, 28, 0.88) !important;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  position: fixed;
  bottom: 15px;
  left: 0;
  margin: 15px;
  max-width: 450px;
  padding: 20px;
  border-radius: 15px;
  z-index: 1057;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
}

#cookieAlert i {
  font-size: 1.5rem;
  margin-right: 5px;
  color: rgb(var(--primary-rgb));
}

#cookieAlert h4,
#cookieAlert p {
  color: var(--heading-color);
}

#cookieAlert .cookie-btns {
  margin-top: 10px;
}

#cookieAlert .cookie-btns .cmn-btn {
  height: 40px;
  width: 120px;
  border-radius: 50px;
  padding: 8px;
}

#cookieAlert a {
  color: rgb(var(--primary-rgb));
}

.rtl #cookieAlert .cookie-btns {
  float: left;
}

.cookieSeemoreButton {
  color: rgb(var(--primary-rgb)) !important;
}

.cookieSeemoreButton:hover {
  color: rgb(var(--primary-rgb));
}

/* Standardized Theme & Borders for Front-end */
.card,
.modal-content,
.dropdown-menu,
.accordion-item,
.sidebar-card-box,
.related-card,
.search-box2,
.search-result,
.language-box .dropdown-menu {
  border: 1px solid var(--border-color1) !important;
  background-color: var(--bg-color2) !important;
  box-shadow: var(--shadow1) !important;
}

.table {
  border-color: var(--border-color1) !important;
}

.table> :not(caption)>*>* {
  background-color: transparent !important;
  border-bottom-width: 1px;
  border-bottom-color: var(--border-color1);
  color: var(--body-color);
}

.form-control,
.form-select,
.input-group-text,
.nice-select {
  background-color: var(--bg-color1) !important;
  border: 1px solid var(--border-color1) !important;
  color: var(--body-color) !important;
  height: auto;
}

.form-control:focus {
  background-color: var(--bg-color1) !important;
  border-color: rgba(var(--primary-rgb), 0.5) !important;
}



.dropdown-menu {
  background-color: var(--bg-color3) !important;
}

.dropdown-item {
  color: var(--body-color);
}

.dropdown-item:hover {
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--heading-color);
}

.theme-dropdown-menu .dropdown-item.active {
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--heading-color);
}

.logo img {
  max-height: 50px;
  width: auto;
}

/* Fix for specific front-end boxes */
.service-box,
.featured-box,
.product-box,
.item-card {
  border: 1px solid var(--border-color1);
  background-color: var(--bg-color2);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
}

.service-box:hover,
.featured-box:hover,
.product-box:hover {
  box-shadow: var(--shadow3);
  border-color: rgba(var(--primary-rgb), 0.3);
}

.footer-section {
  border-top: 1px solid var(--border-color1);
}


/* Additional Front-end Elements */
.product-box3,
.sidebar-card-box,
.newsletter-section-inner,
.category-box,
.featured-card {
  border: 1px solid var(--border-color1) !important;
  background-color: var(--bg-color2) !important;
  border-radius: 15px !important;
  padding: .5rem !important;
  box-shadow: var(--shadow1);
  transition: var(--transition);
}

.product-box3:hover,
.category-box:hover,
.featured-card:hover {
  box-shadow: var(--shadow3);
  border-color: rgba(var(--primary-rgb), 0.3) !important;
}

.cmn-hr3 {
  border-top: 1px solid var(--border-color1);
}

.modal-header,
.modal-footer {
  border-color: var(--border-color1) !important;
}

.text-box .title {
  color: var(--heading-color) !important;
}

.price span {
  color: rgb(var(--primary-rgb)) !important;
}


/* Global Font & Color Optimization for Light/Dark Modes */
body {
  color: var(--body-color) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title {
  color: var(--heading-color) !important;
}

/* Standard Hero Section Styles */
.slider-box {
  background-color: var(--bg-color3) !important;
  color: var(--body-color) !important;
  border: 1px solid var(--border-color1);
}

.slider-box .text-box .title,
.slider-box .text-box .description,
.slider-box .text-box .section-subtitle {
  color: var(--heading-color) !important;
}

/* Override hardcoded white text in common components */
.section-header h2,
.section-header p,
.footer-widget h5,
.footer-widget p,
.contact-item,
.widget-title {
  color: var(--heading-color) !important;
}

.footer-section p,
.footer-section span,
.footer-section li,
.footer-section a {
  color: var(--body-color) !important;
}

/* Ensure consistent text colors in footer */

/* Nav links visibility */
.cusotm-nav .nav-link {
  color: var(--heading-color) !important;
}

.cusotm-nav .nav-link:hover,
.cusotm-nav .nav-link.active {
  color: rgb(var(--primary-rgb)) !important;
}

/* Search Box & Inputs visibility */
.search-box2 #search-input {
  color: var(--heading-color) !important;
}

.search-box2 #search-input::placeholder {
  color: var(--body-color) !important;
  opacity: 0.7;
}

/* Fix for specific pale blue box in hero if it exists */
.pale-blue-box {
  background-color: #e3f2fd !important;
  /* Lighter blue for light mode */
}

.dark-theme .pale-blue-box {
  background-color: #1e3a5f !important;
  /* Darker blue for dark mode */
}

/* Sharp Typography for better readability */
body {
  font-weight: 500 !important;
  /* Slightly bolder base for Tajawal */
}

h1,
h2,
h3,
h4,
h5,
h6,
.title {
  font-weight: 700 !important;
}

/* Fix navbar font clarity */
.cusotm-nav .nav-link {
  font-weight: 600 !important;
  font-size: 1rem;
}

/* Admin-style Section Titles */
.section-header h2 {
  font-size: 2rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(var(--primary-rgb)) !important;
}





/* Theme Switcher Specific Visual Adjustments */

/* Fix Icon Colors to match theme instead of staying white */



/* Ultimate Border & Icon Color Fix */
.nav-icon {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}


/* Remove borders from Header and Search sections */
.header-top-section,
.desktop-view,
.search-box2,
.search-box2 .form-control,
.search-box2 .search-btn2 {
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Ensure the search input looks clean in both modes */
.search-box2 .form-control {
  background-color: var(--bg-color3) !important;
  box-shadow: none !important;
}

/* Optional: add a subtle shadow on hover instead of borders for better UX */
.search-box2:hover {
  box-shadow: var(--shadow1) !important;
}

.search-result {
  border: none !important;
  box-shadow: var(--shadow3) !important;
}


/* Extra cleanup for focus states and input borders */
.search-box2 .form-control:focus,
.search-box2 .form-control:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Remove borders from any nested header sections if present */
header,
.header-section,
.navbar {
  border: none !important;
}


/* Rigorous Admin-Panel Style Alignment */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/* Typography Strictness */
body {
  font-family: var(--body-font) !important;
  font-weight: 400;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title {
  font-family: var(--heading-font) !important;
  font-weight: 600 !important;
  color: var(--heading-color) !important;
}

/* Global Icon Rigorous Coloring */
i[class*="fa-"],
i[class*="bi-"] {
  transition: color 0.3s ease;
}

/* Mobile/Sidebar Navigation Icons - Admin Style Vibrant Colors */
.mean-nav ul li a i,
.bottom-nav .nav-item .nav-link i,
.custom-nav .nav-link i {
  width: 24px;
  text-align: center;
}

/* Applying Vibrant Admin Palette to Icons */
/* Standardized Icon Colors (Admin Style) */
.nav-item i {
  color: var(--body-color);
  transition: color 0.3s ease;
}

.nav-item.active i,
.nav-item:hover i {
  color: rgb(var(--primary-rgb));
}

/* Theme Switcher Icons */


/* Admin-Style Clean Adjustments */

/* Search Input - Clean Admin Style */
.search-box2 .form-control {
  background-color: var(--bg-color3) !important;
  border: 1px solid var(--border-color1) !important;
  color: var(--heading-color) !important;
  font-size: 0.875rem;
}

.search-box2 .form-control::placeholder {
  color: var(--body-color);
  opacity: 0.6;
}

/* Background & Border Persistence */
.card,
.product-box,
.service-box,
.modal-content,
.dropdown-menu {
  background-color: var(--bg-color2) !important;
  border: 1px solid var(--border-color1) !important;
  border-radius: 15px !important;
  box-shadow: var(--shadow1) !important;
}

.card .card-title,
.product-box .title {
  font-size: 1rem !important;
  /* 16px */
  font-weight: 600 !important;
}

/* Table Alignment */
.table {
  color: var(--body-color) !important;
  font-size: 0.875rem !important;
  /* 14px */
}

.table thead th {
  background-color: var(--bg-color3) !important;
  color: var(--heading-color) !important;
  border-bottom: 2px solid var(--border-color1) !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
}

/* Scrollbar Admin Style - GLOBAL VISIBLE */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color1);
}

::-webkit-scrollbar-thumb {
  background: #4a4d55;
  border: 3px solid var(--bg-color1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(var(--primary-rgb));
}




/* Strict Admin-Panel Component Alignment */

/* 1. Header & Topbar Rigorous Cleanup */
.header-top-section {
  background-color: transparent !important;
  border-bottom: none !important;
}

.cusotm-nav {
  box-shadow: 0 10px 30px 0 rgba(var(--primary-rgb), 0.05) !important;
}

.cusotm-nav {
  background-color: var(--bg-color2) !important;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2) !important;
}

/* 2. Admin-Style Buttons */
.cmn-btn,
.btn-primary {
  background-color: rgb(var(--primary-rgb)) !important;
  border-color: rgb(var(--primary-rgb)) !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  border-radius: 15px !important;
  padding: 0.6rem 1.2rem !important;
  transition: all 0.3s ease !important;
}

.cmn-btn:hover,
.btn-primary:hover {
  background-color: var(--btn-hover-bg) !important;
  box-shadow: 0 4px 11px 0 rgba(var(--primary-rgb), 0.35) !important;
}

/* 3. Breadcrumb Rigorous Alignment */
.breadcrumb-section {
  background-color: transparent !important;
  padding: 1rem 0 !important;
}

.breadcrumb-item a {
  color: rgb(var(--primary-rgb)) !important;
  font-weight: 500;
}

.breadcrumb-item.active {
  color: var(--body-color) !important;
}

/* 4. Form Controls & Selects */
.form-control,
.form-select,
.nice-select {
  border: 1px solid var(--border-color1) !important;
  border-radius: 10px !important;
  padding: 0.5rem !important;
  background-color: var(--bg-color1) !important;
}

.form-control:focus {
  border-color: rgb(var(--primary-rgb)) !important;
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.1) !important;
}

/* 5. Mobile Menu - Admin Sidebar Style */
.mean-container .mean-nav {
  background-color: var(--bg-color3) !important;
}

.mean-container .mean-nav ul li a {
  color: var(--heading-color) !important;
  border-top: 1px solid var(--border-color2) !important;
  font-weight: 500 !important;
}

.mean-container .mean-nav ul li a i {
  margin-right: 10px;
  font-size: 0.95rem;
}

/* 6. Pagination - Admin Style */
.pagination-section nav .pagination .page-item .page-link {
  border-radius: 0.42rem !important;
  border: 1px solid var(--border-color1) !important;
  background-color: var(--bg-color2) !important;
  color: var(--heading-color) !important;
  margin: 0 2px !important;
  width: 38px !important;
  height: 38px !important;
}

.pagination-section nav .pagination .page-item.active .page-link {
  background-color: rgb(var(--primary-rgb)) !important;
  border-color: rgb(var(--primary-rgb)) !important;
  color: #fff !important;
}

/* 7. Badges & Labels */
.badge {
  padding: 0.5em 0.8em !important;
  font-weight: 600 !important;
  border-radius: 0.42rem !important;
}

.badge-primary {
  background-color: rgba(var(--primary-rgb), 0.1) !important;
  color: rgb(var(--primary-rgb)) !important;
}

.badge-success {
  background-color: rgba(0, 201, 167, 0.1) !important;
  color: var(--success) !important;
}

.badge-danger {
  background-color: rgba(222, 68, 55, 0.1) !important;
  color: var(--danger) !important;
}

/* 8. Fix for white backgrounds in dark mode for specific plugins */
.select2-container--default .select2-selection--single {
  background-color: var(--bg-color2) !important;
  border-color: var(--border-color1) !important;
  color: var(--heading-color) !important;
}

/* 9. Search box cleanup */
.search-box2 {
  background-color: transparent !important;
}

.search-box2 #search-input {
  border-radius: 0.42rem !important;
}

/* Final Global Admin-Panel Alignment & Enforcement */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

b,
strong {
  font-weight: 600;
}

::placeholder {
  color: var(--body-color) !important;
  opacity: 0.5 !important;
}

hr {
  border-top: 1px solid var(--border-color1) !important;
  opacity: 1 !important;
}

/* Background Consistency Enforcement */
body,
.products-section,
.hero-section,
.exclusive-offer-section,
.about-section,
.product-details-section,
.error-section,
.policy-section {
  background-color: transparent !important;
}



/* Admin-style Section Headers */
.section-header h2 {
  font-size: var(--h2-size) !important;
  /* Reduced from 2.25rem */
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
  color: var(--heading-color) !important;
}

.section-subtitle {
  font-size: var(--small-size) !important;
  letter-spacing: 0.05rem !important;
  font-weight: 600 !important;
  color: rgb(var(--primary-rgb)) !important;
}

/* Custom Calculation Input for TopUp Details */
.custom-calc-input {
  width: 120px;
  height: 46px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color1) !important;
  background-color: var(--bg-color3) !important;
  display: flex !important;
  align-items: center;
  padding: 0 !important;
}

.custom-calc-input .input-group-text {
  background-color: rgba(255, 255, 255, 0.03) !important;
  border: none !important;
  border-right: 1px solid var(--border-color1) !important;
  font-size: 0.9rem !important;
  min-width: 32px !important;
  width: 32px !important;
  height: 100% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0 !important;
  color: var(--heading-color);
}

.custom-calc-input .form-control {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--heading-color) !important;
  font-size: 0.95rem !important;
  padding: 0 4px !important;
  /* Minimal padding for readability */
  margin: 0 !important;
  height: 100% !important;
  font-weight: 700;
  flex: 1;
}

.custom-calc-input .form-control::placeholder {
  color: var(--body-color);
  opacity: 0.4;
}

/* Specific icon adjustment */
.custom-calc-input .input-group-text i {
  font-size: 0.9rem;
}

/* Ensure text colors for specific icons match blade */
.custom-calc-input .input-group-text.text-success {
  color: var(--success) !important;
  background-color: transparent !important;
}

.custom-calc-input .input-group-text.text-info {
  color: var(--info) !important;
  background-color: transparent !important;
}

/* =============================================
   TOPUPLIVE STYLE HERO SECTION
   ============================================= */

/* Main Hero Container - Full Width */
.hero-section,
.dark-hero-topup {
  position: relative;
  width: 100%;
  background-color: var(--bg-color1);
  overflow: hidden;
  margin: 0;
  padding: 0 0 30px 0;
}

/* Ambient Glow Background - Subtle for both modes */
.hero-glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(var(--primary-rgb), 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(var(--secondary-rgb), 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(var(--accent-rgb), 0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Full Width Banner Container */
.hero-banner-fullwidth {
  position: relative;
  width: 100%;
  z-index: 1;
}

/* Main Hero Swiper */
.hero-main-swiper {
  width: 100%;
  overflow: hidden;
}

/* Hero Slide */
.hero-slide {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .hero-slide {
    height: 500px;
  }
}

@media (max-width: 991px) {
  .hero-slide {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .hero-slide {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-slide {
    height: 240px;
  }
}

/* Hero Slide Image - Full Width */
.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.swiper-slide-active .hero-slide-image {
  animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.02);
  }
}

/* ===== VIGNETTE SHADOWS - BALANCED & DUAL MODE ===== */

/* Left Vignette - Balanced shadow */
.vignette-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  height: 100%;
  background: linear-gradient(90deg,
      var(--bg-color1) 0%,
      var(--bg-color1) 20%,
      transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Right Vignette - Balanced shadow */
.vignette-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 15%;
  height: 100%;
  background: linear-gradient(-90deg,
      var(--bg-color1) 0%,
      var(--bg-color1) 20%,
      transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Bottom Vignette - Balanced for content */
.vignette-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(0deg,
      var(--bg-color1) 0%,
      var(--bg-color1) 25%,
      transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Content Overlay */
.hero-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 40px 0;
}

.slide-content-inner {
  max-width: 500px;
}

@media (max-width: 767px) {
  .hero-slide-content {
    padding: 20px 0;
  }

  .slide-content-inner {
    max-width: 100%;
    text-align: center;
  }
}

/* Slide Badge */
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.3), rgba(var(--primary-rgb), 0.3));
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  border-radius: 25px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--heading-color);
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.slide-badge i {
  color: rgb(var(--accent-rgb));
  font-size: 0.9rem;
}

/* Slide Title */
.slide-title {
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--heading-color) !important;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Slide Description */
.slide-description {
  font-size: 1rem;
  color: var(--body-color);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .slide-description {
    display: none;
  }
}

/* Slide Button */
.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgb(var(--primary-rgb)) 0%, #a200ff 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 20px rgba(var(--primary-rgb), 0.5),
    0 0 0 0 rgba(var(--primary-rgb), 0.3);
}

.slide-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 30px rgba(var(--primary-rgb), 0.6),
    0 0 20px rgba(var(--primary-rgb), 0.3);
  color: #ffffff;
}

.slide-btn i {
  transition: transform 0.3s ease;
}

.slide-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 767px) {
  .slide-btn {
    padding: 12px 24px;
    font-size: 0.9375rem;
  }
}

/* Hero Pagination */
.hero-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--border-color1);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgb(var(--primary-rgb)), rgb(var(--secondary-rgb)));
}

/* ===== THUMBNAIL GALLERY - TOPUPLIVE STYLE ===== */

.hero-thumbs-gallery {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding: 0 10px;
}

/* Thumbnail Navigation Buttons - Hidden */
.thumb-nav {
  display: none;
}

.thumb-nav:hover {
  background: rgb(var(--primary-rgb));
  border-color: rgb(var(--primary-rgb));
  color: #ffffff;
  transform: scale(1.1);
}

/* Thumbnail Swiper */
.hero-thumb-swiper {
  flex: 1;
  overflow: hidden;
}

.hero-thumb-swiper .swiper-slide {
  width: auto;
  cursor: pointer;
}

/* Thumbnail Slide */
.thumb-slide {
  width: 85px;
  height: 55px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.thumb-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.thumb-slide:hover {
  opacity: 0.9;
  border-color: rgba(var(--primary-rgb), 0.5);
}

.thumb-slide:hover img {
  transform: scale(1.05);
}

.swiper-slide-thumb-active .thumb-slide {
  opacity: 1;
  border-color: rgb(var(--primary-rgb));
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
}

@media (max-width: 767px) {
  .hero-thumbs-gallery {
    gap: 10px;
    margin-top: 15px;
  }

  .thumb-nav {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .thumb-slide {
    width: 65px;
    height: 42px;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .thumb-nav {
    display: none;
  }

  .hero-thumbs-gallery {
    padding: 0;
  }

  .thumb-slide {
    width: 55px;
    height: 36px;
  }
}

/* ===== RTL SUPPORT ===== */
.rtl .slide-content-inner {
  text-align: right;
}

.rtl .slide-btn:hover i {
  transform: translateX(-5px);
}

.rtl .slide-btn i {
  transform: rotate(180deg);
}

.rtl .vignette-left {
  left: auto;
  right: 0;
  background: linear-gradient(-90deg,
      var(--bg-color1) 0%,
      var(--bg-color1) 20%,
      transparent 100%);
}

.rtl .vignette-right {
  right: auto;
  left: 0;
  background: linear-gradient(90deg,
      var(--bg-color1) 0%,
      var(--bg-color1) 20%,
      transparent 100%);
}

@media (max-width: 767px) {
  .rtl .slide-content-inner {
    text-align: center;
  }
}

/* Spacing after hero */
.dark-hero-topup+#hero-categories {
  margin-top: 0;
}

/* Main Hero Container */
.dark-hero-cinematic {
  position: relative;
  width: 100%;
  padding: 20px 0 30px;
  background-color: var(--bg-color1);
  overflow: visible;
}

/* Ambient Background Gradient - TopUpLive Style */
.hero-ambient-bg {
  position: absolute;
  top: -50%;
  left: -20%;
  right: -20%;
  height: 200%;
  background:
    /* Primary glow - left side */
    radial-gradient(ellipse at 10% 50%, rgba(var(--primary-rgb), 0.25) 0%, transparent 45%),
    /* Secondary glow - right side */
    radial-gradient(ellipse at 90% 50%, rgba(var(--secondary-rgb), 0.2) 0%, transparent 45%),
    /* Accent glow - top center */
    radial-gradient(ellipse at 50% 0%, rgba(var(--accent-rgb), 0.1) 0%, transparent 50%),
    /* Base dark gradient */
    linear-gradient(180deg, var(--bg-color1) 0%, var(--bg-color1) 100%);
  pointer-events: none;
  z-index: 0;
  animation: ambientPulse 8s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

/* Hero Carousel Wrapper */
.hero-carousel-wrapper {
  position: relative;
  z-index: 1;
}

/* Main Hero Swiper */
.hero-swiper {
  width: 100%;
  border-radius: 20px;
  overflow: visible;
}

/* Banner Card */
.hero-banner-card {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--bg-color2);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* TopUpLive Style Vignette Effect */
.hero-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    /* Left edge shadow */
    linear-gradient(90deg, rgba(15, 16, 18, 0.7) 0%, transparent 15%),
    /* Right edge shadow */
    linear-gradient(-90deg, rgba(15, 16, 18, 0.7) 0%, transparent 15%),
    /* Top edge shadow */
    linear-gradient(180deg, rgba(15, 16, 18, 0.4) 0%, transparent 10%),
    /* Bottom edge shadow */
    linear-gradient(0deg, rgba(15, 16, 18, 0.6) 0%, transparent 20%);
  pointer-events: none;
  z-index: 3;
  border-radius: 20px;
}

/* Colored glow on edges - Like TopUpLive */
.hero-banner-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    /* Left side warm glow */
    radial-gradient(ellipse at -10% 50%, rgba(var(--primary-rgb), 0.2) 0%, transparent 40%),
    /* Right side cool glow */
    radial-gradient(ellipse at 110% 50%, rgba(var(--secondary-rgb), 0.15) 0%, transparent 40%);
  pointer-events: none;
  z-index: 2;
  border-radius: 20px;
}

@media (min-width: 992px) {
  .hero-banner-card {
    height: 420px;
  }
}

@media (max-width: 767px) {
  .hero-banner-card {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .hero-banner-card {
    height: 220px;
  }
}

/* Banner Image Wrapper */
.banner-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Banner Image - CONSISTENT SIZING */
.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.swiper-slide-active .banner-image {
  animation: subtleZoom 8s ease-out forwards;
}

@keyframes subtleZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.03);
  }
}

/* Content Overlay */
.banner-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      rgba(15, 16, 18, 0.9) 0%,
      rgba(15, 16, 18, 0.6) 40%,
      transparent 70%);
  display: flex;
  align-items: center;
  padding: 30px 40px;
  z-index: 2;
}

.rtl .banner-content-overlay {
  background: linear-gradient(-90deg,
      rgba(15, 16, 18, 0.9) 0%,
      rgba(15, 16, 18, 0.6) 40%,
      transparent 70%);
}

@media (max-width: 767px) {
  .banner-content-overlay {
    background: linear-gradient(0deg,
        rgba(15, 16, 18, 0.95) 0%,
        rgba(15, 16, 18, 0.7) 50%,
        transparent 100%);
    align-items: flex-end;
    padding: 20px;
  }
}

/* Banner Content */
.banner-content {
  max-width: 450px;
}

@media (max-width: 767px) {
  .banner-content {
    max-width: 100%;
    text-align: center;
  }
}

/* Banner Badge */
.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--primary-rgb), 0.2));
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(var(--secondary-rgb));
  margin-bottom: 12px;
}

.banner-badge i {
  color: rgb(var(--accent-rgb));
  font-size: 0.875rem;
}

/* Banner Title */
.banner-title {
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.2;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Banner Description */
.banner-description {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 767px) {
  .banner-description {
    display: none;
  }
}

/* Banner Actions */
.banner-actions {
  display: flex;
  gap: 12px;
}

@media (max-width: 767px) {
  .banner-actions {
    justify-content: center;
  }
}

/* Banner Primary Button */
.btn-banner-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgb(var(--primary-rgb)) 0%, #a200ff 100%);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
}

.btn-banner-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(var(--primary-rgb), 0.5);
  color: #ffffff;
}

.btn-banner-primary i {
  transition: transform 0.3s ease;
}

.btn-banner-primary:hover i {
  transform: translateX(4px);
}

.rtl .btn-banner-primary:hover i {
  transform: translateX(-4px);
}

/* Navigation Arrows */
.hero-nav-prev,
.hero-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0;
}

.hero-swiper:hover .hero-nav-prev,
.hero-swiper:hover .hero-nav-next {
  opacity: 1;
}

.hero-nav-prev {
  left: 15px;
}

.hero-nav-next {
  right: 15px;
}

.rtl .hero-nav-prev {
  left: auto;
  right: 15px;
}

.rtl .hero-nav-next {
  right: auto;
  left: 15px;
}

.hero-nav-prev:hover,
.hero-nav-next:hover {
  background: rgb(var(--primary-rgb));
  border-color: rgb(var(--primary-rgb));
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 767px) {

  .hero-nav-prev,
  .hero-nav-next {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
    opacity: 1;
  }

  .hero-nav-prev {
    left: 10px;
  }

  .hero-nav-next {
    right: 10px;
  }
}

/* Thumbnail Gallery Wrapper */
.hero-thumbs-wrapper {
  margin-top: 15px;
  position: relative;
}

/* Thumbnail Swiper */
.hero-thumbs {
  padding: 0 50px;
}

.hero-thumbs .swiper-slide {
  width: auto;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.hero-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

/* Thumbnail Item */
.thumb-item {
  width: 100px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.swiper-slide-thumb-active .thumb-item {
  border-color: rgb(var(--primary-rgb));
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4);
}

.thumb-item:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .hero-thumbs {
    padding: 0 30px;
  }

  .thumb-item {
    width: 70px;
    height: 45px;
    border-radius: 6px;
  }
}

/* Progress Bar */
.thumb-progress-bar {
  position: absolute;
  bottom: -10px;
  left: 50px;
  right: 50px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.thumb-progress-bar .progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgb(var(--primary-rgb)), rgb(var(--secondary-rgb)));
  border-radius: 3px;
  transition: width 0.1s linear;
}

@media (max-width: 767px) {
  .thumb-progress-bar {
    left: 30px;
    right: 30px;
  }
}

/* Swiper Pagination for Hero */
.hero-swiper .swiper-pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgb(var(--primary-rgb)), rgb(var(--secondary-rgb)));
}

/* RTL Adjustments */
.rtl .banner-content {
  text-align: right;
}

.rtl .banner-actions {
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .rtl .banner-content {
    text-align: center;
  }

  .rtl .banner-actions {
    justify-content: center;
  }
}

/* Dark Theme Padding Adjustment */
.dark-hero-cinematic+#hero-categories {
  margin-top: 0;
}

/* =============================================
   EXCLUSIVE OFFERS SECTION - BALANCED STYLE
   ============================================= */

.exclusive-offers-section {
  padding: 40px 0;
}

/* Products Grid */
.exclusive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px 15px;
  /* Increased row gap for more protruding images */
  padding-top: 25px;
}

@media (max-width: 1200px) {
  .exclusive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .exclusive-offers-section .container {
    padding-right: 0;
    padding-left: 0;
  }

  .exclusive-grid {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 35px 15px 20px;
    gap: 15px;
    scrollbar-width: none;
    /* Firefox */
    grid-template-columns: none;
    /* Disable grid */
  }

  .exclusive-grid::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
  }

  .exclusive-card {
    flex: 0 0 260px;
    /* Fixed width for cards in scroll */
    max-width: 260px;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .exclusive-card {
    flex: 0 0 220px;
    max-width: 220px;
  }
}

/* Product Card - SEAGM Style Redesign */
.exclusive-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 70px;
  background: var(--bg-color2);
  border: 1px solid var(--border-color1);
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: visible;
  z-index: 1;
}

.exclusive-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--primary-rgb), 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Dynamic Background Layer */
.exclusive-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(15px);
  opacity: 0.15;
  /* Subtle hint of image color */
  z-index: -2;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}

.exclusive-card:hover .exclusive-card-bg {
  opacity: 0.25;
}

.exclusive-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--bg-color2-rgb), 0.8), rgba(var(--bg-color2-rgb), 0.95));
  z-index: -1;
  border-radius: 12px;
}

/* Card Body */
.exclusive-card-body {
  display: flex;
  align-items: center;
  padding: 12px 15px 5px;
  gap: 15px;
  flex: 1;
}

/* Protruding Image */
.exclusive-card-image {
  position: relative;
  top: -30px;
  /* Protrude more as requested */
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  border-radius: 14px;
  background: var(--bg-color3);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
  z-index: 5;
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.exclusive-card:hover .exclusive-card-image {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6);
}

.exclusive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Card Info */
.exclusive-card-info {
  flex: 1;
  min-width: 0;
  margin-top: -10px;
  /* Pull text up */
}

.exclusive-card-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.exclusive-card-desc {
  font-size: 0.75rem;
  color: var(--body-color);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.6;
}

/* Elements Repositioning */
.exclusive-card-promo {
  position: absolute;
  bottom: -2px;
  /* Positioned at the bottom of the image */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  white-space: nowrap;
}

.exclusive-card-discount {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-size: 0.95rem;
  font-weight: 900;
  color: #ff4757;
  z-index: 5;
  text-shadow: 0 0 12px rgba(255, 71, 87, 0.4);
}

.promo-badge {
  padding: 3px 10px;
  font-size: 0.625rem;
  font-weight: 800;
  border-radius: 15px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.rtl .exclusive-card-discount {
  right: auto;
  left: 15px;
}

.promo-red {
  background: #ff4757;
}

.promo-blue {
  background: #2e86de;
}

.promo-green {
  background: #23d5ab;
}

.promo-purple {
  background: #8e44ad;
}

.promo-orange {
  background: #f39c12;
}

/* Custom Badge Colors from SEAGM */
.promo-red {
  background: #e53935;
}

.promo-blue {
  background: #1e88e5;
}

.promo-green {
  background: #43a047;
}

.promo-purple {
  background: #8e24aa;
}

.promo-orange {
  background: #fb8c00;
}

/* === RTL OVERFLOW FIXES === */
/* Fix nice-select dropdown overflow in RTL */
/* The .nice-select.right .list has left:-69px which overflows */
html[dir="rtl"] .nice-select .list,
.nice-select.right .list {
  left: 0 !important;
  right: auto !important;
}

/* Ensure nice-select container doesn't overflow */
.nice-select {
  overflow: visible;
}

/* Fix cardSearch overflow */
.cardSearch {
  max-width: 100%;
}

html[dir="rtl"] .cardSearch {
  direction: rtl;
}

/* =============================================
   DYNAMIC CATEGORY SECTION - SEAGM STYLE
   ============================================= */
.dark-category-section {
  padding: 40px 0 20px;
}

.category-scroll-container {
  max-width: 100%;
}

.category-wrapper {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  width: 100px;
  cursor: pointer;
}

.category-icon-inner {
  position: relative;
  width: 85px;
  height: 85px;
  z-index: 1;
}

.category-item .icon-box {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2a2c31, #212226);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.5) 0%, transparent 75%);
  border-radius: 30px;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
  filter: blur(8px);
}

.category-reflection {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  z-index: 3;
  pointer-events: none;
}

.category-name {
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-item:hover {
  transform: translateY(-10px);
}

.category-item:hover .icon-box {
  border-color: rgba(var(--primary-rgb), 0.6);
  transform: scale(1.05);
  background: linear-gradient(145deg, #32353a, #212226);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(var(--primary-rgb), 0.2);
}

.category-item:hover .category-img {
  transform: scale(1.2) rotate(5deg);
}

.category-item:hover .category-glow {
  opacity: 1;
  transform: scale(1.1);
}

.category-item:hover .category-reflection {
  left: 100%;
  top: 100%;
}

.category-item:hover .category-name {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
}

@media (max-width: 991px) {
  .category-wrapper {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 5px 20px 20px;
    gap: 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .category-wrapper::-webkit-scrollbar {
    display: none;
  }

  .category-item {
    flex: 0 0 85px;
    width: 85px;
    gap: 10px;
  }

  .category-icon-inner {
    width: 70px;
    height: 70px;
  }

  .category-item .icon-box {
    border-radius: 20px;
    padding: 12px;
  }

  .category-name {
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   SEAGM STYLE GRID (BOKEH & GLASSMORPHISM)
   ========================================================================== */
.seagm-grid-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background: #0b0b0f;
}

/* Bokeh Blur Background */
.bokeh-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.bokeh-item {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: bokehFloat 20s infinite alternate ease-in-out;
}

.bokeh-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  top: -100px;
  left: -100px;
}

.bokeh-2 {
  width: 500px;
  height: 500px;
  background: #6c5ce7;
  bottom: -150px;
  right: -100px;
  animation-delay: -5s;
}

.bokeh-3 {
  width: 300px;
  height: 300px;
  background: #00cec9;
  top: 50%;
  left: 40%;
  animation-duration: 25s;
}

@keyframes bokehFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, 80px) scale(1.1);
  }
}

/* Glass Grid Container */
.seagm-glass-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .seagm-glass-grid {
    grid-template-columns: 1fr;
  }
}

/* Block Style */
.seagm-block {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.seagm-block:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Header */
.block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.block-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 0;
}

.view-more {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.view-more:hover {
  color: var(--primary-color);
}

.view-more i {
  font-size: 0.7rem;
}

/* Items Grid */
.seagm-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 575px) {
  .seagm-items-grid {
    grid-template-columns: 1fr;
  }
}

/* Individual Item */
.seagm-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.seagm-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1f;
}

.item-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #efefef;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-region {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/*------------------------------------------------------------------
  SEAGM Categories Grid (Dark Glassmorphism)
------------------------------------------------------------------*/
.seagm-grid-section {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  background: transparent;
  width: 100%;
  max-width: 100%;
}

.bokeh-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.bokeh-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.bokeh-1 {
  width: 300px;
  height: 300px;
  background: #6c5ce7;
  top: -50px;
  left: -50px;
}

.bokeh-2 {
  width: 400px;
  height: 400px;
  background: #00cec9;
  bottom: -100px;
  right: -50px;
}

.seagm-grid-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

@media (max-width: 991px) {
  .seagm-grid-container {
    grid-template-columns: minmax(0, 1fr);
  }
}

.seagm-card-block {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  overflow: hidden;
}

.seagm-card-block:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.block-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.block-h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff !important;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.block-more {
  font-size: 0.8rem;
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.block-more:hover {
  color: #fff;
}

.items-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 575px) {
  .items-sub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.item-unit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  transition: 0.2s;
  text-decoration: none !important;
}

.item-unit:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.unit-img-box {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.unit-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unit-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.unit-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.unit-subtitle {
  font-size: 0.65rem;
  color: #777;
}

/*----------------------------------------------
   Favorite Toggle Button
----------------------------------------------*/
.btn-favorite-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color1);
  color: var(--white);
  padding: 10px;
  border-radius: 12px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.btn-favorite-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgb(var(--primary-color));
}

.btn-favorite-toggle.active {
  background: rgba(var(--primary-color), 0.1);
  border-color: rgb(var(--primary-color));
  color: rgb(var(--primary-color));
}

.btn-favorite-toggle i {
  font-size: 16px;
}

@media (max-width: 767px) {
  .btn-favorite-toggle {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 10px;
    gap: 6px;
  }

  .btn-favorite-toggle i {
    font-size: 14px;
  }
}

.seagm-footer-wrapper {
  background: rgba(18, 18, 26, 0.70) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 40px 0 25px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Tajawal", var(--body-font), sans-serif !important;
}

.footer-top-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.seagm-pay-icon {
  height: 24px;
  width: auto;
  border-radius: 4px;
}

.stay-updated-text {
  font-size: 13px;
  color: #888;
  font-weight: 500;
}

.social-icons-strip a {
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.social-icons-strip a:hover {
  opacity: 1;
  color: #00c6ff;
}

/* Middle Content */
.footer-middle-row {
  margin-bottom: 20px;
}

.seagm-widget-title {
  color: #aaa;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.seagm-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seagm-link-list li {
  margin-bottom: 10px;
}

.seagm-link-list li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.2s;
}

.seagm-link-list li a:hover {
  color: rgb(var(--primary-color));
}

/* App Card - Glassmorphism Redesign */
.seagm-app-card {
  display: flex;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
  border-radius: 15px;
  text-decoration: none !important;
  color: #fff !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.seagm-app-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.05),
      transparent);
}

.seagm-app-card:hover::before {
  left: 100%;
}

.seagm-app-card:hover {
  border-color: rgba(0, 198, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 198, 255, 0.15);
}


.app-card-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  background: linear-gradient(90deg, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-card-text p {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 12px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.store-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.store-badge:hover::before {
  left: 100%;
}

.store-badge i {
  font-size: 24px;
  opacity: 0.9;
}

.store-details {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-details small {
  font-size: 9px;
  text-transform: uppercase;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

.store-details span {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.app-links {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 10px;
}

.seagm-app-card {
  width: 100%;
}

.seagm-app-card .app-card-content {
  width: 100%;
}

.store-badge:hover {
  background: rgba(111, 79, 242, 0.15);
  border-color: rgb(111, 79, 242);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(111, 79, 242, 0.3);
}

/* App Download Modal */
#app-download-modal .modal-header {
  padding: 20px 25px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#app-download-modal .modal-title {
  color: var(--gold-primary, #d4a853);
  font-weight: 600;
  font-size: 1.25rem;
}

#app-download-modal .modal-body {
  padding: 20px 25px 30px;
}

#app-download-modal .seagm-app-card-modal {
  text-align: center;
}

#app-download-modal .app-card-text strong {
  color: #fff;
  font-weight: 700;
}

#app-download-modal .app-card-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

#app-download-modal .store-badge-modal {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  color: #fff !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  flex: 1;
  width: 100%;
  justify-content: center;
}

#app-download-modal .app-links {
  flex-direction: row;
  width: 100%;
}

#app-download-modal .store-badge-modal i {
  font-size: 28px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

#app-download-modal .store-badge-modal:hover {
  background: rgba(111, 79, 242, 0.15);
  border-color: rgb(111, 79, 242);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(111, 79, 242, 0.3);
}

/* Bottom Bar */
.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 25px;
  padding-top: 20px;
}

.seagm-footer-logo img {
  height: 28px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.seagm-footer-logo img:hover {
  opacity: 1;
}

.footer-text-info {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 20px;
}

html[dir="rtl"] .footer-text-info {
  border-left: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 0;
  padding-right: 20px;
}

.footer-brand-desc {
  color: #888;
  line-height: 1.4;
  margin: 0;
}

.copyright-info {
  font-size: 11px;
  color: #555;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Policy Links Right Side */
.footer-policy-links {
  margin: 0;
  padding: 0;
}

.footer-policy-links li a {
  font-size: 12px;
  color: #777 !important;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-policy-links li a:hover {
  color: #00c6ff !important;
}

@media (max-width: 991px) {
  .footer-bottom-row>.d-flex {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }

  .footer-bottom-left {
    flex-direction: row !important;
    justify-content: center;
    width: 100%;
    margin-bottom: 5px;
  }

  .footer-text-info {
    border: none !important;
    padding: 0 !important;
    text-align: start;
  }

  .footer-policy-links {
    justify-content: center !important;
  }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .footer-top-row {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 20px;
  }

  .social-connect {
    width: 100%;
    justify-content: space-between;
  }

  .seagm-footer-widget {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .seagm-app-card {
    padding: 12px;
  }

  .app-card-text strong {
    font-size: 14px;
  }

  .copyright-info {
    font-size: 11px;
    text-align: center;
  }

  .footer-bottom-left {
    flex-direction: row !important;
    justify-content: center;
  }
}

/* =============================================
   PAYMENT BADGES REDESIGN - PREMIUM STYLE
   ============================================= */
.payment-methods-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 5px 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}

.payment-methods-strip::before {
  display: none;
}

.payment-methods-strip:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.pay-badge {
  position: relative;
  width: 48px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Individual Glassmorphism Background */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.25rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: help;
  overflow: hidden;
}

/* Glassmorphism Shine Effect */
.pay-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.pay-badge:hover::before {
  left: 150%;
}

.pay-badge:hover {
  /* No lift up */
  transform: none;

  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

/* Explicitly override any specific colors to keep them white */
/* More Methods (3 Dots) - No Background Style */
.pay-badge.more-methods {
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  width: auto !important;
  /* Allow it to shrink if needed, or keep 48px */
  padding: 0 5px;
  /* Adjust padding if necessary */
}

.pay-badge.more-methods:hover {
  background: transparent !important;
  box-shadow: none !important;
  transform: scale(1.1);
  /* Slight zoom instead of lift/glow */
  color: var(--primary-color) !important;
  /* Optional: Change color on hover to indicate clickable */
}


/* More Methods Button (Standalone) */
.more-methods-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.5);
  /* Matching the default icon color */
  font-size: 1.25rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none !important;
}

.more-methods-btn:hover {
  color: #ffffff;
  /* White on hover */
  transform: scale(1.2);
  /* Slight zoom styling */
}


/* Social Media Icons Styling */
.social-icon-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  /* Soft Rounded Square matches theme better than circle */
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Subtle border */
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  margin-right: 5px;
  /* Spacing fix if gap is not supported */
}

.social-icon-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.social-icon-btn:hover::before {
  left: 100%;
}

.social-icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.1);
}


.stay-updated-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Styling for social icons inside the App Card */
.app-card-social-strip .social-icon-btn {
  width: 34px;
  height: 34px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.03);
}

/* =========================================================================
   CATEGORY LISTING PAGE STABILIZATION FIXES (Clean Implementation)
   ========================================================================= */

/* 1. prevent Section Overflow */
.products-section {
  padding-top: 20px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  /* Strict containment of row negative margins */
  position: relative;
  box-sizing: border-box;
  padding-bottom: 40px;
}

/* 2. Container Padding Consistency (RTL/LTR) */
.products-section .container {
  padding-right: 15px;
  /* Standardize Bootstrap Padding */
  padding-left: 15px;
}

/* RTL Specific Container Fix */
[dir="rtl"] .products-section .container {
  padding-right: 15px;
  padding-left: 15px;
}

/* 3. Product Box Stability (Prevent Jitter) */
.product-box {
  display: block;
  /* Ensure it's a block context */
  height: 100%;
  /* Equal height columns */
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* Pre-allocate border */
  border-radius: 12px;
  overflow: hidden;
  /* Clip inner content */
  transform: translateZ(0);
  /* Hardware accelerate self */
  will-change: transform;
  /* Hint to browser */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  margin-bottom: 0;
  /* Let grid/col handle spacing */
  text-decoration: none !important;
}

.product-box:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--primary-rgb), 0.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* 4. Image Stability (CLS Fix) */
.product-box .img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  /* Reserve space before load */
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.product-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  /* Remove inline gap */
}

/* 5. Mobile Layout Constraints */
@media (max-width: 991px) {
  .products-section .container {
    max-width: 100%;
    margin: 0;
    width: 100%;
    overflow: hidden;
  }

  /* Ensure row doesn't cause overflow */
  .products-section .row {
    margin-left: -5px;
    margin-right: -5px;
  }

  .products-section .col-md-6,
  .products-section .col-lg-4,
  .products-section .col-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* 6. Sidebar Constraints */
/* Sidebar removal of redundant block */

/* 7. Category Filter Links Stability */
.category-link {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  /* Reserve border */
  border-radius: 8px;
  box-sizing: border-box;
  text-decoration: none !important;
  color: var(--body-color);
  transition: all 0.2s ease;
}

.category-link:hover,
.category-link.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 15px;
  /* Ensure padding doesn't change */
}

.seagm-header {
  display: block !important;
  position: -webkit-sticky !important;
  /* Safari */
  position: sticky !important;
  top: -46px !important;
  /* Locks only the main header (total ht: 101px, top bar: 46px) */
  z-index: 1050 !important;
  width: 100%;
  background: transparent !important;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  transform: translateZ(0);
}

/* 1. Pre-Top Bar (Initially Visible, collapses on scroll) */
.header-pre-top {
  height: 46px;
  /* Keep height constant to avoid layout jumps */
  display: flex !important;
  align-items: center;
  position: relative;
  z-index: 1052;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

/* 2. Main Header (Initially Transparent) */
.header-main {
  position: relative !important;
  top: 0 !important;
  z-index: 1051;
  width: 100%;
  padding: 10px 0;
  background: transparent !important;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

/* --- SCROLLED STATE: Dynamic Glassmorphism Transition --- */
.seagm-header.scrolled {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Dynamic Background Colors for Header */
.seagm-header.scrolled.bg-dashboard .header-main {
  background: linear-gradient(135deg, rgba(111, 79, 242, 0.12) 0%, rgba(18, 18, 26, 0.88) 50%) !important;
}

.seagm-header.scrolled.bg-favorites .header-main {
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.12) 0%, rgba(18, 18, 26, 0.88) 50%) !important;
}

.seagm-header.scrolled.bg-wallet .header-main {
  background: linear-gradient(135deg, rgba(46, 213, 115, 0.12) 0%, rgba(18, 18, 26, 0.88) 50%) !important;
}

.seagm-header.scrolled.bg-home .header-main {
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.12) 0%, rgba(18, 18, 26, 0.88) 50%) !important;
}

.seagm-header.scrolled .header-pre-top {
  opacity: 0.1;
  /* Fade out but keep layout space constant */
}

.seagm-header.scrolled .header-main {
  padding: 8px 0;
  background: rgba(18, 18, 26, 0.85) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 5px 30px rgba(0, 0, 0, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

/* Hide Header on Scroll Down - Add .header-hidden class via JS */
.seagm-header.header-hidden {
  transform: translateY(-100%) !important;
  opacity: 0;
  box-shadow: none;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

/* Ensure smooth transition when showing */
.seagm-header:not(.header-hidden) {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.pre-top-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Drawer Fix */
.seagm-top-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1040;
  background: rgba(15, 15, 22, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

/* Main Container with Curved Notch Effect */
.bottom-nav {
  background: rgba(18, 18, 26, 0.92) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  margin: 0 12px 5px 12px;
  padding: 5px 12px;
  box-shadow:
    0 -5px 30px rgba(0, 0, 0, 0.3),
    0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: row !important;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    background 0.5s ease;
}

/* Hide on Scroll - Add .nav-hidden class via JS */
.bottom-nav.nav-hidden {
  transform: translateY(100%);
  opacity: 0;
  box-shadow: none;
  pointer-events: none;
}

/* Dynamic Background Colors (set via JS based on page) */
.bottom-nav.bg-dashboard {
  background: linear-gradient(135deg, rgba(111, 79, 242, 0.15) 0%, rgba(18, 18, 26, 0.95) 50%) !important;
}

.bottom-nav.bg-favorites {
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.15) 0%, rgba(18, 18, 26, 0.95) 50%) !important;
}

.bottom-nav.bg-wallet {
  background: linear-gradient(135deg, rgba(46, 213, 115, 0.15) 0%, rgba(18, 18, 26, 0.95) 50%) !important;
}

.bottom-nav.bg-home {
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.15) 0%, rgba(18, 18, 26, 0.95) 50%) !important;
}

/* Nav Items */
.bottom-nav .nav-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Nav Links */
.bottom-nav .nav-link {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 18px;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 0 !important;
  position: relative;
}



/* Hover & Active State with Glow Effect */
.bottom-nav .nav-link:hover,
.bottom-nav .nav-link.active {
  color: rgb(var(--primary-rgb)) !important;
  background: rgba(var(--primary-rgb), 0.1) !important;
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3) !important;
}

.bottom-nav .nav-link:hover i,
.bottom-nav .nav-link.active i {
  color: rgb(var(--primary-rgb)) !important;
  text-shadow: 0 0 15px rgba(var(--primary-rgb), 0.5);
}

/* Center Item (Home) - Special Styling */
.bottom-nav .center-item .nav-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  font-size: 18px;
}

.bottom-nav .center-item .nav-link:hover,
.bottom-nav .center-item .nav-link.active {
  color: rgb(var(--primary-rgb)) !important;
  background: rgba(var(--primary-rgb), 0.1) !important;
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3) !important;
  border-color: rgba(var(--primary-rgb), 0.3);
}

.bottom-nav .center-item .nav-link:hover i,
.bottom-nav .center-item .nav-link.active i {
  color: rgb(var(--primary-rgb)) !important;
  text-shadow: 0 0 15px rgba(var(--primary-rgb), 0.5);
}

/* Toggle Button (Menu) - Remove square background */
.bottom-nav .nav-link.toggle-btn {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.bottom-nav .nav-link.toggle-btn:hover {
  background: rgba(var(--primary-rgb), 0.1) !important;
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3) !important;
}

/* --- Toolbar --- */
.seagm-toolbar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: .6rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 100;
}

/* Glass Icon Buttons (View Toggles) */
.view-toggles .btn-glass-icon {
  border-radius: 0;
}

.view-toggles .btn-glass-icon:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.view-toggles .btn-glass-icon:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* RTL Support for View Toggles */
html[dir="rtl"] .view-toggles .btn-glass-icon:first-child {
  border-radius: 0 10px 10px 0;
}

html[dir="rtl"] .view-toggles .btn-glass-icon:last-child {
  border-radius: 10px 0 0 10px;
}

.btn-glass-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  width: 42px;
  height: 42px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0 !important;
  box-sizing: border-box !important;
  font-size: 16px;
  border-radius: 10px;
}

.btn-glass-icon:hover,
.btn-glass-icon.active {
  background: rgba(var(--primary-rgb), 0.2);
  border-color: rgba(var(--primary-rgb), 0.4);
  color: #fff;
  z-index: 2;
  /* Bring active border to top */
}


/* --- Custom Offcanvas & No Data Stylings (Extracted from Blade) --- */
.img-carousel,
.img-carousel .owl-stage-outer,
.img-carousel .owl-stage,
.img-carousel .owl-item {
  height: 100%;
}

.img-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seagm-offcanvas {
  z-index: 1100 !important;
  background: rgba(18, 18, 26, 0.95) !important;
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  width: 320px !important;
}

.seagm-offcanvas .offcanvas-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.seagm-offcanvas .offcanvas-title {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #fff !important;
  letter-spacing: 0.3px !important;
}

.seagm-offcanvas .btn-close {
  background-color: rgba(255, 255, 255, 0.1);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
  padding: 0.5rem;
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.3s ease;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.seagm-offcanvas .btn-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
  transform: rotate(90deg);
}

.bg-white-05 {
  background-color: rgba(255, 255, 255, 0.05) !important;
}

.border-white-10 {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.seagm-offcanvas .offcanvas-body {
  padding: 1.5rem;
}

.seagm-offcanvas .widget-title {
  font-size: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-bottom: 8px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-weight: 700 !important;
}

.seagm-offcanvas .widget-title::before {
  content: '';
  display: block;
  width: 2px;
  height: 12px;
  background: var(--primary);
  border-radius: 10px;
}

.seagm-offcanvas .form-control {
  font-size: 13px !important;
  border-radius: 8px !important;
  height: auto !important;
  padding: 10px 12px !important;
}

.seagm-offcanvas .form-control::placeholder {
  font-size: 11px !important;
  opacity: 0.5 !important;
}

.seagm-offcanvas .btn-primary {
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  padding: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.seagm-offcanvas h5 {
  font-size: inherit !important;
  margin: 0 !important;
}

/* Empty State Styling */
.no-data-img {
  height: 200px;
  width: 200px;
}

.table-not-found {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  width: 100%;
  text-align: center;
}

/* --- Rolling Categories --- */
.rolling-categories-section {
  width: 100%;
}

.rolling-slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.rolling-slider {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  width: max-content;
  cursor: grab;
  align-items: center;
}

.rolling-slider::-webkit-scrollbar {
  display: none;
}

.rolling-slider:active {
  cursor: grabbing;
}

.rolling-cat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  height: auto;
  min-width: 160px;
}

/* Glass Shine Effect */
.rolling-cat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transition: 0.6s;
}

.rolling-cat-item:hover::before {
  left: 100%;
}

.rolling-cat-item:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3),
    0 0 15px rgba(var(--primary-rgb), 0.1);
}

.rolling-cat-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.rolling-cat-item:hover .rolling-cat-img {
  background: rgba(var(--primary-rgb), 0.1);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.rolling-cat-img img,
.rolling-cat-img i {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rolling-cat-img i {
  font-size: 20px;
  color: #fff;
  opacity: 0.7;
}

.rolling-cat-item:hover .rolling-cat-img i {
  opacity: 1;
  transform: scale(1.1);
  color: #fff;
}

.rolling-cat-name {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.rolling-cat-item:hover .rolling-cat-name {
  color: #fff;
}

/* ==============================================
   Refactored Styles from Blade Templates
   ============================================== */

/* From sell-post-details.blade.php */
.bg-white-5 {
  background: rgba(255, 255, 255, 0.05);
}

.bg-white-10 {
  background: rgba(255, 255, 255, 0.1);
}

.border-white-10 {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.border-white-5 {
  border-color: rgba(255, 255, 255, 0.05) !important;
}

.glass-bg {
  backdrop-filter: blur(25px);
  background: rgba(20, 20, 30, 0.85);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.img-carousel .owl-nav button {
  background: rgba(20, 20, 30, 0.5) !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.img-carousel .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.3);
}

.img-carousel .owl-dots .owl-dot.active span {
  background: var(--primary-color);
}

/* From sell-post.blade.php (Dark Theme) */
/* Root Fix: Ensure the container doesn't hide images due to calculation errors */
.seagm-product-card .img-box {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1.1 !important;
  background: #1a1a24 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  height: auto !important;
  padding-bottom: 0 !important;
  display: block !important;
}

/* Fallback Background: Shows if carousel fails */
.fallback-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: blur(2px);
  opacity: 0.3;
}

.seagm-product-card .img-carousel {
  position: relative;
  z-index: 2;
  height: 100% !important;
  width: 100% !important;
  direction: ltr !important;
  /* Force LTR to fix Owl Transform math */
}

.seagm-product-card .img-carousel .owl-stage-outer,
.seagm-product-card .img-carousel .owl-stage,
.seagm-product-card .img-carousel .owl-item,
.seagm-product-card .img-carousel .item,
.seagm-product-card .img-carousel .item a {
  height: 100% !important;
}

.seagm-product-card .img-carousel .owl-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  /* Avoid cutting important game details */
  background: rgba(0, 0, 0, 0.2);
}

/* Visual Polishing */
.price-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgb(var(--primary-rgb));
  font-weight: 700;
  font-size: 1.2rem;
}

.price-tag .currency {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Compact List View - Matching Cards/Topup exactly */
.products-wrapper.list-view .product-col {
  /* Let global CSS handle 33% and 50% for consistency */
  width: auto;
  flex: none;
}

.products-wrapper.list-view .seagm-product-card {
  flex-direction: row !important;
  align-items: center !important;
  padding: 10px !important;
  gap: 12px !important;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.products-wrapper.list-view .seagm-product-card .img-box {
  width: 50px !important;
  height: 50px !important;
  aspect-ratio: 1/1 !important;
  flex-shrink: 0 !important;
  border-radius: 8px !important;
}

/* Disable carousel animation in list view for stability */
.products-wrapper.list-view .img-carousel {
  display: none !important;
}

/* Show Only the static fallback image in list view */
.products-wrapper.list-view .fallback-img {
  opacity: 1 !important;
  filter: none !important;
  z-index: 10 !important;
  border-radius: 8px;
}

.products-wrapper.list-view .seagm-product-card .text-box {
  text-align: start !important;
  padding: 0 !important;
  flex-grow: 1;
}

.products-wrapper.list-view .seagm-product-card .text-box .title {
  font-size: 16px !important;
  margin: 0 !important;
}

/* Responsive tweaks matched to Cards page */
@media (min-width: 768px) {
  .products-wrapper.list-view .product-col {
    width: 33.3333% !important;
    flex: 0 0 auto !important;
  }
}

@media (max-width: 767px) {
  .products-wrapper.list-view .product-col {
    width: 50% !important;
    flex: 0 0 auto !important;
  }

  .products-wrapper.list-view .seagm-product-card {
    padding: 8px !important;
    gap: 10px !important;
  }
}

/* Categories Slider (Restored) */
.categories-slider {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  user-select: none;
  -webkit-user-select: none;
}

.categories-slider::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.glass-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  height: 42px !important;
  box-sizing: border-box !important;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  white-space: nowrap;
  font-size: 14px;
  color: var(--body-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

.glass-category-pill.active {
  background: rgb(var(--primary-rgb));
  color: white;
  border-color: rgb(var(--primary-rgb));
}

/* ==============================================
   Game Sell Module (Create/Edit)
   From: user/daybreak & user/nightfall
   ============================================== */
.image-upload-wrapper {
  text-align: center;
  border: 2px dashed #ccc;
  padding: 15px;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.image-upload-wrapper:hover {
  border-color: #007bff;
}

/* Upload & Preview */
.upload-btn {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.preview-image {
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Removal Buttons */
.removeFile,
.removeFileExist {
  position: absolute;
  top: 27px;
  right: 27px;
}

/* Common Button Tweaks - Scoped for safety */
.input-group .cmn-btn2,
.modal-footer .cmn-btn2 {
  padding: 5px 11px !important;
}

.cmn-btn2.copy-btn {
  height: 45px;
  border-radius: 0 5px 5px 0;
}

/* Info Icon */
.info-icon {
  cursor: pointer;
}

/* From orderList.blade.php (Sell Post Order) */
.copy-btn,
.copy-btn:hover {
  border: 1px solid var(--bg-color3);
  height: 46px;
  border-radius: 0 5px 5px 0;
}

/* ==============================================
   MONEY TRANSFER SECTION - GLASSMORPHISM STYLE
   ============================================== */

/* Background Glows */
.money-transfer-section .glow-effect {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--primary);
  /* Uses theme primary variable if available */
  filter: blur(100px);
  opacity: 0.15;
  z-index: 0;
}

.money-transfer-section .top-left {
  top: -100px;
  left: -100px;
}

.money-transfer-section .bottom-right {
  bottom: -100px;
  right: -100px;
  background: #9b59b6;
}

/* Glass Card */
.money-transfer-section .glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

/* Icon Box */
.money-transfer-section .icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Glass Inputs */
.money-transfer-section .glass-input-group {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 5px 15px;
  transition: all 0.3s ease;
}

.money-transfer-section .glass-input-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4);
  background: rgba(0, 0, 0, 0.3);
}

.money-transfer-section .glass-input {
  background: transparent !important;
  border: none !important;
  color: white !important;
  box-shadow: none !important;
  font-size: 1.25rem;
  padding: 10px;
}

.money-transfer-section .glass-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.money-transfer-section .currency-symbol {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
}

.money-transfer-section .currency-code {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Glass Select */
.money-transfer-section .glass-select {
  background-color: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px;
  color: white !important;
  padding: 12px 15px;
  cursor: pointer;
}

.money-transfer-section .glass-select option {
  background-color: #1b202e;
  color: white;
}

.money-transfer-section .glass-select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4) !important;
}

/* Button */
.money-transfer-section .btn-glass {
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--primary), #a200ff);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.money-transfer-section .btn-glass:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
  color: white;
}

/* Offer Cards */
.money-transfer-section .offer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.money-transfer-section .offer-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
  transform: scale(1.02);
}

.money-transfer-section .offer-badge {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
}

.money-transfer-section .scrollable-results {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 5px;
}

/* Scrollbar */
.money-transfer-section .scrollable-results::-webkit-scrollbar {
  width: 5px;
}

.money-transfer-section .scrollable-results::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.money-transfer-section .ls-1 {
  letter-spacing: 1px;
}

.money-transfer-section .text-xs {
  font-size: 0.75rem;
}


/* Track Remittance Section */
.tracking-input-group .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.8rem 1.2rem;
}

.tracking-input-group .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: none;
}

.remit-timeline {
  position: relative;
  padding-left: 2rem;
}

.remit-timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -29px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
}

.timeline-item:first-child .timeline-dot {
  background: #00ff88;
  box-shadow: 0 0 10px #00ff88;
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* =========================================
   HOLOGRAPHIC TRACKING WIDGET (REBUILD)
   ========================================= */

/* Section Ambient */
.holo-section {
  position: relative;
  overflow: hidden;
}

.holo-ambient-light {
  position: absolute;
  width: 60vh;
  height: 60vh;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.25) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  opacity: 0.6;
  animation: holoPulse 8s ease-in-out infinite alternate;
}

.holo-ambient-light.top-left {
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, transparent 70%);
}

.holo-ambient-light.bottom-right {
  bottom: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(146, 68, 255, 0.2) 0%, transparent 70%);
  animation-delay: 2s;
}

@keyframes holoPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* Search Interface */
.holo-search-container {
  background: rgba(18, 18, 24, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  padding: 10px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.holo-search-container:focus-within {
  border-color: rgba(var(--primary-rgb), 0.5);
  box-shadow: 0 0 0 1px rgba(var(--primary-rgb), 0.3), 0 25px 60px rgba(var(--primary-rgb), 0.15);
  transform: translateY(-5px);
}

.holo-input {
  background: transparent !important;
  border: none;
  color: #fff !important;
  font-size: 1.25rem;
  font-weight: 500;
  height: 60px;
  padding-left: 20px;
}

.holo-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.holo-input:focus {
  box-shadow: none;
  background: transparent !important;
  color: white !important;
}

/* Fix Chrome Autofill White Background */
.holo-input:-webkit-autofill,
.holo-input:-webkit-autofill:hover,
.holo-input:-webkit-autofill:focus,
.holo-input:-webkit-autofill:active {
  -webkit-text-fill-color: white !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

.holo-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #6c3ce7 100%);
  color: white;
  border: none;
  border-radius: 15px;
  height: 50px;
  padding: 0 2.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.holo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.5);
  color: white;
}

/* Result Card - The "Crystal" */
.holo-card {
  background: rgba(30, 30, 40, 0.6);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  position: relative;
  color: white;
}

.holo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Grid Layouts */
.holo-grid-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1rem;
  transition: transform 0.3s;
}

.holo-grid-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.holo-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 8px;
}

.holo-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Metro Timeline (Vertical Clean) */
.metro-timeline {
  position: relative;
  padding-left: 10px;
}

.metro-line {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 24px;
  /* Center of icon */
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.metro-item {
  display: flex;
  gap: 25px;
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}

.metro-item:last-child {
  padding-bottom: 0;
}

.metro-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: #1a1a24;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(30, 30, 40, 1);
  /* Faux masking */
  transition: all 0.3s;
}

.metro-item.active .metro-icon-box {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4), 0 0 0 8px rgba(30, 30, 40, 1);
}

.metro-item.active .metro-icon-box i {
  animation: bounceIn 0.5s;
}

.metro-content h6 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.metro-content span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Status Ring */
.status-ring-container {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.status-ring-container[data-status="success"] {
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.1);
}

.status-ring-container[data-status="pending"] {
  color: #f39c12;
  background: rgba(243, 156, 18, 0.1);
}

.status-ring-container[data-status="process"] {
  color: #3498db;
  background: rgba(52, 152, 219, 0.1);
}

.status-ring-container[data-status="danger"] {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
}

/* RTL Fixes */
[dir="rtl"] .metro-line {
  left: auto;
  right: 24px;
}

[dir="rtl"] .holo-input {
  padding-left: 0;
  padding-right: 20px;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

/* RTL Fix for Holo Search Button */
[dir="rtl"] .holo-search-container .holo-btn {
  right: auto !important;
  left: 8px !important;
}

/* Animated Status Rings - Vitality Effect */
.status-ring-container::before,
.status-ring-container::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Inner fast spinner */
.status-ring-container::before {
  inset: -4px;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-top-color: currentColor;
  border-bottom-color: currentColor;
  animation: spinRing 4s linear infinite;
}

/* Outer slow orbit */
.status-ring-container::after {
  inset: -10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left-color: currentColor;
  opacity: 0.5;
  animation: spinRing 10s linear infinite reverse;
}

@keyframes spinRing {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Receipt Hover Effects */
.bg-dark-glass {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.group-hover-scale:hover img {
  transform: scale(1.1);
}

.hover-opacity-100:hover {
  opacity: 1 !important;
}

.transition-all {
  transition: all 0.3s ease;
}

/* Force Float End for Receipt in RTL/LTR */
.float-end-force {
  float: right !important;
}

[dir="rtl"] .float-end-force {
  float: left !important;
}

/* Receipt Image Rotating Glow */
.receipt-glow-container {
  position: relative;
  padding: 2px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  display: inline-block;
}

.receipt-glow-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, #6f42c1, transparent 30%);
  animation: rotate-receipt-glow 4s linear infinite;
  z-index: 0;
}

@keyframes rotate-receipt-glow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.receipt-glow-inner {
  position: relative;
  z-index: 1;
  background: #121218;
  border-radius: 10px;
  padding: 3px;
}

/* Arrow Animation */
.animate-x-bounce {
  animation: bounce-x 1.5s infinite;
}

@keyframes bounce-x {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

[dir="rtl"] .animate-x-bounce {
  animation: bounce-x-rtl 1.5s infinite;
}

@keyframes bounce-x-rtl {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-5px);
  }
}

/* Money Transfer Premium Styles */
:root {
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --primary-glow: rgba(139, 92, 246, 0.5);
}

/* Global Section Effects */
.money-transfer-section {
  background-color: transparent !important;
}

/* --- Premium Custom Select --- */
.custom-select-wrapper {
  position: relative;
  user-select: none;
}

.custom-select-trigger {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 46px;
  color: white;
}

.custom-select-trigger:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.custom-select-trigger.active {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.custom-options-container {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #1a1d26 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px;
  z-index: 9999 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: block;
  /* Ensure it's block for transition */
}

.custom-options-container.open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.custom-search-box {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #1a1d26;
}

.custom-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 0.5rem !important;
  border-radius: 8px;
  color: white !important;
  font-size: 0.9rem;
  outline: none;
}

.custom-options-list {
  max-height: 250px;
  overflow-y: auto;
  padding: 5px;
  background: #1a1d26;
}

.custom-option {
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.2s;
  font-size: 0.9rem;
}

.custom-option:hover,
.custom-option.selected {
  background: rgba(139, 92, 246, 0.15) !important;
  color: white !important;
}

.custom-option img,
.flag-icon img {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
  display: inline-block !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

#currentBaseFlag {
  width: 24px !important;
  height: 24px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.receipt-col {
  border-bottom: none !important;
}

.receipt-col-border {
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[dir="rtl"] .receipt-col-border,
html[lang="ar"] .receipt-col-border {
  border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-left: none !important;
}

[dir="ltr"] .receipt-col-border,
html[lang="en"] .receipt-col-border {
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-right: none !important;
}

.custom-select-trigger.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.custom-option span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Scrollbar for options */
.custom-options-list::-webkit-scrollbar {
  width: 6px;
}

.custom-options-list::-webkit-scrollbar-track {
  background: transparent;
}

.custom-options-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* --- Skeleton Loading --- */
.skeleton {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 16px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* --- Offer Cards --- */
.offer-mini-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: .5rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.offer-mini-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Best Offer Highlight */
.offer-mini-card.best-offer {
  border: 1px solid rgba(139, 92, 246, 0.4);
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(0, 0, 0, 0));
}

.best-badge {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  background: #8b5cf6;
  color: white;
  font-size: 0.65rem;
  font-weight: bold;
  padding: 4px 10px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 0;
  box-shadow: -2px 2px 10px rgba(139, 92, 246, 0.3);
  z-index: 2;
}

[dir="rtl"] .best-badge {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 12px;
  box-shadow: 2px 2px 10px rgba(139, 92, 246, 0.3);
}

/* Selected Provider Card */
.offer-mini-card.selected-provider {
  border: 1px solid rgba(139, 92, 246, 0.4) !important;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(0, 0, 0, 0)) !important;
}

/* Modern Amount Fields */
.amount-field-modern {
  margin-top: 10px;
  position: relative;
}

.modern-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
  margin-left: 4px;
}

.input-group-modern {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  height: 50px;
  transition: all 0.3s ease;
}

.input-group-modern:focus-within {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.05);
}

.currency-symbol {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-right: 8px;
  margin-left: 4px;
}

.modern-input {
  background: transparent !important;
  border: none !important;
  color: white !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  width: 100% !important;
  padding: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.modern-input::placeholder {
  color: rgba(255, 255, 255, 0.1) !important;
}

.currency-badge {
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 8px;
}

.is-receive .input-group-modern {
  background: rgba(34, 197, 94, 0.03);
  border-color: rgba(34, 197, 94, 0.1);
}

.is-receive .modern-input {
  color: #22c55e !important;
}

.is-receive .modern-label {
  color: rgba(34, 197, 94, 0.5);
}

.currency-badge.highlight {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

/* Professional Currency Ticker */
.ticker-wrapper {
  margin-bottom: 0px;
  position: relative;
  overflow: visible;
  /* Changed from hidden to allow dropdowns */
  padding: 0;
}

.ticker-container {
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;
  border: none;
  min-height: auto;
  /* Remove fixed height */
}

.ticker-base-selector {
  position: relative;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-inline-end: 20px;
  transition: all 0.3s ease;
  padding: 2px 5px;
}

.ticker-base-selector .dropdown-menu {
  z-index: 9999 !important;
}

.ticker-base-selector::before {
  content: '';
  position: absolute;
  top: 5px;
  inset-inline-end: 5px;
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.ticker-base-selector:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
}

.ticker-content-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

[dir="rtl"] .ticker-content-wrapper {
  -webkit-mask-image: linear-gradient(to left, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to left, transparent, black 5%, black 95%, transparent);
}

/* Mobile Ticker Optimization */
@media (max-width: 768px) {
  .ticker-content-wrapper {
    -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
    mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
  }
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  gap: 40px;
  padding: 2px 0;
  will-change: transform;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  /* Pill style for better aesthetics */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-width: max-content;
  /* Ensure items don't shrink */
  flex-shrink: 0;
  /* Prevent shrinking in flex container */
}

@media (max-width: 576px) {
  .ticker-item {
    padding: 6px 14px;
    gap: 8px;
  }
}

.ticker-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ticker-item .pair {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}

.ticker-item .rate {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 0.85rem;
}

.ticker-item .change {
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
}

.ticker-item .change.up {
  color: #22c55e;
  text-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
}

.ticker-item .change.down {
  color: #ef4444;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes ticker-scroll-rtl {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50%);
  }
}

.ticker-item i {
  font-size: 0.6rem;
}

/* Typography */
.fs-7 {
  font-size: 0.85rem;
}

.text-balance {
  color: #a1a1aa;
}

/* Icon Box */
.icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.provider-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 92, 246, 0.2);
  overflow: hidden;
  flex-shrink: 0;
}

.provider-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.provider-icon i {
  font-size: 1.2rem;
  color: var(--primary);
}

.service-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
  display: block;
}

.mini-rate {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.mini-receive {
  font-size: 1.1rem;
  font-weight: 700;
  color: #22c55e;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(34, 197, 94, 0.2);
}

/* Summary Detail Items */
.summary-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.summary-detail-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.summary-value {
  font-size: 0.9rem;
  color: white;
  font-weight: 600;
}

.slide-up {
  animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* --- Modern Amount Field System (Refined) --- */
.amount-field-modern {
  margin-bottom: 10px;
  /* Drastically reduced */
}

.modern-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #a1a1aa;
  margin-bottom: 4px;
  /* Tighter label-input spacing */
  font-weight: 500;
  letter-spacing: 0.3px;
}

.input-group-modern {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.input-group-modern:focus-within {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(139, 92, 246, 0.5) !important;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
  transform: translateY(-1px);
}

.input-group-modern i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 1rem;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.input-group-modern:focus-within i {
  color: #8b5cf6;
}

/* LTR Icon Position */
.input-group-modern i:first-child {
  left: 14px;
}

/* Fix for Textarea Icon Position */
.input-group-modern:has(textarea) {
  align-items: flex-start;
  /* Ensure icon stays at top */
}

.input-group-modern:has(textarea) i:first-child {
  top: 24px;
  /* Adjust top position for textarea icon */
  transform: none;
}

/* RTL Icon Position details handled below */

.modern-input {
  width: 100%;
  background: transparent !important;
  border: none !important;
  color: white !important;
  font-size: 0.95rem;
  /* Fixed "Huge Text" */
  font-weight: 500;
  height: 52px;
  /* Slightly compacted */
  padding: 0 0.5rem;
  /* USER REQUEST: 0.5rem inside fields */
  outline: none;
  font-family: 'Outfit', sans-serif;
}

/* Padding Logic for Icons */
.input-group-modern:has(i) .modern-input {
  padding-left: 42px;
}

/* RTL Padding Override */
[dir="rtl"] .modern-label {
  font-family: 'Cairo', sans-serif;
  /* Better Arabic Font */
}

[dir="rtl"] .input-group-modern i:first-child {
  left: auto;
  right: 14px;
}

[dir="rtl"] .input-group-modern:has(i) .modern-input {
  padding-left: 16px;
  padding-right: 42px;
}

textarea.modern-input {
  height: auto !important;
  min-height: 100px;
  padding-top: 14px !important;
  line-height: 1.6;
  padding-left: 42px !important;
  /* Force padding for icon */
}

[dir="rtl"] textarea.modern-input {
  padding-left: 16px !important;
  padding-right: 42px !important;
}

.modern-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
  font-size: 0.85rem;
  /* Smaller placeholder */
}

/* Premium Button Style (Matches "Soul") */
.btn-glass {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px -10px rgba(139, 92, 246, 0.5);
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0 2rem;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

/* Secondary Button */
.btn-glass-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0 2rem;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.btn-glass-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* RTL Icon Flip */
[dir="rtl"] .rtl-flip {
  transform: scaleX(-1);
}

/* Button Hover Animations */
.btn-glass:hover .bi-chevron-right,
.btn-glass:hover .rtl-flip {
  transform: translateX(3px);
}

[dir="rtl"] .btn-glass:hover .rtl-flip {
  transform: scaleX(-1) translateX(3px);
  /* Keep flip and move */
}

.btn-glass-secondary:hover .bi-arrow-left,
.btn-glass-secondary:hover .rtl-flip {
  transform: translateX(-3px);
}

[dir="rtl"] .btn-glass-secondary:hover .rtl-flip {
  transform: scaleX(-1) translateX(-3px);
}

.btn-glass:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(139, 92, 246, 0.6);
  filter: brightness(1.1);
  color: white;
}

.btn-glass:active {
  transform: translateY(0);
}

/* Recipient Card Styles */
.recipient-slider-wrapper {
  overflow-x: hidden;
}

.recipient-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 10px;
  min-width: 100px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}

.recipient-card:hover,
.recipient-card.active {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--primary);
}

/* Fix for Sticky Summary Overlap on Mobile */
@media (max-width: 991px) {
  .glass-card.sticky-top {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 24px !important;
    z-index: 1 !important;
  }
}

.recipient-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto;
  font-size: 1.1rem;
}

.recipient-name {
  font-size: 0.8rem;
  color: white;
}

.recipient-check {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s;
}

.recipient-card.active .recipient-check {
  opacity: 1;
  transform: scale(1);
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Add glass card if missing globally */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 1rem !important;
  /* USER REQUEST: 1rem padding for full box */
}

/* Button Shine Effect */
.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* Hover White Effect */
.hover-white:hover {
  color: #fff !important;
}

/* ==============================================
   GLOBAL AUTH MODAL - GLASSMORPHISM
   ============================================== */
.auth-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}

.auth-modal-overlay.show {
  display: flex;
  opacity: 1;
}

.auth-modal-glass {
  background: rgba(18, 18, 26, 0.85) !important;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  padding: 30px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.auth-modal-overlay.show .auth-modal-glass {
  transform: scale(1);
}

.close-auth-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  border: none;
}

.close-auth-modal:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

/* Auth Tabs */
.auth-tabs {
  display: flex;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-tab {
  flex: 1;
  padding: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
  border: none;
  font-family: var(--primary-font);
  font-size: 16px;
  position: relative;
}

.auth-tab.active {
  color: white;
}

.auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(var(--primary-rgb));
  box-shadow: 0 0 10px rgb(var(--primary-rgb));
}

/* Forms */
.auth-form-wrapper {
  display: none;
  animation: fadeIn 0.3s ease;
}

.auth-form-wrapper.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-content h4 {
  color: white;
  text-align: center;
  font-weight: 700;
}

/* Inputs */
.auth-modal-glass .form-control {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: white;
  height: 48px;
  transition: all 0.3s;
}

.auth-modal-glass .form-control:focus {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgb(var(--primary-rgb));
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.2);
}

.auth-modal-glass .input-group-text {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
}

/* Submit Button */
.auth-submit-btn {
  background: linear-gradient(135deg, rgb(var(--primary-rgb)) 0%, #a200ff 100%);
  border: none;
  height: 50px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.auth-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.auth-submit-btn:hover::before {
  left: 100%;
}

/* RTL Support */
.rtl .auth-submit-btn::before {
  left: 100%;
  transition: 0.5s;
}

.rtl .auth-submit-btn:hover::before {
  left: -100%;
}

.rtl .close-auth-modal {
  right: auto;
  left: 15px;
}

/* ==============================================
   RTL SUPPORT FOR AUTH MODAL
   ============================================== */

/* Ensure text alignment follows direction */
[dir="rtl"] .auth-content {
  text-align: right !important;
}

/* Close button positioning */
[dir="rtl"] .close-auth-modal {
  right: auto;
  left: 15px;
}

/* Input Group Fixes for RTL Glassmorphism */
/* The icon (first child) should have rounded corners on the right side */
[dir="rtl"] .auth-modal-glass .input-group .input-group-text:first-child {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* The input (middle/last) should have rounded corners on the left side (if no button after it) */
[dir="rtl"] .auth-modal-glass .input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

[dir="rtl"] .auth-modal-glass .input-group .form-control:last-child {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Password toggle button (last child) */
[dir="rtl"] .auth-modal-glass .input-group .toggle-password {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: none;
}

/* Flip Icons if needed (e.g. back arrows) */
[dir="rtl"] .rtl-flip {
  transform: scaleX(-1);
  display: inline-block;
}

/* List Items / Spacing */
[dir="rtl"] .ms-2 {
  margin-right: 0.5rem !important;
  margin-left: 0 !important;
}

[dir="rtl"] .me-2 {
  margin-left: 0.5rem !important;
  margin-right: 0 !important;
}

/* Password Toggle Inside Input */
.btn-reset {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none !important;
}

[dir="ltr"] .password-input {
  padding-right: 40px;
  /* Space for icon */
}

/* RTL for Password Toggle */
[dir="rtl"] .toggle-password.position-absolute {
  right: auto !important;
  left: 10px !important;
}

[dir="rtl"] .password-input {
  padding-right: 0.75rem;
  /* Reset standard padding */
  padding-left: 40px;
  /* Space for icon on left */
}

/* ==============================================
   REGISTER MODAL REFINEMENT - COMPACT LAYOUT
   ============================================== */

/* Adjust gutter for tight layout */
.auth-row-compact {
  --bs-gutter-x: 10px;
  margin-bottom: 15px;
}

/* Make country select look like a prefix */
.country-code-select-container .select2-container--default .select2-selection--single {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  height: 48px;
  display: flex;
  align-items: center;
}

.country-code-select-container .select2-selection__rendered {
  color: white !important;
  padding-left: 10px;
  padding-right: 20px;
  font-size: 14px;
}

.country-code-select-container .select2-selection__arrow {
  height: 48px;
  top: 0;
}

/* Mobile input group wrapper to combine with country */
.phone-input-group {
  display: flex;
  gap: 8px;
}

.phone-input-group .country-select-wrapper {
  width: 35%;
  min-width: 100px;
}

.phone-input-group .phone-input-wrapper {
  width: 65%;
  flex-grow: 1;
}

/* Override Select2 Dropdown z-index for Modal */
.select2-dropdown {
  z-index: 100000 !important;
  /* Ensure it floats above modal */
}

/* RTL Adjustments */
[dir="rtl"] .phone-input-group .country-select-wrapper {
  order: 1;
  /* Keep country on right (start) */
}

[dir="rtl"] .phone-input-group .phone-input-wrapper {
  order: 2;
}

/* Hide labels for compact look if desired, or keep them small */
.auth-modal-glass label {
  font-size: 13px;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.7);
}

/* Custom Select2 Styling to Match Theme */
/* Main Container */
/* Main Container */
.select2-container .select2-selection--single {
  height: 48px !important;
  /* Match standard inputs */
  padding: 0 !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  transition: all 0.3s ease;
  color: #fff !important;
  position: relative;
}

/* Text Color */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #b0b3b8 !important;
  line-height: normal !important;
  padding: 0.5rem !important;
  font-size: 14px !important;
}

/* Arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px !important;
  position: absolute !important;
  top: 1px !important;
  right: 1px !important;
  width: 30px !important;
}

/* RTL Arrow Fix */
.rtl .select2-container--default .select2-selection--single .select2-selection__arrow,
[dir="rtl"] .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: auto !important;
  left: 1px !important;
}

.rtl .select2-container--default .select2-selection--single .select2-selection__rendered,
[dir="rtl"] .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0.5rem !important;
  text-align: right !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent !important;
}

/* Dropdown Menu */
.select2-dropdown {
  background-color: #12121a !important;
  /* Darkest bg */
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 5px !important;
  z-index: 9999 !important;
  /* Ensure it's on top */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

/* Search Box */
.select2-search--dropdown .select2-search__field {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  color: #fff !important;
  padding: 8px !important;
  outline: none !important;
}

/* Options */
.select2-results__option {
  padding: 8px 12px !important;
  border-radius: 6px !important;
  color: #b0b3b8 !important;
  font-size: 14px !important;
  margin-bottom: 2px !important;
}

/* Hover/Selected State */
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: rgba(111, 79, 242, 0.2) !important;
  /* Primary color hint */
  color: #fff !important;
}

/* Dropdown Open State */
.select2-container--open .select2-selection--single {
  border-color: rgba(111, 79, 242, 0.5) !important;
  box-shadow: 0 0 0 0.2rem rgba(111, 79, 242, 0.15) !important;
}

/* Phone Code Inside Input Styling */
.phone-code-prefix {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  z-index: 5;
  pointer-events: none;
  font-weight: 500;
}


.phone-with-code {
  padding-left: 55px !important;
  text-align: left !important;
  direction: ltr !important;
}

/* ==============================================
   USER PROFILE DROPDOWN (Enhanced Visibility)
   ============================================== */
.profile-dropdown-seagm {
  background: rgba(18, 18, 26, 0.85) !important;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5) !important;
  border-radius: 12px !important;
  padding: 10px !important;
  min-width: 220px !important;
  margin-top: 15px !important;
}

.profile-dropdown-seagm .user-info-dropdown {
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-bottom: 10px;
}

.profile-dropdown-seagm .user-info-dropdown h6 {
  margin: 0;
  font-size: 1rem;
  color: #fff !important;
  font-weight: 600;
}

.profile-dropdown-seagm .user-info-dropdown span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6) !important;
  display: block;
  margin-top: 2px;
}

.profile-dropdown-seagm .dropdown-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  margin: 8px 0 !important;
}

.profile-dropdown-seagm .dropdown-item {
  color: rgba(255, 255, 255, 0.8) !important;
  border-radius: 8px !important;
  padding: 10px 15px !important;
  font-size: 0.95rem !important;
  transition: all 0.2s ease;
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
}

.profile-dropdown-seagm .dropdown-item i {
  width: 25px;
  font-size: 1.1rem;
  text-align: center;
  margin-right: 10px;
  color: var(--primary-color);
}

/* RTL Icon Spacing */
[dir="rtl"] .profile-dropdown-seagm .dropdown-item i {
  margin-right: 0;
  margin-left: 10px;
}

.profile-dropdown-seagm .dropdown-item:hover,
.profile-dropdown-seagm .dropdown-item:active,
.profile-dropdown-seagm .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  transform: translateX(5px);
}

[dir="rtl"] .profile-dropdown-seagm .dropdown-item:hover,
[dir="rtl"] .profile-dropdown-seagm .dropdown-item:active,
[dir="rtl"] .profile-dropdown-seagm .dropdown-item:focus {
  transform: translateX(-5px);
}

/* ==============================================
   HEADER & AUTH REFINEMENTS (Sign In & Search)
   ============================================== */

/* Sign In Button */
.btn-sign-in {
  height: 36px;
  border-radius: 8px !important;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff !important;
  transition: all 0.3s;
  font-size: 0.8rem !important;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.btn-sign-in:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Header Search Input - Force Height & Radius */
.header-search-box input,
.search-input-group input,
#desktop-search {
  height: 36px !important;
  border-radius: 8px !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-left: 15px;
  padding-right: 40px;
  /* Space for icon */
  color: #fff !important;
  font-size: 0.9rem;
}

[dir="rtl"] .header-search-box input,
[dir="rtl"] .search-input-group input,
[dir="rtl"] #desktop-search {
  padding-right: 15px;
  padding-left: 45px;
}

/* Ensure Search Icon is centered vertically */
.header-search-box,
.search-input-group {
  position: relative;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

.search-input-group i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

[dir="rtl"] .search-input-group i {
  right: auto;
  left: 15px;
}

/* Mobile responsive adjustments if needed */
@media (max-width: 991px) {
  .btn-sign-in {
    height: 36px;
    padding: 0 20px;
    font-size: 0.9rem;
  }
}

/* Live Pulse Animation */
.live-pulse {
  width: 8px;
  height: 8px;
  background: #198754;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7);
  animation: pulse-green 2s infinite;
  display: inline-block;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(25, 135, 84, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
  }
}

/* Timeline Styles */
.timeline-container {
  position: relative;
  padding-left: 25px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--bs-primary);
}

.timeline-item {
  position: relative;
  padding-bottom: 15px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bs-primary);
  border: 2px solid var(--bs-body-bg);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-time {
  font-size: 12px;
  color: var(--bs-secondary);
}

/* Social Hub Styles */
.social-card {
  background: rgba(15, 15, 25, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  padding: 2.5rem 2rem;
  /* Consistent internal padding */
}

.social-card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(111, 66, 193, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.avatar-social {
  width: 70px;
  height: 70px;
  border: 1px solid rgba(111, 66, 193, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(111, 66, 193, 0.1);
  border-radius: 15px !important;
}

.link-sharing-input-group {
  background: rgba(0, 0, 0, 0.5) !important;
  border-radius: 50rem !important;
  padding: 5px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
  height: 56px;
  /* Optimized height */
  display: flex;
  align-items: center;
}

.shareable-link-input {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  font-family: monospace;
  letter-spacing: 0.5px;
  color: white !important;
  font-size: 0.875rem;
  height: 100% !important;
}

.link-sharing-input-group .btn {
  height: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp {
  background: #25D366 !important;
  border: none !important;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50rem !important;
  padding: 12px 20px !important;
  color: white !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #128C7E !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.social-close-btn {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.social-close-btn:hover {
  color: white !important;
}

.amount-badge {
  background: linear-gradient(135deg, #6f42c1 0%, #432b7a 100%);
  padding: 20px;
  text-align: center;
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: 0 10px 20px rgba(111, 66, 193, 0.2);
}

.form-control-holo {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border-radius: 12px !important;
  padding: 12px 15px !important;
}

.form-control-holo:focus {
  border-color: #6f42c1 !important;
  box-shadow: 0 0 0 4px rgba(111, 66, 193, 0.1) !important;
}

/* Social Remit Fill Details Specialized Styles */
.avatar-social-lg {
  width: 80px;
  height: 80px;
  background: rgba(139, 92, 246, 0.1);
  border: 2px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px !important;
}

.avatar-social-lg i {
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
}

.amount-badge-premium {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.05);
  padding: 1.5rem;
  text-align: center;
}

.section-badge-step {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #8B5CF6 !important;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
  border-radius: 8px !important;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.fs-7 {
  font-size: 0.875rem;
}

.fs-8 {
  font-size: 0.75rem;
}

.z-index-dropdown {
  z-index: 1000;
}

/* Fill Details Page & Global Glow Effects */
.glow-effect {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.glow-effect.top-left {
  top: -100px;
  left: -100px;
}

.glow-effect.bottom-right {
  bottom: -100px;
  right: -100px;
}

.custom-option img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.z-999 {
  z-index: 999;
}

.z-998 {
  z-index: 998;
}

.z-997 {
  z-index: 997;
}

/* Social Remit Layout Z-Indexes */
.z-dropdown-1 {
  z-index: 1005 !important;
}

.z-dropdown-2 {
  z-index: 1004 !important;
}

.z-dropdown-3 {
  z-index: 1003 !important;
}

.z-dropdown-4 {
  z-index: 1002 !important;
}

/* Dynamic Loaders & Stats */
.skeleton-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: skeleton-pulse 1.5s infinite ease-in-out;
}

.skeleton-line {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

@keyframes skeleton-pulse {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

.provider-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.provider-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.cursor-pointer {
  cursor: pointer;
}

/* Social Remit Specific Refinements */
.social-remit-section {
  min-height: 100vh;
}

.social-glow-violet {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

.social-glow-blue {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

.social-fill-card {
  border-radius: 24px !important;
}

.social-ticker-wrapper {
  border-color: rgba(255, 255, 255, 0.08) !important;
  margin-bottom: 20px !important;
}

.ticker-dropdown-menu {
  background: rgba(26, 29, 38, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
}

.social-receipt-box {
  background: rgba(255, 255, 255, 0.02) !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
}

.social-input-premium {
  height: 48px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: white !important;
  padding: 0 15px !important;
  transition: all 0.3s ease;
  font-family: inherit !important;
}

.social-fill-card input,
.social-fill-card select,
.social-fill-card textarea,
.social-fill-card label,
.social-fill-card .modern-label,
.money-transfer-section input,
.money-transfer-section select,
.money-transfer-section textarea,
.money-transfer-section label,
.money-transfer-section .modern-label,
.money-transfer-section .form-label,
.dial-code-badge,
.phone-input-premium,
.modern-input,
.custom-search-input,
.custom-select-trigger,
.custom-option {
  font-family: inherit !important;
}

.flag-icon img {
  border-radius: 8px !important;
  object-fit: cover !important;
}

.social-input-premium:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(var(--primary-rgb), 0.5) !important;
  box-shadow: none !important;
}

.modern-input-group {
  display: flex;
  height: 48px;
  align-items: stretch;
}

.dial-code-badge {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: var(--primary) !important;
  font-weight: 700 !important;
  border-radius: 12px 0 0 12px !important;
  padding: 0 8px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  max-width: 70px;
  font-size: 0.85rem;
}

[dir="rtl"] .dial-code-badge {
  border-radius: 0 12px 12px 0 !important;
}

.phone-input-premium {
  flex: 1;
  border-radius: 0 12px 12px 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-left: 0 !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: white !important;
  padding: 0 15px !important;
}

[dir="rtl"] .phone-input-premium {
  border-radius: 12px 0 0 12px !important;
  border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-right: 0 !important;
}

.social-offers-section {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.skeleton-offer-card {
  height: 120px;
  width: 100%;
  border-radius: 15px;
}

/* Premium Submit Button - Same as Buy Now Button */
.premium-submit-btn {
  height: 52px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 15px !important;
  background-color: rgb(var(--primary-rgb)) !important;
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.15);
  position: relative;
  overflow: hidden;
  border: none;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.premium-submit-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  animation: premium-shine 4s infinite;
}

@keyframes premium-shine {
  0% {
    left: -100%;
  }

  20% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

.premium-submit-btn:hover {
  box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.25);
  transform: translateY(-2px);
}

.premium-submit-btn:active {
  transform: translateY(0);
}

/* Force Input Group Border Radius Fix for LTR in RTL Page */
.modern-input-group[dir="ltr"] .dial-code-badge {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-right: 0 !important;
  border-top-left-radius: 12px !important;
  border-bottom-left-radius: 12px !important;
}

.modern-input-group[dir="ltr"] .phone-input-premium {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-top-right-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
}

/* Manual Payment Page Styles */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  padding: 1rem;
  margin-top: 2rem;
}

.gateway-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.gateway-title {
  font-size: 1rem !important;
  font-weight: 700;
  margin-bottom: 0;
  color: #fff;
}

.detail-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: .5rem;
  margin-bottom: .5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.detail-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.detail-content {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.detail-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.detail-label::after {
  content: ':';
  margin-left: 2px;
}

.detail-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  word-break: break-all;
}

.copy-btn {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: rgba(255, 255, 255, 0.5);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.copy-btn:hover {
  color: var(--primary-color);
}

.copy-btn:focus {
  outline: none;
}

.instruction-box {
  background: rgba(255, 193, 7, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 15px;
  padding: .5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.instruction-box h1,
.instruction-box h2,
.instruction-box h3 {
  color: #fff;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Form Styles */
.modern-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 6px;
  display: block;
}

.modern-input-group {
  position: relative;
  margin-bottom: 1rem;
}

/* File Upload */
.file-upload-wrapper {
  position: relative;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.file-upload-area {
  text-align: center;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.01);
  position: relative;
  overflow: hidden;
}

.file-upload-area:hover {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.03);
}

.file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

.preview-image {
  max-width: 100%;
  max-height: 250px;
  border-radius: 15px;
  margin-top: 10px;
  display: none;
  object-fit: contain;
  margin: 0 auto;
}

.upload-icon {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.5);
}

.upload-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.premium-btn {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  border: none;
  border-radius: 15px;
  padding: 1rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(13, 110, 253, 0.3);
}

.premium-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(13, 110, 253, 0.5);
  filter: brightness(1.1);
}

.section-title {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

/* Crypto View Specific Styles */
.custom-radio-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.02);
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-check:checked+.custom-radio-btn {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: white !important;
  box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.3);
}

.network-item {
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.2s ease;
  color: white;
  font-size: 0.9rem;
  min-width: 80px;
  text-align: center;
}

.network-item:hover {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.05);
}

.network-item.active {
  background: rgba(var(--primary-rgb), 0.15);
  border-color: var(--primary-color);
}

/* Crypto View Shine Animation Trigger */
.pay-badge.shine-trigger::before {
  left: 150%;
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Wallet Modal - Vertical Flow */
.wallet-modal-custom .modal-content {
  border-radius: 24px !important;
}

.wallet-modal-custom .balance-badge {
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Custom Gateway Dropdown */
.premium-gateway-select {
  position: relative;
  cursor: pointer;
}

.selected-gateway-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  height: 48px;
}

.selected-gateway-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(var(--primary-rgb), 0.4);
}

.gateway-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gateway-info img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px;
}

.gateways-list-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #1a1b22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  display: none;
  padding: 8px;
}

.gateways-list-dropdown.show {
  display: block;
  animation: fadeInDown 0.2s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gateway-item {
  padding: 0.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.gateway-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px;
}

.gateway-item:hover {
  background: rgba(var(--primary-rgb), 0.1);
}

.gateway-item.active {
  background: rgba(var(--primary-rgb), 0.15);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
}

/* Standardized Modal Inputs */
.modal-input-height {
  height: 48px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  color: #fff !important;
  padding: 0.5rem !important;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: none !important;
  pointer-events: auto !important;
  cursor: text !important;
  position: relative !important;
  z-index: 10 !important;
}

.modal-input-height:focus {
  border-color: rgb(var(--primary-rgb)) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.wallet-modal-custom .select2-container--default .select2-selection--single {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  height: 48px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
}

/* Quick Amounts */
.quick-amount-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-quick-amount {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-quick-amount:hover {
  background: rgba(var(--primary-rgb), 0.15);
  border-color: rgb(var(--primary-rgb));
  transform: translateY(-2px);
}

/* Summary Box */
.interactive-summary-box {
  background: rgba(var(--primary-rgb), 0.05);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 18px;
  padding: 16px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.summary-item:last-child {
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  font-weight: 700;
  font-size: 1rem;
}

.summary-item .label {
  opacity: 0.7;
}

/* Pulse animation for confirming state */
.btn-confirm-pulse {
  position: relative;
  overflow: hidden;
}

.btn-confirm-pulse:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: btnShine 2s infinite;
}

@keyframes btnShine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* ==============================================
   MONEY TRANSFER SECTION
   ============================================== */
.money-transfer-section {
  min-height: 100vh;
}

.money-transfer-section .glow-effect.top-left {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

.money-transfer-section .glow-effect.bottom-right {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

.money-transfer-section .glass-card {
  border-radius: 24px;
  overflow: visible;
}

.money-transfer-section .header-border {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.money-transfer-section .ticker-wrapper {
  border-color: rgba(255, 255, 255, 0.08) !important;
  margin-bottom: 10px !important;
}

.money-transfer-section #baseCurrencyList {
  background: rgba(26, 29, 38, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
}

.money-transfer-section #liveReceipt {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06) !important;
}

.money-transfer-section .social-remit-action {
  padding: .5rem;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.money-transfer-section .social-remit-btn {
  white-space: nowrap;
  border-radius: 15px;
}

.money-transfer-section #offersSection {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.money-transfer-section .offer-skeleton-box {
  height: 100px;
  width: 100%;
}

.social-card p.share-description {
  max-width: 320px;
}

.money-transfer-section #currentBaseFlag {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 6px !important;
}

.money-transfer-section .custom-option img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==============================================
   AGENT PILOT ONBOARDING SECTION
   ============================================== */
.agent-pilot-section {
  padding: 80px 0;
  position: relative;
}

.agent-pilot-section .badge-pilot {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2) 0%, rgba(var(--secondary-rgb), 0.1) 100%);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  color: rgb(var(--secondary-rgb));
  margin-bottom: 20px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
  }

  to {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
  }
}

.agent-pilot-section .intro-heading {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #fff 0%, rgb(var(--secondary-rgb)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.agent-pilot-section .intro-sub-heading {
  font-size: 1.25rem;
  color: var(--body-color);
  margin-bottom: 20px;
}

.agent-pilot-section .intro-description {
  color: var(--body-color);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Feature Cards Grid */
.agent-pilot-section .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.agent-pilot-section .feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  backdrop-filter: var(--glass-blur);
  transition: var(--transition);
}

.agent-pilot-section .feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: var(--shadow3);
}

.agent-pilot-section .feature-card:first-child {
  grid-column: span 2;
}

.agent-pilot-section .feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15) 0%, rgba(var(--secondary-rgb), 0.1) 100%);
  border-radius: 20px;
  font-size: 1.75rem;
  color: rgb(var(--secondary-rgb));
}

.agent-pilot-section .feature-card h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.agent-pilot-section .feature-card p {
  font-size: 0.875rem;
  color: var(--body-color);
  margin: 0;
}

/* Form Stage */
.agent-pilot-section .form-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: var(--glass-blur);
}

.agent-pilot-section .form-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.agent-pilot-section .form-header .back-btn {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--body-color);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.rtl .agent-pilot-section .form-header .back-btn {
  left: auto;
  right: 0;
}

.agent-pilot-section .form-header .back-btn:hover {
  color: rgb(var(--primary-rgb));
}

.agent-pilot-section .form-header h3 {
  margin-bottom: 10px;
}

/* Smart Geo Container */
.agent-pilot-section .smart-geo-container {
  background: rgba(var(--primary-rgb), 0.05);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: var(--radius);
  padding: 20px;
}

.agent-pilot-section .geo-field {
  margin-bottom: 15px;
}

.agent-pilot-section .geo-field:last-child {
  margin-bottom: 0;
}

.agent-pilot-section .form-label-sm {
  font-size: 0.8125rem;
  color: var(--body-color);
  font-weight: 500;
}

.agent-pilot-section .geo-actions {
  display: flex;
  gap: 8px;
}

.agent-pilot-section .geo-actions .btn {
  font-size: 0.75rem;
  padding: 3px 10px;
}

.agent-pilot-section .cities-charges-preview {
  padding: 10px;
  background: rgba(var(--success), 0.1);
  border-radius: var(--radius-sm);
}

.agent-pilot-section .charge-amount {
  color: var(--success);
  font-weight: 600;
}

/* Transport Mode Selection */
.agent-pilot-section .transport-mode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 767px) {
  .agent-pilot-section .transport-mode-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.agent-pilot-section .transport-option {
  cursor: pointer;
}

.agent-pilot-section .transport-option input {
  display: none;
}

.agent-pilot-section .transport-card {
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.agent-pilot-section .transport-card i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--body-color);
  display: block;
  transition: var(--transition);
}

.agent-pilot-section .transport-card span {
  font-size: 0.875rem;
  color: var(--body-color);
}

.agent-pilot-section .transport-option input:checked+.transport-card {
  border-color: rgb(var(--primary-rgb));
  background: rgba(var(--primary-rgb), 0.1);
}

.agent-pilot-section .transport-option input:checked+.transport-card i {
  color: rgb(var(--primary-rgb));
}

.agent-pilot-section .transport-card:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
}

/* Success/Status Stage */
.agent-pilot-section .success-content {
  padding: 60px 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: var(--glass-blur);
}

.agent-pilot-section .status-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 3rem;
}

.agent-pilot-section .status-icon.pending {
  background: rgba(var(--warning), 0.15);
  color: var(--warning);
}

.agent-pilot-section .status-icon.approved,
.agent-pilot-section .status-icon.success {
  background: rgba(0, 201, 167, 0.15);
  color: var(--success);
}

.agent-pilot-section .status-icon.rejected {
  background: rgba(222, 68, 55, 0.15);
  color: var(--danger);
}

.agent-pilot-section .rejection-reason {
  background: rgba(var(--danger), 0.1);
  border: 1px solid rgba(var(--danger), 0.2);
  border-radius: var(--radius-sm);
  padding: 15px;
  margin-top: 15px;
  color: var(--body-color);
}

/* Responsive */
@media (max-width: 991px) {
  .agent-pilot-section .intro-heading {
    font-size: 1.75rem;
  }

  .agent-pilot-section .features-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .agent-pilot-section .feature-card:first-child {
    grid-column: span 1;
  }

  .agent-pilot-section .form-card {
    padding: 25px;
  }
}



.recipient-avatar-premium {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 12px !important;
  margin: 0 auto 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.recipient-name-small {
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recipient-last-used-text {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
}

.recipient-check {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.recipient-card.active .recipient-check {
  opacity: 1;
  transform: scale(1);
}

.summary-location-card {
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 12px;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-flag {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  object-fit: cover !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
  position: relative;
  z-index: 2;
}

.summary-flag-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  background: rgba(var(--primary-rgb), 0.4);
  filter: blur(14px);
  opacity: 0.5;
  z-index: 1;
  border-radius: 10px;
}

.summary-recipient-box {
  background: rgba(111, 79, 242, 0.1);
  border: 1px solid rgba(111, 79, 242, 0.2);
  border-radius: 12px;
  padding: 10px 15px;
}

.recipient-icon-small {
  width: 35px;
  height: 35px;
  background: rgb(111, 79, 242);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.summary-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #fff;
}

.summary-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.summary-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.summary-value {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

/* --- Horizontal Recipient Cards (V2) --- */
.recipient-card-v2 {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 14px !important;
  padding: 10px 14px !important;
  min-width: 240px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  position: relative !important;
  backdrop-filter: blur(8px);
}

.recipient-card-v2:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.recipient-card-v2.active {
  background: rgba(var(--primary-rgb), 0.1) !important;
  border-color: var(--primary) !important;
}

.avatar-v2 {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.1);
}

.flag-img-v2 {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.info-v2 {
  flex-grow: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

[dir="rtl"] .info-v2 {
  text-align: right !important;
}

.name-v2 {
  color: #fff !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-v2 {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.78rem !important;
  font-family: 'Outfit', sans-serif;
}

.actions-v2 {
  display: flex;
  margin-inline-start: auto;
}

.btn-edit-v2 {
  width: 28px !important;
  height: 28px !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.05);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(255, 255, 255, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.2s ease;
  font-size: 14px !important;
}

.btn-edit-v2:hover {
  background: var(--primary) !important;
  color: white !important;
  border-color: var(--primary) !important;
}

.recipient-check-v2 {
  position: absolute;
  top: -6px;
  inset-inline-end: -6px;
  width: 22px;
  height: 22px;
  background: var(--primary) !important;
  color: white !important;
  border-radius: 6px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  border: 2px solid #1a1a1e;
}

.recipient-card-v2.active .recipient-check-v2 {
  opacity: 1;
  transform: scale(1);
}

/* --- Premium Flag Utilities --- */
.premium-flag {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  object-fit: cover !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
}

.premium-flag-sm {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.premium-flag-xs {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  object-fit: cover !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}