:root {
  --primary: #ffa600;
  --secondary: #0077b6;
  --accent: #1c2a48;
  --error: #e63946;
  --text-light: #f7f7f7;
  --text-dark: hsl(0, 0%, 0%);
  --bg-dark: hsl(0, 0%, 10%);
  --success: #008000;
  --secondary-dark-8: rgb(0, 92.3230769231, 141.2);
  --secondary-dark-12: rgb(0, 78.9846153846, 120.8);
  --accent-dark-8: rgb(16.576, 24.864, 42.624);
  --accent-dark-12: rgb(10.864, 16.296, 27.936);
  --error-dark-8: rgb(218.599103139, 27.600896861, 41.9533632287);
  --error-dark-12: rgb(200.4860986547, 25.3139013453, 38.4771300448);
  --primary-dark-8: rgb(214.2, 139.44, 0);
  --primary-dark-12: rgb(193.8, 126.16, 0);
}

.theme-light {
  --bg: #ffffff;
  --text: #000000;
  --primary: #ffa600;
  --secondary: #0077b6;
  --accent: #1c2a48;
  --error: #e63946;
  --warning: #ff9800;
  --info: #2196f3;
  --neutral-100: #f7f7f7;
  --neutral-200: #e0e0e0;
  --neutral-300: #cccccc;
  --neutral-400: #999999;
  --neutral-500: #666666;
}

.dark-theme {
  --bg: #121212;
  --text: #ffffff;
  --primary: #ffa600;
  --secondary: #0077b6;
  --accent: #1c2a48;
  --error: #e63946;
  --warning: #ff9800;
  --info: #2196f3;
  --neutral-100: #222222;
  --neutral-200: #333333;
  --neutral-300: #444444;
  --neutral-400: #777777;
  --neutral-500: #999999;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "HelveticaFont", sans-serif;
  font-style: normal;
  transition: background 0.3s, color 0.3s;
}

@font-face {
  font-family: "HelveticaFont";
  src: url("../fonts/Helvetica-Bold.ttf") format("woff2");
  font-weight: 700; /* Light */
  font-style: normal;
}
@font-face {
  font-family: "HelveticaFont";
  src: url("../fonts/helvetica-light-587ebe5a59211.ttf") format("woff2");
  font-weight: 400; /* Normal */
  font-style: normal;
}
@font-face {
  font-family: "HelveticaFont";
  src: url("../fonts/Helvetica.ttf") format("woff2");
  font-weight: 400; /* Normal */
  font-style: normal;
}
@font-face {
  font-family: "MyCustomFont";
  src: url("../fonts/Helvetica.ttf") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* Renders fallback font until custom font loads */
}
:root {
  /* Base size is 1rem = 16px by default */
  --font-size-xs: clamp(0.75rem, 0.7vw, 0.875rem); /* 12px - 14px */
  --font-size-sm: clamp(0.875rem, 0.8vw, 1rem); /* 14px - 16px */
  --font-size-base: clamp(1rem, 1vw, 1.125rem); /* 16px - 18px */
  --font-size-md: clamp(1.125rem, 1.2vw, 1.25rem); /* 18px - 20px */
  --font-size-lg: clamp(1.25rem, 1.5vw, 1.5rem); /* 20px - 24px */
  --font-size-xl: clamp(1.5rem, 2vw, 2rem); /* 24px - 32px */
  --font-size-2xl: clamp(2rem, 3vw, 2.5rem); /* 32px - 40px */
  --font-size-3xl: clamp(2.5rem, 4vw, 3rem); /* 40px - 48px */
}

body {
  font-family: "HelveticaFont", sans-serif;
  transition: background 0.3s, color 0.3s;
  font-size: var(--font-size-base);
  line-height: 1.5;
  overflow-x: hidden;
}

h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
}

h2 {
  font-size: var(--font-size-2xl);
}

h3 {
  font-size: var(--font-size-xl);
}

h4 {
  font-size: var(--font-size-lg);
}

p {
  font-size: var(--font-size-base);
}

small {
  font-size: var(--font-size-xs);
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

:root {
  --space-1: 0.25rem; /* 4px */
  --space-2: 0.5rem; /* 8px */
  --space-3: 0.75rem; /* 12px */
  --space-4: 1rem; /* 16px */
  --space-5: 1.5rem; /* 24px */
  --space-6: 2rem; /* 32px */
  --space-8: 2.5rem; /* 40px */
  --space-10: 3rem; /* 48px */
}

.m-1 {
  m: var(--space-1);
}

.mx-1 {
  m-left: var(--space-1);
  m-right: var(--space-1);
}

.my-1 {
  m-top: var(--space-1);
  m-bottom: var(--space-1);
}

.m-2 {
  m: var(--space-2);
}

.mx-2 {
  m-left: var(--space-2);
  m-right: var(--space-2);
}

.my-2 {
  m-top: var(--space-2);
  m-bottom: var(--space-2);
}

.m-3 {
  m: var(--space-3);
}

.mx-3 {
  m-left: var(--space-3);
  m-right: var(--space-3);
}

.my-3 {
  m-top: var(--space-3);
  m-bottom: var(--space-3);
}

.m-4 {
  m: var(--space-4);
}

.mx-4 {
  m-left: var(--space-4);
  m-right: var(--space-4);
}

.my-4 {
  m-top: var(--space-4);
  m-bottom: var(--space-4);
}

.m-5 {
  m: var(--space-5);
}

.mx-5 {
  m-left: var(--space-5);
  m-right: var(--space-5);
}

.my-5 {
  m-top: var(--space-5);
  m-bottom: var(--space-5);
}

.m-6 {
  m: var(--space-6);
}

.mx-6 {
  m-left: var(--space-6);
  m-right: var(--space-6);
}

.my-6 {
  m-top: var(--space-6);
  m-bottom: var(--space-6);
}

.p-1 {
  p: var(--space-1);
}

.px-1 {
  p-left: var(--space-1);
  p-right: var(--space-1);
}

.py-1 {
  p-top: var(--space-1);
  p-bottom: var(--space-1);
}

.p-2 {
  p: var(--space-2);
}

.px-2 {
  p-left: var(--space-2);
  p-right: var(--space-2);
}

.py-2 {
  p-top: var(--space-2);
  p-bottom: var(--space-2);
}

.p-3 {
  p: var(--space-3);
}

.px-3 {
  p-left: var(--space-3);
  p-right: var(--space-3);
}

.py-3 {
  p-top: var(--space-3);
  p-bottom: var(--space-3);
}

.p-4 {
  p: var(--space-4);
}

.px-4 {
  p-left: var(--space-4);
  p-right: var(--space-4);
}

.py-4 {
  p-top: var(--space-4);
  p-bottom: var(--space-4);
}

.p-5 {
  p: var(--space-5);
}

.px-5 {
  p-left: var(--space-5);
  p-right: var(--space-5);
}

.py-5 {
  p-top: var(--space-5);
  p-bottom: var(--space-5);
}

.p-6 {
  p: var(--space-6);
}

.px-6 {
  p-left: var(--space-6);
  p-right: var(--space-6);
}

.py-6 {
  p-top: var(--space-6);
  p-bottom: var(--space-6);
}

.text-primary,
.bg-brand {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-error {
  color: var(--error) !important;
}

.text-info {
  color: var(--info) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-accent {
  background-color: var(--accent) !important;
}

.bg-error {
  background-color: var(--error) !important;
}

.bg-info {
  background-color: var(--info) !important;
}

.pointer-cursor {
  cursor: pointer;
}

.radius-sm {
  border-radius: 0.25rem !important;
}

.radius-md {
  border-radius: 0.5rem !important;
}

.radius-lg {
  border-radius: 1rem !important;
}

.radius-pill {
  border-radius: 50rem !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shadow-md {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.shadow-none {
  box-shadow: none !important;
}

.fs-xs {
  font-size: 0.75rem !important;
}

.fs-sm {
  font-size: 0.875rem !important;
}

.fs-md {
  font-size: 1rem !important;
}

.fs-lg {
  font-size: 1.25rem !important;
}

.fs-xl {
  font-size: 1.5rem !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.align-center {
  align-items: center !important;
}

.flex-col {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-auto {
  height: auto !important;
}

/* WebKit Browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #1d3557;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #457b9d;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #1d3557 #f0f0f0;
}

.no-records {
  text-align: center;
  padding: 2rem;
  font-size: 1rem;
  color: #666;
}

.no-decoration {
  text-decoration: none;
}

.btn, .default-form input[type=submit],
.default-form input[type=reset] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  border: none;
  border-radius: 0.375rem; /* rounded-md */
  cursor: pointer;
  padding: 0.5rem 1rem;
  font-size: var(--font-size-base);
  color: var(--text-dark);
  transition: all 0.2s ease;
  /* Disabled state */
  /* Icon-only style */
}
.btn-sm {
  padding: 0.25rem 0.75rem;
  font-size: var(--font-size-sm);
}
.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-lg);
}
.btn:disabled, .default-form input[type=submit]:disabled,
.default-form input[type=reset]:disabled, .btn.disabled, .default-form input.disabled[type=submit],
.default-form input.disabled[type=reset] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn.icon-btn, .default-form input.icon-btn[type=submit],
.default-form input.icon-btn[type=reset] {
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: var(--font-size-md);
  justify-content: center;
}
.btn.icon-btn-sm, .default-form input.icon-btn-sm[type=submit],
.default-form input.icon-btn-sm[type=reset] {
  width: 2rem;
  height: 2rem;
  font-size: var(--font-size-sm);
}
.btn.icon-btn-lg, .default-form input.icon-btn-lg[type=submit],
.default-form input.icon-btn-lg[type=reset] {
  width: 3rem;
  height: 3rem;
  font-size: var(--font-size-lg);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover:not(:disabled) {
  background: var(--primary-dark-8);
}
.btn-primary:active:not(:disabled) {
  background: var(--primary-dark-12);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--text-dark);
}
.btn-secondary:hover:not(:disabled) {
  background: var(--secondary-dark-8);
}
.btn-secondary:active:not(:disabled) {
  background: var(--secondary-dark-12);
}

.btn-accent {
  background: var(--accent);
  color: var(--text-light);
}
.btn-accent:hover:not(:disabled) {
  background: var(--accent-dark-8);
  color: var(--text-light);
}
.btn-accent:active:not(:disabled) {
  background: var(--accent-dark-12);
  color: var(--text-light);
}

.btn-error {
  background: var(--error);
  color: var(--text-dark);
}
.btn-error:hover:not(:disabled) {
  background: var(--error-dark-8);
}
.btn-error:active:not(:disabled) {
  background: var(--error-dark-12);
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline-primary:hover:not(:disabled) {
  background: var(--primary);
  color: #fff;
}
.btn-outline-primary:active:not(:disabled) {
  background: var(--primary-dark-12);
  color: var(--text-dark);
}

.btn-outline-secondary {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}
.btn-outline-secondary:hover:not(:disabled) {
  background: var(--secondary);
  color: var(--text-dark);
}
.btn-outline-secondary:active:not(:disabled) {
  background: var(--secondary-dark-12);
  color: var(--text-dark);
}

.btn-outline-accent {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline-accent:hover:not(:disabled) {
  background: var(--accent);
  color: var(--text-dark);
}
.btn-outline-accent:active:not(:disabled) {
  background: var(--accent-dark-12);
  color: var(--text-dark);
}

.btn-outline-error {
  background: transparent;
  border: 2px solid var(--error);
  color: var(--error);
}
.btn-outline-error:hover:not(:disabled) {
  background: var(--error);
  color: var(--text-dark);
}
.btn-outline-error:active:not(:disabled) {
  background: var(--error-dark-12);
  color: var(--text-dark);
}

.default-form .form-group {
  margin-bottom: var(--space-4);
}
.default-form .form-group label {
  display: block;
  margin-bottom: var(--space-1);
  font-size: var(--font-size-sm);
  color: var(--neutral-500);
}
.default-form .form-group .help-text {
  display: block;
  margin-top: var(--space-1);
  font-size: var(--font-size-xs);
  color: var(--neutral-400);
}
.default-form input[type=text],
.default-form input[type=email],
.default-form input[type=password],
.default-form input[type=number],
.default-form input[type=search],
.default-form select,
.default-form textarea {
  width: 100%;
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-base);
  color: var(--text);
  background: transparent;
  border: 1px solid var(--neutral-300);
  border-radius: 0.375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.default-form input[type=text]:focus,
.default-form input[type=email]:focus,
.default-form input[type=password]:focus,
.default-form input[type=number]:focus,
.default-form input[type=search]:focus,
.default-form select:focus,
.default-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(250, 200, 0, 0.2); /* primary glow */
  outline: none;
}
.default-form input[type=text]::-moz-placeholder, .default-form input[type=email]::-moz-placeholder, .default-form input[type=password]::-moz-placeholder, .default-form input[type=number]::-moz-placeholder, .default-form input[type=search]::-moz-placeholder, .default-form select::-moz-placeholder, .default-form textarea::-moz-placeholder {
  color: var(--neutral-400);
  opacity: 1;
}
.default-form input[type=text]::placeholder,
.default-form input[type=email]::placeholder,
.default-form input[type=password]::placeholder,
.default-form input[type=number]::placeholder,
.default-form input[type=search]::placeholder,
.default-form select::placeholder,
.default-form textarea::placeholder {
  color: var(--neutral-400);
  opacity: 1;
}
.default-form input[type=text]:disabled,
.default-form input[type=email]:disabled,
.default-form input[type=password]:disabled,
.default-form input[type=number]:disabled,
.default-form input[type=search]:disabled,
.default-form select:disabled,
.default-form textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: var(--neutral-100);
}
.default-form textarea {
  resize: vertical;
  min-height: 5rem;
}
.default-form input[type=checkbox],
.default-form input[type=radio] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--primary); /* supports modern browsers */
  cursor: pointer;
}
.default-form .checkbox-label,
.default-form .radio-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  cursor: pointer;
}
.default-form input[type=submit],
.default-form input[type=reset] {
  background: var(--primary);
  color: var(--text-dark);
}
.default-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.default-form .form-row > * {
  flex: 1 1 200px;
}
.default-form .form-group.is-error input,
.default-form .form-group.is-error select,
.default-form .form-group.is-error textarea {
  border-color: var(--error) !important;
  box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.2);
}
.default-form .form-group.is-error label {
  color: var(--error);
}
.default-form .form-group.is-error .help-text {
  color: var(--error);
}
.default-form .form-group.is-success input,
.default-form .form-group.is-success select,
.default-form .form-group.is-success textarea {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 2px rgba(62, 180, 137, 0.2);
}
.default-form .form-group.is-success label {
  color: var(--accent);
}
.default-form .form-group.is-success .help-text {
  color: var(--accent);
}
.default-form .password-strength {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.default-form #strengthBar {
  width: 100%;
  height: 6px;
  background: #ccc;
  border-radius: 3px;
  margin-bottom: 0.4rem;
  transition: background 0.3s;
}
.default-form #strengthText {
  font-size: 0.9rem;
  color: white;
}

.tomselect-style .form-group,
.custom-form .form-group {
  position: relative;
  width: 100%;
  margin-bottom: 3px;
}
.tomselect-style label,
.custom-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}
.tomselect-style input,
.tomselect-style select,
.tomselect-style textarea,
.custom-form input,
.custom-form select,
.custom-form textarea {
  width: 100%;
  padding: 8px 14px;
  font-size: 16px;
  background: white;
  color: #333;
  border: 1.5px solid #ccc;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.tomselect-style input:focus,
.tomselect-style select:focus,
.custom-form input:focus,
.custom-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(63, 136, 255, 0.1);
}
.tomselect-style select,
.custom-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23333' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  padding-right: 40px;
}
.tomselect-style ::-moz-placeholder, .custom-form ::-moz-placeholder {
  color: #aaa;
}
.tomselect-style ::placeholder,
.custom-form ::placeholder {
  color: #aaa;
}
.tomselect-style .single-select .custom-select-wrapper,
.custom-form .single-select .custom-select-wrapper {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.tomselect-style .single-select .custom-select,
.custom-form .single-select .custom-select {
  background: #fff;
  border: 1.5px solid #ccc;
  padding: 8px 14px;
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.3s;
}
.tomselect-style .single-select .custom-select:focus,
.tomselect-style .single-select .custom-select.open,
.custom-form .single-select .custom-select:focus,
.custom-form .single-select .custom-select.open {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(63, 136, 255, 0.1);
}
.tomselect-style .single-select .dropdown,
.custom-form .single-select .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  border: 1.5px solid #ccc;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  z-index: 10;
  display: none;
}
.tomselect-style .single-select .dropdown.open,
.custom-form .single-select .dropdown.open {
  display: block;
}
.tomselect-style .single-select .dropdown input,
.custom-form .single-select .dropdown input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #eee;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}
.tomselect-style .single-select .option,
.custom-form .single-select .option {
  padding: 10px 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.tomselect-style .single-select .option:hover,
.custom-form .single-select .option:hover {
  background: #f0f0f0;
}
.tomselect-style .single-select .option.selected,
.custom-form .single-select .option.selected {
  background: var(--secondary);
  color: white;
}
.tomselect-style .multiSelectTags .custom-select-wrapper,
.custom-form .multiSelectTags .custom-select-wrapper {
  position: relative;
}
.tomselect-style .multiSelectTags .custom-select,
.custom-form .multiSelectTags .custom-select {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 48px;
  padding: 10px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  background: #fff;
  cursor: text;
  transition: border-color 0.3s;
}
.tomselect-style .multiSelectTags .custom-select:focus-within,
.tomselect-style .multiSelectTags .custom-select.open,
.custom-form .multiSelectTags .custom-select:focus-within,
.custom-form .multiSelectTags .custom-select.open {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(63, 136, 255, 0.1);
}
.tomselect-style .multiSelectTags .custom-select input,
.custom-form .multiSelectTags .custom-select input {
  border: none;
  outline: none;
  font-size: 14px;
  min-width: 100px;
  flex: 1;
  padding: 6px;
  background: transparent;
}
.tomselect-style .multiSelectTags .tag,
.custom-form .multiSelectTags .tag {
  background: var(--primary);
  color: white;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tomselect-style .multiSelectTags .tag .remove,
.custom-form .multiSelectTags .tag .remove {
  cursor: pointer;
  font-weight: bold;
}
.tomselect-style .multiSelectTags .dropdown,
.custom-form .multiSelectTags .dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 10;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}
.tomselect-style .multiSelectTags .dropdown.open,
.custom-form .multiSelectTags .dropdown.open {
  display: block;
}
.tomselect-style .multiSelectTags .option,
.custom-form .multiSelectTags .option {
  padding: 10px 12px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tomselect-style .multiSelectTags .option:hover,
.custom-form .multiSelectTags .option:hover {
  background: #f0f0f0;
}
.tomselect-style .multiSelectTags .option.selected,
.custom-form .multiSelectTags .option.selected {
  background: var(--secondary);
  color: white;
}

.filters input,
.filters select {
  padding: 0.5rem;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.auth-error {
  color: var(--error);
}

.auth-success {
  color: var(--success);
}

#page-loader {
  /* other loader styles stay the same */
}
#page-loader .page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* for pseudo-element */
}
#page-loader .page-loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  opacity: 0.6;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  /* optional */
  z-index: -1;
  /* put this behind contents */
}
#page-loader .loader-logo,
#page-loader .progress-bar,
#page-loader .loading-text {
  position: relative;
  /* make sure these stay above the background */
}
#page-loader .page-loader.hide {
  opacity: 0;
  pointer-events: none;
}
#page-loader .loader-logo {
  font-size: 3rem;
  animation: pulse 1s infinite alternate;
  margin-bottom: 1rem;
  color: #fff;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
#page-loader .progress-bar {
  width: 200px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1rem;
}
#page-loader .progress-fill {
  width: 0%;
  height: 100%;
  background: #fff;
  transition: width 0.3s;
}
#page-loader .loading-text {
  font-size: 1rem;
  opacity: 0.9;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--bg);
  padding: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: 0.3s ease;
  color: var(--text);
}

.card:hover {
  transform: translateY(-4px);
}

.card h2 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

.see-more {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--secondary);
  text-decoration: none;
}

.card .icon {
  font-size: 1.2rem;
  margin-right: 0.4rem;
  color: var(--accent);
}

.filters input,
.filters select {
  padding: 8px 14px;
  font-size: 16px;
  background: white;
  color: #333;
  border: 1.5px solid #ccc;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.filters input ::-moz-placeholder, .filters select ::-moz-placeholder {
  color: #aaa;
}
.filters input ::placeholder,
.filters select ::placeholder {
  color: #aaa;
}

.filters input:focus,
.filters select :focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(63, 136, 255, 0.1);
}

.filters select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23333' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  padding-right: 40px;
}

.filters {
  margin-bottom: 10px;
}

.skeleton {
  background: #eee;
  border-radius: 4px;
  animation: pulse 1.5s infinite;
}

.skeleton-card {
  width: 300px;
  height: 180px;
  padding: 1rem;
  background: var(--neutral-200);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.skeleton-row td {
  height: 50px;
  background: linear-gradient(90deg, var(--neutral-300) var(--neutral-200), var(--neutral-300));
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.pagination {
  margin-top: 2rem;
  text-align: center;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-group {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 1rem;
}

.pagination-ellipsis {
  padding: 6px 10px;
  color: #888;
}

.pagination-btn.active {
  background: #33673b;
  color: white;
  font-weight: bold;
}

.topbar {
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 14px;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar .left,
.topbar .right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.topbar a {
  color: var(--neutral-300);
  text-decoration: none;
}

.topbar a:hover {
  color: var(--text-light);
}

.navbar {
  background: var(--bg);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--neutral-300);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .logo {
  font-size: 1.5em;
  color: var(--primary);
  font-weight: bold;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5em;
  color: var(--text);
}

.navbar .search-bar {
  flex: 1;
  display: flex;
  margin: 10px 20px;
  max-width: 600px;
}

.navbar .search-bar select,
.navbar .search-bar input {
  padding: 8px;
  border: 1px solid var(--neutral-300);
  background: var(--neutral-100);
  color: var(--text);
}

.navbar .search-bar input {
  flex: 1;
  border-left: none;
}

.navbar .search-bar button {
  padding: 8px 15px;
  color: #fff;
  border: none;
  cursor: pointer;
}

.navbar .actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar .actions a {
  text-decoration: none;
}

.navbar .actions .icon {
  position: relative;
}

.navbar .actions .icon span {
  position: absolute;
  top: -5px;
  right: -10px;
  background: var(--error);
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  padding: 2px 5px;
}

nav {
  width: 100%;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: var(--text);
  font-weight: bold;
  padding: 5px 10px;
}

nav ul li a.active,
nav ul li a:hover {
  color: var(--text);
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 600px;
  z-index: 999;
}

.mega-menu .column {
  float: left;
  width: 50%;
}

.mega-menu h4 {
  margin-bottom: 10px;
  color: var(--text);
}

.mega-menu a {
  display: block;
  padding: 5px 0;
  color: var(--text);
  text-decoration: none;
}

nav ul li:hover .mega-menu {
  display: block;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  color: var(--text);
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bg);
  padding: 2px;
  border-radius: 5px;
}

.navbar .logo img {
  height: 45px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.navbar .logo h4 {
  color: var(--text);
  font-size: 30px;
  font-weight: bold;
}

.navbar .logo img:hover {
  transform: scale(1.05);
}

.cart-sidebar.active {
  right: 0;
}

.navbar.scrolled {
  padding: var(--space-2) var(--space-4);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  nav {
    display: none;
  }
  nav.active {
    display: block;
  }
  .navbar .search-bar {
    flex-direction: column;
    gap: 5px;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  .mega-menu {
    position: static;
    width: 100%;
  }
  .mega-menu .column {
    width: 100%;
  }
}
/* Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 999;
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: var(--bg);
  color: var(--text);
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 1000;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}

.drawer-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.drawer-menu ul li {
  margin-bottom: 15px;
}

.drawer-menu ul li a {
  color: var(--text);
  text-decoration: none;
  font-weight: bold;
}

.drawer-menu .drawer-close {
  background: none;
  border: none;
  font-size: 1.5em;
  color: var(--text);
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* Toggle visibility */
.drawer-overlay.active {
  display: block;
}

.drawer-menu.active {
  left: 0;
}

/* Mobile specific styling */
@media (max-width: 768px) {
  .topbar .left a:not(.theme-toggle-btn),
  .topbar .right a:not(.theme-toggle-btn) {
    display: none;
  }
  .navbar .actions {
    display: none;
  }
  .navbar .search-bar {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
    padding: 10px;
    background: var(--bg);
    width: 100%;
  }
  .navbar .search-bar.active {
    display: flex;
  }
  .search-toggle {
    display: block;
    font-size: 1.5em;
    color: var(--text);
    cursor: pointer;
  }
}
#mainNav {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--neutral-200);
}

@media (min-width: 769px) {
  .search-toggle {
    display: none;
  }
  #drawerMenu,
  #drawerOverlay {
    display: none !important;
  }
}
@media (max-width: 480px) {
  #mainNav {
    display: none !important;
  }
}
.brand-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 1rem;
}

.brand-table th,
.brand-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}

.brand-table th {
  background: var(--accent);
  color: var(--text-light);
}

.brand-table tbody tr:hover {
  background-color: var(--neutral-200);
  cursor: pointer; /* optional: adds hand cursor */
  transition: background-color 0.3s ease;
}

.brand-table .status {
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  text-align: center;
  display: inline-block;
}

.brand-table .pending {
  background: #fffae6;
  color: #a67c00;
}

.brand-table .approved {
  background: var(--primary);
  color: var(--text-light);
}

.brand-table .rejected {
  background: var(--accent);
  color: var(--text-dark);
}

.brand-table .active {
  background-color: #2196f3;
  color: var(--text-light);
}

.brand-table .status-tag {
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.brand-table .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
  margin-right: 0.5rem;
  transition: transform 0.3s ease-out;
}
.brand-table .avatar:hover {
  transform: translateY(-4px);
  cursor: pointer;
}

.dark-theme .brand-table {
  background-color: hsl(0, 0%, 10%);
}

.dark-theme .brand-table th {
  background-color: hsl(0, 0%, 10%);
}

.product-section {
  padding: 40px 20px;
  background: var(--neutral-100);
  text-align: center;
}
.product-section .product-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--text);
}
.product-section .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.product-section .product-card {
  background: #fff;
  width: 250px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-section .details {
  width: 100%;
  position: relative;
  padding: 10px;
}
.product-section .product-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.product-section .product-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin: 0;
  border-radius: 6px;
}
.product-section .product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.product-section .discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--error);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
  z-index: 1;
}
.product-section .product-card h4 {
  font-size: 14px;
  margin: 10px 0 5px;
  color: var(--text);
}
.product-section .vendor {
  font-size: 12px;
  color: var(--neutral-500);
  margin-bottom: 5px;
}
.product-section .price {
  color: var(--primary);
  font-weight: bold;
  font-size: 15px;
}
.product-section .old-price {
  text-decoration: line-through;
  color: var(--neutral-400);
  font-size: 13px;
  margin-left: 5px;
}
.product-section .btn-add {
  margin-top: auto;
  padding: 8px 15px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}
.product-section .btn-add:hover {
  background: var(--accent-dark-8);
}
@media (max-width: 768px) {
  .product-section .product-card {
    width: 45%;
  }
}
@media (max-width: 480px) {
  .product-section .product-card {
    width: 100%;
  }
}

.dash-sidebar {
  width: 250px;
  height: 100vh;
  position: fixed;
  left: 0px;
  padding: 10px 20px;
  transition: all 0.38s ease-in-out;
  animation: slideIn 1s ease-in-out forwards;
  overflow-y: auto;
  background-color: var(--neutral-100);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-header img {
  width: 40px;
  height: 40px;
}

.sidebar-header h5 {
  font-size: 20px;
}

.side-profile {
  margin-top: 20px;
  position: relative;
}

.side-profile .s-profile-photo {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.side-profile .s-profile-photo img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.side-profile p {
  font-size: 14px;
  line-height: 20px;
}

.side-profile p .name {
  font-weight: bold;
}

.side-profile p .sub {
  color: hsl(0, 0%, 40%);
}

.dash-sidebar .link-into {
  color: var(--text);
  font-weight: 600;
  margin-top: 10px;
  font-size: 14px;
}

.sidebar-item .item-text {
  font-size: 15px;
  color: var(--text);
}

.sidebar-item .item-link .icon {
  font-size: 16px;
  margin-top: 5px;
  font-weight: 700;
  color: var(--text);
}

.sidebar-item .item-link {
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: var(--accent);
}

.sidebar-item.active {
  background-color: var(--primary); /* Highlighted background */
  color: var(--text); /* Text color for active state */
  border-left: 4px solid #fff; /* Optional left border */
  padding: 2px 10px;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

.f-width {
  width: 100%;
  position: relative;
}

a {
  color: var(--accent);
  opacity: 0.8;
  font-size: 16px;
  text-decoration: none;
}
a:hover {
  opacity: 1;
  text-decoration: underline;
}

/**Flex Items**/
.flex {
  display: flex;
}

.flex-end {
  justify-content: flex-end;
}

.flex-center {
  justify-content: center;
}

.flex-column {
  flex-direction: column;
}

.align-center {
  align-items: center;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

/**Flex Items Ends**/
/**Flex Gaps **/
.gap-10 {
  gap: 10px;
  max-width: 100%;
}

.gap-5 {
  gap: 5px;
}

.gap-2 {
  gap: 2px;
}

/**Flex Gaps Ends**/
/**Shadows **/
.shadow {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

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

.shadow-3 {
  box-shadow: 0 4px 6px hsla(0, 0%, 0%, 0.1);
}

/**Shadows Ends**/
/**Paddings **/
.padding-20 {
  padding: 20px;
}

.padding-10 {
  padding: 10px;
}

.padding-5 {
  padding: 5px;
}

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

/**Paddings Ends**/
/**margins **/
.mt-10 {
  margin-top: 10px;
}

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

.mr-10 {
  margin-right: 10px;
}

.ml-10 {
  margin-left: 10px;
}

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

.title {
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: 2px;
  font-weight: 700;
}

.no-decoration {
  text-decoration: none;
}

.link {
  color: var(--accent);
  transition: color 0.3s ease-out;
  font-size: 16px;
}
.link:hover {
  color: var(--accent);
}

.card {
  cursor: pointer;
}

.not-found {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.not-found > * {
  text-align: center;
}

.not-found h5 {
  font-weight: 700;
}

.not-found img {
  width: 200px;
  margin: auto;
  height: auto;
  text-align: center;
}

footer {
  position: relative;
}

.dashboard-footer {
  background-color: var(--neutral-100);
  padding: 20px;
}

.radius-10 {
  border-radius: 10px;
}

.section-well {
  width: 100%;
  padding: 20px;
  box-shadow: inset 0 2px 2px hsla(0, 0%, 0%, 0.1);
}

.section-well.grey {
  background-color: var(--neutral-200);
}

.icon-wrap {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}

section {
  padding: 20px 0px;
}

.page-container {
  width: 80%;
  margin: auto;
}

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

.hide {
  visibility: hidden;
}

.unhide {
  visibility: visible;
}

.table-responsive {
  width: 100%;
  position: relative;
}

.show-mobile {
  display: none;
}

.widget {
  padding: 20px;
}

.thumb {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  cursor: pointer;
  transition: all 0.3s ease-out;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
}

.thumb:hover {
  transform: scale(1.05);
}

.thumb:hover .thumbnails {
  display: flex;
}

.thumb:hover .thumbnails.thumb {
  opacity: 0.5;
}

.thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.2s ease-out;
  border-radius: 5px 5px 0 0;
  filter: grayscale(100%);
  transform: scale(1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.thumb img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.thumb .absolute {
  position: absolute;
  top: 5px;
  right: 10px;
  z-index: 2;
}

#oldProduct .product-card.card {
  border: none;
  width: 280px;
}
#oldProduct .product {
  position: relative;
  cursor: pointer;
}
#oldProduct .product:hover .product_image img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
#oldProduct .product_image {
  width: 100%;
  height: 150px;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
#oldProduct .product_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-out;
  border-radius: 5px 5px 0 0;
  filter: grayscale(100%);
  transform: scale(1);
}
#oldProduct .product_image img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}
#oldProduct .product .details {
  width: 100%;
  position: relative;
  padding: 10px;
  margin-top: 10px;
  box-shadow: 0 4px 6px hsla(0, 0%, 0%, 0.1);
  background-color: hsl(39, 100%, 70%);
}
#oldProduct .product .details .description {
  color: hsl(0, 0%, 60%);
}
#oldProduct .product .details h5 {
  font-size: 18px;
  color: var(--text);
}
#oldProduct .product .details p {
  font-size: 14px;
  margin-top: -10px;
  color: var(--text);
}
#oldProduct .product .availablility {
  font-size: 14px;
  margin-top: -30px;
}
#oldProduct .price_flex {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
}
#oldProduct .price_flex .availablility {
  font-size: 14px;
  font-weight: 500;
}
#oldProduct .price_flex .availablility.available {
  color: var(--secondary);
}
#oldProduct .price_flex .availablility.unavailable {
  color: var(--error);
}
#oldProduct .product .details .price {
  background-color: var(--neutral-300);
  display: flex;
  align-items: center;
  border-radius: 50px;
  padding: 5px 20px;
  cursor: pointer;
}
#oldProduct .product .details .price span {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}
#oldProduct .product .discount {
  color: var(--text);
  text-decoration: line-through;
  font-weight: 300;
}
#oldProduct .discount {
  color: #ccc;
  text-decoration: line-through;
  font-weight: 300;
}
#oldProduct .product .toCart {
  padding: 10px 20px;
  border-radius: 50px;
}
#oldProduct .product_btn {
  padding: 12px;
  background-color: var(--warning);
}
#oldProduct .thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
#oldProduct .product-details .thumbnails {
  justify-content: center;
}
#oldProduct .thumb {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
  transition: all 0.3s ease-out;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
}
#oldProduct .thumb:hover {
  transform: scale(1.05);
}
#oldProduct .thumb:hover .thumbnails {
  display: flex;
}
#oldProduct .thumb:hover .thumbnails.thumb {
  opacity: 0.5;
}
#oldProduct .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-out;
  border-radius: 5px 5px 0 0;
  filter: grayscale(100%);
  transform: scale(1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
#oldProduct .thumb img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}
#oldProduct .thumb .absolute {
  position: absolute;
  top: 5px;
  right: 10px;
  z-index: 2;
}
#oldProduct .color-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  border: 2px solid #ccc;
  transition: 0.2s;
}
#oldProduct input[type=radio]:checked + .color-swatch {
  border: 3px solid #000;
}
#oldProduct .offcanvas-body {
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

/* Unified and responsive styles for both login and register pages */
.auth-page .page-container {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
  padding: 20px;
  box-sizing: border-box;
}
.auth-page .form-row {
  display: flex;
  gap: 10px;
}
.auth-page .form-row .form-group {
  flex: 1;
}
.auth-page .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.auth-page .content-wrapper {
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  gap: 30px;
  color: #fff;
}
.auth-page .title-box {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  padding: 10px;
}
.auth-page .title-box h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
.auth-page .title-box p {
  font-size: 1rem;
  color: #eee;
}
.auth-page .form-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 10px;
  box-sizing: border-box;
}
.auth-page .form-shadow {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: var(--primary, #ffa600);
  transform: rotate(-4deg);
  border-radius: 10px;
  z-index: 0;
}
.auth-page .form-content {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 15px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  color: #333;
}
.auth-page .form-content h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 25px;
}
.auth-page .form-group {
  margin-bottom: 10px;
}
.auth-page .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 0.95rem;
}
.auth-page .form-group input[type=text],
.auth-page .form-group input[type=email],
.auth-page .form-group input[type=password],
.auth-page .form-group select,
.auth-page .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.auth-page .form-content button {
  width: 100%;
  padding: 12px;
  background: var(--primary, #ffa600);
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
}
.auth-page .form-links,
.auth-page .create-account,
.auth-page .back-link {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
}
.auth-page .form-links a,
.auth-page .create-account a,
.auth-page .back-link {
  color: var(--accent, #1c2a48);
  text-decoration: none;
  font-weight: bold;
}
.auth-page .form-links a:hover,
.auth-page .create-account a:hover,
.auth-page .back-link:hover {
  text-decoration: underline;
}
.auth-page .toggle-role {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f1f1f1;
  border-radius: 30px;
  padding: 5px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 20px auto;
  font-size: 0.95rem;
  font-weight: 600;
  overflow: hidden;
}
.auth-page .toggle-role input[type=checkbox] {
  display: none;
}
.auth-page .toggle-role label {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s ease;
}
.auth-page .toggle-role .switch-slider {
  position: absolute;
  height: 100%;
  width: 50%;
  background: var(--primary, #ffa600);
  border-radius: 30px;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .auth-page .content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .auth-page #pageContainer,
  .auth-page .page-container {
    height: 100vh;
    width: 100%;
    position: relative;
    padding: 0px;
  }
  .auth-page .title-box {
    display: none;
  }
  .auth-page .form-wrapper {
    max-width: 100%;
    height: 100vh;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
  }
  .auth-page .form-content {
    padding: 20px 15px;
    width: 100%;
    border-radius: 0px;
  }
}
@media (max-width: 480px) {
  .auth-page .title-box h1 {
    font-size: 1.5rem;
  }
  .auth-page .form-content h2 {
    font-size: 22px;
  }
  .auth-page .form-content button {
    font-size: 0.95rem;
  }
  .auth-page #pageContainer,
  .auth-page .page-container {
    height: 100vh;
    width: 100%;
    position: relative;
  }
}

@media (max-width: 768px) {
  .page-container {
    width: 100%;
    position: relative;
  }
  .overlay {
    width: 100%;
  }
  .content-wrapper {
    flex-direction: column;
    text-align: center;
    width: 100%;
    position: relative;
  }
  .form-shadow {
    display: none;
  }
  .form-wrapper {
    width: 95%;
    position: relative;
  }
}
.toggle-role {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.role-labels {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.role-text {
  min-width: 90px;
  text-align: center;
  font-weight: 500;
  color: var(--text-color, #333);
}

.switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #007bff;
}

input:checked + .slider:before {
  transform: translateX(28px);
}

.role-description {
  font-size: 0.9rem;
  color: #666;
}

.site-footer {
  background: var(--dark-200);
  color: var(--text);
  padding: 50px 20px 30px;
  font-size: 14px;
}
.site-footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 30px;
}
.site-footer .footer-brand {
  flex: 1 1 250px;
  max-width: 300px;
}
.site-footer .footer-brand img {
  width: 150px;
  margin-bottom: 15px;
  border-radius: 6px;
}
.site-footer .footer-brand p {
  color: var(--text);
  line-height: 1.6;
  font-size: 14px;
}
.site-footer .footer-links {
  flex: 1 1 200px;
}
.site-footer .footer-links h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--text);
}
.site-footer .footer-links ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-links ul li {
  margin-bottom: 10px;
}
.site-footer .footer-links ul li a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-links ul li a:hover {
  color: var(--primary);
}
.site-footer .footer-bottom {
  text-align: center;
  border-top: 1px solid var(--dark-300);
  padding-top: 20px;
}
.site-footer .footer-bottom p {
  color: var(--neutral-400);
  margin-bottom: 10px;
}
.site-footer .social-icons a {
  margin: 0 8px;
  color: var(--neutral-300);
  font-size: 16px;
  transition: color 0.3s ease;
}
.site-footer .social-icons a:hover {
  color: var(--primary);
}
@media (max-width: 768px) {
  .site-footer .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-footer .footer-links {
    margin-top: 20px;
  }
}

.hero-section {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay for contrast */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  z-index: 1;
}
.hero-section .hero-content h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}
.hero-section .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #eee;
}
.hero-section .hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.hero-section .btn, .hero-section .default-form input[type=submit], .default-form .hero-section input[type=submit],
.hero-section .default-form input[type=reset],
.default-form .hero-section input[type=reset] {
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}
.hero-section .btn.primary, .hero-section .default-form input.primary[type=submit], .default-form .hero-section input.primary[type=submit],
.hero-section .default-form input.primary[type=reset],
.default-form .hero-section input.primary[type=reset] {
  background: var(--primary);
  color: #fff;
}
.hero-section .btn.outline, .hero-section .default-form input.outline[type=submit], .default-form .hero-section input.outline[type=submit],
.hero-section .default-form input.outline[type=reset],
.default-form .hero-section input.outline[type=reset] {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.hero-section .category-icons {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: auto;
  padding: 20px;
  z-index: 2;
}
.hero-section .category {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 14px;
}
.hero-section .category i {
  font-size: 24px;
  margin-bottom: 5px;
}

.about-section {
  background: var(--neutral-100);
  padding: 60px 20px;
  color: var(--text);
}
.about-section .about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}
.about-section .about-text {
  flex: 1 1 400px;
  max-width: 600px;
}
.about-section .about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--accent);
}
.about-section .about-text p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--neutral-500);
}
.about-section .about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  flex: 1 1 400px;
}
.about-section .feature {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}
.about-section .feature:hover {
  transform: translateY(-5px);
}
.about-section .feature i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.about-section .feature h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--accent);
}
.about-section .feature p {
  font-size: 0.95rem;
  color: var(--neutral-500);
}

.featured-vendors {
  padding: 60px 20px;
  background: var(--neutral-100);
  text-align: center;
}
.featured-vendors .vendors-header h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
}
.featured-vendors .vendors-header p {
  font-size: 1rem;
  color: var(--neutral-500);
  margin-bottom: 30px;
}
.featured-vendors .vendors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}
.featured-vendors .vendor-card {
  background: #fff;
  width: 220px;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}
.featured-vendors .vendor-card:hover {
  transform: translateY(-5px);
}
.featured-vendors .vendor-card img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}
.featured-vendors .vendor-card h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--text);
}
.featured-vendors .vendor-card .category {
  font-size: 0.9rem;
  color: var(--neutral-500);
  margin-bottom: 5px;
}
.featured-vendors .vendor-card .rating {
  font-size: 0.85rem;
  color: var(--primary);
}
.featured-vendors .vendor-card .rating i {
  color: var(--primary);
  margin-right: 3px;
}
.featured-vendors .vendor-btn-container {
  margin-top: 30px;
}
.featured-vendors .vendor-btn-container .btn, .featured-vendors .vendor-btn-container .default-form input[type=submit], .default-form .featured-vendors .vendor-btn-container input[type=submit],
.featured-vendors .vendor-btn-container .default-form input[type=reset],
.default-form .featured-vendors .vendor-btn-container input[type=reset] {
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}
.featured-vendors .btn.primary, .featured-vendors .default-form input.primary[type=submit], .default-form .featured-vendors input.primary[type=submit],
.featured-vendors .default-form input.primary[type=reset],
.default-form .featured-vendors input.primary[type=reset] {
  background: var(--primary);
  color: white;
  border: none;
  transition: background 0.3s;
}
.featured-vendors .btn.primary:hover, .featured-vendors .default-form input.primary[type=submit]:hover, .default-form .featured-vendors input.primary[type=submit]:hover,
.featured-vendors .default-form input.primary[type=reset]:hover,
.default-form .featured-vendors input.primary[type=reset]:hover {
  background: var(--accent-dark-8);
}
@media (max-width: 768px) {
  .featured-vendors .vendor-card {
    width: 45%;
  }
}
@media (max-width: 480px) {
  .featured-vendors .vendor-card {
    width: 100%;
  }
}

.testimonials {
  padding: 60px 20px;
  background: var(--neutral-100);
  text-align: center;
}
.testimonials .testimonials-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent);
}
.testimonials .testimonials-header p {
  font-size: 1rem;
  color: var(--neutral-500);
  margin-bottom: 40px;
}
.testimonials .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}
.testimonials .testimonial-card {
  background: #fff;
  width: 300px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.testimonials .testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonials .testimonial-card img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
.testimonials .testimonial-card h4 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 5px;
}
.testimonials .testimonial-card .role {
  font-size: 0.9rem;
  color: var(--neutral-400);
  margin-bottom: 15px;
}
.testimonials .testimonial-card .quote {
  font-size: 0.95rem;
  color: var(--neutral-500);
  font-style: italic;
}
@media (max-width: 768px) {
  .testimonials .testimonial-card {
    width: 90%;
  }
}

.vendors-page {
  padding: 60px 20px;
  background: var(--neutral-100);
}
.vendors-page .vendors-header {
  text-align: center;
  margin-bottom: 40px;
}
.vendors-page .vendors-header h2 {
  font-size: 2rem;
  color: var(--accent);
}
.vendors-page .vendors-header p {
  color: var(--neutral-500);
  font-size: 1rem;
}
.vendors-page .vendors-layout {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.vendors-page .vendor-filters {
  flex: 1 1 250px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.vendors-page .filter-group {
  margin-bottom: 25px;
}
.vendors-page .filter-group h4 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--accent);
}
.vendors-page .filter-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text);
}
.vendors-page .filter-group input[type=text] {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--neutral-300);
  border-radius: 5px;
}
.vendors-page .vendor-results {
  flex: 3 1 700px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: flex-start;
}
.vendors-page .vendor-card {
  width: 220px;
  height: 330px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}
.vendors-page .vendor-card:hover {
  transform: translateY(-5px);
}
.vendors-page .vendor-card img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}
.vendors-page .vendor-card h4 {
  font-size: 1.05rem;
  margin-bottom: 5px;
}
.vendors-page .vendor-card .category {
  font-size: 0.9rem;
  color: var(--neutral-500);
}
.vendors-page .vendor-card .rating {
  font-size: 0.85rem;
  color: var(--primary);
  margin: 5px 0;
}
.vendors-page .vendor-card .btn, .vendors-page .vendor-card .default-form input[type=submit], .default-form .vendors-page .vendor-card input[type=submit],
.vendors-page .vendor-card .default-form input[type=reset],
.default-form .vendors-page .vendor-card input[type=reset] {
  display: inline-block;
  padding: 8px 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 5px;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .vendors-page .vendors-layout {
    flex-direction: column;
  }
  .vendors-page .vendor-results {
    justify-content: center;
  }
  .vendors-page .vendor-card {
    width: 100%;
    max-width: 300px;
  }
}

.vendor-store {
  padding: 30px 20px;
}
.vendor-store .vendor-hero {
  position: relative;
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.vendor-store .vendor-banner img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.vendor-store .vendor-info {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: #fff;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.vendor-store .vendor-logo {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.vendor-store .verified-badge {
  background: green;
  color: white;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 5px;
  margin-left: 5px;
}
.vendor-store .vendor-meta {
  font-size: 0.9rem;
  color: var(--neutral-500);
}
.vendor-store .vendor-rating {
  font-size: 0.9rem;
  color: var(--primary);
  margin-top: 5px;
}
.vendor-store .vendor-tabs {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}
.vendor-store .vendor-tabs .tab {
  padding: 10px 20px;
  background: #eee;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}
.vendor-store .vendor-tabs .tab.active {
  background: var(--primary);
  color: white;
}
.vendor-store .tab-section {
  display: none;
}
.vendor-store .tab-section:not(.hidden) {
  display: block;
}
.vendor-store .product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.vendor-store .price {
  color: var(--primary);
  font-weight: bold;
  margin: 5px 0;
}
.vendor-store .old-price {
  color: #999;
  font-size: 0.9rem;
  text-decoration: line-through;
  margin-left: 5px;
}
.vendor-store .vendor-name {
  font-size: 0.8rem;
  color: var(--neutral-500);
}
.vendor-store .about-box,
.vendor-store .review-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.how-it-works {
  padding: 60px 20px;
  background: var(--neutral-100);
  color: var(--text);
}
.how-it-works .hiw-hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.how-it-works .hiw-hero h1 {
  font-size: 2.2rem;
  color: var(--accent);
}
.how-it-works .hiw-hero p {
  font-size: 1.1rem;
  color: var(--neutral-500);
  margin-top: 10px;
}
.how-it-works .hiw-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}
.how-it-works .step-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.how-it-works .step-box:hover {
  transform: translateY(-5px);
}
.how-it-works .step-number {
  font-size: 2rem;
  background: var(--primary);
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  border-radius: 50%;
  margin-bottom: 15px;
}
.how-it-works .step-box h3 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 10px;
}
.how-it-works .step-box p {
  font-size: 0.95rem;
  color: var(--neutral-500);
}
.how-it-works .hiw-benefits {
  text-align: center;
  margin-bottom: 50px;
}
.how-it-works .hiw-benefits h2 {
  color: var(--accent);
  margin-bottom: 20px;
}
.how-it-works .benefits-list {
  display: inline-block;
  text-align: left;
  max-width: 500px;
}
.how-it-works .benefits-list li {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 10px;
}
.how-it-works .benefits-list i {
  color: var(--primary);
  margin-right: 10px;
}
.how-it-works .hiw-cta {
  text-align: center;
  background: var(--primary);
  color: #fff;
  padding: 40px 20px;
  border-radius: 10px;
}
.how-it-works .hiw-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.how-it-works .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.how-it-works .btn, .how-it-works .default-form input[type=submit], .default-form .how-it-works input[type=submit],
.how-it-works .default-form input[type=reset],
.default-form .how-it-works input[type=reset] {
  padding: 10px 20px;
  background: #fff;
  color: var(--primary);
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}
.how-it-works .btn:hover, .how-it-works .default-form input[type=submit]:hover, .default-form .how-it-works input[type=submit]:hover,
.how-it-works .default-form input[type=reset]:hover,
.default-form .how-it-works input[type=reset]:hover {
  background: var(--neutral-300);
}
.how-it-works .btn.secondary, .how-it-works .default-form input.secondary[type=submit], .default-form .how-it-works input.secondary[type=submit],
.how-it-works .default-form input.secondary[type=reset],
.default-form .how-it-works input.secondary[type=reset] {
  background: #000;
  color: #fff;
}
@media (max-width: 768px) {
  .how-it-works .hiw-steps {
    flex-direction: column;
    align-items: center;
  }
  .how-it-works .step-box {
    width: 90%;
  }
  .how-it-works .cta-buttons {
    flex-direction: column;
  }
}

.contact-page {
  padding: 60px 20px;
  background: var(--neutral-100);
  color: var(--text);
}
.contact-page .contact-hero {
  text-align: center;
  margin-bottom: 40px;
}
.contact-page .contact-hero h1 {
  font-size: 2.2rem;
  color: var(--accent);
}
.contact-page .contact-hero p {
  color: var(--neutral-500);
  font-size: 1rem;
  margin-top: 10px;
}
.contact-page .contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
}
.contact-page .contact-form,
.contact-page .contact-info {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}
.contact-page .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-page .contact-form input,
.contact-page .contact-form textarea {
  padding: 10px;
  border: 1px solid var(--neutral-300);
  border-radius: 5px;
  font-size: 1rem;
  background: #fff;
}
.contact-page .contact-form button {
  padding: 12px;
  border: none;
  background: var(--primary);
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}
.contact-page .contact-form button:hover {
  background: var(--accent);
}
.contact-page .contact-info h3 {
  margin-bottom: 20px;
  color: var(--accent);
}
.contact-page .contact-info p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.contact-page .contact-info i {
  margin-right: 10px;
  color: var(--primary);
}
.contact-page .social-links {
  margin-top: 20px;
}
.contact-page .social-links a {
  font-size: 1.2rem;
  margin-right: 15px;
  color: var(--accent);
  transition: color 0.3s;
}
.contact-page .social-links a:hover {
  color: var(--primary);
}
.contact-page .contact-map iframe {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--bg, #fff);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  z-index: 1000;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}
.cart-sidebar .cart-sidebar.active {
  right: 0;
}
.cart-sidebar .cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cart-sidebar .cart-header h3 {
  font-size: 1.3rem;
  color: var(--accent);
}
.cart-sidebar .close-cart {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--neutral-500);
}
.cart-sidebar .cart-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cart-sidebar .cart-item {
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--neutral-200);
  padding-bottom: 10px;
}
.cart-sidebar .cart-item img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.cart-sidebar .item-info {
  flex: 1;
}
.cart-sidebar .item-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--accent);
}
.cart-sidebar .item-info p {
  font-size: 0.8rem;
  color: var(--neutral-500);
}
.cart-sidebar .qty {
  font-weight: bold;
  color: var(--primary);
}
.cart-sidebar .remove-btn {
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--error);
  cursor: pointer;
}
.cart-sidebar .cart-footer {
  margin-top: 20px;
  border-top: 1px solid var(--neutral-200);
  padding-top: 15px;
}
.cart-sidebar .subtotal {
  font-size: 1rem;
  margin-bottom: 10px;
}
.cart-sidebar .btn.checkout-btn, .cart-sidebar .default-form input.checkout-btn[type=submit], .default-form .cart-sidebar input.checkout-btn[type=submit],
.cart-sidebar .default-form input.checkout-btn[type=reset],
.default-form .cart-sidebar input.checkout-btn[type=reset] {
  display: block;
  width: 100%;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-weight: bold;
  text-decoration: none;
}
.cart-sidebar .btn.outline-btn, .cart-sidebar .default-form input.outline-btn[type=submit], .default-form .cart-sidebar input.outline-btn[type=submit],
.cart-sidebar .default-form input.outline-btn[type=reset],
.default-form .cart-sidebar input.outline-btn[type=reset] {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--accent);
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--accent);
  font-weight: bold;
  text-decoration: none;
}

.checkout-body {
  background-color: #f9f9f9;
}

.checkout-container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

.card {
  border-radius: 1rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: #007bff;
}

.order-summary {
  background: var(--accent);
  color: var(--neutral-100);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.collections-scroll a {
  color: var(--accent);
}

.collections-scroll a.active {
  text-decoration: underline;
  color: var(--primary);
  font-weight: bold;
}

.btn-checkout {
  border: none;
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.btn-checkout:hover {
  opacity: 1;
}

.modal-title {
  color: var(--text);
}

.success-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.success-card {
  max-width: 600px;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
}

#dashboard .dashboard-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
}
#dashboard #toggleSidebar {
  color: var(--text);
}
#dashboard .content-container {
  width: calc(100% - 250px);
  margin-left: 250px;
  min-height: 100vh;
}
#dashboard .dash-navbar {
  width: 100%;
  background-color: var(--bg);
  position: sticky;
  top: 0px;
  z-index: 2;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
}
#dashboard .dash-navbar .container {
  width: 100%;
}
#dashboard .dash-navbar .inner-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#dashboard .dash-navbar .inner-nav .left-section {
  display: flex;
  gap: 10px;
  align-items: center;
}
#dashboard .dash-navbar .special-drop {
  margin-left: 10px;
}
#dashboard .dash-navbar .special-drop button {
  padding: 10px;
}
#dashboard .dashboard-inner {
  padding: 30px 0px;
  width: 90%;
  margin: auto;
}
#dashboard .balance-card {
  width: 100%;
  position: relative;
  background-color: var(--accent);
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
}
#dashboard .balance-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
#dashboard .pending-payment {
  width: 100%;
  position: relative;
  height: 100%;
  padding: 10px 15px;
  border-radius: 10px;
}
#dashboard .balance-card h2 {
  color: #fff;
  font-weight: 800;
  font-size: 30px;
}
#dashboard .h-text p {
  margin-top: -15px;
  font-size: 13px;
}
#dashboard .balance-card .h-text p {
  color: #fff;
}
#dashboard .copy-key {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#dashboard .copy-key button {
  margin-top: -40px;
}
#dashboard .key p {
  font-size: 12px;
  color: var(--neutral-300);
}
#dashboard .copy-key.verify {
  margin-top: 20px;
}
#dashboard .copy-key.verify .key p {
  font-size: 12px;
  color: var(--text);
}
#dashboard .on-hold h2 {
  font-weight: 500;
  font-size: 20px;
}
#dashboard .crypto-balance {
  width: 100%;
  height: 100px;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
}
#dashboard .crypto-balance:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--accent);
}
#dashboard .crypto-balance .current-rates {
  width: 100%;
  position: absolute;
  bottom: 0px;
}
#dashboard .crypto-balance .current-rates p {
  color: var(--accent);
  font-weight: 500;
}
#dashboard .dashboard-carousel {
  width: 100%;
  height: 350px;
  position: relative;
}
#dashboard .dashboard-carousel .bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(50px);
  animation: slideFade 24s infinite;
}
#dashboard .dashboard-carousel .slide-1 {
  background-image: url("https://images.unsplash.com/photo-1550009158-9ebf69173e03?q=80&w=2101&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  animation-delay: 0s;
}
#dashboard .dashboard-carousel .slide-2 {
  background-image: url("https://images.unsplash.com/photo-1542291026-7eec264c27ff?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  animation-delay: 6s;
}
#dashboard .dashboard-carousel .slide-3 {
  background-image: url("https://images.unsplash.com/photo-1517635676447-3a480fbfd8f2?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  animation-delay: 12s;
}
#dashboard .dashboard-carousel .slide-4 {
  background-image: url("https://images.unsplash.com/photo-1479064555552-3ef4979f8908?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  animation-delay: 18s;
}
@keyframes slideFade {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  10% {
    opacity: 1;
    transform: translateX(0);
  }
  25% {
    opacity: 1;
    transform: translateX(0);
  }
  35% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 0;
    transform: translateX(-50px);
  }
}
#dashboard .user-details .container {
  max-width: 960px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
#dashboard .user-details .tabs {
  display: flex;
  border-bottom: 2px solid #ccc;
  margin-bottom: 20px;
}
#dashboard .user-details .tab {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background: none;
  font-weight: bold;
  color: #555;
  border-bottom: 3px solid transparent;
}
#dashboard .user-details .tab.active {
  color: #000;
  border-color: #007bff;
}
#dashboard .user-details .tab-content {
  display: none;
}
#dashboard .user-details .tab-content.active {
  display: block;
}
#dashboard .user-details .info {
  margin-bottom: 12px;
}
#dashboard .user-details .label {
  font-weight: bold;
  display: inline-block;
  width: 180px;
}
#dashboard .user-details .value {
  color: #555;
}
#dashboard .user-details .avatar,
#dashboard .user-details .logo {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ccc;
}
#dashboard .user-details .logo {
  border-radius: 12px;
}

.supportId .support-item {
  transition: all 0.3s ease;
}
.supportId .support-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.supportId .support-badge {
  font-size: 0.8rem;
  padding: 4px 8px;
}
.supportId .status-open {
  color: #0d6efd;
  font-weight: 500;
}
.supportId .status-close {
  color: #198754;
  font-weight: 500;
}
.supportId .status-pending {
  color: #ffc107;
  font-weight: 500;
}
.supportId .ticket-row:hover {
  background-color: #f8f9fa;
  cursor: pointer;
}
.supportId .ticket-header {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.supportId .message-bubble {
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  max-width: 75%;
}
.supportId .message-customer {
  background-color: #d1ecf1;
  align-self: flex-start;
}
.supportId .message-admin {
  background-color: #e2f0d9;
  align-self: flex-end;
}
.supportId .message-vendor {
  background-color: #e6fff2;
  color: #056c4e;
  border-left: 4px solid #00b37e;
}
.supportId .conversation {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-height: 500px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.supportId .sender-name {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.supportId .timestamp {
  font-size: 0.8rem;
  color: #888;
}
.supportId .ticket-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.supportId .form-title {
  font-weight: 600;
  font-size: 1.5rem;
}
.supportId .no-messages-placeholder {
  border: 1px dashed #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
}
@keyframes flash {
  0% {
    background-color: #dc3545;
  }
  50% {
    background-color: #ffc107;
    color: #000;
  }
  100% {
    background-color: #dc3545;
  }
}
.supportId .support-badge.flash {
  animation: flash 1s ease;
}

:root {
  --bg: #0b0d0f;
  --bg-soft: #12151a;
  --card: #14181f;
  --muted: #94a3b8;
  --text: #e6edf3;
  --primary: #4f46e5;
  --primary-600: #5850ec;
  --ring: rgba(79, 70, 229, 0.35);
  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #ef4444;
  --border: rgba(148, 163, 184, 0.16);
  --elev: 0 10px 30px rgba(0, 0, 0, 0.15);
  --radius-xl: 1.25rem;
  --radius-lg: 1rem;
}

[data-theme=light] {
  --bg: #f8fafc;
  --bg-soft: #f1f5f9;
  --card: #ffffff;
  --muted: #64748b;
  --text: #0f172a;
  --border: rgba(15, 23, 42, 0.08);
  --elev: 0 10px 30px rgba(2, 6, 23, 0.06);
  --ring: rgba(79, 70, 229, 0.25);
}

html,
body {
  background: var(--bg);
  color: var(--text);
}

.container-narrow {
  max-width: 1080px;
}

/* Navbar */
.app-navbar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.brand-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0.25rem var(--ring);
}

.nav-link {
  color: var(--muted);
}

.nav-link.active,
.nav-link:hover {
  color: var(--text);
}

/* Hero */
.page-header p {
  color: var(--muted);
}

/* Cards */
.card-modern {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--elev);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--ring);
}

.wallet-card {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(79, 70, 229, 0.02));
  position: relative;
  overflow: hidden;
}

.wallet-card:after {
  content: "";
  position: absolute;
  inset: auto -30% -40% auto;
  width: 65%;
  height: 180%;
  background: radial-gradient(ellipse at center, var(--ring), transparent 60%);
  transform: rotate(25deg);
}

.balance-amount {
  font-size: clamp(1.8rem, 3vw + 1rem, 3rem);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.subtle {
  color: var(--muted);
}

.crypto-card .token {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.token img {
  width: 36px;
  height: 36px;
}

/* Quick Actions */
.quick-actions .btn, .quick-actions .default-form input[type=submit], .default-form .quick-actions input[type=submit],
.quick-actions .default-form input[type=reset],
.default-form .quick-actions input[type=reset] {
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  transition: transform 0.15s ease, border-color 0.2s ease;
}

.quick-actions .btn:hover, .quick-actions .default-form input[type=submit]:hover, .default-form .quick-actions input[type=submit]:hover,
.quick-actions .default-form input[type=reset]:hover,
.default-form .quick-actions input[type=reset]:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem var(--ring);
}

/* Tables */
.table-modern {
  --bs-table-bg: transparent;
  color: var(--text);
}

.table-modern th {
  color: var(--muted);
  font-weight: 600;
}

.table-modern td,
.table-modern th {
  border-color: var(--border) !important;
}

/* Pills & badges */
.status-pill {
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-weight: 600;
  font-size: 0.75rem;
  border: 1px solid var(--border);
}

.status-pill.success {
  background: rgba(22, 163, 74, 0.1);
  color: var(--success);
  border-color: rgba(22, 163, 74, 0.25);
}

.status-pill.warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
  border-color: rgba(245, 158, 11, 0.25);
}

.status-pill.danger {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  border-color: rgba(239, 68, 68, 0.25);
}

/* Forms */
.form-control,
.form-select {
  background: var(--bg);
  color: var(--text);
  border-color: var(--border);
  border-radius: var(--radius-lg);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem var(--ring);
}

/* Footer */
.app-footer {
  color: var(--muted);
}

/* Motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .card-modern,
  .quick-actions .btn,
  .quick-actions .default-form input[type=submit],
  .default-form .quick-actions input[type=submit],
  .quick-actions .default-form input[type=reset],
  .default-form .quick-actions input[type=reset] {
    transition: none !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (max-width: 576px) {
  body {
    width: 100%;
    position: relative;
  }
  .dash-navbar {
    width: 100%;
    background-color: var(--neutral-100);
    position: sticky;
    top: 0px;
    z-index: 20;
    padding: 10px 20px;
    display: flex;
  }
  .card,
  .card-body {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
  }
  .mobil-100,
  .widget {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
  }
  #dashboard .side-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    z-index: 1;
  }
  #dashboard .dash-sidebar {
    visibility: hidden;
    left: -50px;
    opacity: 0.6;
    transition: all 0.38s ease-in-out;
    visibility: hidden;
    height: 100vh;
    z-index: 10000;
  }
  #dashboard .show-sideBar {
    visibility: visible;
    left: 0px;
    opacity: 1;
  }
  #dashboard .content-container {
    width: 100%;
    margin-left: 0px;
    min-height: 100vh;
  }
  #dashboard .dashboard-inner {
    padding: 10px;
    width: 95%;
    margin: auto;
  }
  .hide-mobile {
    display: none;
  }
  .show-mobile {
    display: block;
  }
  .col-sm-6,
  .col-sm-4 {
    margin-bottom: 10px;
  }
  .dashboard-inner {
    padding: 10px 0px;
    width: 100%;
    margin: auto;
  }
  #bank-pages .p-5 {
    padding: 10px;
  }
  .category-icons {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .category-icons {
    display: none !important;
  }
  p {
    text-align: justify;
  }
  .page-header h3,
  .page-header p {
    text-align: center;
  }
  .cartHide {
    display: none;
  }
  .cartVisibility {
    display: block;
  }
}/*# sourceMappingURL=main.css.map */