@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography 
    [ ## Heading ] 
    [ ## Others Typography ]
# Elements
    [ ## Font Size ]
    [ ## Font Weight ]
    [ ## Margin Element ]
    [ ## Padding Element ]
    [ ## Color Element ]
    [ ## Background Element ]
    [ ## Extra Background ]
    [ ## Social Element ]
    [ ## Overlay Element ]
    [ ## Lists ]
    [ ## Post, Page, Comments Table ]
    [ ## Others Element ]
    [ ## Grid Element ]
# Forms
	[ ## Buttons ]
	[ ## Fields ]
# Header Content
	[ ## Preloader ]
	[ ## Header ]
    [ ## Sticky header ]
# layout
    [ ## Hero Block ]
    [ ## Features ]
    [ ## Team ]
    [ ## Testimonial ]
    [ ## Sections ]
        [ ### Features Block ]
        [ ### Network Location ]
        [ ### Discount Block ]
        [ ### Vission Mission Block ]
        [ ### Work Brand ]
        [ ### Announcement ]
        [ ### Pricing ]
        [ ### Faqs ]
        [ ### Support Ticket ]
        [ ### Call To Action ]
        [ ### Founder Message Block ]
        [ ### Fan Fact Block ]
    [ ## Blog ]
# site content
	[ ## About Page ]
	[ ## Contact Page ]
	[ ## 404 Page ]
	[ ## Registration Page ]
	[ ## Posts and pages ]
	    [ ### Page Title ]
	    [ ### Breadcrumb ]
	    [ ### Page info Content ]
	[ ## Comments ]
	[ ## Widgets ]
	[ ## Widgets Content ]
# Footer
/*--------------------------------------------------------------
# abstracts
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ### font-variable start ]
*/
/*-------------------------------------------------
    [ ### font-variable end ]
*/
/*-------------------------------------------------
    [ ### font_family-variable start ]
*/
/*-------------------------------------------------
    [ ### font_family-variable end ]
*/
/*-------------------------------------------------
    [ ### font_size-variable start ]
*/
/*-------------------------------------------------
    [ ### font_size-variable end ]
*/
/*-------------------------------------------------
    [ ### line_height-variable start ]
*/
/*-------------------------------------------------
    [ ### line_height-variable start ]
*/
/*-------------------------------------------------
    [ ### initial-color-variable start ]
*/
/* Variables */
@import url('https://fonts.googleapis.com/css?family=Anton&display=swap" rel="stylesheet');
:root {
  --color-text-light: #6b7280;
  --color-light: #d4e3f2;
  --color-border: #e5e7eb;
  --color-gray: #9ca3af;
  --shadow-sm: 0 1px 2px 0 rgba(92, 75, 160, 0.1);
  --shadow: 0 4px 6px -1px rgba(17, 16, 73, 0.15),
          0 2px 4px -1px rgba(92, 75, 160, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(17, 16, 73, 0.2),
              0 4px 6px -2px rgba(92, 75, 160, 0.15);
  --shadow-lg: 0 20px 25px -5px rgba(17, 16, 73, 0.25),
              0 10px 10px -5px rgba(92, 75, 160, 0.1);
  /* Special Cases */
  --shadow-primary-focus: 0 0 0 3px rgba(92, 75, 160, 0.3);
  --shadow-secondary-xl: 0 25px 50px -12px rgba(17, 16, 73, 0.3);
  --radius-sm: 2px;
  --radius: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --radius-container: 40px 40px 20px 20px ;
  --space-xs: 8px;
  --space-sm: 12px;
  --space: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  /* === LAYOUT === */
  --sidebar-width: 250px;
  --sidebar-collapsed-width: 80px;
  --header-height: 70px;
  --transition: all 0.3s ease;
  --topbar-height: 60px;
  /* === COMPONENTS === */
  --menu-icon-size: 30px;
  --badge-size: 20px;
  --submenu-indent: 20px;
}

/*-------------------------------------------------
    [ ### initial-color-variable end ]
*/
/*--------------------------------------------------------------
# base
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ## reset ]
*/
html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  background: rgb(255, 255, 255);
  font-weight: 400;
  line-height: 1.5em;
  color: #161313;
  overflow-x: hidden;
}

a {
  display: inline-block;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

blockquote {
  margin: 0 0 1.3em;
}

p {
  margin-bottom: 15px;
  line-height: 1.7em;
}
p:last-child {
  margin-bottom: 0px;
}
@media only screen and (max-width: 1199px) {
  p {
    line-height: 1.7em;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.exchange-area code {
  font-size: 20px;
  color: #5c4ba0;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
}

button {
  border: none;
  cursor: pointer;
}

input, textarea {
  padding: 12px 25px;
  width: 100%;
}

span {
  display: inline-block;
}

a, a:focus, a:hover {
  text-decoration: none;
  color: inherit;
}

blockquote {
  background-color: rgb(255, 255, 255);
  padding: 40px;
  border-radius: 10px;
  font-weight: 500;
  font-style: italic;
  position: relative;
}
blockquote .quote-icon {
  position: absolute;
  top: 0;
  left: 5%;
  font-size: 120px;
  opacity: 0.1;
}

/*-------------------------------------------------
    [ ## padding ]
*/
.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}
@media only screen and (max-width: 991px) {
  .pt-80 {
    padding-top: 20px;
  }
}

.pt-100 {
  padding-top: 100px;
}
@media only screen and (max-width: 991px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media only screen and (max-width: 991px) {
  .pt-120 {
    padding-top: 100px;
  }
}

.pt-150 {
  padding-top: 150px;
}
@media only screen and (max-width: 991px) {
  .pt-150 {
    padding-top: 100px;
  }
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .pb-120 {
    padding-bottom: 100px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}
@media only screen and (max-width: 991px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}

.ptb-10 {
  padding: 10px 0;
}

.ptb-20 {
  padding: 20px 0;
}

.ptb-30 {
  padding: 30px 0;
}

.ptb-40 {
  padding: 40px 0;
}

.ptb-50 {
  padding: 50px 0;
}

.ptb-60 {
  padding: 60px 0;
}

.ptb-80 {
  padding: 80px 0;
}
@media only screen and (max-width: 991px) {
  .ptb-80 {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 568px) {
  .ptb-80 {
    padding: 40px 0;
  }
}

.ptb-100 {
  padding: 100px 0;
}
@media only screen and (max-width: 991px) {
  .ptb-100 {
    padding: 80px 0;
  }
}

.ptb-120 {
  padding: 120px 0;
}
@media only screen and (max-width: 991px) {
  .ptb-120 {
    padding: 100px 0;
  }
}

.ptb-150 {
  padding: 150px 0;
}
@media only screen and (max-width: 991px) {
  .ptb-150 {
    padding: 100px 0;
  }
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-150 {
  margin-top: 150px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 575px) {
  .mb-80 {
    margin-bottom: 40px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mt-10-none {
  margin-top: -10px;
}

.mt-20-none {
  margin-top: -20px;
}

.mt-30-none {
  margin-top: -30px;
}

.mt-40-none {
  margin-top: -40px;
}

.mt-50-none {
  margin-top: -50px;
}

.mt-60-none {
  margin-top: -60px;
}

.mt-80-none {
  margin-top: -80px;
}

.mt-100-none {
  margin-top: -100px;
}

.mt-120-none {
  margin-top: -120px;
}

.mt-150-none {
  margin-top: -150px;
}

.mb-10-none {
  margin-bottom: -10px;
}

.mb-20-none {
  margin-bottom: -20px;
}

.mb-30-none {
  margin-bottom: -30px;
}

.mb-40-none {
  margin-bottom: -40px;
}

.mb-50-none {
  margin-bottom: -50px;
}

.mb-60-none {
  margin-bottom: -60px;
}

.mb-80-none {
  margin-bottom: -80px;
}
@media only screen and (max-width: 575px) {
  .mb-80-none {
    margin-bottom: -40px;
  }
}

.mb-100-none {
  margin-bottom: -100px;
}

.mb-120-none {
  margin-bottom: -120px;
}

.mb-150-none {
  margin-bottom: -150px;
}

/*-------------------------------------------------
    [ ## color ]
*/
.bg--primary {
  background-color: #7367f0 !important;
}

.bg--secondary {
  background: #5c4ba0;
}

.bg--success {
  background-color: #28c76f;
}

.bg--danger {
  background-color: #e11b2e !important;
}

.bg--warning {
  background-color: #ff9f43 !important;
}

.bg--info {
  background-color: #1e9ff2;
}

.bg--dark {
  background-color: #10163A;
}

.bg--base {
  background-color: #5c4ba0 !important;
}

.text--primary {
  color: #7367f0;
}

.text--secondary {
  color: #5c4ba0;
}

.text--success {
  color: #28c76f;
}

.text-danger {
  color: #d63384 !important;
}

.text--danger {
  color: #d63384;
}

.text--warning {
  color: #ff9f43;
}

.text--info {
  color: #1e9ff2;
}

.text--dark {
  color: #10163A;
}

.text--base {
  background: #5c4ba0;
  -webkit-text-fill-color: transparent;
}

.border--primary {
  border: #7367f0;
}

.border--secondary {
  border: 1px solid #5c4ba0;
}

.border--success {
  border: 1px solid #28c76f;
}

.border--danger {
  border: 1px solid #ea5455;
}

.border--warning {
  border: 1px solid #ff9f43;
}

.border--info {
  border: 1px solid #1e9ff2;
}

.border--dark {
  border: 1px solid #10163A;
}

.border--base {
  border: 1px solid #e5e5e5 !important;
}

.section--bg {
  background-color: #ffffff !important;
}

.bg--gray {
  background-color: #ffffff;
}

.border--rounded {
  border-radius: 3px !important;
}

.border--capsule {
  border-radius: 100px;
}

.box-shadow {
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
}

/*-------------------------------------------------
    [ ## scrollbar ]
*/
html::-webkit-scrollbar {
  height: 20px;
  width: 6px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

.chat-container::-webkit-scrollbar {
  height: 20px;
  width: 6px;
  background: #f1f1f1;
  border-radius: 10px;
}

.chat-container::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

.chat-container::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

/*-------------------------------------------------
    [ ## scrollToTop ]
*/
.scroll {
  cursor: pointer;
  width: 70px;
  height: 70px;
  position: fixed;
  bottom: 40px;
  right: -80px;
  border-radius: 100%;
  background-image: radial-gradient(circle farthest-corner at 10% 20%, #1370d9 0%, #255e9f 81.3%);
  color: #fff;
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  -webkit-box-shadow: 0 0 5px 0px #888;
          box-shadow: 0 0 5px 0px #888;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.scroll i {
  margin-top: 10px;
  text-shadow: 0 0 2px #fff;
}

.scroll:hover i {
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 300ms;
          animation-duration: 300ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@-webkit-keyframes rotate {
  from {
    margin-top: 15px;
  }
  to {
    margin-top: 5px;
  }
}

@keyframes rotate {
  from {
    margin-top: 15px;
  }
  to {
    margin-top: 5px;
  }
}
.visible {
  right: 30px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  z-index: 999;
}

/*-------------------------------------------------
    [ ## Table ]
*/
.table-wrapper {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 10px 2px #1e1e1e;
          box-shadow: 0px 0px 10px 2px #1e1e1e;
}
@media only screen and (max-width: 420px) {
  .table-wrapper {
    padding: 15px;
  }
}

.custom-table {
  width: 100%;
  white-space: nowrap;
}
.custom-table thead tr {
  border-bottom: 1px solid #b0b0b0;
}
.custom-table thead tr th {
  border: none;
  font-weight: 600;
  color: #5c4ba0;
  font-size: 14px;
  padding: 12px 15px;
}
.custom-table tbody tr {
  border-bottom: 1px solid #424347;
}
.custom-table tbody tr td {
  border: none;
  font-weight: 500;
  color: #161313;
  font-size: 14px;
  padding: 12px 15px;
}
.custom-table tbody tr td button, .custom-table tbody tr td .btn--base {
  padding: 8px 25px;
  font-size: 14px;
  border-radius: 8px;
}
.custom-table tbody tr td .btn--success {
  padding: 7px 18px;
  font-size: 14px;
  border-radius: 8px;
  color: #ffffff;
}

.custom-table tbody tr td:last-child {
  text-align: end;
}

.custom-table thead tr th:last-child {
  text-align: end;
}

/*-------------------------------------------------
    [ ## pagination ]
*/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}
.pagination .page-item {
  text-align: center;
  padding: 3px;
}
.pagination .page-item a, .pagination .page-item span {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #424347;
  color: #530202;
  padding: 0;
  font-weight: 600;
  line-height: 30px;
  display: block;
  margin: 0;
}
.pagination .page-item.disabled span {
  border-radius: 8px;
  background: transparent;
  border: 1px solid #424347;
  color: #530202;
}
.pagination .page-item .page-link {
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagination .page-item.active .page-link, .pagination .page-item:hover .page-link {
  background: #5c4ba0;
  border-color: transparent;
  color: #ffffff;
}

/*-------------------------------------------------
    [ ## tab ]
*/
.nav-tabs {
  margin: 0;
  border: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
.nav-tabs .nav-link {
  padding: 30px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  background-color: #ffffff;
  border-radius: 15px;
  border: none;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav-tabs .nav-link .icon {
  width: 50px;
  height: 50px;
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-radius: 30%;
  color: #ffffff;
  margin: 0 auto;
  margin-bottom: 20px;
}
.nav-tabs .nav-link.active {
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border: none;
  color: #530202;
}
.nav-tabs .nav-link:nth-of-type(1n) .icon {
  background-color: #7367f0;
  -webkit-box-shadow: 0 2px 10px 0 rgba(115, 103, 240, 0.3);
          box-shadow: 0 2px 10px 0 rgba(115, 103, 240, 0.3);
}
.nav-tabs .nav-link:nth-of-type(2n) .icon {
  background-color: #28c76f;
  -webkit-box-shadow: 0 2px 10px 0 rgba(40, 199, 111, 0.3);
          box-shadow: 0 2px 10px 0 rgba(40, 199, 111, 0.3);
}
.nav-tabs .nav-link:nth-of-type(3n) .icon {
  background-color: #107BE9;
  -webkit-box-shadow: 0 2px 10px 0 rgba(16, 123, 233, 0.3);
          box-shadow: 0 2px 10px 0 rgba(16, 123, 233, 0.3);
}
.nav-tabs .nav-link:not(:last-child) {
  margin-right: 30px;
}
@media only screen and (max-width: 1199px) {
  .nav-tabs .nav-link:not(:last-child) {
    margin-right: 5px;
  }
}

/*-------------------------------------------------
    [ ## card ]
*/
.custom-card .card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.custom-card .card-body {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 10px 2px #1e1e1e;
          box-shadow: 0px 0px 10px 2px #1e1e1e;
}
@media only screen and (max-width: 575px) {
  .custom-card .card-body {
    padding: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .custom-card .card-body {
    padding: 10px;
  }
}
.custom-card button, .custom-card .btn--base {
  padding: 12px 30px;
}
@media only screen and (max-width: 375px) {
  .custom-card button, .custom-card .btn--base {
    padding: 12px 15px;
  }
}

/*-------------------------------------------------
    [ ## modal ]
*/
.modal-content {
  background: #ffffff;
  border-radius: 10px;
}
.modal-content .close {
  border-radius: 3px;
}

.modal-header {
  border: none;
}
.modal-header .btn-close {
  color: #ffffff;
  position: relative;
  opacity: 1;
}
.modal-header .btn-close i {
  position: absolute;
  top: 8px;
  left: 9px;
  color: white;
}

.modal-footer .btn {
  padding: 10px 30px;
  font-size: 14px;
  border-radius: 5px;
  color: #000000 !important;
  background-color: transparent;
  border: 1px solid #424347;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.modal-footer .btn:hover {
  color: #ff0404 !important;
  border: 1px solid #ff0404;
}

.nice-select .list::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #ffffff;
}

.nice-select .list::-webkit-scrollbar {
  width: 2px;
  background-color: #ffffff;
}

.nice-select .list::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #5c4ba0;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
  height: 20px;
  width: 3px;
  background: #f1f1f1;
  border-radius: 10px;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

/*-------------------------------------------------
    [ ## slider ]
*/
.swiper-notification {
  display: none;
}

.swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  z-index: 3;
}
.swiper-pagination .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #5c4ba0;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #5c4ba0;
  width: 25px;
  border-radius: 10px;
}

.slider-next, .slider-prev {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 12px;
  background-color: #ffffff;
  border: 1px solid #424347;
  border-radius: 50%;
  color: #161313;
  display: inline-block;
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  cursor: pointer;
  margin-top: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.slider-next:hover, .slider-prev:hover {
  background: #5c4ba0;
  color: #ffffff;
}

.slider-next {
  margin-left: 10px;
}

.table-container {
  overflow: hidden;
  margin-bottom: var(--space);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.table-container .items-table {
  width: 100%;
  border-collapse: collapse;
}
.table-container .items-table th {
  font-family: "Oxanium", sans-serif;
  padding: var(--space);
  text-align: left;
  font-weight: 600;
  color: #1f0202;
  border-bottom: 1px solid var(--color-border);
  background-color: #f9fafb;
}
.table-container .items-table td {
  padding: var(--space);
  border-bottom: 1px solid var(--color-border);
}
.table-container .items-table tr:last-child td {
  border-bottom: none;
}
.table-container .items-table tr:hover {
  background-color: #f9fafb;
}
.table-container .items-table .table-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.table-container .items-table .item-image {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  -o-object-fit: cover;
     object-fit: cover;
}
.table-container .items-table .code-cell {
  font-size: 0.9rem;
}
.table-container .items-table .hsn-code {
  font-size: 0.8rem;
  color: var(--color-text-light);
}
.table-container .items-table .status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
}
.table-container .items-table .status-active {
  background-color: #e6f4ea;
  color: #137333;
}
.table-container .items-table .status-out {
  background-color: #fce8e6;
  color: #c5221f;
}
.table-container .items-table .actions-menu {
  position: relative;
}
.table-container .items-table .actions-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius);
}
.table-container .items-table .actions-toggle:hover {
  background-color: var(--color-light);
}
.table-container .items-table .actions-dropdown {
  position: absolute;
  top: 70%;
  right: 0;
  background-color: #ffffff;
  border-radius: var(--radius);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  z-index: 10;
  min-width: 150px;
  display: none;
  border: 1px solid var(--color-border);
}
.table-container .items-table .actions-dropdown.show {
  display: block;
}
.table-container .items-table .action-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.table-container .items-table .action-item:hover {
  background-color: #5c4ba0;
  color: #ffffff;
}
@media (max-width: 992px) {
  .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-container .items-table {
    min-width: 900px;
  }
}

/*-------------------------------------------------
    [ ## Heading ]
*/
h1, h2, h3, h4, h5, h6 {
  clear: both;
  line-height: 1.3em;
  color: #530202;
  -webkit-font-smoothing: antialiased;
  font-family: "Oxanium", sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 50px;
}
@media only screen and (max-width: 1199px) {
  h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 375px) {
  h1 {
    font-size: 26px;
  }
}

h2 {
  font-size: 35px;
}
@media only screen and (max-width: 991px) {
  h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  font-size: 26px;
}
@media only screen and (max-width: 991px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-size: 20px;
}
@media only screen and (max-width: 991px) {
  h4 {
    font-size: 16px;
    font-weight: 500;
  }
}

h5 {
  font-size: 14px;
}
@media only screen and (max-width: 575px) {
  h5 {
    font-size: 14px;
    font-weight: 500;
  }
}

h6 {
  font-size: 12px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  color: inherit;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover {
  color: inherit;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Base Button */
.btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
@media only screen and (max-width: 767px) {
  .btn {
    font-size: 14px;
  }
}

/* Button Sizes */
.btn--lg {
  padding: 10px 20px;
  font-size: 1.125rem;
}

/* Solid Buttons */
.btn--primary {
  background-color: #5c4ba0;
  color: #ffffff;
}

.btn--secondary {
  background-color: #868e96;
}

.btn--success {
  background-color: #28c76f;
}

.btn--danger {
  background-color: #dc3545;
  color: #ffffff;
}

.btn--warning {
  background-color: #ff9f43;
}

.btn--info {
  background-color: #1e9f43;
}

.btn--dark {
  background-color: #10163A;
}

.btn--primary {
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.btn--primary:focus {
  -webkit-box-shadow: var(--shadow-primary-focus);
          box-shadow: var(--shadow-primary-focus);
}

/* Outline Buttons */
.btn--outline {
  background-color: transparent;
  border: 1px solid #5c4ba0 !important;
  color: #5c4ba0;
  padding: 10px 20px;
  border-radius: 4px;
}

.btn--outline:hover {
  background-color: #5c4ba0;
  color: #ffffff !important;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

/* Special Buttons */
.btn--base {
  background-color: #5c4ba0;
  border-radius: 5px;
  color: #ffffff;
  padding: 10px 30px;
  font-size: 15px;
  font-weight: 700;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.btn-cancel {
  background-color: #ea5455;
}

.btn-done {
  background-color: #28c76f;
}

/* Hover Effects */
.btn--primary:hover,
.btn--base:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.btn--primary:hover {
  background-color: #111049 !important;
  color: #ffffff !important;
  border: 1px solid #111049;
}

/* Badges */
.badge {
  position: relative;
  font-weight: 400;
  padding-left: 15px;
  background-color: transparent;
  color: #161313;
}
.badge::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Badge Colors */
.badge--primary::before {
  background-color: #7367f0;
}

.badge--secondary::before {
  background-color: #868e96;
}

.badge--success::before {
  background-color: #28c76f;
}

.badge--danger::before {
  background-color: #d63384;
}

.badge--warning::before {
  background-color: #ff9f43;
}

.badge--info::before {
  background-color: #1e9ff2;
}

.badge--dark::before {
  background-color: #10163A;
}

/* Border Colors */
.border--primary {
  border: 1px solid #7367f0;
}

.border--secondary {
  border: 1px solid #868e96;
}

.border--success {
  border: 1px solid #28c76f;
}

.border--danger {
  border: 1px solid #dd1b1b;
}

.border--warning {
  border: 1px solid #ff9f43;
}

.border--info {
  border: 1px solid #1e9ff2;
}

.border--dark {
  border: 1px solid #10163A;
}

/*-------------------------------------------------
    [ ## Fields ]
*/
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus {
  outline: none;
}

input, textarea {
  padding: 12px 20px;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: rgba(111, 108, 108, 0.518);
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(111, 108, 108, 0.518);
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: rgba(111, 108, 108, 0.518);
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: rgba(111, 108, 108, 0.518);
}
input::placeholder, textarea::placeholder {
  color: rgba(111, 108, 108, 0.518);
}

textarea {
  display: block;
  width: 100%;
  display: block;
  min-height: 118px;
}

input,
select,
textarea {
  border: 1px solid #424347;
  vertical-align: baseline;
  font-size: 100%;
  color: #161313;
}
input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: rgba(22, 19, 19, 0.6) !important;
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(22, 19, 19, 0.6) !important;
}
input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: rgba(22, 19, 19, 0.6) !important;
}
input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: rgba(22, 19, 19, 0.6) !important;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: rgba(22, 19, 19, 0.6) !important;
}

label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
label span {
  color: #5c4ba0;
}

/*-------------------------------------------------
    [ ## Forms ]
*/
select {
  outline: none;
  cursor: pointer;
}

option {
  background-color: #ffffff;
}

.input-group {
  margin-bottom: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.input-group .nice-select {
  border: none !important;
  width: auto;
  padding: 0 70px 0 15px;
  background-color: #5c4ba0 !important;
  color: #ffffff !important;
  line-height: 50px;
}
.input-group .nice-select::after {
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.form-control:disabled, .form-control[readonly] {
  color: #ffffff;
}

.input-group-append, .input-group-prepend {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.input-group-append input {
  border-radius: 5px 0 0 5px;
  border: 1px solid #424347;
  border-right: none;
  background-color: #ffffff;
}

.input-group-text {
  border: none;
  font-size: 16px;
  background: #5c4ba0;
  color: #ffffff;
  height: 50px;
  border-radius: 0 15px 15px 0;
  font-weight: 500;
}

.custom-check-group {
  display: block;
  margin-bottom: 12px;
}
.custom-check-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.custom-check-group input:checked + label::before {
  background: #5c4ba0;
  border: 1px solid #424347;
}
.custom-check-group input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.custom-check-group label {
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.custom-check-group label::before {
  content: "";
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #ffffff;
  border: 1px solid #424347;
  border-radius: 5px;
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 8px;
  top: -2px;
}

.form-group {
  margin-bottom: 15px;
  position: relative;
}

.form-control {
  border: 1px solid var(border-color);
  font-size: 14px;
  height: 50px;
  color: #000000;
}
.form-control:focus {
  color: #161313;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #b6b6b6;
}
.form-control::-webkit-input-placeholder {
  color: rgba(22, 19, 19, 0.05);
}
.form-control::-moz-placeholder {
  color: rgba(22, 19, 19, 0.05);
}
.form-control:-ms-input-placeholder {
  color: rgba(22, 19, 19, 0.05);
}
.form-control::-ms-input-placeholder {
  color: rgba(22, 19, 19, 0.05);
}
.form-control::placeholder {
  color: rgba(22, 19, 19, 0.05);
}

.form--control {
  background-color: transparent;
  border: 1px solid rgba(66, 67, 71, 0.2);
  height: 50px;
  font-size: 14px;
  color: #000000;
  border-radius: 5px;
  padding: 10px 25px;
  width: 100%;
}
.form--control:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  color: #5c4ba0;
  border: 1px solid #5c4ba0;
  background-color: transparent;
}
.form--control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form--control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form--control:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form--control::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form--control::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form--control:disabled {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.fileholder.active {
  border: 2px dashed #5c4ba0;
}

.fileholder-drag-drop-title {
  color: #ffffff;
}

.fileholder-drag-drop-icon svg path:nth-child(2) {
  fill: #5a5278;
}

.fileholder-basic-loading-circle.one {
  border: 2px solid #5a5278;
}

.fileholder-basic-loading-circle.two {
  border: 2px solid #5a5278;
}

.fileholder-basic-loading-circle.three {
  border: 2px solid #5a5278;
}

.file-holder-wrapper {
  width: 100%;
}
.file-holder-wrapper input {
  border: 1px solid #424347 !important;
  border-radius: 5px !important;
}

.fileholder.active {
  border: 2px dashed #5c4ba0;
}

.fileholder-drag-drop-title {
  color: #161313;
}

.fileholder-drag-drop-icon svg path:nth-child(2) {
  fill: #5c4ba0;
}

.fileholder-basic-loading-circle.one {
  border: 2px solid #5c4ba0;
}

.fileholder-basic-loading-circle.two {
  border: 2px solid #5c4ba0;
}

.fileholder-basic-loading-circle.three {
  border: 2px solid #5c4ba0;
}

.radio-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: -3px -7px;
}
.radio-wrapper .radio-item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 3px 7px;
}
.radio-wrapper .radio-item img {
  width: 60px;
  margin-right: 5px;
}

.radio-item [type=radio]:checked {
  position: absolute;
  left: -9999px;
}

.radio-item [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.radio-item [type=radio]:checked + label {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #5c4ba0;
  border-radius: 8px;
  padding: 20px 25px;
  display: inline-block;
  color: #ffffff;
  width: 100%;
  text-align: center;
}

.radio-item [type=radio]:not(:checked) + label {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.257);
  border-radius: 8px;
  padding: 20px 25px;
  display: inline-block;
  color: #161313;
  width: 100%;
  text-align: center;
}

.nice-select {
  background-color: transparent;
  height: 50px;
  line-height: 50px;
  border: 1px solid var(border-color) !important;
  float: unset;
  padding: 0 25px;
  color: #161313 !important;
}
.nice-select .option:hover {
  color: #ffffff;
}
.nice-select .selected {
  color: #ffffff !important;
}
.nice-select .list {
  background-color: #ffffff;
  color: #161313;
  left: auto;
  right: 0;
  width: 100%;
  height: 150px;
  overflow-y: scroll;
  z-index: 9;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background: #5c4ba0;
}

.select2-container {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  width: 100%;
}

.selection {
  width: 100%;
}

.select2-selection--single {
  width: 100%;
  height: 50px !important;
  outline: none;
  background-color: #ffffff !important;
  font-size: 14px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 10px 10px;
  border-radius: 5px !important;
  vertical-align: top;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.select2-selection--single span {
  margin: 0;
  width: 100%;
  color: #161313;
  line-height: initial;
  font-weight: 600;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: auto;
  position: absolute;
  top: 25px;
  right: 7px;
  width: 20px;
}

.select2-search {
  background-color: #ffffff;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: #5c4ba0;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ffffff;
  color: #ffffff;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #424347 transparent transparent transparent;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  background-color: rgba(0, 120, 207, 0.3607843137);
}

.select2-results__option--selectable {
  color: #530202;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #161313 transparent;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #161313 !important;
}

.select2-container--default .select2-results > .select2-results__options {
  background-color: rgba(0, 120, 207, 0.3607843137) !important;
}

.submit-btn {
  padding: 12px 20px;
  color: #ffffff;
  background: #ffffff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
  font-family: "Oxanium", sans-serif;
}
@media only screen and (max-width: 991px) {
  .submit-btn {
    padding: 10px 20px;
  }
}

input:focus {
  border: 1px solid rgba(255, 255, 255, 0.396);
}

.forgot-password .forgot-password-area {
  background-color: #ffffff;
  -webkit-box-shadow: 2px 2px 2px 2px #1e1e1e;
          box-shadow: 2px 2px 2px 2px #1e1e1e;
  padding: 40px;
  border-radius: 10px;
}
@media only screen and (max-width: 575px) {
  .forgot-password .forgot-password-area {
    padding: 20px;
  }
}

.verification-otp .verification-otp-area {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 10px 35px 0px #1e1e1e;
          box-shadow: 0px 10px 35px 0px #1e1e1e;
  border-radius: 10px;
  padding: 30px;
}
@media only screen and (max-width: 767px) {
  .verification-otp .verification-otp-area {
    padding: 20px;
  }
}
.verification-otp .verification-otp-area .verification-otp-content p {
  font-size: 14px;
}
.verification-otp .verification-otp-area .account-item a {
  color: #5c4ba0;
}

.new-password .new-password-area {
  background-color: #ffffff;
  -webkit-box-shadow: 2px 2px 2px 2px #1e1e1e;
          box-shadow: 2px 2px 2px 2px #1e1e1e;
  padding: 40px;
  border-radius: 10px;
}

.otp-verification .account-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 375px) {
  .otp-verification .account-form .form-group {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.otp-verification .account-form .form-group input {
  margin: 10px;
  border-radius: 3px;
  background-color: #ffffff;
  border: 1px solid #424347;
}
@media only screen and (max-width: 520px) {
  .otp-verification .account-form .form-group input {
    margin: 3px;
  }
}

.otp {
  width: 55px;
  height: 50px;
  text-align: center;
  padding: 0;
  border-radius: 5px;
}
@media only screen and (max-width: 520px) {
  .otp {
    width: 45px;
    height: 45px;
  }
}
@media only screen and (max-width: 375px) {
  .otp {
    width: 40px;
    height: 40px;
  }
}

.otp:focus {
  border: 2px solid #5c4ba0;
}

.otp.required {
  border: 3px solid #ea5455;
}

#time {
  color: #ea5455;
}

.show_hide_password {
  position: relative;
}

.show_hide_password .show-pass {
  position: absolute;
  top: 46px;
  right: 30px;
  font-size: 14px;
  cursor: pointer;
}

.show_hide_password .show-pass.two {
  top: 50px;
}

.account-form .show_hide_password {
  position: relative;
}

.account-form .show_hide_password .show-pass {
  position: absolute !important;
  top: 16px !important;
  right: 30px;
  font-size: 14px;
}

.account-form .show_hide_password-2 {
  position: relative;
}

.account-form .show_hide_password-2 .show-pass {
  position: absolute;
  top: 16px;
  right: 30px;
  font-size: 14px;
}

.show_hide_password input {
  padding-right: 48px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.checkbox-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 576px) {
  .checkbox-wrapper {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.checkbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.checkbox-item input[type=checkbox] {
  width: 20px;
  height: 18px;
  border: 2px solid var(--color-border);
  border-radius: 10px !important;
  background: #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.checkbox-item input[type=checkbox]:checked {
  background: #5c4ba0 !important;
  border-color: #5c4ba0;
  position: relative;
}
.checkbox-item input[type=radio] {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 10px !important;
  background: #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.checkbox-item input[type=radio]:checked {
  background: #5c4ba0 !important;
  border-color: #5c4ba0;
  position: relative;
}
.checkbox-item label {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .checkbox-item label {
    font-size: 13px;
  }
}

/*-------------------------------------------------
    [ ## Overlay Element ]
*/
.bg_img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat !important;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-overlay-base {
  position: relative;
  z-index: 2;
}

.bg-overlay-base:after {
  content: "";
  position: absolute;
  background-color: #000000;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.bg-overlay {
  position: relative;
  z-index: 2;
}

.bg-overlay:after {
  content: "";
  position: absolute;
  background-color: #000000;
  opacity: 0.2;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background-color: transparent;
  content: "";
  z-index: 5;
  left: 0;
  top: 0;
  visibility: hidden;
}

@media only screen and (max-width: 1199px) {
  .body-overlay.active {
    visibility: visible;
  }
}

@media only screen and (max-width: 1199px) {
  .body-overlay.show {
    visibility: visible;
    opacity: 1;
  }
}

.body-overlay.view {
  z-index: 5;
  visibility: visible;
  opacity: 1;
}

.card-img-overlay {
  position: relative;
  z-index: 2;
}

.card-img-overlay:after {
  content: "";
  position: absolute;
  background-color: #000000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.account-overlay {
  position: relative;
  z-index: 2;
}

.account-overlay:after {
  content: "";
  position: absolute;
  background-color: #000000;
  opacity: 0.2;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.bg-overlay-banner {
  position: relative;
  z-index: 2;
}

.bg-overlay-banner:after {
  content: "";
  position: absolute;
  background-color: #000000;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.banner-image img {
  -webkit-animation: float 5s ease-in-out infinite;
          animation: float 5s ease-in-out infinite;
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Header ]
--------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding: 0 var(--space-md);
}
header .btn--outline {
  color: #ffffff;
}
header.scrolled {
  background-color: rgb(234, 239, 239);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: 0 var(--space-md);
}
header.scrolled .btn--outline {
  color: rgb(0, 0, 0);
}

.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-default, .logo-scrolled {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Oxanium", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.logo-default img, .logo-scrolled img {
  width: 100px;
}
.logo-default {
  color: #ffffff;
}
.logo-default span {
  color: var(--color-light);
}
.logo-scrolled {
  display: none;
  color: #5c4ba0;
}
.logo-scrolled span {
  color: #111049;
}

header.scrolled .logo-default {
  display: none;
}
header.scrolled .logo-scrolled {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.desktop-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.desktop-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space-xl);
}
.desktop-nav a {
  color: #ffffff;
  font-weight: 500;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}
.desktop-nav a:hover {
  color: var(--color-light);
}
.desktop-nav a:hover::after {
  width: 100%;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-light);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

header.scrolled .desktop-nav a {
  color: #161313;
}
header.scrolled .desktop-nav a:hover {
  color: #5c4ba0;
}
header.scrolled .desktop-nav a::after {
  background-color: #5c4ba0;
}

.header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space);
}

.mobile-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
.mobile-toggle span {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 2px;
}

header.scrolled .mobile-toggle span {
  background-color: #161313;
}

.mobile-toggle.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(8px, 8px);
          transform: rotate(45deg) translate(8px, 8px);
  background-color: #5c4ba0;
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(7px, -7px);
          transform: rotate(-45deg) translate(7px, -7px);
  background-color: #5c4ba0;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #3d325f 100%);
  -webkit-box-shadow: -5px 0 25px rgba(17, 16, 73, 0.15);
          box-shadow: -5px 0 25px rgba(17, 16, 73, 0.15);
  z-index: 9999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding: var(--space-2xl) var(--space-lg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  border-radius: 30px 0 0 30px;
}
.side-menu.active {
  right: 0;
}

.side-menu-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space);
}
.side-menu-header .logo {
  margin-left: 50px;
}
.side-menu-header .logo img {
  width: 100px;
}

.close-menu {
  background: none;
  border: none;
  font-size: 24px;
  color: #161313;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.close-menu:hover {
  color: #5c4ba0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.side-menu nav ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.side-menu nav li {
  border-bottom: 1px solid var(--color-border);
}
.side-menu nav a {
  color: #161313;
  font-size: 18px;
  display: block;
  padding: var(--space) 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}
.side-menu nav a:hover {
  color: #5c4ba0;
  padding-left: var(--space);
}
.side-menu nav a:hover::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #5c4ba0;
}

.side-menu-actions {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space);
  padding: var(--space-xl) 0;
}
.side-menu-actions .btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  .mobile-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-actions {
    display: none;
  }
}
/*--------------------------------------------------------------
    [ ## Introduction ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Footer ]
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, #5c4ba0 0%, #111049 100%);
  color: #ffffff;
  padding: var(--space-xl) 0 var(--space-md);
  position: relative;
  overflow: hidden;
}
.footer::before, .footer::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  z-index: 0;
  -webkit-animation: float 15s infinite ease-in-out;
          animation: float 15s infinite ease-in-out;
}
.footer::before {
  top: -150px;
  left: -150px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.footer::after {
  bottom: -100px;
  right: -100px;
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
}
.footer .container {
  position: relative;
  z-index: 1;
}
.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: var(--space);
  font-weight: 600;
  position: relative;
  padding-bottom: var(--space-xs);
  color: wheat;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 2px;
  background: #ffffff;
}
.footer-col ul {
  list-style: none;
  padding-left: 0;
}
.footer-col ul li {
  margin-bottom: var(--space-sm);
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
}
.footer-col ul li a:hover {
  color: #ffffff;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: var(--space);
  max-width: 300px;
}
.footer-logo {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /* filter: brightness(0) invert(1); it can make logo white   */
  max-width: 160px;
  height: auto;
}
.footer-logo:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
          filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}
.footer .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space);
}
.footer .social-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer .social-links a:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
.footer .social-links a:hover i {
  color: #ffffff;
}
.footer .social-links a:nth-child(1):hover {
  background: #1DA1F2;
}
.footer .social-links a:nth-child(2):hover {
  background: #333;
}
.footer .social-links a:nth-child(3):hover {
  background: #0077B5;
}
.footer .social-links a:nth-child(4):hover {
  background: #4267B2;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 20px;
}
.footer .newsletter-form {
  margin-top: var(--space);
}
.footer .newsletter-form .newsletter-input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: var(--space-sm);
}
.footer .newsletter-form .newsletter-input-group .form-control {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  padding: var(--space-sm) var(--space);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: var(--radius-full) 0 0 var(--radius-full);
}
.footer .newsletter-form .newsletter-input-group .form-control:focus {
  background: rgba(255, 255, 255, 0.25);
  -webkit-box-shadow: var(--shadow-primary-focus);
          box-shadow: var(--shadow-primary-focus);
  color: #ffffff;
}
.footer .newsletter-form .newsletter-input-group .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer .newsletter-form .newsletter-input-group .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer .newsletter-form .newsletter-input-group .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer .newsletter-form .newsletter-input-group .form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer .newsletter-form .newsletter-input-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer .newsletter-form .newsletter-input-group .btn-footer {
  background: #ffffff;
  color: #5c4ba0;
  border: none;
  font-weight: 600;
  padding: var(--space-sm) var(--space);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  white-space: nowrap;
}
.footer .newsletter-form .newsletter-input-group .btn-footer:hover {
  background: var(--color-light);
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .footer .footer-col {
    margin-bottom: var(--space-lg);
  }
  .footer .company-legal-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer .company-legal-row .footer-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 576px) {
  .footer .company-legal-row .footer-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .footer .social-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
  33% {
    -webkit-transform: translate(30px, -30px) scale(1.1);
            transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    -webkit-transform: translate(-20px, 20px) scale(0.9);
            transform: translate(-20px, 20px) scale(0.9);
  }
}
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
.mb-20 {
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## team ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Testimonial ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Sections ]
--------------------------------------------------------------*/
/* ================================
   BASE STYLES 
   ================================ */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden !important; /* Prevent horizontal scroll */
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #530202;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto !important;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}
.section-subtitle {
  font-size: 18px;
  padding: 0px;
  text-align: center;
  color: #1f0202;
  display: block;
  opacity: 0.8;
  margin-bottom: 40px;
}

/* Container responsive adjustments */
@media (min-width: 2100px) {
  .container {
    max-width: 1400px !important;
  }
}
@media (min-width: 2500px) {
  .container {
    max-width: 1800px;
  }
}
@media (min-width: 3000px) {
  .container {
    max-width: 2000px;
  }
}
@media (min-width: 3400px) {
  .container {
    max-width: 2200px;
  }
}
/* Banner Styles */
.banner {
  position: relative;
  height: 112vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(135deg, #111049 0%, #5c4ba0 100%);
  overflow: hidden;
  padding-top: var(--header-height);
}
.banner .btn--outline {
  color: #ffffff;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: center bottom;
  opacity: 0.5;
}

.banner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .banner-container {
    margin-top: -100px;
  }
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 50%;
  padding-right: var(--space-xl);
  color: #ffffff;
}
.banner-content span {
  color: wheat;
  display: inline-block;
  margin-left: 3px;
}

.banner-image {
  width: 50%;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner-image img {
  max-width: 100%;
  border-radius: var(--radius-xl);
  -webkit-box-shadow: var(--shadow-xl);
          box-shadow: var(--shadow-xl);
  -webkit-animation: float 5s ease-in-out infinite;
          animation: float 5s ease-in-out infinite;
}

.banner h1 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner p {
  font-size: 1.2rem;
  margin-bottom: var(--space-xl);
  opacity: 0.9;
}

.banner-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
  :root {
    --header-height: 60px;
  }
  .desktop-nav {
    display: none;
  }
  .header-actions {
    display: none;
  }
  .mobile-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .banner-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .banner-content, .banner-image {
    width: 100%;
    padding: 0;
  }
  .banner-content {
    margin-bottom: var(--space-xl);
  }
  .banner h1 {
    font-size: 2.5rem;
  }
  .banner p {
    font-size: 1.1rem;
  }
  .banner-actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 768px) {
  .mobile-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .banner h1 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .banner h1 {
    font-size: 1.8rem;
  }
  .banner-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 250px;
  }
  .side-menu {
    width: 280px;
    right: -280px;
  }
  .section-header h2 {
    font-size: 2rem;
  }
}
.section-manager {
  padding: 50px 0px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-subtitle {
  display: inline-block;
  font-family: "Oxanium", sans-serif;
  font-size: 12px;
  font-weight: 600 !important;
  color: #111049;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 15px;
  border: 2px solid #5c4ba0;
  border-radius: 10px;
  margin-bottom: 10px !important;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.section-subtitle .caret {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: black;
  opacity: 0.7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.section-subtitle .caret-left {
  left: -15px;
}

.section-subtitle .caret-right {
  right: -15px;
}

.section-subtitle:hover {
  background-color: #5c4ba0;
  color: #ffffff;
}

.section-subtitle:hover .caret {
  opacity: 0;
}

.section-title {
  font-family: "Oxanium", sans-serif;
  font-size: 30px;
  color: #530202;
  margin-bottom: 1rem;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .section-subtitle .caret {
    display: none;
  }
}
/* Ratings Section */
.ratings-section {
  margin-top: var(--space-xl);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

.ratings-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-md);
}

.rating-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  color: #FFD700;
  font-size: 1.2rem;
}

.rating-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.rating-value {
  font-weight: 700;
  font-size: 1.1rem;
}

.rating-count {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Global Reach Badge */
.global-badge {
  position: absolute;
  top: -40px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-sm);
  z-index: 3;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.global-img img {
  max-width: 20px;
  -webkit-animation: none !important;
          animation: none !important;
}

.global-text {
  font-weight: 600;
  color: wheat;
  font-size: 0.9rem;
}

.global-number {
  font-weight: 800;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .ratings-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .global-badge {
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 768px) {
  .global-badge {
    padding: 8px 16px;
  }
  .global-text {
    font-size: 0.8rem;
  }
}
.features {
  position: relative;
  background: #ffffff;
  /* Responsive Design */
}
.features .features-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}
.features .feature-card {
  background: rgb(244, 242, 255);
  border-radius: 12px;
  padding: 30px 20px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.features .feature-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}
.features .feature-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
}
.features .feature-icon {
  width: 60px;
  height: 60px;
  background: var(--color-light);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 10px;
}
.features .feature-card:hover .feature-icon {
  background: #5c4ba0;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
.features .feature-card:hover .feature-icon i {
  color: #ffffff;
}
.features .feature-icon i {
  font-size: 1.8rem;
  color: #5c4ba0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.features .feature-title {
  font-family: "Oxanium", sans-serif;
  font-size: 20px;
  color: #111049;
  margin: 0;
}
.features .feature-description {
  color: var(--color-text-light);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .features .features-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.trusted-section-wrapper {
  /* ==== Header ==== */
  /* ==== Logos ==== */
  /* Sequential animation delay */
  /* Special Hover Effects */
  /* Background circles (still kept) */
  /* Animations */
  /* Responsive adjustments */
}
@media (min-width: 992px) {
  .trusted-section-wrapper {
    margin-top: -100px;
  }
}
@media (max-width: 992px) {
  .trusted-section-wrapper {
    margin-top: -40px;
  }
}
.trusted-section-wrapper .trusted-section {
  min-height: 300px;
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgb(235, 239, 247);
  z-index: 1;
}
.trusted-section-wrapper .trusted-section::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 20px;
  background: -webkit-gradient(linear, right top, left top, from(#6a11cb), color-stop(#2575fc), color-stop(#ff9a9e), to(#fad0c4));
  background: linear-gradient(270deg, #6a11cb, #2575fc, #ff9a9e, #fad0c4);
  background-size: 600% 600%;
  -webkit-animation: borderMove 6s linear infinite;
          animation: borderMove 6s linear infinite;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
@-webkit-keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.trusted-section-wrapper .section-header {
  text-align: center;
  margin-bottom: 5px;
  -webkit-animation: fadeIn 1s ease-out;
          animation: fadeIn 1s ease-out;
}
.trusted-section-wrapper .section-tagline {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}
.trusted-section-wrapper .logos-container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
  height: 200px !important;
}
.trusted-section-wrapper .logo-item {
  background: #fff;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  -webkit-transform: translateY(40px) scale(0.95) rotateX(15deg);
          transform: translateY(40px) scale(0.95) rotateX(15deg);
  -webkit-animation: cardEnter 0.8s ease forwards;
          animation: cardEnter 0.8s ease forwards;
}
.trusted-section-wrapper .logo-item:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.trusted-section-wrapper .logo-item:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.trusted-section-wrapper .logo-item:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.trusted-section-wrapper .logo-item:nth-child(4) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.trusted-section-wrapper .logo-item:nth-child(5) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.trusted-section-wrapper .logo-item:nth-child(6) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
@-webkit-keyframes cardEnter {
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1) rotateX(0deg);
            transform: translateY(0) scale(1) rotateX(0deg);
  }
}
@keyframes cardEnter {
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1) rotateX(0deg);
            transform: translateY(0) scale(1) rotateX(0deg);
  }
}
.trusted-section-wrapper .logo-item:hover {
  -webkit-transform: translateY(-8px) scale(1.05);
          transform: translateY(-8px) scale(1.05);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.trusted-section-wrapper .logo-item:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  opacity: 0.15;
  -webkit-animation: pulseGlow 1.5s infinite;
          animation: pulseGlow 1.5s infinite;
  z-index: -1;
}
@-webkit-keyframes pulseGlow {
  0% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.35;
  }
  100% {
    opacity: 0.15;
  }
}
@keyframes pulseGlow {
  0% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.35;
  }
  100% {
    opacity: 0.15;
  }
}
.trusted-section-wrapper .logo-img {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  margin-bottom: 15px;
  font-size: 24px;
  color: #3498db;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.trusted-section-wrapper .logo-item:hover .logo-img {
  -webkit-transform: rotate(15deg) scale(1.2);
          transform: rotate(15deg) scale(1.2);
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
}
.trusted-section-wrapper .logo-name {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
}
.trusted-section-wrapper .background-element {
  position: absolute;
  z-index: 0;
}
.trusted-section-wrapper .bg-circle-1 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #271040 0%, #2575fc 100%);
  opacity: 0.1;
  top: -40px;
  right: -40px;
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}
.trusted-section-wrapper .bg-circle-2 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  opacity: 0.1;
  bottom: 20px;
  left: 40px;
  -webkit-animation: float 8s ease-in-out infinite alternate;
          animation: float 8s ease-in-out infinite alternate;
}
@keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .trusted-section-wrapper .logos-container {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .trusted-section-wrapper .trusted-section {
    height: auto;
    min-height: 400px;
  }
  .trusted-section-wrapper .logos-container {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .trusted-section-wrapper .section-heading {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .trusted-section-wrapper .section-heading {
    font-size: 1.5rem;
  }
  .trusted-section-wrapper .section-tagline {
    font-size: 0.95rem;
  }
}

.how-it-works {
  background: #eff4ff;
  /* Image section */
  /* Content section */
  /* Process items */
  /* Animations */
  /* Responsive design */
}
.how-it-works .pos-how-it-works {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: var(--space-xl);
}
.how-it-works .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--space-xl);
}
.how-it-works .image-section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.how-it-works .image-section .image-container {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border: 6px solid var(--color-light);
  position: relative;
}
.how-it-works .image-section .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.how-it-works .image-section .image-top-right, .how-it-works .image-section .image-bottom-left {
  position: absolute;
  background: #ffffff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  max-width: 180px;
  z-index: 10;
}
.how-it-works .image-section .image-top-right i, .how-it-works .image-section .image-bottom-left i {
  color: #5c4ba0;
  margin-right: var(--space-xs);
}
.how-it-works .image-section .image-top-right {
  top: 10%;
  right: 5%;
  -webkit-animation: float 4s ease-in-out infinite;
          animation: float 4s ease-in-out infinite;
}
.how-it-works .image-section .image-bottom-left {
  bottom: 10%;
  left: 5%;
  -webkit-animation: float 4s ease-in-out infinite 1s;
          animation: float 4s ease-in-out infinite 1s;
}
.how-it-works .content-section {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  min-width: 300px;
}
.how-it-works .process-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: #f8fbff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  opacity: 0;
  border: 1px solid var(--color-border);
  /* Different colors for each item using individual classes */
}
.how-it-works .process-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
.how-it-works .process-item .icon-container {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: var(--radius-lg);
  margin-right: var(--space-md);
  font-size: 20px;
  color: #ffffff;
}
.how-it-works .process-item .process-content h3 {
  font-family: "Oxanium", sans-serif;
  font-size: 18px;
  margin-bottom: var(--space-xs);
  color: #530202;
}
.how-it-works .process-item .process-content p {
  color: var(--color-text-light);
  line-height: 1.5;
  font-size: 14px;
}
.how-it-works .process-item.item-1 .icon-container {
  background: linear-gradient(135deg, #5c4ba0, #111049);
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
@media (min-width: 992px) {
  .how-it-works .process-item.item-2 {
    margin-left: 40px;
  }
}
.how-it-works .process-item.item-2 .icon-container {
  background: linear-gradient(135deg, #FF512F, #DD2476);
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.how-it-works .process-item.item-3 .icon-container {
  background: linear-gradient(135deg, #f46b45, #eea849);
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@media (min-width: 992px) {
  .how-it-works .process-item.item-4 {
    margin-left: 40px;
  }
}
.how-it-works .process-item.item-4 .icon-container {
  background: linear-gradient(135deg, #11998e, #38ef7d);
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.how-it-works .process-item.item-5 .icon-container {
  background: linear-gradient(135deg, #8E2DE2, #4A00E0);
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes float {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@media (max-width: 768px) {
  .how-it-works .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .how-it-works .image-section .image-container {
    width: 220px;
    height: 220px;
  }
  .how-it-works .image-section .image-top-right, .how-it-works .image-section .image-bottom-left {
    max-width: 140px;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .how-it-works .process-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .how-it-works .process-item .icon-container {
    margin-right: 0;
    margin-bottom: var(--space-sm);
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .how-it-works .pos-how-it-works {
    padding: var(--space-lg);
  }
}

.testimonial-section {
  padding: var(--space-xl) var(--space);
  background: linear-gradient(-135deg, #f6f0ff 0%, #ffffff 65%, #2b1975 45%, #5c4ba0 100%);
}

.brands-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--space-xl);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

.brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: var(--space-sm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .brand {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
.brand:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.brand--active {
  background-color: var(--color-light);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
.brand__icon {
  font-size: 24px;
  margin-bottom: var(--space-xs);
  color: #5c4ba0;
}
.brand__name {
  font-weight: 600;
  color: #111049;
  font-family: "Oxanium", sans-serif;
}

.testimonial-content {
  background-color: #ffffff;
  border-radius: var(--radius-container);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
  padding: var(--space-xl);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-xl);
}
@media (min-width: 1200px) {
  .testimonial-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .testimonial-content .testimonial-person {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .testimonial-content .testimonial-review {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    padding: 0 var(--space-xl);
  }
  .testimonial-content .testimonial-stats {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.testimonial-person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.testimonial-person__image {
  width: 600px;
  height: 300px;
  border-radius: 10%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: var(--space);
  border: 4px solid var(--color-light);
}
@media (max-width: 768px) {
  .testimonial-person__image {
    width: 120px;
    height: 120px;
  }
}
.testimonial-person__name {
  font-family: "Oxanium", sans-serif;
  color: #530202;
  font-size: 20px;
  margin-bottom: -5px;
}
.testimonial-person__role {
  color: #5c4ba0;
  font-weight: 500;
}

.testimonial-review {
  padding: var(--space-lg) 0;
}
.testimonial-review .providing-services .service-heading {
  color: rgb(140, 7, 7);
}
.testimonial-review .providing-services img {
  width: 50px !important;
}

.testimonial-stars {
  color: #340202;
  font-size: 1.5rem;
  margin-bottom: var(--space);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.testimonial-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-md);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 992px) {
  .testimonial-stats {
    min-width: 250px;
  }
  .testimonial-stats .stat {
    min-height: 150px;
  }
}

.stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: var(--space-md);
  background-color: rgb(255, 255, 255);
  border-radius: var(--radius-xl);
}
.stat__value {
  font-family: "Oxanium", sans-serif;
  font-size: 20px;
  color: #5c4ba0;
  margin-bottom: var(--space-xs);
}
.stat__label {
  color: #111049;
  font-weight: 500;
}

.testimonial {
  display: none;
}

.testimonial--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-xl);
  border: 1px solid var(--color-border);
  padding: 15px;
  border-radius: 5px;
  background: var(--color-light);
}
@media (min-width: 1200px) {
  .testimonial--active {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (max-width: 768px) {
  .testimonial--active {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .brands-container {
    gap: 5px;
  }
  .brand__icon {
    font-size: 2rem;
  }
  .testimonial--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.pricing-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
  /* Toggle switch */
  /* Pricing cards */
  /* Animation classes */
}
.pricing-section .pricing-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  gap: var(--space-sm);
}
.pricing-section .toggle-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-light);
}
.pricing-section .toggle-label.active {
  color: #5c4ba0;
}
.pricing-section .toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
}
.pricing-section .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.pricing-section .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-border);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: var(--radius-full);
}
.pricing-section .toggle-slider::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background-color: #ffffff;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: var(--radius-full);
}
.pricing-section input:checked + .toggle-slider {
  background-color: #5c4ba0;
}
.pricing-section input:checked + .toggle-slider::before {
  -webkit-transform: translateX(28px);
          transform: translateX(28px);
}
.pricing-section .pricing-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  margin-bottom: 10px;
  border: 1px solid #111049;
}
.pricing-section .pricing-card.pricing-plan-fadein {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.pricing-section .pricing-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}
.pricing-section .pricing-card.popular::before {
  content: "Most Popular";
  position: absolute;
  top: 25px;
  right: 0;
  background: #5c4ba0;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 8px;
  border-bottom-left-radius: var(--radius);
  z-index: 2;
  border-radius: 10px 0 0 10px;
}
.pricing-section .plan-header {
  background: linear-gradient(135deg, #5c4ba0 0%, #111049 100%);
  color: #ffffff;
  padding: var(--space-lg);
  text-align: center;
  border-radius: 0 0 50px 50px;
}
.pricing-section .plan-name {
  font-family: "Oxanium", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
  color: wheat !important;
}
.pricing-section .plan-description {
  font-size: 0.95rem;
  opacity: 0.9;
}
.pricing-section .plan-price {
  margin: 0px;
}
.pricing-section .price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.pricing-section .price-currency {
  font-size: 1.5rem;
  margin-right: 2px;
  margin-top: 4px;
}
.pricing-section .price-interval {
  font-size: 0.875rem;
  margin-left: var(--space-xs);
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: 4px;
  opacity: 0.9;
}
.pricing-section .price-note {
  font-size: 0.875rem;
  margin-top: var(--space-xs);
  opacity: 0.8;
}
.pricing-section .plan-content {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.pricing-section .plan-features {
  margin: 10px 30px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.pricing-section .feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}
.pricing-section .feature-icon {
  color: #ffffff;
  margin-right: var(--space-sm);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 3.5px 10px;
  background: #5c4ba0;
  border-radius: 50%;
  font-weight: 700;
}
.pricing-section .plan-button-container {
  margin-top: auto;
}
@media (max-width: 768px) {
  .pricing-section .plan-button-container {
    margin: 0 30px;
  }
}
.pricing-section .pricing-plan-fadein {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.pricing-section .pricing-plan-fadein.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.faq-section {
  background: #ffffff;
  overflow: hidden;
}
.faq-section .section-header {
  margin-bottom: 0px;
}
.faq-section .faq-content {
  padding: var(--space-xl);
}
.faq-section .faq-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq-section .faq-image img {
  max-width: 100%;
  max-height: 630px;
  border-radius: var(--radius-lg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq-section .faq-image img:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.faq-section .faq-item {
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: white;
  border-radius: var(--radius-lg);
  padding: 10px 20px;
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
}
.faq-section .faq-item:hover {
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.faq-section .faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--space) 0;
  cursor: pointer;
  font-family: "Oxanium", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #111049;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.faq-section .faq-icon {
  margin-right: 15px;
  color: #5c4ba0;
  font-size: 1.5rem;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq-section .faq-icon i {
  font-weight: 900;
}
.faq-section .faq-question:hover {
  color: #5c4ba0;
}
.faq-section .toggle-icon {
  margin-left: auto;
  color: #5c4ba0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq-section .faq-item.active .toggle-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease, padding 0.3s ease;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--color-text);
  padding: 0 var(--space-md);
}
.faq-section .faq-item.active .faq-answer {
  max-height: 500px;
  padding: var(--space) var(--space-md) var(--space-md);
  background: #111049;
  color: white;
  border-radius: 10px;
}
.faq-section .faq-contact {
  background-color: #5c4ba0;
  text-align: left;
  padding: 20px;
  border-radius: 30px;
  min-height: 200px;
  border: 3px solid #5c4ba0;
}
.faq-section .faq-contact p {
  color: #ffffff;
  line-height: 1rem !important;
}
.faq-section .faq-contact-title {
  font-family: "Oxanium", sans-serif;
  color: #ffffff;
}
.faq-section .faq-scan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 113%;
  padding: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px solid #5c4ba0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 30px;
  min-height: 200px;
}
@media (min-width: 992px) {
  .faq-section .faq-scan {
    margin-left: -13%;
  }
}
@media (max-width: 992px) {
  .faq-section .faq-scan {
    margin-top: -30px;
  }
}
.faq-section .scan-option {
  background: white;
  border-radius: var(--radius-lg);
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
  max-width: 250px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  width: 100%;
}
.faq-section .scan-option:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.faq-section .scan-option img {
  max-width: 100%;
  max-height: 100px;
  margin-bottom: 15px;
  border-radius: var(--radius);
}
.faq-section .scan-title {
  font-weight: 600;
  color: #5c4ba0;
  margin-bottom: 10px;
}
.faq-section .contact-button {
  background: #111049;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: var(--radius-full);
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}
.faq-section .contact-button:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  color: white;
}
@media (max-width: 992px) {
  .faq-section .faq-image {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .faq-section .faq-title {
    font-size: 2.2rem;
  }
  .faq-section .faq-content {
    padding: var(--space-md);
  }
  .faq-section .faq-scan {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sign-up-form, .login-form {
  background: url("/assets/images/sections/close-up-businessman-with-digital-tablet.webp") no-repeat center center fixed;
  background-size: cover;
  color: var(--color-text);
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--space-md) 0;
}
.sign-up-form .container-wrapper, .login-form .container-wrapper {
  background-color: rgb(224, 225, 238);
  border-radius: 30px;
  overflow: hidden;
  max-width: 1000px !important;
  margin: 0 auto;
  padding: 30px;
}
.sign-up-form .left-section, .login-form .left-section {
  padding: 30px 50px;
  background: rgb(255, 255, 255);
  border-radius: 30px 0 0 30px;
}
.sign-up-form .right-section, .login-form .right-section {
  padding: 0;
  position: relative;
}
.sign-up-form .right-section img, .login-form .right-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 30px 30px 0;
}
.sign-up-form .overlay-content, .login-form .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: rgba(17, 16, 73, 0.85);
  color: #ffffff;
  border-radius: 0 30px 30px 0;
}
.sign-up-form .logo, .login-form .logo {
  margin-bottom: 70px;
}
.sign-up-form .logo img, .login-form .logo img {
  max-width: 100px;
}
.sign-up-form h1, .login-form h1 {
  font-family: "Oxanium", sans-serif;
  color: #530202;
  font-weight: 700;
  font-size: 20px;
}
.sign-up-form .subtitle, .login-form .subtitle {
  color: #1f0202;
  margin-bottom: 60px;
}
.sign-up-form .form-label, .login-form .form-label {
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}
.sign-up-form .form-control, .login-form .form-control {
  padding: 5px 15px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  font-family: "Outfit", sans-serif;
  height: 40px !important;
}
.sign-up-form .form-control:focus, .login-form .form-control:focus {
  border-color: #5c4ba0;
  -webkit-box-shadow: var(--shadow-primary-focus);
          box-shadow: var(--shadow-primary-focus);
}
.sign-up-form .password-container, .login-form .password-container {
  position: relative;
}
.sign-up-form .toggle-password, .login-form .toggle-password {
  position: absolute;
  right: var(--space);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  color: var(--color-gray);
}
.sign-up-form .toggle-password::before, .login-form .toggle-password::before {
  display: none;
}
.sign-up-form .google-icon, .login-form .google-icon {
  margin-right: var(--space-sm);
  color: #DB4437;
}
.sign-up-form .login-link, .login-form .login-link {
  text-align: center;
  margin-top: 10px;
  color: var(--color-text-light);
}
.sign-up-form .login-link a, .login-form .login-link a {
  color: #5c4ba0;
  text-decoration: none;
  font-weight: 600;
}
.sign-up-form .right-heading, .login-form .right-heading {
  font-family: "Oxanium", sans-serif;
  font-size: 24px;
  margin-bottom: var(--space);
  color: wheat;
}
.sign-up-form .right-text, .login-form .right-text {
  color: var(--color-light);
  line-height: 1.6;
}
.sign-up-form .or-divider, .login-form .or-divider {
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 992px) {
  .sign-up-form .right-section, .login-form .right-section {
    display: none;
  }
  .sign-up-form .container-wrapper, .login-form .container-wrapper {
    border-radius: var(--radius-xl);
  }
}
@media (max-width: 576px) {
  .sign-up-form .left-section, .login-form .left-section {
    padding: var(--space-lg);
  }
}
.sign-up-form .forgetpass-link, .login-form .forgetpass-link {
  color: #5c4ba0;
  font-weight: 600;
  text-align: right;
  font-size: 14px;
}

/*--------------------------------------------------------------
    [ ## Blog ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## dashboard ]
--------------------------------------------------------------*/
/* ==================== ROOT & GLOBAL STYLES ==================== */
:root {
  --same-bg: #ffffff;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  background-color: rgb(255, 255, 255);
}

.dashboard-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
}

/* ==================== SIDEBAR STYLES ==================== */
.sidebar {
  width: var(--sidebar-width);
  position: fixed;
  color: #ffffff;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background: #111049;
  z-index: 1000;
  left: 0;
  top: 0;
}

.sidebar.collapsed {
  width: var(--sidebar-collapsed-width);
}

.sidebar::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .sidebar {
    margin: 0px;
    border-radius: 0 20px 20px 0px !important;
  }
}
/* ==================== SIDEBAR INNER ELEMENTS ==================== */
.sidebar-inner {
  padding: var(--space-md) var(--space-sm);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: var(--radius-xl);
}

.sidebar-logo {
  padding: var(--space);
  margin-bottom: var(--space);
  text-align: center;
  position: relative;
}

.sidebar-logo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background: #5c4ba0;
}

.sidebar-logo img {
  max-width: 110px;
  /* transition: var(--transition); */ /* COMMENTED FOR TESTING */
}

.sidebar-logo .logo-collapsed {
  display: none;
}

.sidebar.collapsed .logo-expanded {
  display: none;
}

.sidebar.collapsed .logo-collapsed {
  display: block;
  max-width: 30px;
}

/* ==================== SIDEBAR MENU ==================== */
.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.menu-header {
  padding: 0px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.7;
  white-space: nowrap;
  /* transition: opacity 0.3s ease; */ /* COMMENTED FOR TESTING */
}

.sidebar.collapsed .menu-header {
  opacity: 0;
  width: 0;
  display: none;
}

.sidebar-menu-item {
  margin-bottom: 3px;
  border-radius: var(--radius-sm);
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}

.sidebar-menu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 14px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.menu-icon {
  width: var(--menu-icon-size);
  height: var(--menu-icon-size);
  background: #5c4ba0;
  border-radius: var(--radius-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 8px;
  font-size: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.menu-title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  opacity: 1;
  font-size: 14px;
  -webkit-transition: opacity 0.3s ease, width 0.3s ease;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.sidebar.collapsed .menu-title {
  opacity: 0;
  width: 0;
}

.sidebar-menu-item:hover,
.sidebar-menu-item.active {
  background: rgba(71, 149, 234, 0.3);
  border-radius: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar-menu-item.active .menu-icon {
  background: #5c4ba0;
}

/* Floating toggle Button */
.floating-sidebar-toggle {
  position: fixed;
  top: 65px;
  left: 230px;
  z-index: 9999;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* collapsed positioning */
.sidebar.collapsed ~ .floating-sidebar-toggle {
  left: 65px;
  top: 75px;
}

.floating-sidebar-toggle .toggle-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #111049;
  color: white;
  border: none;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border: 3px solid white;
}

.sidebar.collapsed ~ .floating-sidebar-toggle .toggle-btn i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 768px) {
  .floating-sidebar-toggle {
    display: none;
  }
}
/* ==================== TOP NAVIGATION ==================== */
.top-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  top: 0;
  width: 100%;
  background-color: var(--same-bg);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  .top-navigation {
    padding-bottom: 100px;
  }
}
.top-navigation-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.top-navigation-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

/* Navigation link */
.top-navigation-link {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-xs);
  font-size: 15px;
}

.top-navigation-title {
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 16px;
  padding-left: 10px;
}

.top-navigation-link:hover {
  color: red !important;
}

/* Search */
.top-navigation-search-wrapper {
  position: relative;
}

.nav-search {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-input {
  padding: 8px 15px 8px 35px;
  border-radius: var(--radius-md);
  border: 1px solid #ddd;
  background-color: #f5f5f5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 280px;
}

.search-input:focus {
  width: 320px;
  outline: none;
  background-color: white;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.search-icon {
  position: absolute;
  right: 10px;
  color: #777;
}

/* Notification */
.nav-notification-wrapper {
  position: relative;
}

.nav-notification {
  position: relative;
  cursor: pointer;
  color: var(--color-text-light);
  font-size: 1.2rem;
  padding: 8px;
  border-radius: 10px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  background-color: rgb(217, 216, 229);
}

.nav-notification:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: red;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 10px;
  font-weight: bold;
}

.notification-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 350px;
  background-color: white;
  border-radius: var(--radius-md);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 100 !important;
  display: none;
  max-height: 400px;
  overflow-y: auto;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.notification-dropdown.active {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  margin-top: 10px;
  z-index: 99 !important;
}

.notification-header {
  padding: 15px;
  border-bottom: 1px solid #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.notification-header h4 {
  margin: 0;
  font-size: 16px;
}

.mark-all-read {
  color: #3498db;
  font-size: 13px;
  cursor: pointer;
}

.notification-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.notification-item {
  padding: 12px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  border-bottom: 1px solid #eee;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.notification-item:hover {
  background-color: #f9f9f9;
}

.notification-item.unread {
  background-color: #f8f9fa;
}

.notification-icon {
  color: #3498db;
  font-size: 1.2rem;
}

.notification-content p {
  margin: 0 0 5px 0;
  font-size: 14px;
}

.notification-content small {
  color: #777;
  font-size: 12px;
}

.notification-footer {
  padding: 10px 15px;
  text-align: center;
  border-top: 1px solid #eee;
}

.notification-footer a {
  color: #3498db;
  font-size: 13px;
  text-decoration: none;
}

/* User Profile */
.nav-user-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}

.nav-user-profile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.search-input::-webkit-input-placeholder {
  margin-left: 20px;
}

.search-input::-moz-placeholder {
  margin-left: 20px;
}

.search-input:-ms-input-placeholder {
  margin-left: 20px;
}

.search-input::-ms-input-placeholder {
  margin-left: 20px;
}

.search-input::placeholder {
  margin-left: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .top-navigation {
    padding: 15px 20px;
  }
  .search-input {
    width: 150px;
  }
  .search-input:focus {
    width: 180px;
  }
  .notification-dropdown {
    width: 300px;
    right: -20px;
  }
}
@media (max-width: 576px) {
  .top-navigation-title {
    display: none;
  }
  .search-input {
    width: 30px;
    padding-left: 30px;
  }
  .search-input:focus {
    width: 200px;
  }
  .search-input::-webkit-input-placeholder {
    opacity: 0;
  }
  .search-input::-moz-placeholder {
    opacity: 0;
  }
  .search-input:-ms-input-placeholder {
    opacity: 0;
  }
  .search-input::-ms-input-placeholder {
    opacity: 0;
  }
  .search-input::placeholder {
    opacity: 0;
  }
  .search-input:focus::-webkit-input-placeholder {
    opacity: 1;
  }
  .search-input:focus::-moz-placeholder {
    opacity: 1;
  }
  .search-input:focus:-ms-input-placeholder {
    opacity: 1;
  }
  .search-input:focus::-ms-input-placeholder {
    opacity: 1;
  }
  .search-input:focus::placeholder {
    opacity: 1;
  }
}
/* ==================== DASHBOARD menu toggle ==================== */
.dashboard-menu-toggle {
  color: rgba(119, 2, 20, 0.543);
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

@media (min-width: 768px) {
  .dashboard-menu-toggle {
    margin-left: 10px;
  }
}
/* ==================== DASHBOARD CONTENT AREA ==================== */
.dashboard-area {
  margin-left: var(--sidebar-width);
  width: calc(100% - var(--sidebar-width));
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.sidebar.collapsed ~ .dashboard-area {
  margin-left: var(--sidebar-collapsed-width);
  width: calc(100% - var(--sidebar-collapsed-width));
}

.dashboard-content-wrapper {
  height: 100vh;
  background: var(--same-bg);
}

.dashboard-content {
  position: absolute;
  background: transparent;
  height: 100vh;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  width: calc(100% - 300px);
}

@media (min-width: 768px) {
  .dashboard-content {
    margin-left: var(--space-md);
    margin-right: var(--space-sm);
  }
}
.sidebar.collapsed ~ .dashboard-area .dashboard-content {
  width: calc(100% - 120px);
}

@media (max-width: 768px) {
  .dashboard-content {
    position: absolute;
    padding: 0px;
    padding-top: 10px;
    background-color: var(--color-light);
    height: 100vh;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    margin-top: 0px;
    width: 100%;
  }
}
/* ==================== MOBILE MENU TOGGLE ==================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 9999;
  color: #530202;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
}

/* ==================== MOBILE RESPONSIVE STYLES ==================== */
@media (max-width: 768px) {
  .sidebar {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    width: 280px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .sidebar.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .dashboard-area {
    margin-left: 0;
    width: 100%;
  }
  .mobile-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: white;
    border-radius: 10px !important;
  }
  .dashboard-menu-toggle {
    display: none;
  }
  .sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
  }
  .sidebar.active + .sidebar-overlay {
    display: block;
  }
}
.dashboard-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--space);
  background: linear-gradient(135deg, #5c4ba0 0%, #211d3e 30%, #111049 70%, #000000 100%);
  padding: 25px 40px;
  border-radius: 30px 30px 0 0;
  padding-bottom: 70px;
  margin-left: 25px;
  margin-right: 25px;
}
@media (max-width: 768px) {
  .dashboard-header {
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media (min-width: 992px) {
  .dashboard-header {
    margin-top: -80px;
  }
}
.dashboard-header-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 250px;
}

.dashboard-header-title {
  font-family: "Oxanium", sans-serif;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
}

.dashboard-header-description {
  color: var(--color-light);
  font-size: 16px;
  max-width: 600px;
}

.dashboard-header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
}

@media (max-width: 991px) {
  .dashboard-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .dashboard-header-actions {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 576px) {
  .dashboard-header-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
  .header-btn {
    width: 100%;
  }
}
.dashboard-content-container {
  height: 100vh;
  width: 100%;
  background: #ffffff;
  margin-top: -30px;
  border-radius: 40px 40px 0 0;
}

.search-box {
  position: relative;
}

.search-box input {
  padding: 8px 16px 8px 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  min-width: 280px;
}

.search-box::before {
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.6;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: var(--space-sm);
}

.pagination-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background-color: #ffffff;
  cursor: pointer;
  font-size: 0.9rem;
}

.pagination-item.active {
  background-color: #5c4ba0;
  color: #ffffff;
  border-color: #5c4ba0;
}

.pagination-item:hover:not(.active) {
  background-color: var(--color-light);
}

.filter-control-container {
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  /* Left Controls - Pages, Brand, Category */
  /* Right Controls - Export and Search */
}
.filter-control-container .main-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  width: 100%;
}
.filter-control-container .left-controls {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.filter-control-container .control-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.filter-control-container .control-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  min-width: 160px;
}
.filter-control-container .filter-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #161313;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.filter-control-container .filter-label i {
  color: #5c4ba0;
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}
.filter-control-container .right-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
}
.filter-control-container .export-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.filter-control-container .export-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(66, 67, 71, 0.3);
  border-radius: 8px;
  background: #ffffff;
  color: #111049;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.filter-control-container .export-btn:hover {
  background: #5c4ba0;
  color: #ffffff;
  border-color: #5c4ba0;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(92, 75, 160, 0.3);
          box-shadow: 0 4px 12px rgba(92, 75, 160, 0.3);
}
.filter-control-container .search-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  min-width: 250px;
}
.filter-control-container .search-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.filter-control-container .search-box input {
  width: 100%;
  padding: 8px 30px;
  border: 1px solid rgba(66, 67, 71, 0.3);
  border-radius: 8px;
  background: #ffffff;
  color: #161313;
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-left: 10px;
}
.filter-control-container .search-box input:focus {
  outline: none;
  border-color: #5c4ba0;
  -webkit-box-shadow: 0 0 0 3px rgba(92, 75, 160, 0.1);
          box-shadow: 0 0 0 3px rgba(92, 75, 160, 0.1);
}
.filter-control-container .search-box input::-webkit-input-placeholder {
  color: rgba(22, 19, 19, 0.5);
}
.filter-control-container .search-box input::-moz-placeholder {
  color: rgba(22, 19, 19, 0.5);
}
.filter-control-container .search-box input:-ms-input-placeholder {
  color: rgba(22, 19, 19, 0.5);
}
.filter-control-container .search-box input::-ms-input-placeholder {
  color: rgba(22, 19, 19, 0.5);
}
.filter-control-container .search-box input::placeholder {
  color: rgba(22, 19, 19, 0.5);
}
.filter-control-container .search-box .search-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: 35px;
  background: #5c4ba0;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.filter-control-container .search-box .search-btn:hover {
  background: #483b7d;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

/* Nice Select Customization */
.nice-select {
  border: 1px solid rgba(66, 67, 71, 0.3) !important;
  border-radius: 8px !important;
  height: 40px !important;
  line-height: 40px !important;
  background: #ffffff !important;
}
.nice-select .current {
  color: #161313 !important;
  font-weight: 500;
  font-size: 0.9rem;
}
.nice-select .list {
  border-radius: 8px !important;
  -webkit-box-shadow: 0 2px 15px rgba(30, 30, 30, 0.08) !important;
          box-shadow: 0 2px 15px rgba(30, 30, 30, 0.08) !important;
  border: 1px solid rgba(66, 67, 71, 0.1) !important;
  background: #ffffff !important;
}
.nice-select .option {
  color: #161313 !important;
  font-size: 0.9rem;
}
.nice-select .option:hover, .nice-select .option.focus {
  background: rgba(92, 75, 160, 0.1) !important;
  color: #5c4ba0 !important;
}
.nice-select .option.selected {
  background: #5c4ba0 !important;
  color: #ffffff !important;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .control-group {
    gap: 15px;
  }
  .control-item {
    min-width: 140px;
  }
  .search-control {
    min-width: 200px;
  }
}
@media (max-width: 992px) {
  .main-controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
  .left-controls {
    width: 100%;
  }
  .control-group {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .right-controls {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .search-control {
    min-width: 200px;
  }
}
@media (max-width: 768px) {
  .filter-control-container {
    padding: 15px;
  }
  .control-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .control-item {
    width: 100%;
    min-width: auto;
  }
  .right-controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .export-controls {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .search-control {
    width: 100%;
    min-width: auto;
  }
}
@media (max-width: 480px) {
  .filter-control-container {
    padding: 12px;
  }
  .export-controls {
    gap: 5px;
  }
  .export-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  .filter-label {
    font-size: 0.85rem;
  }
  .filter-label i {
    font-size: 0.8rem;
  }
}
.add-customers-page-wrapper .form-container {
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  padding-top: 60px;
  border: 1px solid #5c4ba0;
  border-radius: 40px 40px 20px 20px;
}
.add-customers-page-wrapper .form-header {
  margin-bottom: var(--space-lg);
  text-align: center;
}
.add-customers-page-wrapper .form-group {
  margin-bottom: 0;
}
.add-customers-page-wrapper label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: #1f0202;
}
.add-customers-page-wrapper label.required::after {
  content: "*";
  color: #dc2626;
  margin-left: 4px;
}
.add-customers-page-wrapper .form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: var(--space);
  margin-top: var(--space-md);
  padding-top: var(--space);
}
@media (max-width: 768px) {
  .add-customers-page-wrapper .form-container {
    padding: var(--space);
    padding-top: 40px;
  }
  .add-customers-page-wrapper .form-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .add-customers-page-wrapper .form-actions .btn {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .add-customers-page-wrapper .form-container {
    border-radius: 20px 20px 10px 10px;
    padding: var(--space);
    padding-top: 30px;
  }
}

.customers-list-page-wrapper .customer-list-container {
  padding: var(--space-md);
  padding-top: 50px;
  border: 1px solid #5c4ba0;
  height: auto;
  border-radius: 40px;
}
.customers-list-page-wrapper .page-header h1 {
  font-family: "Oxanium", sans-serif;
  color: #530202;
  font-size: 32px;
}
.customers-list-page-wrapper .customer-list-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space);
  margin-bottom: var(--space);
}
.customers-list-page-wrapper .toolbar-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--space);
}
.customers-list-page-wrapper .show-entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-sm);
}
.customers-list-page-wrapper .show-entries select {
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: "Outfit", sans-serif;
}
.customers-list-page-wrapper .export-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space-sm);
}
.customers-list-page-wrapper .toolbar-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.customers-list-page-wrapper .search-box {
  position: relative;
}
.customers-list-page-wrapper .search-box input {
  padding: 8px 16px 8px 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  min-width: 280px;
}
.customers-list-page-wrapper .search-box::before {
  content: "🔍";
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.6;
}
.customers-list-page-wrapper .btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.customers-list-page-wrapper .btn-export {
  background-color: var(--color-light);
  color: #111049;
}
.customers-list-page-wrapper .btn-export:hover {
  background-color: #c1d4e6;
}
.customers-list-page-wrapper .customer-list-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
}
.customers-list-page-wrapper .customer-list-table th,
.customers-list-page-wrapper .customer-list-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.customers-list-page-wrapper .customer-list-table th {
  background-color: var(--color-light);
  font-family: "Oxanium", sans-serif;
  font-weight: 600;
  color: #111049;
}
.customers-list-page-wrapper .customer-list-table tr:hover {
  background-color: rgba(212, 227, 242, 0.2);
}
.customers-list-page-wrapper .status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 500;
}
.customers-list-page-wrapper .status-active {
  background-color: #e6f7e6;
  color: #2e7d32;
}
.customers-list-page-wrapper .status-inactive {
  background-color: #ffebee;
  color: #c62828;
}
.customers-list-page-wrapper .action-menu {
  position: relative;
}
.customers-list-page-wrapper .action-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 0 8px;
  color: #161313;
}
.customers-list-page-wrapper .action-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  z-index: 10;
  display: none;
  min-width: 120px;
}
.customers-list-page-wrapper .action-dropdown.show {
  display: block;
}
.customers-list-page-wrapper .action-btn {
  display: block;
  width: 100%;
  padding: 8px 12px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
}
.customers-list-page-wrapper .action-btn:hover {
  background-color: var(--color-light);
}
.customers-list-page-wrapper .btn-edit {
  color: #1565c0;
}
.customers-list-page-wrapper .btn-payment {
  color: #2e7d32;
}
.customers-list-page-wrapper .btn-delete {
  color: #c62828;
}
.customers-list-page-wrapper .customer-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding: var(--space);
  background-color: var(--color-light);
  border-radius: var(--radius);
}
.customers-list-page-wrapper .summary-item {
  text-align: center;
}
.customers-list-page-wrapper .summary-value {
  font-size: 18px;
  font-weight: 600;
  color: #111049;
}
.customers-list-page-wrapper .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--space-sm);
}
.customers-list-page-wrapper .checkbox {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .customers-list-page-wrapper .customer-list-toolbar {
    gap: var(--space-sm);
  }
  .customers-list-page-wrapper .toolbar-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: var(--space-sm);
  }
  .customers-list-page-wrapper .export-buttons {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .customers-list-page-wrapper .customer-list-table {
    display: block;
    overflow-x: auto;
  }
  .customers-list-page-wrapper .search-box input {
    width: 100%;
  }
}

.add-items-page-wrapper .add-items-container {
  margin: 0 auto;
  padding: var(--space-lg) var(--space);
  border: 1px solid #5c4ba0;
  border-radius: 40px 40px 20px 20px;
}
.add-items-page-wrapper .add-items-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
}
.add-items-page-wrapper textarea.form-control {
  min-height: 118px;
  resize: vertical;
}
.add-items-page-wrapper .add-items-label {
  font-weight: 600;
  font-size: 14px;
  color: #1f0202;
  margin-bottom: 6px;
  display: block;
}
.add-items-page-wrapper .add-items-hint {
  color: var(--color-gray);
  font-size: 12px;
  margin-top: 4px;
}
.add-items-page-wrapper .add-items-section-title {
  margin: var(--space-lg) 0 var(--space);
  font-family: "Oxanium", sans-serif;
  color: #111049;
  font-size: 16px;
  letter-spacing: 0.2px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-sm);
}
.add-items-page-wrapper .add-items-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: var(--space-lg);
  padding-top: var(--space);
  border-top: 1px solid var(--color-border);
}

.items-list-page-wrapper .item-list-container {
  padding: 30px;
  border: 1px solid #5c4ba0;
  border-radius: 40px 40px 20px 20px;
}
@media (max-width: 576px) {
  .items-list-page-wrapper .item-list-container {
    padding: 15px;
    border-radius: 20px 20px 10px 10px;
  }
}

.add-brand-page-wrapper .add-brand-container {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #5c4ba0;
  border-radius: 40px 40px 20px 20px;
}
.add-brand-page-wrapper .form-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.add-brand-page-wrapper .form-card:hover {
  -webkit-box-shadow: var(--shadow-secondary-xl);
          box-shadow: var(--shadow-secondary-xl);
}
.add-brand-page-wrapper .form-header {
  background: linear-gradient(135deg, #5c4ba0 0%, #111049 100%);
  color: #ffffff;
  padding: var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.add-brand-page-wrapper .form-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.add-brand-page-wrapper .form-content {
  padding: var(--space-xl);
}
.add-brand-page-wrapper .input-group {
  margin-bottom: var(--space-lg);
}
.add-brand-page-wrapper .input-label {
  font-family: "Oxanium", sans-serif;
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: #1f0202;
  font-size: 1.1rem;
}
@media (min-width: 992px) {
  .add-brand-page-wrapper .input-label {
    min-width: 160px;
  }
}
.add-brand-page-wrapper .input-field {
  width: 100%;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg) !important;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.add-brand-page-wrapper .input-field:focus {
  outline: none;
  border-color: #5c4ba0;
  -webkit-box-shadow: var(--shadow-primary-focus);
          box-shadow: var(--shadow-primary-focus);
}
.add-brand-page-wrapper textarea.input-field {
  min-height: 80px;
  resize: vertical;
}
.add-brand-page-wrapper .file-upload {
  position: relative;
  margin-bottom: var(--space-lg);
}
.add-brand-page-wrapper .file-input {
  position: absolute;
  left: -9999px;
}
.add-brand-page-wrapper .file-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: var(--space-xl);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  background-color: rgba(92, 75, 160, 0.05);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}
.add-brand-page-wrapper .file-label:hover {
  border-color: #5c4ba0;
  background-color: rgba(92, 75, 160, 0.1);
}
.add-brand-page-wrapper .file-icon {
  font-size: 24px;
  color: #5c4ba0;
  margin-bottom: var(--space);
}
.add-brand-page-wrapper .file-text {
  font-weight: 500;
  color: #161313;
}
.add-brand-page-wrapper .file-hint {
  color: var(--color-text-light);
  margin-top: var(--space-xs);
  font-size: 0.9rem;
}
.add-brand-page-wrapper .image-preview {
  margin-top: var(--space-lg);
  text-align: center;
  display: none;
}
.add-brand-page-wrapper .preview-title {
  font-weight: 500;
  margin-bottom: var(--space);
  color: #1f0202;
}
.add-brand-page-wrapper .preview-image {
  max-width: 100%;
  max-height: 100px;
  border-radius: var(--radius-md);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  margin-bottom: var(--space);
  border: 1px solid var(--color-border);
}
.add-brand-page-wrapper .form-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: var(--space);
  margin-top: var(--space-xl);
}
@media (max-width: 600px) {
  .add-brand-page-wrapper .form-content {
    padding: var(--space-lg);
  }
  .add-brand-page-wrapper .form-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .add-brand-page-wrapper .btn {
    width: 100%;
  }
}

.add-category-page-wrapper .add-category-container {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #5c4ba0;
  border-radius: 40px 40px 20px 20px;
  max-width: 2400px;
}
.add-category-page-wrapper .form-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.add-category-page-wrapper .form-header {
  background: linear-gradient(135deg, #5c4ba0 0%, #111049 100%);
  color: #ffffff;
  padding: var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.add-category-page-wrapper .form-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.add-category-page-wrapper .form-content {
  padding: var(--space-xl);
}
.add-category-page-wrapper .input-group {
  margin-bottom: var(--space-lg);
}
.add-category-page-wrapper .input-label {
  font-family: "Oxanium", sans-serif;
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: #1f0202;
  font-size: 1.1rem;
}
@media (min-width: 992px) {
  .add-category-page-wrapper .input-label {
    min-width: 160px;
  }
}
.add-category-page-wrapper .input-field {
  width: 100%;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg) !important;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.add-category-page-wrapper .input-name {
  max-width: 300px;
}
.add-category-page-wrapper .input-field:focus {
  outline: none;
  border-color: #5c4ba0;
  -webkit-box-shadow: var(--shadow-primary-focus);
          box-shadow: var(--shadow-primary-focus);
}
.add-category-page-wrapper textarea.input-field {
  min-height: 80px;
  resize: vertical;
}
.add-category-page-wrapper .file-upload {
  position: relative;
  margin-bottom: var(--space-lg);
}
.add-category-page-wrapper .file-input {
  position: absolute;
  left: -9999px;
}
.add-category-page-wrapper .file-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: var(--space-xl);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  background-color: rgba(92, 75, 160, 0.05);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}
.add-category-page-wrapper .file-label:hover {
  border-color: #5c4ba0;
  background-color: rgba(92, 75, 160, 0.1);
}
.add-category-page-wrapper .file-icon {
  font-size: 24px;
  color: #5c4ba0;
  margin-bottom: var(--space);
}
.add-category-page-wrapper .file-text {
  font-weight: 500;
  color: #161313;
}
.add-category-page-wrapper .file-hint {
  color: var(--color-text-light);
  margin-top: var(--space-xs);
  font-size: 0.9rem;
}
.add-category-page-wrapper .image-preview {
  margin-top: var(--space-lg);
  text-align: center;
  display: none;
}
.add-category-page-wrapper .preview-title {
  font-weight: 500;
  margin-bottom: var(--space);
  color: #1f0202;
}
.add-category-page-wrapper .preview-image {
  max-width: 100%;
  max-height: 100px;
  border-radius: var(--radius-md);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  margin-bottom: var(--space);
  border: 1px solid var(--color-border);
}
.add-category-page-wrapper .form-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: var(--space);
  margin-top: var(--space-xl);
}
@media (max-width: 600px) {
  .add-category-page-wrapper .form-content {
    padding: var(--space-lg);
  }
  .add-category-page-wrapper .form-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .add-category-page-wrapper .btn {
    width: 100%;
  }
}

.brand-list-page-wrapper .brand-list-container {
  width: 100%;
  max-width: 2400px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #5c4ba0;
  border-radius: 40px 40px 20px 20px;
}
.brand-list-page-wrapper .brand-list-table {
  background: #ffffff;
  overflow: hidden;
  width: 100%;
}
.brand-list-page-wrapper .brand-list-table table {
  width: 100%;
  border-collapse: collapse;
}
.brand-list-page-wrapper .brand-list-table thead {
  color: black;
  border: 1px solid var(--color-border);
}
.brand-list-page-wrapper .brand-list-table th {
  padding: var(--space);
  text-align: left;
  font-weight: 600;
  font-family: "Oxanium", sans-serif;
}
.brand-list-page-wrapper .brand-list-table th:first-child {
  width: 50px;
  text-align: center;
}
.brand-list-page-wrapper .brand-list-table th:last-child {
  width: 80px;
  text-align: center;
}
.brand-list-page-wrapper .brand-list-table tbody tr {
  border: 1px solid var(--color-border);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.brand-list-page-wrapper .brand-list-table tbody tr:hover {
  background-color: rgba(92, 75, 160, 0.05);
}
.brand-list-page-wrapper .brand-list-table td {
  padding: var(--space);
}
.brand-list-page-wrapper .brand-list-table td:first-child {
  text-align: center;
}
.brand-list-page-wrapper .brand-list-table td:last-child {
  text-align: center;
}
.brand-list-page-wrapper .brand-list-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #5c4ba0;
}
.brand-list-page-wrapper .brand-list-image {
  width: 80px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.brand-list-page-wrapper .brand-list-name {
  font-weight: 600;
  color: #161313;
}
.brand-list-page-wrapper .brand-list-code {
  color: var(--color-text-light);
  font-size: 0.9rem;
}
.brand-list-page-wrapper .brand-list-description {
  color: #161313;
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand-list-page-wrapper .brand-list-status {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
}
.brand-list-page-wrapper .brand-list-status-active {
  background-color: rgba(76, 175, 80, 0.15);
  color: #2e7d32;
}
.brand-list-page-wrapper .brand-list-status-inactive {
  background-color: rgba(244, 67, 54, 0.15);
  color: #d32f2f;
}
.brand-list-page-wrapper .brand-list-actions {
  position: relative;
  display: inline-block;
}
.brand-list-page-wrapper .brand-list-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.brand-list-page-wrapper .brand-list-menu-toggle:hover {
  background-color: rgba(92, 75, 160, 0.1);
}
.brand-list-page-wrapper .brand-list-menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  border-radius: var(--radius-md);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  padding: var(--space-xs);
  z-index: 10;
  min-width: 120px;
  display: none;
}
.brand-list-page-wrapper .brand-list-menu-dropdown.show {
  display: block;
}
.brand-list-page-wrapper .brand-list-menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  color: #161313;
  text-decoration: none;
}
.brand-list-page-wrapper .brand-list-menu-item:hover {
  background-color: rgba(92, 75, 160, 0.1);
}
.brand-list-page-wrapper .brand-list-menu-item i {
  font-size: 0.9rem;
  width: 16px;
}
@media (max-width: 768px) {
  .brand-list-page-wrapper .brand-list-table {
    overflow-x: auto;
  }
  .brand-list-page-wrapper .brand-list-table table {
    min-width: 800px;
  }
}

.category-list-page-wrapper .category-list-container {
  width: 100%;
  margin: 0 auto;
  padding: 30px !important;
  border: 1px solid #5c4ba0;
  border-radius: 40px 40px 20px 20px;
}
.category-list-page-wrapper .category-list-table {
  background: #ffffff;
  overflow: hidden;
  width: 100%;
}
.category-list-page-wrapper .category-list-table table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px !important;
}
.category-list-page-wrapper .category-list-table thead {
  background: rgb(224, 224, 236);
}
.category-list-page-wrapper .category-list-table th {
  padding: var(--space);
  text-align: left;
  font-weight: 600;
  font-family: "Oxanium", sans-serif;
  color: #530202;
}
.category-list-page-wrapper .category-list-table th:first-child {
  width: 50px;
  text-align: center;
}
.category-list-page-wrapper .category-list-table th:last-child {
  width: 80px;
  text-align: center;
}
.category-list-page-wrapper .category-list-table tbody tr {
  border: 1px solid var(--color-border);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.category-list-page-wrapper .category-list-table tbody tr:hover {
  background-color: rgba(92, 75, 160, 0.05);
}
.category-list-page-wrapper .category-list-table td {
  padding: var(--space);
}
.category-list-page-wrapper .category-list-table td:first-child {
  text-align: center;
}
.category-list-page-wrapper .category-list-table td:last-child {
  text-align: center;
}
.category-list-page-wrapper .category-list-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #5c4ba0;
}
.category-list-page-wrapper .category-list-image {
  width: 100px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.category-list-page-wrapper .category-list-name {
  font-weight: 600;
  color: #161313;
}
.category-list-page-wrapper .category-list-description {
  color: #161313;
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.category-list-page-wrapper .category-list-status {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
}
.category-list-page-wrapper .category-list-status-active {
  background-color: rgba(76, 175, 80, 0.15);
  color: #2e7d32;
}
.category-list-page-wrapper .category-list-status-inactive {
  background-color: rgba(244, 67, 54, 0.15);
  color: #d32f2f;
}
.category-list-page-wrapper .category-list-actions {
  position: relative;
  display: inline-block;
}
.category-list-page-wrapper .category-list-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  border-radius: var(--radius-full);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.category-list-page-wrapper .category-list-menu-toggle:hover {
  background-color: rgba(92, 75, 160, 0.1);
}
.category-list-page-wrapper .category-list-menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  border-radius: var(--radius-md);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  padding: var(--space-xs);
  z-index: 10;
  min-width: 120px;
  display: none;
}
.category-list-page-wrapper .category-list-menu-dropdown.show {
  display: block;
}
.category-list-page-wrapper .category-list-menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  color: #161313;
  text-decoration: none;
}
.category-list-page-wrapper .category-list-menu-item:hover {
  background-color: rgba(92, 75, 160, 0.1);
}
.category-list-page-wrapper .category-list-menu-item i {
  font-size: 0.9rem;
  width: 16px;
}
@media (max-width: 768px) {
  .category-list-page-wrapper .category-list-table {
    overflow-x: auto;
  }
  .category-list-page-wrapper .category-list-table table {
    min-width: 800px;
  }
}

.add-vendor-page-wrapper .vendor-register-container {
  width: 100%;
  overflow: hidden;
  border: 1px solid #5c4ba0;
  border-radius: 40px 40px 20px 20px;
}
.add-vendor-page-wrapper .vendor-register-body {
  padding: var(--space-xl);
}
.add-vendor-page-wrapper .vendor-register-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 992px) {
  .add-vendor-page-wrapper .vendor-register-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .add-vendor-page-wrapper .vendor-register-grid {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.add-vendor-page-wrapper .vendor-register-group {
  margin-bottom: var(--space);
}
.add-vendor-page-wrapper .vendor-register-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: #161313;
  font-size: 1rem;
}
.add-vendor-page-wrapper .vendor-register-label.required::after {
  content: "*";
  color: #e53e3e;
  margin-left: 4px;
}
.add-vendor-page-wrapper .vendor-register-input, .add-vendor-page-wrapper .vendor-register-select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.add-vendor-page-wrapper .vendor-register-input:focus, .add-vendor-page-wrapper .vendor-register-select:focus {
  outline: none;
  border-color: #5c4ba0;
  -webkit-box-shadow: var(--shadow-primary-focus);
          box-shadow: var(--shadow-primary-focus);
}
.add-vendor-page-wrapper .vendor-register-textarea {
  min-height: 100px;
  resize: vertical;
}
.add-vendor-page-wrapper .vendor-register-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: var(--space);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}
.add-vendor-page-wrapper .form-note {
  grid-column: 1/-1;
  background-color: #f0f5ff;
  padding: var(--space);
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: #161313;
  border-left: 4px solid #5c4ba0;
}
.add-vendor-page-wrapper .form-note i {
  color: #5c4ba0;
  margin-right: var(--space-xs);
}
.add-vendor-page-wrapper .full-width {
  grid-column: 1/-1;
}
@media (max-width: 768px) {
  .add-vendor-page-wrapper .vendor-register-container {
    border-radius: var(--radius-lg);
  }
  .add-vendor-page-wrapper .vendor-register-body {
    padding: var(--space-lg);
  }
  .add-vendor-page-wrapper .vendor-register-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.vendors-list-page-wrapper .vendors-container {
  width: 100%;
  overflow: hidden;
  padding: 30px;
  border: 1px solid #5c4ba0;
  border-radius: 40px 40px 20px 20px;
}
.vendors-list-page-wrapper .table-container {
  overflow-x: auto;
}
.vendors-list-page-wrapper .vendors-table {
  width: 100%;
  border-collapse: collapse;
}
.vendors-list-page-wrapper .vendors-table th {
  background-color: #f3f4f6;
  padding: var(--space);
  text-align: left;
  font-weight: 600;
  color: #161313;
  border-bottom: 2px solid var(--color-border);
}
.vendors-list-page-wrapper .vendors-table td {
  padding: var(--space);
  border-bottom: 1px solid var(--color-border);
}
.vendors-list-page-wrapper .vendors-table tbody tr:hover {
  background-color: #f9fafb;
}
.vendors-list-page-wrapper .table-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.vendors-list-page-wrapper .vendor-id {
  color: #5c4ba0;
  font-weight: 500;
}
.vendors-list-page-wrapper .status-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
}
.vendors-list-page-wrapper .status-active {
  background-color: #c6f6d5;
  color: #22543d;
}
.vendors-list-page-wrapper .status-inactive {
  background-color: #fed7d7;
  color: #742a2a;
}
.vendors-list-page-wrapper .action-menu {
  position: relative;
  display: inline-block;
}
.vendors-list-page-wrapper .action-dots {
  padding: var(--space-xs);
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  background: transparent;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: var(--color-text-light);
}
.vendors-list-page-wrapper .action-dots:hover {
  background-color: #f3f4f6;
  color: #161313;
}
.vendors-list-page-wrapper .action-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  background: #ffffff;
  border-radius: var(--radius-md);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  padding: var(--space-xs);
  z-index: 10;
  min-width: 180px;
  display: none;
}
.vendors-list-page-wrapper .action-dropdown.show {
  display: block;
}
.vendors-list-page-wrapper .action-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  cursor: pointer;
  border-radius: var(--radius-sm);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  color: #161313;
  text-decoration: none;
}
.vendors-list-page-wrapper .action-item:hover {
  background-color: #f3f4f6;
}
.vendors-list-page-wrapper .action-item.pay {
  color: #38a169;
}
.vendors-list-page-wrapper .action-item.receive {
  color: #3182ce;
}
.vendors-list-page-wrapper .action-item.edit {
  color: #5c4ba0;
}
.vendors-list-page-wrapper .action-item.delete {
  color: #e53e3e;
}
.vendors-list-page-wrapper .summary-row {
  background-color: #f9fafb;
  font-weight: 600;
}
.vendors-list-page-wrapper .summary-row td {
  border-top: 2px solid var(--color-border);
}
.vendors-list-page-wrapper .total-label {
  text-align: right;
  padding-right: var(--space);
}
@media (max-width: 1200px) {
  .vendors-list-page-wrapper .vendors-table {
    min-width: 1100px;
  }
  .vendors-list-page-wrapper .table-container {
    overflow-x: auto;
  }
}

.purchase-page-wrapper .purchase-container {
  width: 100%;
  margin: 0 auto;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  overflow: hidden;
  border-radius: 40px 40px 20px 20px;
  border: 1px solid #5c4ba0;
}
.purchase-page-wrapper .purchase-content {
  padding: var(--space-lg);
}
.purchase-page-wrapper .purchase-information-section {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
}
.purchase-page-wrapper .purchase-product-selection-section {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
}
.purchase-page-wrapper .purchase-order-summary-section {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
}
.purchase-page-wrapper .purchase-payment-section {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
}
.purchase-page-wrapper .section-title {
  font-family: "Oxanium", sans-serif;
  color: #530202;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  font-size: 20px;
  text-align: left;
  border-bottom: none;
}
.purchase-page-wrapper .form-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}
.purchase-page-wrapper select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c4ba0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-sm) center;
  padding-right: var(--space-xl);
}
.purchase-page-wrapper .product-search {
  position: relative;
  margin-bottom: var(--space-md);
}
.purchase-page-wrapper .search-icon {
  position: absolute;
  left: var(--space-sm);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--color-gray);
}
.purchase-page-wrapper .product-search input {
  padding-left: var(--space-xl);
}
.purchase-page-wrapper .suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  z-index: 10;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}
.purchase-page-wrapper .suggestion-item {
  padding: var(--space-sm);
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.purchase-page-wrapper .suggestion-item:hover, .purchase-page-wrapper .suggestion-item.highlighted {
  background: var(--color-light);
}
.purchase-page-wrapper .purchase-products-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
}
.purchase-page-wrapper .purchase-products-table th {
  background: var(--color-light);
  padding: var(--space-sm);
  text-align: left;
  font-weight: 600;
  color: #1f0202;
}
.purchase-page-wrapper .purchase-products-table td {
  padding: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}
.purchase-page-wrapper .quantity-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.purchase-page-wrapper .qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  border-radius: var(--radius-sm);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.purchase-page-wrapper .qty-btn:hover {
  background: var(--color-light);
}
.purchase-page-wrapper .qty-input {
  width: 100px;
  height: 32px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin: 0 var(--space-xs);
}
.purchase-page-wrapper .action-btn {
  background: none;
  border: none;
  color: #5c4ba0;
  cursor: pointer;
  padding: var(--space-xs);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.purchase-page-wrapper .action-btn:hover {
  color: #111049;
}
.purchase-page-wrapper .tax-discount-btn {
  background: none;
  border: none;
  color: var(--color-gray);
  cursor: pointer;
}
.purchase-page-wrapper .summary-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}
.purchase-page-wrapper .summary-item {
  margin-bottom: var(--space-md);
}
.purchase-page-wrapper .summary-total {
  background: var(--color-light);
  padding: var(--space-md);
  border-radius: var(--radius);
  margin-top: var(--space-lg);
}
.purchase-page-wrapper .summary-total-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-border);
}
.purchase-page-wrapper .summary-total-row:last-child {
  border-bottom: none;
  font-weight: bold;
  font-size: 18px;
  color: #5c4ba0;
}
.purchase-page-wrapper .payment-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.purchase-page-wrapper .payment-option {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.purchase-page-wrapper .payment-option.active {
  border-color: #5c4ba0;
  background: var(--color-light);
  color: #5c4ba0;
}
.purchase-page-wrapper .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.purchase-page-wrapper .modal-content {
  background: #ffffff;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}
.purchase-page-wrapper .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--space-md);
}
.purchase-page-wrapper .modal-title {
  font-family: "Oxanium", sans-serif;
  color: #530202;
  font-size: 20px;
}
.purchase-page-wrapper .close-modal {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-gray);
}
.purchase-page-wrapper .footer-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: var(--space);
  margin-top: var(--space-xl);
}
.purchase-page-wrapper .btn {
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--radius);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.purchase-page-wrapper .btn-secondary {
  background: var(--color-gray);
  color: #ffffff;
}
.purchase-page-wrapper .btn-secondary:hover {
  background: #7c7c7c;
}
.purchase-page-wrapper .btn-primary {
  background: #5c4ba0;
  color: #ffffff;
}
.purchase-page-wrapper .btn-primary:hover {
  background: #4a3d83;
}
@media (max-width: 768px) {
  .purchase-page-wrapper .form-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .purchase-page-wrapper .purchase-products-table {
    display: block;
    overflow-x: auto;
  }
  .purchase-page-wrapper .payment-options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .purchase-page-wrapper .footer-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.purchase-list-page-wrapper {
  /* Responsive Styles */
}
.purchase-list-page-wrapper .purchase-list-container {
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #5c4ba0;
  border-radius: 40px 40px 20px 20px;
}
.purchase-list-page-wrapper .purchase-list {
  border-radius: var(--radius-lg);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.purchase-list-page-wrapper .purchase-list-table {
  width: 100%;
  border-collapse: collapse;
}
.purchase-list-page-wrapper .purchase-list-item {
  border-bottom: 1px solid var(--color-border) !important;
}
.purchase-list-page-wrapper .purchase-list-header th,
.purchase-list-page-wrapper .purchase-list-item td,
.purchase-list-page-wrapper .purchase-list-total td {
  padding: var(--space-sm) var(--space);
  text-align: left;
}
.purchase-list-page-wrapper .purchase-list-header {
  background-color: var(--color-light);
}
.purchase-list-page-wrapper .purchase-list-header th {
  font-family: "Oxanium", sans-serif;
  font-weight: 600;
  color: #1f0202;
}
.purchase-list-page-wrapper .purchase-list-checkbox {
  width: 40px;
  text-align: center;
}
.purchase-list-page-wrapper .purchase-list-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.purchase-list-page-wrapper .purchase-list-item:hover {
  background-color: rgba(92, 75, 160, 0.03);
}
.purchase-list-page-wrapper .purchase-list-item.selected {
  background-color: rgba(92, 75, 160, 0.08);
}
.purchase-list-page-wrapper .purchase-status {
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  display: -webkit-box;
  max-width: 100px;
}
.purchase-list-page-wrapper .purchase-status-ordered {
  background-color: #e9d5ff;
}
.purchase-list-page-wrapper .purchase-status-received {
  background-color: #bbf7d0;
}
.purchase-list-page-wrapper .purchase-status-processing {
  background-color: #bfdbfe;
}
.purchase-list-page-wrapper .payment-status {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  margin-top: 10px;
  display: -webkit-box;
  max-width: 80px;
}
.purchase-list-page-wrapper .payment-status-unpaid {
  background-color: #fecaca;
}
.purchase-list-page-wrapper .payment-status-paid {
  background-color: #2eb85e;
}
.purchase-list-page-wrapper .payment-status-partial {
  background-color: #e9e2ac;
}
.purchase-list-page-wrapper .purchase-list-actions {
  position: relative;
}
.purchase-list-page-wrapper .purchase-list-action-trigger {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: var(--space-xs);
  color: var(--color-text-light);
  border-radius: var(--radius);
}
.purchase-list-page-wrapper .purchase-list-action-trigger:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.purchase-list-page-wrapper .purchase-list-action-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  padding: var(--space-sm) 0;
  z-index: 10;
  min-width: 200px;
  display: none;
}
.purchase-list-page-wrapper .purchase-list-action-menu.show {
  display: block;
}
.purchase-list-page-wrapper .purchase-list-action-item {
  padding: var(--space-sm) var(--space);
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-sm);
}
.purchase-list-page-wrapper .purchase-list-action-item:hover {
  background-color: rgba(92, 75, 160, 0.08);
}
.purchase-list-page-wrapper .purchase-list-action-item i {
  width: 20px;
  text-align: center;
}
.purchase-list-page-wrapper .purchase-list-total {
  background-color: var(--color-light);
  font-weight: 600;
}
.purchase-list-page-wrapper .purchase-list-total td {
  font-family: "Oxanium", sans-serif;
  color: #1f0202;
  padding: var(--space-sm) var(--space);
}
@media (max-width: 1200px) {
  .purchase-list-page-wrapper .purchase-list-table {
    display: block;
    overflow-x: auto;
  }
  .purchase-list-page-wrapper .purchase-list-header th,
  .purchase-list-page-wrapper .purchase-list-item td,
  .purchase-list-page-wrapper .purchase-list-total td {
    padding: var(--space-sm);
    white-space: nowrap;
  }
  .purchase-list-page-wrapper .purchase-date,
  .purchase-list-page-wrapper .vendor-name,
  .purchase-list-page-wrapper .purchase-code,
  .purchase-list-page-wrapper .total-items {
    min-width: 120px;
  }
}
@media (max-width: 600px) {
  .purchase-list-page-wrapper body {
    padding: var(--space-sm);
  }
  .purchase-list-page-wrapper .purchase-list-header th,
  .purchase-list-page-wrapper .purchase-list-item td,
  .purchase-list-page-wrapper .purchase-list-total td {
    font-size: 0.9rem;
    padding: 8px 6px;
  }
  .purchase-list-page-wrapper .purchase-status,
  .purchase-list-page-wrapper .payment-status {
    font-size: 0.8rem;
    padding: 4px 6px;
  }
}

.pos-page-wrapper {
  /* Bank transfer specific styles */
  /* Modal Styles */
}
.pos-page-wrapper .pos-container {
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  overflow: hidden;
  border-radius: var(--radius-container);
  border: 1px solid #5c4ba0;
}
.pos-page-wrapper .pos-content {
  padding: var(--space-lg);
}
.pos-page-wrapper .pos-customer-information {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
}
.pos-page-wrapper .pos-product-selection {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  overflow-x: scroll;
}
.pos-page-wrapper .pos-order-summary {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
}
.pos-page-wrapper .pos-payment-section {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
}
.pos-page-wrapper .pos-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: var(--space);
  margin-top: var(--space-xl);
}
.pos-page-wrapper .section-title {
  font-family: "Oxanium", sans-serif;
  color: #530202;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  font-size: 20px;
  text-align: left;
  border-bottom: none;
}
.pos-page-wrapper .form-group {
  margin-bottom: var(--space-md);
}
.pos-page-wrapper select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a3fce' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-sm) center;
}
.pos-page-wrapper .customer-search {
  position: relative;
}
.pos-page-wrapper .search-icon {
  position: absolute;
  left: var(--space-sm);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--color-gray);
}
.pos-page-wrapper .customer-search input {
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}
.pos-page-wrapper .pos-items-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}
.pos-page-wrapper .pos-items-table th {
  padding: 14px 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--color-border);
}
.pos-page-wrapper .pos-items-table th:last-child {
  border-right: none;
}
.pos-page-wrapper .pos-items-table td {
  padding: 12px;
  border: 1px solid var(--color-border);
  font-size: 14px;
  vertical-align: middle;
}
.pos-page-wrapper .pos-items-table tbody tr:hover {
  background-color: #f8f9ff;
}
.pos-page-wrapper .product-image {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f0f2f8;
  border-radius: 4px;
}
.pos-page-wrapper .quantity-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.pos-page-wrapper .qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: #5a6c93;
}
.pos-page-wrapper .qty-btn:hover {
  background-color: #eef2ff;
  border-color: #4a6ee0;
}
.pos-page-wrapper .quantity-input {
  width: 50px;
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  height: 30px;
}
.pos-page-wrapper .delete-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  color: #e74c3c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pos-page-wrapper .delete-btn:hover {
  background-color: #ffeaea;
}
.pos-page-wrapper .sub-total {
  font-weight: 600;
  color: #2e7d32;
}
.pos-page-wrapper .summary-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-md);
}
.pos-page-wrapper .summary-item {
  margin-bottom: var(--space-md);
}
.pos-page-wrapper .summary-total {
  background: var(--color-light);
  padding: var(--space-md);
  border-radius: var(--radius);
  margin-top: var(--space-lg);
}
.pos-page-wrapper .summary-total-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-border);
}
.pos-page-wrapper .summary-total-row:last-child {
  border-bottom: none;
  font-weight: bold;
  font-size: 18px;
  color: #5c4ba0;
}
.pos-page-wrapper .pos-payment-section {
  background: white;
  padding: 25px;
  margin: 0 auto;
}
.pos-page-wrapper .section-title {
  color: #2c3e50;
  margin-bottom: 25px;
  padding-bottom: 10px;
}
.pos-page-wrapper .form-control[readonly] {
  background-color: #f8f9fa;
  color: #6c757d;
}
.pos-page-wrapper .payment-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.pos-page-wrapper .payment-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.pos-page-wrapper .payment-option:hover {
  border-color: #bdc3c7;
  background-color: #f8f9fa;
}
.pos-page-wrapper .payment-option.active {
  border-color: #3498db;
  background-color: #e3f2fd;
}
.pos-page-wrapper .payment-option i {
  font-size: 20px;
  margin-right: 10px;
  width: 24px;
  text-align: center;
}
.pos-page-wrapper .payment-option.active i {
  color: #3498db;
}
.pos-page-wrapper .payment-option-details {
  display: none;
  -webkit-animation: fadeIn 0.3s ease-in-out;
          animation: fadeIn 0.3s ease-in-out;
}
.pos-page-wrapper .payment-option-details.active {
  display: block;
}
.pos-page-wrapper .change-display {
  margin-top: 15px;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
}
.pos-page-wrapper .form-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pos-page-wrapper #bank-payment .form-group {
  margin-bottom: 15px;
}
.pos-page-wrapper .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pos-page-wrapper .modal-content {
  background: #ffffff;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}
.pos-page-wrapper .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--space-md);
}
.pos-page-wrapper .modal-title {
  font-family: "Oxanium", sans-serif;
  color: #530202;
  font-size: 20px;
}
.pos-page-wrapper .close-modal {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-gray);
}
@media (max-width: 768px) {
  .pos-page-wrapper .form-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .pos-page-wrapper .pos-items-table {
    display: block;
    overflow-x: auto;
  }
  .pos-page-wrapper .payment-options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pos-page-wrapper .pos-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.pos-page-wrapper .customer-select-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pos-page-wrapper .customer-input-container {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.pos-page-wrapper .input-with-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pos-page-wrapper .search-icon {
  position: absolute;
  left: 15px;
  color: #6c757d;
  z-index: 2;
  font-size: 1.1rem;
}
.pos-page-wrapper .customer-select-input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  background-color: white;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pos-page-wrapper .customer-select-input:focus {
  outline: none;
  border-color: #667eea;
  -webkit-box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
          box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  cursor: text;
}
.pos-page-wrapper .customer-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.pos-page-wrapper .customer-dropdown.active {
  display: block;
}
.pos-page-wrapper .dropdown-option {
  padding: 12px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.pos-page-wrapper .dropdown-option:hover {
  background-color: #f8f9ff;
}
.pos-page-wrapper .dropdown-option:last-child {
  border-bottom: none;
}
.pos-page-wrapper .customer-name {
  font-weight: 500;
  color: #333;
}
.pos-page-wrapper .customer-mobile {
  color: #666;
  font-size: 0.9rem;
}
.pos-page-wrapper .dropdown-option[data-value=walking] {
  background-color: #f0f7ff;
  border-left: 3px solid #667eea;
}
.pos-page-wrapper .no-results {
  padding: 15px;
  text-align: center;
  color: #666;
  font-style: italic;
}
.pos-page-wrapper .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pos-page-wrapper .modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pos-page-wrapper .modal-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.pos-page-wrapper .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}
.pos-page-wrapper .modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}
.pos-page-wrapper .close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 5px;
}
.pos-page-wrapper .close-modal:hover {
  color: #333;
}
.pos-page-wrapper .form-row {
  margin-bottom: 20px;
}
.pos-page-wrapper .form-row label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #555;
}
.pos-page-wrapper .form-row input {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.pos-page-wrapper .form-row input:focus {
  outline: none;
  border-color: #667eea;
}
.pos-page-wrapper .modal-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 30px;
}
.pos-page-wrapper .product-container {
  margin: 0 auto;
}
.pos-page-wrapper .search-section {
  background: #ffffff;
  margin-bottom: 30px;
  padding: 0 30px;
}
.pos-page-wrapper .search-input {
  width: 100%;
  padding: var(--space-sm) var(--space) var(--space-sm) var(--space-xl);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #ffffff;
}
.pos-page-wrapper .search-input:focus {
  outline: none;
  border-color: #5c4ba0;
  -webkit-box-shadow: var(--shadow-primary-focus);
          box-shadow: var(--shadow-primary-focus);
}
.pos-page-wrapper .search-icon {
  position: absolute;
  left: var(--space);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--color-gray);
  z-index: 5;
}
.pos-page-wrapper .products-section {
  padding: 10px 10px;
  max-height: 1200px;
  overflow-y: auto;
}
.pos-page-wrapper .item-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pos-page-wrapper .item-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border-color: #5c4ba0;
}
.pos-page-wrapper .item-image-container {
  position: relative;
  overflow: hidden;
}
.pos-page-wrapper .item-image {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.pos-page-wrapper .item-details {
  padding: var(--space-sm);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pos-page-wrapper .item-name {
  font-weight: 600;
  color: #161313;
  margin-bottom: 2px;
  font-size: 0.9rem;
  line-height: 1.3;
}
.pos-page-wrapper .item-brand {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 4px;
}
.pos-page-wrapper .item-code {
  font-family: "Courier New", monospace;
  font-weight: 600;
  color: #5c4ba0;
  font-size: 0.75rem;
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}
.pos-page-wrapper .item-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
}
.pos-page-wrapper .item-price {
  font-weight: 700;
  color: #111049;
  font-size: 0.95rem;
}
.pos-page-wrapper .add-btn {
  background: #5c4ba0;
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.2rem;
}
.pos-page-wrapper .add-btn:hover {
  background: #111049;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .pos-page-wrapper .product-container {
    border-radius: var(--radius-lg);
    margin: var(--space-sm);
  }
  .pos-page-wrapper .search-section,
  .pos-page-wrapper .products-section {
    padding: var(--space);
  }
  .pos-page-wrapper .item-image {
    height: 100px;
  }
}

.offcanvas-end {
  width: 580px !important;
}

.offcanvas-header {
  background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
  border-bottom: 2px solid var(--color-border);
  font-family: "Oxanium", sans-serif;
}

.offcanvas-title {
  color: #530202;
  font-weight: 700;
}

.btn-close {
  font-size: 1.5rem;
  color: #161313;
}

/* Card Styles */
.pos-item-card {
  border: 3px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #ffffff;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1rem;
}

.pos-item-card:hover {
  border-color: var(--color-gray);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.pos-item-card.selected {
  border-color: #5c4ba0;
  background-color: rgba(92, 75, 160, 0.05);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.pos-item-card-img {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 2px solid var(--color-border);
  background-color: var(--color-light);
}

.pos-item-card-name {
  font-weight: 700;
  color: #161313;
  font-family: "Oxanium", sans-serif;
  font-size: 1rem;
}

.pos-item-card-code {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.pos-search-container {
  margin: 30px;
}

.customer-registration-modal-wrapper {
  /* Modal Header Styling */
  /* Center modal on screens larger than 992px */
}
.customer-registration-modal-wrapper .modal-header {
  background: linear-gradient(135deg, #5c4ba0 0%, #111049 100%);
  border-bottom: none;
  padding: 1rem 1.5rem;
}
.customer-registration-modal-wrapper .modal-content {
  border: none !important;
}
.customer-registration-modal-wrapper .modal-title {
  color: white;
  font-weight: 600;
  font-size: 1.25rem;
}
.customer-registration-modal-wrapper .btn-close {
  -webkit-filter: invert(1) brightness(2);
          filter: invert(1) brightness(2);
  opacity: 0.8;
}
.customer-registration-modal-wrapper .btn-close:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .customer-registration-modal-wrapper .modal-dialog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: calc(100vh - 1rem);
    margin: 0.5rem auto;
  }
  .customer-registration-modal-wrapper .modal-content {
    margin: 0 auto;
  }
}

.sales-list-page-wrapper .sales-list-container {
  width: 100%;
  padding: 30px;
  border-radius: var(--radius-container);
  border: 1px solid #5c4ba0;
}
.sales-list-page-wrapper .sales-table-container {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}
.sales-list-page-wrapper .sales-list-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.sales-list-page-wrapper .sales-list-table thead {
  background-color: #5c4ba0;
  color: #ffffff;
}
.sales-list-page-wrapper .sales-list-table th {
  padding: var(--space);
  text-align: left;
  font-weight: 600;
  font-family: "Oxanium", sans-serif;
}
.sales-list-page-wrapper .sales-list-table th:first-child {
  width: 50px;
  text-align: center;
}
.sales-list-page-wrapper .sales-list-table td {
  padding: var(--space);
  border-bottom: 1px solid var(--color-border);
}
.sales-list-page-wrapper .sales-list-table tbody tr {
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.sales-list-page-wrapper .sales-list-table tbody tr:hover {
  background-color: var(--color-light);
}
.sales-list-page-wrapper .checkbox-cell {
  text-align: center;
}
.sales-list-page-wrapper input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.sales-list-page-wrapper .status-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
}
.sales-list-page-wrapper .status-completed {
  background-color: #d1fae5;
  color: #065f46;
}
.sales-list-page-wrapper .status-incomplete {
  background-color: #fee2e2;
  color: #b91c1c;
}
.sales-list-page-wrapper .payment-status {
  display: inline-block;
  padding: var(--space-xs);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  min-width: 100px;
  text-align: center;
}
.sales-list-page-wrapper .paid {
  background-color: #d1fae5;
  color: #065f46;
}
.sales-list-page-wrapper .partial {
  background-color: #fef3c7;
  color: #92400e;
}
.sales-list-page-wrapper .unpaid {
  background-color: #fee2e2;
  color: #b91c1c;
}
.sales-list-page-wrapper .action-cell {
  position: relative;
  width: 50px;
}
.sales-list-page-wrapper .action-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #5c4ba0;
  padding: var(--space-xs);
}
.sales-list-page-wrapper .action-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: var(--space-sm) 0;
  z-index: 10;
  min-width: 200px;
  display: none;
}
.sales-list-page-wrapper .action-menu.show {
  display: block;
}
.sales-list-page-wrapper .action-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--space-sm) var(--space);
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.sales-list-page-wrapper .action-item:hover {
  background-color: var(--color-light);
}
.sales-list-page-wrapper .action-item i {
  margin-right: var(--space-sm);
  width: 20px;
  color: #5c4ba0;
}
.sales-list-page-wrapper .summary-row {
  font-weight: 700;
  background-color: #f8fafc;
}
.sales-list-page-wrapper .summary-row td {
  border-top: 2px solid var(--color-border);
  border-bottom: none;
}
.sales-list-page-wrapper .no-data {
  color: var(--color-gray);
  text-align: center;
}
@media (max-width: 1200px) {
  .sales-list-page-wrapper .sales-list-container {
    border-radius: var(--radius-xl);
  }
  .sales-list-page-wrapper .sales-list-table th,
  .sales-list-page-wrapper .sales-list-table td {
    padding: var(--space-sm);
  }
}
@media (max-width: 768px) {
  .sales-list-page-wrapper .sales-table-container {
    padding: var(--space);
  }
  .sales-list-page-wrapper .sales-list-header {
    padding: var(--space-md);
  }
  .sales-list-page-wrapper .sales-list-title {
    font-size: 1.5rem;
  }
}

.sales-return-page-wrapper {
  /* Search Section */
  /* Info Cards */
  /* Cards */
  /* Badges */
  /* Form Elements */
  /* Table */
  /* Quantity Controls */
  /* Summary */
  /* Payment Section */
  /* Responsive Adjustments */
  /* Print Styles */
}
.sales-return-page-wrapper .sales-return-container {
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #5c4ba0;
  border-radius: var(--radius-container);
}
.sales-return-page-wrapper .sales-return-search {
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 30px 1fr;
  grid-template-columns: 2fr 1fr;
  gap: 0 30px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (max-width: 768px) {
  .sales-return-page-wrapper .sales-return-search {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.sales-return-page-wrapper .sales-return-info-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr var(--space-lg) 1fr;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
@media (max-width: 900px) {
  .sales-return-page-wrapper .sales-return-info-cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.sales-return-page-wrapper .sales-return-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--color-border);
}
.sales-return-page-wrapper .sales-return-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}
.sales-return-page-wrapper .sales-return-card-title {
  font-size: 1.4rem;
  color: #5c4ba0;
}
.sales-return-page-wrapper .sales-return-badge {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
}
.sales-return-page-wrapper .sales-return-badge-completed {
  background-color: #e9f5ee;
  color: #0d6832;
}
.sales-return-page-wrapper .sales-return-badge-returned {
  background-color: #fef3f2;
  color: #c01048;
}
.sales-return-page-wrapper .sales-return-form-group {
  margin-bottom: var(--space-md);
}
.sales-return-page-wrapper .sales-return-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: #161313;
  font-size: 18px;
  font-family: "Oxanium", sans-serif;
}
.sales-return-page-wrapper .sales-return-input {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sales-return-page-wrapper .sales-return-input:focus {
  outline: none;
  border-color: #5c4ba0;
  -webkit-box-shadow: var(--shadow-primary-focus);
          box-shadow: var(--shadow-primary-focus);
}
.sales-return-page-wrapper .sales-return-btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background-color: #5c4ba0;
  color: #ffffff;
  border: none;
  border-radius: var(--radius);
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.sales-return-page-wrapper .sales-return-btn:hover {
  background-color: #111049;
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
.sales-return-page-wrapper .sales-return-btn-secondary {
  background-color: var(--color-light);
  color: #161313;
}
.sales-return-page-wrapper .sales-return-btn-secondary:hover {
  background-color: var(--color-gray);
  color: #ffffff;
}
.sales-return-page-wrapper .sales-return-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
}
.sales-return-page-wrapper .sales-return-table th {
  background-color: var(--color-light);
  padding: var(--space-sm);
  text-align: left;
  font-weight: 600;
}
.sales-return-page-wrapper .sales-return-table td {
  padding: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}
.sales-return-page-wrapper .sales-return-table tr:hover {
  background-color: rgba(92, 75, 160, 0.05);
}
.sales-return-page-wrapper .sales-return-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sales-return-page-wrapper .sales-return-quantity-btn {
  width: 32px;
  height: 32px;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sales-return-page-wrapper .sales-return-quantity-btn:hover {
  background: #5c4ba0;
  color: #ffffff;
}
.sales-return-page-wrapper .sales-return-quantity-input {
  width: 100px;
  height: 32px;
  text-align: center;
  margin: 0 var(--space-xs);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.sales-return-page-wrapper .sales-return-summary {
  background-color: var(--color-light);
  border-radius: var(--radius);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}
.sales-return-page-wrapper .sales-return-summary-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: var(--space-sm);
}
.sales-return-page-wrapper .sales-return-summary-total {
  font-weight: 700;
  font-size: 1.2rem;
  border-top: 2px solid var(--color-border);
  padding-top: var(--space-sm);
  margin-top: var(--space);
  text-align: right;
}
.sales-return-page-wrapper .sales-return-payments {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: var(--space-lg);
  position: relative;
}
.sales-return-page-wrapper .sales-return-payment-methods {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr var(--space-sm) 1fr var(--space-sm) 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.sales-return-page-wrapper .sales-return-payment-method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--space);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sales-return-page-wrapper .sales-return-payment-method:hover {
  border-color: #5c4ba0;
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
}
.sales-return-page-wrapper .sales-return-payment-method.selected {
  border-color: #5c4ba0;
  background-color: rgba(92, 75, 160, 0.1);
}
.sales-return-page-wrapper .sales-return-payment-details {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: rgba(92, 75, 160, 0.05);
  display: none;
}
.sales-return-page-wrapper .sales-return-payment-details.active {
  display: block;
}
.sales-return-page-wrapper .sales-return-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
@media (max-width: 768px) {
  .sales-return-page-wrapper .sales-return-payment-methods {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .sales-return-page-wrapper .sales-return-table {
    display: block;
    overflow-x: auto;
  }
  .sales-return-page-wrapper .sales-return-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sales-return-page-wrapper .sales-return-actions .sales-return-btn {
    width: 100%;
  }
}
@media print {
  .sales-return-page-wrapper .sales-return-btn {
    display: none;
  }
  .sales-return-page-wrapper .sales-return-container {
    max-width: 100%;
    padding: 0;
  }
  .sales-return-page-wrapper .sales-return-card {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid var(--color-border);
  }
}

.purchase-return-page-wrapper {
  /* Search Section */
  /* Info Cards */
  /* Cards */
  /* Badges */
  /* Form Elements */
  /* Table */
  /* Quantity Controls */
  /* Summary */
  /* Payment Section */
  /* Responsive Adjustments */
  /* Print Styles */
}
.purchase-return-page-wrapper .purchase-return-container {
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #5c4ba0;
  border-radius: var(--radius-container);
}
.purchase-return-page-wrapper .purchase-return-search {
  background: #ffffff;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr var(--space-md) 1fr;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (max-width: 768px) {
  .purchase-return-page-wrapper .purchase-return-search {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.purchase-return-page-wrapper .purchase-return-search-btn {
  grid-column: 1/-1;
  -ms-grid-column-align: end;
      justify-self: end;
  margin-top: var(--space-md);
}
.purchase-return-page-wrapper .purchase-return-info-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr var(--space-lg) 1fr;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
@media (max-width: 900px) {
  .purchase-return-page-wrapper .purchase-return-info-cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.purchase-return-page-wrapper .purchase-return-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.purchase-return-page-wrapper .purchase-return-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}
.purchase-return-page-wrapper .purchase-return-card-title {
  font-size: 1.4rem;
  color: #5c4ba0;
}
.purchase-return-page-wrapper .purchase-return-badge {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
}
.purchase-return-page-wrapper .purchase-return-badge-completed {
  background-color: #e9f5ee;
  color: #0d6832;
}
.purchase-return-page-wrapper .purchase-return-badge-returned {
  background-color: #fef3f2;
  color: #c01048;
}
.purchase-return-page-wrapper .purchase-return-form-group {
  margin-bottom: 0px;
}
.purchase-return-page-wrapper .purchase-return-btn {
  margin-top: -30px;
}
.purchase-return-page-wrapper .purchase-return-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: #161313;
  font-size: 18px;
  font-family: "Oxanium", sans-serif;
}
.purchase-return-page-wrapper .purchase-return-input {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.purchase-return-page-wrapper .purchase-return-input:focus {
  outline: none;
  border-color: #5c4ba0;
  -webkit-box-shadow: var(--shadow-primary-focus);
          box-shadow: var(--shadow-primary-focus);
}
.purchase-return-page-wrapper .purchase-return-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
}
.purchase-return-page-wrapper .purchase-return-table th {
  background-color: var(--color-light);
  padding: var(--space-sm);
  text-align: left;
  font-weight: 600;
}
.purchase-return-page-wrapper .purchase-return-table td {
  padding: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}
.purchase-return-page-wrapper .purchase-return-table tr:hover {
  background-color: rgba(59, 130, 246, 0.05);
}
.purchase-return-page-wrapper .purchase-return-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.purchase-return-page-wrapper .purchase-return-quantity-btn {
  width: 32px;
  height: 32px;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.purchase-return-page-wrapper .purchase-return-quantity-btn:hover {
  background: #5c4ba0;
  color: #ffffff;
}
.purchase-return-page-wrapper .purchase-return-quantity-input {
  width: 100px;
  height: 32px;
  text-align: center;
  margin: 0 var(--space-xs);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.purchase-return-page-wrapper .purchase-return-summary {
  background-color: var(--color-light);
  border-radius: var(--radius);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}
.purchase-return-page-wrapper .purchase-return-summary-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: var(--space-sm);
}
.purchase-return-page-wrapper .purchase-return-summary-total {
  font-weight: 700;
  font-size: 1.2rem;
  border-top: 2px solid var(--color-border);
  padding-top: var(--space-sm);
  margin-top: var(--space);
}
.purchase-return-page-wrapper .purchase-return-payments {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: var(--space-lg);
  position: relative;
}
.purchase-return-page-wrapper .purchase-return-payment-methods {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr var(--space-sm) 1fr var(--space-sm) 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.purchase-return-page-wrapper .purchase-return-payment-method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--space);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.purchase-return-page-wrapper .purchase-return-payment-method:hover {
  border-color: #5c4ba0;
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
}
.purchase-return-page-wrapper .purchase-return-payment-method.selected {
  border-color: #5c4ba0;
  background-color: rgba(59, 130, 246, 0.1);
}
.purchase-return-page-wrapper .purchase-return-payment-details {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: rgba(59, 130, 246, 0.05);
  display: none;
}
.purchase-return-page-wrapper .purchase-return-payment-details.active {
  display: block;
}
.purchase-return-page-wrapper .purchase-return-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
@media (max-width: 768px) {
  .purchase-return-page-wrapper .purchase-return-payment-methods {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .purchase-return-page-wrapper .purchase-return-table {
    display: block;
    overflow-x: auto;
  }
  .purchase-return-page-wrapper .purchase-return-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .purchase-return-page-wrapper .purchase-return-actions .purchase-return-btn {
    width: 100%;
  }
}
@media print {
  .purchase-return-page-wrapper .purchase-return-btn {
    display: none;
  }
  .purchase-return-page-wrapper .purchase-return-container {
    max-width: 100%;
    padding: 0;
  }
  .purchase-return-page-wrapper .purchase-return-card {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid var(--color-border);
  }
}

.expense-page-wrapper {
  /* Expense Container */
  /* Expense Form */
  /* Input with icon */
  /* Expense Transaction */
  /* Dynamic Fields */
  /* Buttons */
  /* Modal */
  /* Responsive Design */
  /* Utility Classes */
}
.expense-page-wrapper .expense-container {
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  width: 100%;
  border: 1px solid #5c4ba0;
  border-radius: var(--radius-container);
}
.expense-page-wrapper .expense-form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.expense-page-wrapper .expense-group {
  margin-bottom: var(--space-sm);
  position: relative;
}
.expense-page-wrapper .expense-group.full-width {
  grid-column: 1/-1;
}
.expense-page-wrapper .expense-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: #161313;
  font-size: 16px;
}
.expense-page-wrapper .expense-input, .expense-page-wrapper .expense-select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.expense-page-wrapper .expense-input:focus, .expense-page-wrapper .expense-select:focus {
  outline: none;
  border-color: #5c4ba0;
  -webkit-box-shadow: var(--shadow-primary-focus);
          box-shadow: var(--shadow-primary-focus);
}
.expense-page-wrapper .input-with-icon {
  position: relative;
}
.expense-page-wrapper .input-icon {
  position: absolute;
  right: var(--space-md);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #5c4ba0;
  cursor: pointer;
  padding: 5px 10px;
  background: rgb(224, 225, 239);
  border-radius: 5px;
}
.expense-page-wrapper .expense-transaction {
  background-color: var(--color-light);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
}
.expense-page-wrapper .transaction-title {
  margin-bottom: var(--space);
  color: #5c4ba0;
}
.expense-page-wrapper .transaction-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}
.expense-page-wrapper .transaction-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-xs);
  cursor: pointer;
}
.expense-page-wrapper .transaction-option input[type=radio] {
  width: auto;
  margin-right: var(--space-xs);
}
.expense-page-wrapper .transaction-fields {
  background-color: rgba(212, 227, 242, 0.5);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.expense-page-wrapper .transaction-fields.hidden {
  display: none;
}
.expense-page-wrapper .expense-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: var(--space);
  margin-top: var(--space-xl);
}
.expense-page-wrapper .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.expense-page-wrapper .modal-content {
  background-color: #ffffff;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 500px;
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}
.expense-page-wrapper .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--space-lg);
}
.expense-page-wrapper .modal-close {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-gray);
}
.expense-page-wrapper .modal-close:hover {
  color: #161313;
}
@media (max-width: 768px) {
  .expense-page-wrapper .expense-form {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .expense-page-wrapper .expense-container {
    padding: var(--space-lg);
  }
  .expense-page-wrapper .transaction-options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--space-sm);
  }
}
.expense-page-wrapper .required::after {
  content: "*";
  color: #e53e3e;
  margin-left: 4px;
}

.expense-list-page-wrapper .expense-list-container {
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: var(--radius-container);
  border: 1px solid #5c4ba0;
}
.expense-list-page-wrapper .expense-list-table-container {
  overflow-x: auto !important;
  overflow-y: hidden;
  height: 100%;
}
.expense-list-page-wrapper .expense-list-table {
  width: 100%;
  border-collapse: collapse;
}
.expense-list-page-wrapper .expense-list-table th {
  background-color: #f1f5fd;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: #4a6cf7;
  border-bottom: 2px solid #e4e9f2;
}
.expense-list-page-wrapper .expense-list-table td {
  padding: 16px;
  border-bottom: 1px solid #e4e9f2;
}
.expense-list-page-wrapper .expense-list-table tbody tr {
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.expense-list-page-wrapper .expense-list-table tbody tr:hover {
  background-color: #f8faff;
}
.expense-list-page-wrapper .expense-list-table .checkbox-cell {
  width: 50px;
  text-align: center;
}
.expense-list-page-wrapper .expense-list-table .amount-cell {
  font-weight: 600;
  color: #2e7d32;
}
.expense-list-page-wrapper .expense-list-table .actions-cell {
  position: relative;
  width: 60px;
}
.expense-list-page-wrapper .actions-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 5px;
  color: #64748b;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.expense-list-page-wrapper .actions-dropdown-btn:hover {
  color: #4a6cf7;
}
.expense-list-page-wrapper .actions-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 10px;
  background: white;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 220px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.expense-list-page-wrapper .actions-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.expense-list-page-wrapper .actions-dropdown-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #334155;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.expense-list-page-wrapper .actions-dropdown-menu button:hover {
  background-color: #f1f5fd;
  color: #4a6cf7;
}
.expense-list-page-wrapper .expense-list-summary {
  background-color: #e8f5e9;
  font-weight: 600;
}
.expense-list-page-wrapper .expense-list-summary td {
  padding: 16px;
  border-top: 2px solid #c8e6c9;
  color: #2e7d32;
}
.expense-list-page-wrapper .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.expense-list-page-wrapper .modal.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.expense-list-page-wrapper .modal-content {
  background: white;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.expense-list-page-wrapper .modal-header {
  padding: 20px;
  background: #4a6cf7;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.expense-list-page-wrapper .modal-header h2 {
  font-size: 20px;
  font-weight: 600;
}
.expense-list-page-wrapper .modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}
.expense-list-page-wrapper .modal-body {
  padding: 20px;
}
.expense-list-page-wrapper .modal-body p {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .expense-list-page-wrapper .expense-list-table {
    min-width: 800px;
  }
  .expense-list-page-wrapper .expense-list-table-container {
    overflow-x: auto;
  }
}
@media (max-width: 480px) {
  .expense-list-page-wrapper .expense-list-header {
    padding: 15px;
  }
  .expense-list-page-wrapper .expense-list-header h1 {
    font-size: 20px;
  }
  .expense-list-page-wrapper .modal-content {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .dashboard-main-page-wrapper {
    padding: 10px;
  }
}
.dashboard-main-page-wrapper .dashboard-wigets-container {
  width: 100%;
  background: #eeeeee;
  padding: 30px;
  border-radius: 20px;
  /* Widget-specific styles */
}
@media (max-width: 992px) {
  .dashboard-main-page-wrapper .dashboard-wigets-container {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .dashboard-main-page-wrapper .dashboard-wigets-container .row {
    margin-top: -90px;
  }
}
.dashboard-main-page-wrapper .dashboard-wigets-container .widget {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 10px 15px 10px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.dashboard-main-page-wrapper .dashboard-wigets-container .widget-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 10px;
}
.dashboard-main-page-wrapper .dashboard-wigets-container .widget-icon {
  font-size: 24px;
  margin-right: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}
.dashboard-main-page-wrapper .dashboard-wigets-container .widget-title {
  font-family: "Oxanium", sans-serif;
  font-size: 18px;
  color: #530202;
  margin-bottom: 5px;
  font-weight: 700;
}
.dashboard-main-page-wrapper .dashboard-wigets-container .widget-desc {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}
.dashboard-main-page-wrapper .dashboard-wigets-container .widget-value {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  font-family: "Oxanium", sans-serif;
  color: #5c4ba0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dashboard-main-page-wrapper .dashboard-wigets-container .widget-footer {
  margin-top: 10px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-align: center;
}
.dashboard-main-page-wrapper .dashboard-wigets-container .widget:hover .widget-footer {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.dashboard-main-page-wrapper .dashboard-wigets-container .explore-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #5c4ba0;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 0.9rem;
  width: 80%;
}
.dashboard-main-page-wrapper .dashboard-wigets-container .explore-btn:hover {
  background: #111049;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.dashboard-main-page-wrapper .dashboard-wigets-container .explore-btn i {
  margin-left: 5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.dashboard-main-page-wrapper .dashboard-wigets-container .explore-btn:hover i {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.dashboard-main-page-wrapper .dashboard-wigets-container .widget-icon {
  background: rgba(100, 90, 142, 0.15);
  color: #5c4ba0;
}
.dashboard-main-page-wrapper .dashboard-wigets-container .widget:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
  background: rgb(245, 246, 255);
}
.dashboard-main-page-wrapper .dashboard-wigets-container .widget:hover .widget-icon {
  color: rgb(0, 72, 241);
}
.dashboard-main-page-wrapper .dashboard-report-container {
  max-width: 2400px;
  margin: 30px auto;
  border-radius: var(--radius-container);
  padding: 24px;
  border: 1px solid var(--color-border);
}
.dashboard-main-page-wrapper .dashboard-report-container .dashboard-report-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  padding-bottom: 10px;
}
.dashboard-main-page-wrapper .dashboard-report-container .dashboard-title {
  font-family: "Oxanium", sans-serif;
  color: #530202;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0px;
}
.dashboard-main-page-wrapper .dashboard-report-container .report-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.dashboard-main-page-wrapper .dashboard-report-container .charts-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .dashboard-main-page-wrapper .dashboard-report-container .charts-grid {
    -ms-grid-columns: 7fr 5fr;
    grid-template-columns: 7fr 5fr;
  }
}
.dashboard-main-page-wrapper .dashboard-report-container .chart-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  height: 380px;
  border: 1px solid var(--color-border);
}
.dashboard-main-page-wrapper .dashboard-report-container .chart-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.dashboard-main-page-wrapper .dashboard-report-container .chart-title {
  font-family: "Oxanium", sans-serif;
  color: #1f0202;
  font-size: 16px;
  font-weight: 600;
}
.dashboard-main-page-wrapper .dashboard-report-container .chart-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.dashboard-main-page-wrapper .dashboard-report-container .chart-actions select {
  padding: 6px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  font-family: "Outfit", sans-serif;
  color: #161313;
  background-color: #ffffff;
}
.dashboard-main-page-wrapper .dashboard-report-container canvas {
  width: 100% !important;
  height: 280px !important;
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section {
  max-width: 2400px;
  padding: 10px;
  margin: 50px auto;
  padding-bottom: 10px;
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .products-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr var(--space-md) 1fr var(--space-md) 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
@media (max-width: 1024px) {
  .dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .products-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .product-card {
  background: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  overflow: hidden;
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .card-body {
  padding: 0px !important;
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--space-sm);
  background: linear-gradient(135deg, #5c4ba0, #111049);
  color: #ffffff;
  margin-bottom: 5px;
  color: #ffffff !important;
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .section-title {
  font-family: "Oxanium", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .view-all-btn {
  background-color: #ffffff;
  color: #5c4ba0;
  border: none;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-xs);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .view-all-btn:hover {
  background-color: var(--color-light);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .product-table {
  width: 100%;
  border-collapse: collapse;
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .product-table th {
  text-align: left;
  padding: var(--space-sm);
  font-weight: 600;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .product-table td {
  padding: 5px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .product-table tr:last-child td {
  border-bottom: none;
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .sl-no {
  width: 50px;
  text-align: center;
  font-weight: 500;
  color: var(--color-text-light);
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .item-image {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius);
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .item-name {
  font-weight: 500;
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .sku-code {
  font-size: 0.8rem;
  color: var(--color-text-light);
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .stock-qty {
  font-weight: 600;
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .low-stock {
  color: #dc2626;
  font-weight: 600;
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .status-active {
  background-color: #dcfce7;
  color: #166534;
}
.dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .status-low {
  background-color: #fef2f2;
  color: #dc2626;
}
@media (max-width: 768px) {
  .dashboard-main-page-wrapper .dashboard-topsell-stockalert-section .product-table {
    overflow-x: auto !important;
  }
}

.transactions-page-wrapper .transaction-container {
  width: 100%;
  max-width: 2400px;
  border-radius: var(--radius-lg);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius-container);
  border: 1px solid #5c4ba0;
}
.transactions-page-wrapper .transaction-list {
  overflow-x: auto;
}
.transactions-page-wrapper .transaction-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 768px;
}
.transactions-page-wrapper .transaction-table th {
  background-color: var(--color-light);
  padding: var(--space);
  text-align: left;
  font-weight: 600;
  color: #111049;
  position: sticky;
  top: 0;
}
.transactions-page-wrapper .transaction-table td {
  padding: var(--space);
  border-bottom: 1px solid var(--color-border);
}
.transactions-page-wrapper .transaction-table tr:last-child td {
  border-bottom: none;
}
.transactions-page-wrapper .transaction-table tr {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.transactions-page-wrapper .transaction-table tr:hover {
  background-color: rgba(92, 75, 160, 0.05);
}
.transactions-page-wrapper .transaction-checkbox {
  width: 20px;
  height: 20px;
  accent-color: #5c4ba0;
  cursor: pointer;
}
.transactions-page-wrapper .status-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
}
.transactions-page-wrapper .status-success {
  background-color: rgba(76, 175, 80, 0.15);
  color: #2e7d32;
}
.transactions-page-wrapper .status-failed {
  background-color: rgba(244, 67, 54, 0.15);
  color: #d32f2f;
}
.transactions-page-wrapper .btn {
  padding: var(--space-xs) var(--space-sm);
  border: none;
  border-radius: var(--radius);
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--space-xs);
}
.transactions-page-wrapper .btn-view {
  background-color: #5c4ba0;
  color: #ffffff;
}
.transactions-page-wrapper .btn-view:hover {
  background-color: #111049;
  -webkit-box-shadow: var(--shadow-primary-focus);
          box-shadow: var(--shadow-primary-focus);
}
.transactions-page-wrapper .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.transactions-page-wrapper .modal.active {
  opacity: 1;
  visibility: visible;
}
.transactions-page-wrapper .modal-content {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  width: 90%;
  max-width: 500px;
  -webkit-box-shadow: var(--shadow-secondary-xl);
          box-shadow: var(--shadow-secondary-xl);
  position: relative;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.transactions-page-wrapper .modal.active .modal-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.transactions-page-wrapper .close-modal {
  position: absolute;
  top: var(--space);
  right: var(--space);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-light);
}
.transactions-page-wrapper .receipt-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.transactions-page-wrapper .receipt-title {
  font-family: "Oxanium", sans-serif;
  color: #5c4ba0;
  margin-bottom: var(--space-xs);
}
.transactions-page-wrapper .receipt-details {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr var(--space) 1fr;
  grid-template-columns: 1fr 1fr;
  gap: var(--space);
  margin-bottom: var(--space-lg);
}
.transactions-page-wrapper .receipt-item {
  margin-bottom: var(--space-sm);
}
.transactions-page-wrapper .receipt-label {
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
  display: block;
}
.transactions-page-wrapper .receipt-value {
  font-weight: 600;
  color: #161313;
}
.transactions-page-wrapper .receipt-amount {
  text-align: center;
  padding: var(--space);
  background-color: var(--color-light);
  border-radius: var(--radius-lg);
  margin: var(--space) 0;
}
.transactions-page-wrapper .amount {
  font-size: 2rem;
  font-weight: 700;
  color: #5c4ba0;
  font-family: "Oxanium", sans-serif;
}
.transactions-page-wrapper .receipt-footer {
  text-align: center;
  margin-top: var(--space-xl);
  color: var(--color-text-light);
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .transactions-page-wrapper .transaction-list {
    overflow-x: auto;
    width: 100%;
  }
  .transactions-page-wrapper .transaction-table {
    min-width: 700px;
  }
  .transactions-page-wrapper body {
    padding: var(--space-sm);
  }
}
@media (max-width: 600px) {
  .transactions-page-wrapper .modal-content {
    padding: var(--space-lg);
  }
  .transactions-page-wrapper .receipt-details {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.print-labels-page-wrapper .label-generator-container {
  border-radius: var(--radius-container);
  padding: 0;
  border: 1px solid #5c4ba0;
}
.print-labels-page-wrapper .label-generator-body {
  padding: 1.5rem;
}
.print-labels-page-wrapper .label-control-group {
  margin-bottom: 1.5rem;
}
.print-labels-page-wrapper .labels-preview-container {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.5rem;
  min-height: 100px;
  max-height: auto;
  overflow-y: auto;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.print-labels-page-wrapper .labels-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  width: 100%;
}
.print-labels-page-wrapper .single-label {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 0.75rem;
  text-align: center;
  background: white;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  page-break-inside: avoid;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.print-labels-page-wrapper .single-label:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.print-labels-page-wrapper .label-brand {
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  color: #2c3e50;
}
.print-labels-page-wrapper .label-product {
  font-size: 0.75rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.print-labels-page-wrapper .label-barcode {
  margin: 0.5rem 0;
  padding: 0.25rem;
  border-radius: 4px;
}
.print-labels-page-wrapper .label-code {
  font-size: 0.65rem;
  color: #868e96;
  font-family: "Courier New", monospace;
}
.print-labels-page-wrapper .action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
.print-labels-page-wrapper .btn-action {
  padding: 0.75rem;
  font-weight: 500;
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.print-labels-page-wrapper .btn-print {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
}
.print-labels-page-wrapper .btn-print:hover {
  background: linear-gradient(135deg, #218838, #1e9e8a);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.print-labels-page-wrapper .btn-pdf {
  background: linear-gradient(135deg, #dc3545, #e83e8c);
  color: white;
}
.print-labels-page-wrapper .btn-pdf:hover {
  background: linear-gradient(135deg, #c82333, #d91a7a);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.print-labels-page-wrapper .preview-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: between;
      -ms-flex-pack: between;
          justify-content: between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e9ecef;
}
.print-labels-page-wrapper .label-count-badge {
  background: #6f42c1;
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-left: 10px;
}
.print-labels-page-wrapper .control-section {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
@media print {
  .print-labels-page-wrapper body * {
    visibility: hidden;
  }
  .print-labels-page-wrapper .labels-preview-container,
  .print-labels-page-wrapper .labels-preview-container * {
    visibility: visible;
  }
  .print-labels-page-wrapper .labels-preview-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    margin: 0;
  }
  .print-labels-page-wrapper .action-buttons,
  .print-labels-page-wrapper .label-control-group,
  .print-labels-page-wrapper .label-generator-header,
  .print-labels-page-wrapper .preview-header {
    display: none !important;
  }
  .print-labels-page-wrapper .labels-grid {
    -ms-grid-columns: 1fr 0.5cm 1fr 0.5cm 1fr 0.5cm 1fr !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.5cm !important;
  }
  .print-labels-page-wrapper .single-label {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border: 1px solid #000 !important;
    page-break-inside: avoid;
  }
}
.print-labels-page-wrapper .form-label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
}
.print-labels-page-wrapper .form-select, .print-labels-page-wrapper .form-control {
  border: 1px solid #ced4da;
  border-radius: 6px;
  padding: 0.75rem;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.print-labels-page-wrapper .form-select:focus, .print-labels-page-wrapper .form-control:focus {
  border-color: #4dabf7;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(77, 171, 247, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(77, 171, 247, 0.25);
}

.pos-details-page-wrapper .dashboard-content-container {
  border-radius: 40px;
  -webkit-box-shadow: 0 2px 10px rgba(30, 30, 30, 0.1);
          box-shadow: 0 2px 10px rgba(30, 30, 30, 0.1);
  border: 1px solid #5c4ba0;
}
.pos-details-page-wrapper .pos-details-section {
  padding-top: 20px;
}
.pos-details-page-wrapper .pos-details-section .details-nav .nav-link {
  color: #161313;
  font-weight: 500;
  border: none;
  padding: 12px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px dashed rgba(66, 67, 71, 0.2);
}
.pos-details-page-wrapper .pos-details-section .details-nav .nav-link:hover {
  color: #5c4ba0;
  background: rgba(92, 75, 160, 0.05);
}
.pos-details-page-wrapper .pos-details-section .details-nav .nav-link.active {
  color: #ffffff;
  background: #5c4ba0;
  border: none;
}
.pos-details-page-wrapper .pos-details-section .active-section-heading .details-title {
  background: rgba(92, 75, 160, 0.05);
  color: #530202;
  font-weight: 600;
  font-size: 24px;
  text-align: left;
  padding: 15px;
}
.pos-details-page-wrapper .pos-details-section .details-content .content-section {
  display: none;
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
}
.pos-details-page-wrapper .pos-details-section .details-content .content-section.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.pos-details-page-wrapper .pos-details-section .details-content .info-label {
  color: #530202;
  font-weight: 600;
}
.pos-details-page-wrapper .pos-details-section .details-content .info-item {
  color: #161313;
}
.pos-details-page-wrapper .pos-details-section .details-content .description-text {
  color: #1f0202;
  line-height: 1.5;
}
.pos-details-page-wrapper .pos-details-section .details-content .image-upload-area {
  position: relative;
  padding: 30px;
  border-radius: 20px !important;
}
.pos-details-page-wrapper .pos-details-section .details-content .image-upload-area .image-preview {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 20px;
}
.pos-details-page-wrapper .pos-details-section .details-content .image-upload-area .image-preview:hover {
  background: rgba(92, 75, 160, 0.05);
}
.pos-details-page-wrapper .pos-details-section .details-content .image-upload-area .image-preview .image-placeholder {
  color: #1f0202;
  padding: 30px;
}
.pos-details-page-wrapper .pos-details-section .details-content .image-upload-area .image-upload {
  border-radius: 20px;
  border: 1px solid #424347;
}
.pos-details-page-wrapper .pos-details-section .details-content .status-item {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-color: rgba(66, 67, 71, 0.2) !important;
}
.pos-details-page-wrapper .pos-details-section .details-content .status-item:hover {
  border-color: #5c4ba0 !important;
  -webkit-box-shadow: 0 2px 8px rgba(30, 30, 30, 0.1);
          box-shadow: 0 2px 8px rgba(30, 30, 30, 0.1);
}
.pos-details-page-wrapper .pos-details-section .details-content .status-item .form-check-input {
  width: 3em;
  height: 1.5em;
}
.pos-details-page-wrapper .pos-details-section .details-content .status-item .form-check-input:checked {
  background-color: #5c4ba0;
  border-color: #5c4ba0;
}
.pos-details-page-wrapper .pos-details-section .details-content .status-item .form-check-input:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(92, 75, 160, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(92, 75, 160, 0.25);
}
.pos-details-page-wrapper .status-badge .active-badge {
  background: rgb(5, 141, 5);
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
}
.pos-details-page-wrapper .status-badge .inactive-badge {
  background: rgb(141, 5, 43);
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .pos-details-page-wrapper {
    padding: 10px;
  }
  .pos-details-page-wrapper .details-nav .nav-link {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  .pos-details-page-wrapper .details-content {
    padding: 15px !important;
  }
}
.loading-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 300px;
  gap: 20px;
}

.loading-circle {
  width: 30px;
  height: 30px;
  border: 3px solid #e0e0e0;
  border-top: 3px solid #111049;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

/* Animation 1: Gradient Text */
.loading-text {
  color: #000000;
  font-family: "Oxanium", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.no-data-section {
  max-height: 300px;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.no-data-cube {
  width: 100px;
  height: 100px;
  position: relative;
  margin: 0 auto 30px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-animation: cubeRotate 8s infinite linear;
          animation: cubeRotate 8s infinite linear;
}

.cube-face {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
}

.cube-front {
  -webkit-transform: rotateY(0deg) translateZ(50px);
          transform: rotateY(0deg) translateZ(50px);
}

.cube-back {
  -webkit-transform: rotateY(180deg) translateZ(50px);
          transform: rotateY(180deg) translateZ(50px);
}

.cube-right {
  -webkit-transform: rotateY(90deg) translateZ(50px);
          transform: rotateY(90deg) translateZ(50px);
}

.cube-left {
  -webkit-transform: rotateY(-90deg) translateZ(50px);
          transform: rotateY(-90deg) translateZ(50px);
}

.cube-top {
  -webkit-transform: rotateX(90deg) translateZ(50px);
          transform: rotateX(90deg) translateZ(50px);
}

.cube-bottom {
  -webkit-transform: rotateX(-90deg) translateZ(50px);
          transform: rotateX(-90deg) translateZ(50px);
}

.no-data-title {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-out 0.5s forwards;
          animation: fadeIn 1s ease-out 0.5s forwards;
  letter-spacing: 0.5px;
}

.no-data-subtitle {
  color: rgba(28, 28, 28, 0.6);
  font-size: 12px;
  font-weight: 300;
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-out 1s forwards;
          animation: fadeIn 1s ease-out 1s forwards;
  letter-spacing: 1px;
}

@-webkit-keyframes cubeRotate {
  0% {
    -webkit-transform: rotateX(0) rotateY(0) rotateZ(0);
            transform: rotateX(0) rotateY(0) rotateZ(0);
  }
  100% {
    -webkit-transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
            transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}

@keyframes cubeRotate {
  0% {
    -webkit-transform: rotateX(0) rotateY(0) rotateZ(0);
            transform: rotateX(0) rotateY(0) rotateZ(0);
  }
  100% {
    -webkit-transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
            transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}