:root {
  --primary-color: #1e1e2f;
  --secondary-color: #28293d;
  --accent-color: #4e4e8e;
  --text-color: #ffffff;
  --hover-color: #3a3a5e;
  --gradient: linear-gradient(135deg, #1e1e2f, #4e4e8e);
  --bg-violet: linear-gradient(135deg, #6a11cb, #2575fc);
  --bg-orange: linear-gradient(45deg, #ff9800, #ff5722);
  --luxury-color: #030114;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --primary: 237, 94%, 81%;
  --background: 266, 16%, 92%;
  --background-secondary: 256, 12%, 12%;
  --background-secondary-dark: 256, 10%, 10%;
  --background-secondary-light: 257, 11%, 16%;
  --text-primary: 0, 0%, 0%;
  --black: 0, 0%, 0%;
  --white: 0, 0%, 100%;
  --quite-gray: 0, 0%, 50%;
  --grooble: 10, 28%, 93%;
  --heading-large: 5.6rem;
  --heading-medium: 3.6rem;
  --heading-small: 2.4rem;
  --paragraph: 1.11rem;
  --navbar-buttons: 2.4rem;
  --transition-main: 0.175, 0.685, 0.32;
  --transition-main2: 0.28, 0.7, 0.8;
  --font-main: "Poppins";
  --sz: 14px;
  --on: #1e006e;
  --of: #253a42;
  --tr: all 0.25s ease 0s;
  --bg1: #071029;
  --bg2: #0b2238;
  --glass: rgba(255,255,255,0.06);
  --accent: #64d7ff;
  --accent-2: #a47bff;
  --muted: rgba(255,255,255,0.65);
  --card: rgba(255,255,255,0.03);
  --glass-2: rgba(255,255,255,0.03);
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
  color: hsl(var(--text-primary));
  font-family: var(--font-main);
  background-color: var(--luxury-color);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.bgloader-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(10, 10, 10, 0.9);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.bgloader-text {
  color: #00eaff;
  font-size: 1.3rem;
  font-weight: bold;
  text-shadow: 0 0 10px #00eaffaa;
}

body.loading {
  overflow: hidden;
  pointer-events: none;
}

.animation-loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: #ccc #0000;
  animation: l16 1s infinite linear;
}

.animation-loader::before,
.animation-loader::after {    
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}

.animation-loader::before {
  border-color: #00eaff #ccc;
  animation: inherit; 
  animation-duration: .5s;
  animation-direction: reverse;
}

.animation-loader::after {
  margin: 8px;
}

@keyframes l16 { 
  100%{transform: rotate(1turn)}
}

.modal-dialog {
  max-width: 600px;
}

body.modal-open {
  padding-right: 0px !important;
  overflow: visible !important;
}

.modal {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 0px !important;
  z-index: 1150;
}

.modal .modal-header .btn-close {
  margin: 0;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: black;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, white, skyblue);
  border-radius: 10px;
  border: 3px solid black;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, white, skyblue);
}

.check_registration,
.check_message,
.alert_match,
.check_membership {
  direction: rtl;
  display: none;
  background-color: gray;
  border-radius: 0px 0px 50px 50px;
  text-align: center;
  width: 200px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px;
  position: fixed;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-animation: alert 5s linear forwards;
  animation: alert 5s linear forwards;
  z-index: 1200;
}

.check-subscribe {
  padding-bottom: 15px;
}

.check-subscribe,
.success,
.notice,
.failed,
.lettre,
.alert,
.crystal {
  display: block;
}

.crystal {
  color: white;
  background-color: rgb(191, 0, 255);
  -webkit-box-shadow: 0 0px 15px rgb(191, 0, 255);
  box-shadow: 0 0px 15px rgb(191, 0, 255);
}

.success,
.lettre {
  background-color: chartreuse;
}

.failed,
.alert {
  background-color: red;
}

.notice {
  background-color: gray;
}

@-webkit-keyframes alert {
  0% {
    top: -200px;
  }

  25% {
    top: 0px;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes alert {
  0% {
    top: -200px;
  }

  25% {
    top: 0px;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

header {
  height: 100vh;
  margin: 0;
  position: fixed;
  left: 0;
  z-index: 1000;
}

header a {
  color: hsla(var(--primary), 1);
  font-size: var(--paragraph);
  text-decoration: underline;
}

header a:visited {
  color: hsla(var(--primary), 0.5);
}

header ul,
header ol {
  margin: 1em 0;
}

header .flexbox {
  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;
}

header .flexbox-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .flexbox-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .flexbox-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
}

header .flexbox-col-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -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;
}

header .flexbox-col-left-ns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
}

header .flexbox-col-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

header .flexbox-col-start-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -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;
}

header .flexbox-space-bet {
  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;
}

header #navbar {
  position: fixed;
  top: 0;
  bottom: 0;
  padding: 0;
  width: 5em;
  height: 100vh;
  background-color: rgba(24, 24, 24, 0.33);
  background-color: hsl(var(--background-secondary));
  -webkit-transition: width 0.4s cubic-bezier(var(--transition-main), 1);
  -o-transition: width 0.4s cubic-bezier(var(--transition-main), 1);
  transition: width 0.4s cubic-bezier(var(--transition-main), 1);
  overflow-y: auto;
  overflow-x: hidden;
}

.menu-toggle,
.menu-close {
  display: none;
}

header #navbar.hover-header {
  width: 16em;
  max-width: calc(100% - 5em);
}

header #navbar::-webkit-scrollbar-track {
  background-color: hsl(var(--background-secondary));
}

header #navbar::-webkit-scrollbar {
  width: 8px;
  background-color: hsl(var(--background-secondary));
}

header #navbar::-webkit-scrollbar-thumb {
  background-color: hsl(var(--primary));
}

header .navbar-items {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

header .navbar-logo {
  margin: 0 0 2em 0;
  width: 100%;
  height: 5em;
  background: hsl(var(--background-secondary-dark));
}

header .navbar-logo > .navbar-item-inner {
  width: calc(5rem - 8px);
}

header .navbar-logo > .navbar-item-inner:hover {
  background-color: transparent;
}

header .navbar-logo > .navbar-item-inner > img {
  width: 50px;
  height: 50px;
}

header .navbar-logo > .navbar-item-inner > svg {
  height: 2em;
  fill: hsl(var(--white));
}

header .navbar-item {
  padding: 0 0.5em;
  width: 100%;
  cursor: pointer;
}

header .navbar-item-inner {
  padding: 1em 0;
  width: 100%;
  position: relative;
  color: hsl(var(--quite-gray));
  border-radius: 0.25em;
  text-decoration: none;
  -webkit-transition: all 0.2s cubic-bezier(var(--transition-main), 1);
  -o-transition: all 0.2s cubic-bezier(var(--transition-main), 1);
  transition: all 0.2s cubic-bezier(var(--transition-main), 1);
}

header .navbar-item-inner:hover {
  color: hsl(var(--white));
  background: hsl(var(--background-secondary-light));
  -webkit-box-shadow: 0 17px 30px -10px hsla(var(--black), 0.25);
          box-shadow: 0 17px 30px -10px hsla(var(--black), 0.25);
}

header .navbar-item-inner-icon-wrapper {
  width: calc(5rem - 1em - 8px);
  position: relative;
}

header .navbar-item-inner-icon-wrapper i {
  position: absolute;
  font-size: calc(var(--navbar-buttons) - 1rem);
}

header .link-text {
  margin: 0;
  width: 0;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  unicode-bidi: -moz-plaintext;
  unicode-bidi: plaintext;
  white-space: nowrap;
  -webkit-transition: all 0.35s cubic-bezier(var(--transition-main), 1);
  -o-transition: all 0.35s cubic-bezier(var(--transition-main), 1);
  transition: all 0.35s cubic-bezier(var(--transition-main), 1);
  overflow: hidden;
  opacity: 0;
}

header #navbar.hover-header .link-text {
  width: calc(100% - calc(5rem - 8px));
  opacity: 1;
}

header #notificationBtn, header #messageBtn, header #requestBtn {
  cursor: pointer;
  font-size: 1.2rem;
  position: relative;
  color: lavender;
}

header .language-toggle * {
  box-sizing: border-box;
  transition: var(--tr);
}

header .language-toggle {
  position: relative;
  width: calc(var(--sz) * 4);
  height: calc(var(--sz) * 2);
  display: flex;
  align-items: center;
  justify-content: center;
}

header .language-toggle input {
  display: none;
}

header .language-toggle label[for=langToggle] {
  position: absolute;
  width: calc(var(--sz) * 4);
  height: calc(var(--sz) * 2);
  background: linear-gradient(180deg, #888, #fff);
  border-radius: var(--sz);
  padding: calc(var(--sz) / 5);
  box-shadow: 0 0 calc(var(--sz) / 50) calc(var(--sz) / 50) #0002;
}	

header .language-toggle #langToggle:checked + label[for=langToggle] {
  box-shadow: 
    0 calc(var(--sz) / 50) calc(var(--sz) / 5) #fff9, 
    0 0 calc(var(--sz) / 50) calc(var(--sz) / 50) #0002;
}

header .language-toggle label[for=langToggle]:after {
  content: "";
  position: absolute;
  width: calc(100% - calc(calc(var(--sz) / 5) * 12));
  height: calc(100% - calc(calc(var(--sz) / 5) * 2));
  /*box-shadow: 0 0 calc(var(--sz) / 2) calc(var(--sz) / 10) var(--on), 0 0 calc(var(--sz) / 2) calc(var(--sz) / 10) #fff;*/
  border-radius: var(--sz);
  z-index: 0;
  opacity: 0;
  transition: var(--tr);
  animation: move-shadow 3s ease 0s 1;
}

header .language-toggle #langToggle:checked + label[for=langToggle]:after {
  opacity: 1;
  width: calc(100% - calc(calc(var(--sz) / 5) * 4));
}

header .language-toggle .track {
  position: absolute;
  width: calc(calc(var(--sz) * 4) - calc(var(--sz) / 2.5));
  height: calc(calc(var(--sz) * 2) - calc(var(--sz) / 2.5));
  border-radius: var(--sz);
  overflow: hidden;
}

header .language-toggle .track:before {
  content: "";
  position: absolute;
  width: calc(200% - calc(calc(var(--sz) * 2) - calc(var(--sz) / 3)));
  height: 100%;
  left: -50%;
  transition: var(--tr);
  background: linear-gradient(90deg, var(--on) 50%, var(--of) 50%);
  animation: move-color 3s ease 0s 1;
}

header .language-toggle .track:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--sz);
  box-shadow: 0 calc(var(--sz) / -10) calc(var(--sz) / 10) 0 #0005 inset, 0 calc(var(--sz) / 10) calc(var(--sz) / 10) 0 #0005 inset;
}

header .language-toggle #langToggle:checked + label .track:before {
  left: 0%;
}

header .language-toggle .thumb {
  position: absolute;
  width: calc(calc(var(--sz) * 2) - calc(var(--sz) / 3));
  height: calc(calc(var(--sz) * 2) - calc(var(--sz) / 3));
  top: calc(calc( var(--sz) / 10) + calc(var(--sz) / 15));
  left: calc(calc( var(--sz) / 10) + calc(var(--sz) / 15));
  background: linear-gradient(180deg, #fff, #afafaf);
  border-radius: var(--sz);
  box-shadow: 0 0 0 calc(var(--sz) / 50) #0002, 0 calc(var(--sz) / 10) calc(var(--sz) / 10) 0 #0008;
  cursor: pointer;
  font-size: calc(var(--sz) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-indent: calc(var(--sz) * -0.025);
  text-shadow: 
    calc(var(--sz) / -8000) calc(var(--sz) / -150) calc(var(--sz) / 50) #0008, 
    calc(var(--sz) / 150) calc(var(--sz) / 100) calc(var(--sz) / 50) #fff;
  color: #7d7c7c;
  z-index: 1;
  animation: move-thumb 3s ease 0s 1;
}

header .language-toggle #langToggle:checked + label .thumb {
  left: calc(calc(100% - calc(calc(var(--sz) * 2) - calc(var(--sz) / 3))) - calc(calc( var(--sz) / 10) + calc(var(--sz) / 15)));
  color: var(--on);
  background: 
    radial-gradient(circle at 7% 50%, #fff calc(var(--sz) / 50), #fff0 calc(var(--sz) / 2)),
    radial-gradient(circle at 0 50%, var(--on) 10%, #fff0 60%), 
    linear-gradient(180deg, #fff, #afafaf);
  text-shadow: 
    0 0 calc(var(--sz) / 10) var(--on), 0 0 calc(var(--sz) / 5) #fff, 
    calc(var(--sz) / -8000) calc(var(--sz) / -150) calc(var(--sz) / 50) #0008, 
    calc(var(--sz) / 150) calc(var(--sz) / 100) calc(var(--sz) / 50) #fff;
}

header .language-toggle .thumb:before {
  content: "";
  display: block;
  width: 70%;
  height: 70%;
  background: linear-gradient(180deg, #0008, #ccc, #fff);
  position: absolute;
  z-index: -1;
  border-radius: var(--sz);
  border: calc(var(--sz) / 50) solid #ddd;
}

header .language-toggle .txt:before, 
header .language-toggle .txt:after {
  content: "";
  position: absolute;
  left: calc(var(--sz) / 2);
  top: 25%;
  content: "AR";
  transition: var(--tr);
  font-size: calc(var(--sz) / 1.5);
  color: white;
  opacity: 0.4;
  text-shadow: 0px -1px 1px #000, 0px 1px 2px #fff;
}

header .language-toggle .txt:after {
  content: "EN";
  color: white;
  left: calc(100% - calc(var(--sz) / 0.625));
}

@keyframes move-thumb {
  0%, 20%, 80%, 100% { 
    left: calc(calc( var(--sz) / 10) + calc(var(--sz) / 15));
    color: #7d7c7c;
    background: linear-gradient(180deg, #fff, #afafaf);
    text-shadow:  
      calc(var(--sz) / -8000) calc(var(--sz) / -150) calc(var(--sz) / 50) #0008, 
      calc(var(--sz) / 150) calc(var(--sz) / 100) calc(var(--sz) / 50) #fff;
  }
  30%, 70% {
    left: calc(calc(100% - calc(calc(var(--sz) * 2) - calc(var(--sz) / 3))) - calc(calc( var(--sz) / 10) + calc(var(--sz) / 15)));
    color: var(--on);
    background: 
      radial-gradient(circle at 7% 50%, #fff calc(var(--sz) / 50), #fff0 calc(var(--sz) / 2)),
      radial-gradient(circle at 0 50%, var(--on) 10%, #fff0 60%), 
      linear-gradient(180deg, #fff, #afafaf);
    text-shadow:
      0 0 calc(var(--sz) / 10) var(--on), 0 0 calc(var(--sz) / 5) #fff, 
      calc(var(--sz) / -8000) calc(var(--sz) / -150) calc(var(--sz) / 50) #0008, 
      calc(var(--sz) / 150) calc(var(--sz) / 100) calc(var(--sz) / 50) #fff;
  }
}

@keyframes move-color {
  0%, 20%, 80%, 100% { left: -50%; }
  30%, 70% { left: 0%; }
}

@keyframes move-shadow {
  0%, 20%, 80%, 100% { 
    opacity: 0;
    width: calc(100% - calc(calc(var(--sz) / 5) * 12));	
  }
  30%, 70% { 
    opacity: 1;
    width: calc(100% - calc(calc(var(--sz) / 5) * 4));
  }
}

.notificationPopup {
  pointer-events: auto;
  position: fixed;
  top: 0;
  right: -400px;
  min-width: 400px;
  height: 100vh;
  background-color: #111;
  color: white;
  padding: 20px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
  overflow: auto;
  z-index: 1002;
  transition: right 0.3s ease-in-out;
}

.notificationPopup.show {
  right: 0;
}

.notificationPopup .popup-close {
  position: absolute;
  top: 15px;
  left: 15px;
  color: white;
  font-size: 28px;
  font-weight: bolder;
  cursor: pointer;
}

.notificationPopup .popup-content {
  margin-top: 50px;
}

.notificationPopup h3 {
  margin-bottom: 20px;
  font-size: 24px;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
}

.notification-count {
  position: absolute;
  max-width: 24px;
  max-height: 24px;
  top: -10px;
  right: -10px;
  background-color: red;
  color: white;
  border-radius: 50%;
  font-size: 8px;
  padding: 4px;
  display: flex;
  text-align: center;
  align-content: center;
  justify-content: center;
  cursor: pointer;
}

.notification-item {
  padding: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  background-color: #1a1a1a;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.notification-item.unread {
  background-color: #242435;
  border-left: 4px solid #0af;
  font-weight: bold;
}

.notification-item.read {
  background-color: #1a1a1a;
  border-left: 4px solid #444;
  color: #ccc;
}

.notification-details {
  position: absolute;
  right: 0;
  min-width: 400px;
  display: none;
  background-color: #111;
  padding: 15px;
  flex-wrap: wrap;
  text-wrap: wrap;
  overflow-x: hidden;
}

.notification-details #detailMessage{
  text-align: justify;
  flex-wrap: wrap;
  text-wrap: wrap;
}

#notificationBackBtn {
  cursor: pointer;
  color: #0af;
  margin-bottom: 10px;
  display: inline-block;
}

@media (max-width: 500px) {
  .popup {
    min-width: 100%;
    right: -100vw;
  }
}

.floating-notification {
  display: none;
  position: fixed;
  width: 100%;
  max-width: 500px;
  margin-left: 10px;
  margin-right: 10px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a0a23;
  color: white;
  padding: 15px 20px;
  border-left: 4px solid #0af;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.5s ease;
  overflow: hidden;
}

.floating-notification strong {
  font-size: medium;
}

.floating-notification p {
  font-size: small;
}

.floating-notification.show {
  cursor: pointer;
  opacity: 1;
  display: block;
}

.viewMessage {
	color: gold;
	text-transform: none;
	text-decoration: none;
}

.header-cart {
  -webkit-animation: runCart 2s ease-in-out;
          animation: runCart 2s ease-in-out;
}

@-webkit-keyframes runCart {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  20% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  40% {
    -webkit-transform: translateX(+60px);
            transform: translateX(+60px);
    opacity: 1;
  }
  60% {
    -webkit-transform: translateX(+2000px);
            transform: translateX(+2000px);
    opacity: 0;
  }
  80% {
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes runCart {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  20% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  40% {
    -webkit-transform: translateX(+60px);
            transform: translateX(+60px);
    opacity: 1;
  }
  60% {
    -webkit-transform: translateX(+2000px);
            transform: translateX(+2000px);
    opacity: 0;
  }
  80% {
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    opacity: 1;
  }
}

header .loader, .analyze-loader-overlay .loader {
  -webkit-transform: rotateZ(45deg);
      -ms-transform: rotate(45deg);
          transform: rotateZ(45deg);
  -webkit-perspective: 1000px;
          perspective: 1000px;
  border-radius: 50%;
  width: calc(var(--navbar-buttons) - 1rem);
  height: calc(var(--navbar-buttons) - 1rem);
  color: #fff;
}

.analyze-loader-overlay .loader {
  width: 80px;
  height: 80px;
}

header .loader:before,
header .loader:after,
.analyze-loader-overlay .loader:before,
.analyze-loader-overlay .loader:after  {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  -webkit-transform: rotateX(70deg);
          transform: rotateX(70deg);
  -webkit-animation: 1s spin linear infinite;
          animation: 1s spin linear infinite;
}
header .loader:after, .analyze-loader-overlay .loader:after {
  color: #00ff11;
  -webkit-transform: rotateY(70deg);
          transform: rotateY(70deg);
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

.analyze-loader-overlay .loader:after {
  color: #00f0ff;
  -webkit-transform: rotateY(70deg);
          transform: rotateY(70deg);
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

@-webkit-keyframes rotate {
0% {
  -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
          transform: translate(-50%, -50%) rotateZ(0deg);
}
100% {
  -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
          transform: translate(-50%, -50%) rotateZ(360deg);
}
}

@keyframes rotate {
0% {
  -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
          transform: translate(-50%, -50%) rotateZ(0deg);
}
100% {
  -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
          transform: translate(-50%, -50%) rotateZ(360deg);
}
}

@-webkit-keyframes rotateccw {
0% {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
100% {
  -webkit-transform: translate(-50%, -50%) rotate(-360deg);
          transform: translate(-50%, -50%) rotate(-360deg);
}
}

@keyframes rotateccw {
0% {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
100% {
  -webkit-transform: translate(-50%, -50%) rotate(-360deg);
          transform: translate(-50%, -50%) rotate(-360deg);
}
}

@-webkit-keyframes spin {
0%,
100% {
  -webkit-box-shadow: .2em 0px 0 0px currentcolor;
          box-shadow: .2em 0px 0 0px currentcolor;
}
12% {
  -webkit-box-shadow: .2em .2em 0 0 currentcolor;
          box-shadow: .2em .2em 0 0 currentcolor;
}
25% {
  -webkit-box-shadow: 0 .2em 0 0px currentcolor;
          box-shadow: 0 .2em 0 0px currentcolor;
}
37% {
  -webkit-box-shadow: -.2em .2em 0 0 currentcolor;
          box-shadow: -.2em .2em 0 0 currentcolor;
}
50% {
  -webkit-box-shadow: -.2em 0 0 0 currentcolor;
          box-shadow: -.2em 0 0 0 currentcolor;
}
62% {
  -webkit-box-shadow: -.2em -.2em 0 0 currentcolor;
          box-shadow: -.2em -.2em 0 0 currentcolor;
}
75% {
  -webkit-box-shadow: 0px -.2em 0 0 currentcolor;
          box-shadow: 0px -.2em 0 0 currentcolor;
}
87% {
  -webkit-box-shadow: .2em -.2em 0 0 currentcolor;
          box-shadow: .2em -.2em 0 0 currentcolor;
}
}

@keyframes spin {
0%,
100% {
  -webkit-box-shadow: .2em 0px 0 0px currentcolor;
          box-shadow: .2em 0px 0 0px currentcolor;
}
12% {
  -webkit-box-shadow: .2em .2em 0 0 currentcolor;
          box-shadow: .2em .2em 0 0 currentcolor;
}
25% {
  -webkit-box-shadow: 0 .2em 0 0px currentcolor;
          box-shadow: 0 .2em 0 0px currentcolor;
}
37% {
  -webkit-box-shadow: -.2em .2em 0 0 currentcolor;
          box-shadow: -.2em .2em 0 0 currentcolor;
}
50% {
  -webkit-box-shadow: -.2em 0 0 0 currentcolor;
          box-shadow: -.2em 0 0 0 currentcolor;
}
62% {
  -webkit-box-shadow: -.2em -.2em 0 0 currentcolor;
          box-shadow: -.2em -.2em 0 0 currentcolor;
}
75% {
  -webkit-box-shadow: 0px -.2em 0 0 currentcolor;
          box-shadow: 0px -.2em 0 0 currentcolor;
}
87% {
  -webkit-box-shadow: .2em -.2em 0 0 currentcolor;
          box-shadow: .2em -.2em 0 0 currentcolor;
}
}

main {
  margin-left: 5em;
  min-height: 100vh;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  color: white;
}

main .special-title {
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  padding-left: 10px;
  border-bottom: red 3px solid;
}

.a-ser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  overflow: hidden;
  background-color: #343a40;
  color: white;
}

.a-ser:hover {
  background-color: #0b0c2b;
  color: white;
}

.product-ico-ser {
  width: 50px;
  height: 50px;
  margin-left: 20px;
  border: #333 1px solid;
  border-radius: 10px;
}

.store-ico-ser {
  width: 50px;
  height: 50px;
  margin-left: 20px;
  border: #333 1px solid;
  border-radius: 50%;
}
.tit-ser {
  text-align: right;
  -ms-flex-line-pack: center;
      align-content: center;
  display: block;
  float: right;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  unicode-bidi: -moz-plaintext;
  unicode-bidi: plaintext;
}

.user-actions .btn {
  margin-left: 1rem;
}

.scroll-top {
  height: 40px;
  width: 40px;
  text-align: center;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  transition: ease 0.5s;
  border-radius: 50%;
  display: none;
}

.scroll-top:hover {
  background-color: crimson;
  height: 50px;
  width: 50px;
}

.scroll-top.show {
  display: inline-block;
}

footer {
  margin-left: 5em;
  background: -o-linear-gradient(
    top,
    var(--primary-color),
    var(--luxury-color)
  );
  background: -webkit-gradient(
    linear,
    left top, left bottom,
    from(var(--primary-color)),
    to(var(--luxury-color))
  );
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--luxury-color)
  );
  position: relative;
}

footer .footer-logo img {
  cursor: pointer;
  width: 120px;
  height: 120px;
}

footer .nav-link {
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: 14px;
}

footer .nav-link:hover {
  color: #ffc107;
}

footer h5 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

footer p {
  font-size: 14px;
  margin-bottom: 15px;
  text-align: justify;
}

footer small {
  font-size: 12px;
}

footer ul.quick-links {
  padding: 0;
}

footer .quick-links .fas {
  width: 30px;
  text-align: center;
}

footer .fab,
.sign-eli .fab,
.about .fab {
  -webkit-transition: color 0.1s ease;
  -o-transition: color 0.1s ease;
  transition: color 0.1s ease;
}

footer .follow .fab,
.about .follow .fab {
  margin-bottom: 20px;
}

.about .follow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  text-align: center;
}

.about .follow i {
  font-size: 1.7rem;
  margin-top: 20px;
}

footer .fab:hover,
.sign-eli .fab:hover,
.about .fab:hover {
  color: #ffc107;
}

footer .follow {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

footer .container-fluid {
  padding: 20px;
}

footer .sub-updates {
  max-width: 280px;
  padding: 5px;
  text-align: center;
  background: #000000;
  border: solid rgb(255, 255, 255) 1px;
  border-radius: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

footer .sub-updates input {
  max-width: 210px;
  width: 100%;
  padding: 5px;
  color: white;
  background: var(--luxury-color);
  border: solid rgb(86, 86, 86) 1px;
  border-radius: 8px;
}

footer .sub-updates input:focus {
  color: white;
}

footer .sub-updates button {
  color: white;
  background: transparent;
  border: solid transparent 2px;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

footer .sub-updates button:hover {
  color: gold;
}

.reception .hero {
  position: relative;
  height: 100vh;
  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;
}

.reception .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.reception .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.reception .hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  background: -o-linear-gradient(45deg, #ff9800, #ff5722);
  background: linear-gradient(45deg, #ff9800, #ff5722);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reception .hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.reception .custom-btn {
  background: -o-linear-gradient(left, #ff9800, #ff5722);
  background: -webkit-gradient(linear, left top, right top, from(#ff9800), to(#ff5722));
  background: linear-gradient(to right, #ff9800, #ff5722);
  border: none;
  font-size: 20px;
  padding: 12px 30px;
  border-radius: 50px;
  -webkit-box-shadow: 0 0px 15px rgba(255, 152, 0, 0.5);
          box-shadow: 0 0px 15px rgba(255, 152, 0, 0.5);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: inline-block;
  text-decoration: none;
  color: white;
}

.reception .custom-btn:hover {
  background: -o-linear-gradient(left, #ff9b06, #ff3c00);
  background: -webkit-gradient(linear, left top, right top, from(#ff9b06), to(#ff3c00));
  background: linear-gradient(to right, #ff9b06, #ff3c00);
  -webkit-box-shadow: 0 0px 15pxrgb (74, 12, 146);
          box-shadow: 0 0px 15pxrgb (74, 12, 146);
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.reception .btn-more {
  border-radius: 50px;
}

.reception .features {
  padding: 160px 20px;
  background: transparent;
  text-align: center;
}

.reception .features h2 {
  font-weight: bolder;
  color: #fff;
  text-shadow: 0 0 8px #7b5cff, 0 0 14px #7b5cff;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.reception .features h3 {
  font-weight: bolder;
  color: #7b5cff;
  background: -o-linear-gradient(315deg, #6a11cb, #2575fc);
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 30px;
}

.reception .features p {
      text-align: justify;
  font-weight: bold;
  color: #fff;
}

.reception .features-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.reception .how-it-works {
  text-align: center;
  color: white;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reception .overlay2 {
  min-height: 100vh;
  padding: 160px 20px;
  background: rgba(0, 0, 0, 0.144);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.reception .how-it-works h2 {
  margin-bottom: 40px;
  font-weight: bolder;
  color: #fff;
  text-shadow: 0 0 8px #3be6f6ff, 0 0 14px #00b7ffff;
  font-size: 2.5rem;
}

.reception .how-it-works .subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.reception .steps-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom:18px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
}

.reception .step {
  background: rgba(33, 25, 25, 0.31);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  -o-transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.reception .step:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0px 0px 15px white;
          box-shadow: 0px 0px 15px white;
}

.reception .step .icon {
  font-size: 3rem;
  color: #ff9800;
  margin-bottom: 15px;
}

.reception .roadmap {
  padding: 160px 20px;
  background: transparent;
  text-align: center;
}

.reception .roadmap h2, .reception .roadmap h2 span {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bolder;
  color: #fff;
  text-shadow: 0 0 8px #7b5cff, 0 0 14px #7b5cff;
  font-size: 2.5rem;
}

.reception .roadmap .subtitle {
  max-width: 600px;
  margin: auto auto 40px auto;
  font-size: 1.2rem;
  color: #bbb;
}

.reception .preview-template {
  background: -o-linear-gradient(315deg, #6a11cb, #2575fc);
  background: -webkit-gradient(linear, left top, right top, from(#6a11cb), to(#2575fc));
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  border: none;
  font-size: 20px;
  padding: 12px 30px;
  border-radius: 50px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: inline-block;
  text-decoration: none;
}

.reception .preview-template:hover {
  background: -o-linear-gradient(315deg, #6a11cb, #2575fc);
  background: -webkit-gradient(linear, left top, right top, from(#6a11cb), to(#2575fc));
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  -webkit-box-shadow: 0 0px 15px #2575fc;
          box-shadow: 0 0px 15px #2575fc;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.reception .roadmap-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.reception .roadmap-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.reception .roadmap-item:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.reception .roadmap-item i {
  color: #ff9800;
  margin-bottom: 15px;
}

.reception .features .row {
      margin-top: 30px;
}

.reception .features .ai-info img {
  transform: scaleX(-1);
}

.reception .features .ai-info img,.reception .features .service-info img, .reception .features .dashboard-info img {
  padding: 20px;
}

.reception .feature-box {
  background:#111623;
  border-radius:12px;
  padding:20px;
  min-height:110px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  transition:0.3s;
  height: 100%;
}

.reception .feature-box:hover {
  background:#151b2d;
  transform:translateY(-8px);
}

.reception .feature-box .feature-details {
  padding:0px 10px;
}
  
.reception .feature-box .ico {
  width:48px;
  height:48px;
  border-radius:10px;
  background:linear-gradient(135deg, rgba(100,215,255,0.12), rgba(164,123,255,0.06));
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  flex-shrink:0;
  font-weight:700;
}

.reception .feature-box h4 {
  text-align: right;
  margin:0 0 6px;
  font-size:15px;
  color:#fff;
}

.reception .feature-box p {
  margin:0;
  text-align: justify;
  font-size:13px;
  color:var(--muted);
  line-height:1.45;
}
  
.reception .template-section {
  padding: 60px 0;
  overflow: hidden;
}

.reception .template-section .slider-item {
  background: transparent;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s;
}

.reception .template-section .slider-item img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.reception .template-section .slider-item h5 {
  margin-top: 15px;
  color: #333;
}
  
.reception .qr-section {
  padding: 60px 0;
  overflow: hidden;
}

.reception .qr-section .slider-item {
  background: transparent;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s;
}

.reception .qr-section .slider-item img {
  background: white;
  width: 300px;
  height: 300px;
  padding: 10px;
  border-radius: 20px;
  object-fit: cover;
}

.reception .qr-section .slick-slide {
  transition: transform 0.5s linear;
}
  @media (max-width: 768px) {
  .reception .qr-section .slider-item img {
      width: 200px;
      height: 200px;
      padding: 7px;
  }
}

.background-radial-gradient {
  border-radius: 0px;
  background-color: transparent;
}

.background-radial-gradient-2 {
  border-radius: 0px;
  background-color: black;
}

#radius-shape-1 {
  height: 220px;
  width: 220px;
  top: -60px;
  left: -130px;
  background: -o-radial-gradient(#44006b, #ad1fff);
  background: radial-gradient(#44006b, #ad1fff);
  -webkit-box-shadow: 0px 0px 20px #ad1fff;
  box-shadow: 0px 0px 20px #ad1fff;
  overflow: hidden;
}

#radius-shape-2 {
  border-radius: 38% 62% 63% 37% / 70% 33% 67% 30%;
  bottom: -60px;
  right: -110px;
  width: 300px;
  height: 300px;
  background: -o-radial-gradient(#44006b, #ad1fff);
  background: radial-gradient(#44006b, #ad1fff);
  -webkit-box-shadow: 0px 0px 20px #ad1fff;
  box-shadow: 0px 0px 20px #ad1fff;
  overflow: hidden;
}
#radius-shape-3 {
  height: 220px;
  width: 220px;
  top: -60px;
  left: -130px;
  background: -o-radial-gradient(#000000, #ffa500);
  background: radial-gradient(#000000, #ffa500);
  -webkit-box-shadow: 0px 0px 20px #ffa500;
  box-shadow: 0px 0px 20px #ffa500;
  overflow: hidden;
}

#radius-shape-4 {
  border-radius: 38% 62% 63% 37% / 70% 33% 67% 30%;
  bottom: -60px;
  right: -110px;
  width: 300px;
  height: 300px;
  background: -o-radial-gradient(#000000, #ffa500);
  background: radial-gradient(#000000, #ffa500);
  -webkit-box-shadow: 0px 0px 20px #ffa500;
  box-shadow: 0px 0px 20px #ffa500;
  overflow: hidden;
}

.bg-glass {
  background-color: #0b0c2a !important;
  -webkit-backdrop-filter: saturate(200%) blur(25px);
  backdrop-filter: saturate(200%) blur(25px);
  -webkit-box-shadow: 0px 0px 10px white;
  box-shadow: 0px 0px 10px white;
}

.bg-glass:hover {
  inset: unset;
}

.sign-eli .bg-glass form {
  text-align: right;
}

.bg-glass-2 {
  background-color: rgb(15, 15, 15) !important;
  -webkit-backdrop-filter: saturate(200%) blur(25px);
  backdrop-filter: saturate(200%) blur(25px);
  -webkit-box-shadow: 0px 0px 10px white;
  box-shadow: 0px 0px 10px white;
}

.bg-glass-2:hover {
  inset: unset;
}

.sign-eli .bg-glass-2 form {
  text-align: right;
}

.forgetting_password {
  text-transform: none;
  text-decoration: none;
}

.templates {
color: #e0e0e0;
font-family: 'Cairo', sans-serif;
overflow-x: hidden;
}
.templates h3, .templates h5 {
font-weight: bold;
color: #00f7ff;
letter-spacing: 0.5px;
text-shadow: 0 0 6px rgba(0, 247, 255, 0.3);
}
.templates .carousel-inner {
inset: all;
direction: rtl;
}
.templates .carousel-inner img, .templates .grid-view img {
height: 220px;
object-fit: cover;
border-radius: 10px;
transition: transform 0.4s ease, box-shadow 0.4s;
width: 100%;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.templates .carousel-inner img:hover, .templates .grid-view img:hover {
transform: scale(1.03);
box-shadow: 0 6px 16px rgba(0,255,255,0.2);
}
.templates .carousel-caption {
background: rgba(15,15,25,0.85);
border-radius: 12px;
padding: 10px;
box-shadow: 0 0 12px rgba(0,255,255,0.15);
backdrop-filter: blur(5px);
}
.templates .carousel-caption form {
width: 100%;
}
.templates .carousel-control-prev-icon,
.templates .carousel-control-next-icon {
width: 20px;
height: 20px;
padding: 5px;
background-color: rgba(255,255,255,0.2);
border-radius: 50%;
}
.templates .nav-pills {
position: sticky;
top: 0;
align-content: space-around;
text-align: center;
justify-content: space-around;
z-index: 100;
box-sizing: border-box;
}
.templates .nav-pills .nav-item {
font-size: bold;
}
.templates .nav-pills .nav-link {
width: 90px;
font-size: bold;
padding: 8px 22px !important;
}
.templates .nav-pills .nav-link.active {
font-size: bold;
padding: 8px 22px !important;
}
.templates .plan-section {
display: none;
animation: fadeIn 0.6s ease-in-out;
}
.templates .plan-section.active {
display: block;
}
.templates .plan-title {
border-right: 6px solid #00f7ff;
padding-right: 14px;
margin-bottom: 2rem;
font-size: 1.6rem;
color: #00f7ff;
position: relative;
}
.templates .plan-title::before {
content: '\f121';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
float: left;
color: #00f7ff;
font-size: 1.3rem;
}
.templates .grid-view {
display: none;
flex-wrap: wrap;
gap: 1.5rem;
animation: fadeIn 0.6s ease-in-out;
justify-content: center;
}
.templates .grid-view .item {
width: 100%;
max-width: 320px;
background: #1e2235;
padding: 20px 15px;
border-radius: 15px;
box-shadow: 0 0 14px rgba(0,255,255,0.04);
transition: transform 0.3s, box-shadow 0.3s;
display: flex;
flex-direction: column;
align-items: center;
overflow: hidden;
}
.templates .grid-view .item:hover {
transform: translateY(-5px);
box-shadow: 0 0 20px rgba(0,255,255,0.1);
}
.templates .grid-view .item form {
width: 100%;
}
.templates .toggle-buttons {
text-align: left;
margin-bottom: 25px;
}
.templates .btn-outline-info, .templates .btn-outline-warning, .templates .btn-outline-danger {
margin: 2px;
border-radius: 25px;
font-weight: bold;
}
.templates .btn-outline-info {
border-color: #00f7ff;
color: #00f7ff;
}
.templates .btn-outline-light {
border-radius: 30px;
padding: 6px 18px;
border-color: #00f7ff;
color: #00f7ff;
transition: 0.3s;
}
.templates .btn-outline-light:hover {
background-color: #00f7ff;
color: #000;
box-shadow: 0 0 12px rgba(0,247,255,0.4);
}
.templates .btn-success {
border-radius: 25px;
background-color: transparent;
border-color: #00ffae;
color: #00ffae;
font-weight: bold;
}
.templates .btn-success:hover {
background-color: #00ffae;
color: #000;
box-shadow: 0 0 10px rgba(0, 255, 115, 0.3);
}
.templates .btn-outline-info {
border-radius: 25px;
border-color: #00f7ff;
color: #00f7ff;
font-weight: bold;
}
.templates .btn-outline-info:hover {
background-color: #00f7ff;
color: #000;
box-shadow: 0 0 10px rgba(0,247,255,0.3);
}
.templates .btn-primary {
border-radius: 25px;
background-color: transparent;
border-color: #ff8c00;
color: #ff8c00;
font-weight: bold;
}
.templates .btn-primary:hover {
background-color: #ff8c00;
color: #000;
box-shadow: 0 0 10px rgba(255, 119, 0, 0.3);
}
.templates .btn-success.activated {
cursor: default;
background-color: #00ffae !important;
color: #000;
}
.templates .btn.text-ellipsis {
max-width: 100%;
overflow: hidden;
white-space: nowrap;
-o-text-overflow: ellipsis;
    text-overflow: ellipsis;
unicode-bidi: -moz-plaintext;
unicode-bidi: plaintext;
}
.templates .nav-pills {
background: #1c1e2f;
border-radius: 50px;
padding: 6px;
box-shadow: 0 0 10px rgba(0,255,255,0.08);
}
.templates .nav-pills .nav-link {
border-radius: 50px;
color: #ccc;
padding: 8px 22px;
transition: all 0.3s;
font-weight: 500;
}
.templates .nav-pills .nav-link.active {
background-color: #00f7ff;
color: #000;
font-weight: bold;
box-shadow: 0 0 8px rgba(0,247,255,0.2);
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
@media (min-width: 576px) {
.templates .grid-view .item { width: calc(50% - 1rem); }
}
@media (min-width: 768px) {
.templates .grid-view .item { width: calc(33.333% - 1rem); }
}
@media (min-width: 1200px) {
.templates .grid-view .item { width: calc(25% - 1rem); }
}

.verify .checking {
  text-decoration: none;
  text-transform: none;
  border: 2px solid rgb(26, 63, 31);
  color: white;
  text-shadow: 1px 1px black;
  background-color: rgb(30, 142, 45);
  padding: 13px 30px;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.verify .checking:hover {
  border: 2px solid rgb(29, 173, 48);
  -webkit-box-shadow: 0 0px 15px rgb(0, 255, 34);
  box-shadow: 0 0px 15px rgb(0, 255, 34);
}

.verify .main-container {
  background: #34495e;
  padding: 30px 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.verify form {
  display: block;
  text-align: center;
  gap: 20px;
}

.verify input {
  padding: 8px;
  font-size: large;
  font-weight: bolder;
}

.verify .resend_verification {
  border: none;
  color: white;
  text-shadow: 1px 1px black;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.verify .resend_verification:hover {
  color: rgb(0, 255, 34);
}

.verify h1 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.verify .radio-group {
  text-align: left;
}

.verify label {
  font-size: 1rem;
  margin-left: 10px;
}

.verify input[type="radio"] {
  accent-color: #f1c40f;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.verify .verified {
  color: #63e6be;
}

.verify .verify-input {
  border: 1px solid black;
}

.success-purchase .btn-Complete {
  border: 2px solid rgb(191, 0, 255);
  -webkit-box-shadow: 0 0px 5px rgb(191, 0, 255);
  box-shadow: 0 0px 5px rgb(191, 0, 255);
  color: white;
  background-color: rgb(191, 0, 255);
  padding: 10px 20px;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.success-purchase .btn-Complete strong {
  margin: 5px;
}

.success-purchase .btn-Complete:hover {
  -webkit-box-shadow: 0 0px 20px rgb(191, 0, 255);
  box-shadow: 0 0px 20px rgb(191, 0, 255);
}

.check-success {
  display: none;
}

.sign-eli .cover-title {
  z-index: 10;
}

.sign-eli .top-title {
  color: hsl(218, 81%, 95%);
}

.sign-eli .bottom-title {
  color: hsl(218, 81%, 75%);
}

.show-pass {
  background-color: transparent;
  border: none;
  position: absolute;
  left: 0;
  height: 100%;
  padding: 0px 10px;
}

.check-terms {
  margin-right: 40px;
}

.ext_sign {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
}

.ext_sign .g_id_signin { 
  width: -webkit-fit-content !important; 
  width: -moz-fit-content !important; 
  width: fit-content !important;
  margin: 0 auto !important;
  padding: 0 auto !important;
}

.create-store {
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
}

.create-store .card {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: var(--secondary-color);
  border: none;
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 8px var(--shadow-color);
          box-shadow: 0 4px 8px var(--shadow-color);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.create-store .card:hover {
  -webkit-box-shadow: 0 8px 16px var(--shadow-color);
          box-shadow: 0 8px 16px var(--shadow-color);
}

.create-store .card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.create-store .form-group {
  margin-bottom: 15px;
}

.create-store .form-control {
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  padding: 10px;
  font-size: 16px;
  background: var(--glass-bg);
  color: var(--text-color);
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.create-store .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.create-store #url {
  float: right;
  border-radius: 0 10px 10px 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.create-store #basic-addon1 {
  float: left;
  text-align: center;
  border-radius: 10px 0 0 10px;
  background-color: var(--secondary-color);
  padding: 10px 0px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.create-store .form-control:focus {
  border-color: var(--accent-color);
  -webkit-box-shadow: 0 0 5px var(--accent-color);
          box-shadow: 0 0 5px var(--accent-color);
  outline: none;
}

.create-store .btn-primary {
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  background: var(--accent-color);
  border: none;
  color: var(--text-color);
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.create-store .btn-primary:hover {
  background: var(--hover-color);
}

.create-store .btn-primary:active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.create-store .store-header {
  text-align: center;
  padding: 10px;
  background: transparent;
  border-bottom: 1px solid var(--glass-border);
  border-radius: 15px 15px 0 0;
}

.create-store .store-cover {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  background: var(--secondary-color);
  -webkit-box-shadow: 0 0px 10px rgba(255, 255, 255, 0.69);
          box-shadow: 0 0px 10px rgba(255, 255, 255, 0.69);
}

.create-store .store-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-top: -75px;
  background: var(--secondary-color);
  border: 5px solid #fff;
  -webkit-box-shadow: 0 0px 10px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0px 10px rgba(255, 255, 255, 0.5);
}

.create-store .store-header .btns-logo {
  text-align: center;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
}

.create-store .store-header .btns-banner {
  text-align: center;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  position: absolute;
  top: 300px;
  right: 20px;
}

.create-store .custom-file-upload {
  background-color: rgb(71, 2, 71);
  color: white;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  border-radius: 15px;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  color: white;
  text-decoration: none;
}

.create-store .custom-file-upload:hover {
  background-color: rgb(26, 1, 104);
}

.create-store .file-input {
  display: none;
}

.create-store .invalid-feedback {
  background-color: #f8d7da;
  border-radius: 10px;
  padding: 20px;
  color: red;
  text-shadow: 0 1px red, 0 1px red, 0 1px red, 0 1px red;
  display: none;
}

.create-store #alert,
.create-store #alert2 {
  background-color: #f8d7da;
  color: #721c24;
  padding: 10px;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
  margin-bottom: 20px;
}

.create-store #Categories option {
  background: var(--secondary-color);
}

.create-store #social-links-container input {
  margin-bottom: 10px;
}

.create-store #addLink {
  margin-top: 10px;
}

.create-store #submit-btn, .create-store #submit-btn.spinner-border {
  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;
  width: 100%;
  font-size: 1rem;
}

.create-store #name:required:invalid {
  border: 2px solid #ff0000;
}

.create-store #url:required:invalid {
  border: 2px solid #ff0000;
}

.create-store #Categories:required:invalid {
  border: 2px solid #ff0000;
}

@media (max-width: 768px) {
  .create-store .store-cover {
    height: 200px;
  }

  .create-store .store-logo {
    width: 100px;
    height: 100px;
    margin-top: -50px;
  }

  .create-store .store-header .btns-logo {
    font-size: 12px;
  }
  
  .create-store .store-header .btns-banner {
    font-size: 12px;
    top: 200px;
    right: 10px;
  }
  
  .create-store .btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .create-store .card-title {
    font-size: 20px;
  }

  .create-store .form-control {
    font-size: 14px;
    padding: 8px;
  }
}

@media (max-width: 576px) {
  .create-store .store-cover {
    height: 150px;
  }

  .create-store .row, .create-store .container {
    width: 100%;
    margin: 0;
  }

  .create-store .store-logo {
    width: 80px;
    height: 80px;
    margin-top: -40px;
  }

  .create-store .store-header .btns-logo {
    font-size: 8px;
  }
  
  .create-store .store-header .btns-banner {
    font-size: 8px;
    top: 150px;
    right: 5px;
  }
  
  .create-store .btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .create-store .card-title {
    font-size: 18px;
  }

  .create-store .form-control {
    font-size: 12px;
    padding: 6px;
  }
  
  .create-store .iti,
  .create-store .country-select {
    width: 100%;
  }
}

.create-store .iti {
  text-align: right;
  color: black;
  direction: ltr;
}

.create-store .flag-dropdown {
  text-align: right;
  color: black;
  direction: ltr;
}

.create-store .description::-webkit-input-placeholder, .create-store .addLink::-webkit-input-placeholder {
  color: white;
}

.create-store .description::-moz-placeholder, .create-store .addLink::-moz-placeholder {
  color: white;
}

.create-store .description:-ms-input-placeholder, .create-store .addLink:-ms-input-placeholder {
  color: white;
}

.create-store .description::-ms-input-placeholder, .create-store .addLink::-ms-input-placeholder {
  color: white;
}

.create-store .description::placeholder,
.create-store .addLink::placeholder {
  color: white;
}

.create-store .modal-header {
  background-color: var(--secondary-color);
}

.create-store .modal-body {
  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;
  max-height: 80vh;
  overflow: hidden;
}

.create-store .cropper-container {
  max-width: 100%;
  max-height: 70vh;
}

.create-store #cropperImage {
  padding: 0;
  margin: 0;
  max-width: 100%;
  max-height: 70vh;
  display: block;
}

.update-store {
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
}

.update-store .card {
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 8px var(--shadow-color);
          box-shadow: 0 4px 8px var(--shadow-color);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: var(--secondary-color);
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 8px var(--shadow-color);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.update-store .card:hover {
  -webkit-box-shadow: 0 8px 16px var(--shadow-color);
          box-shadow: 0 8px 16px var(--shadow-color);
}

.update-store .card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.update-store .form-group {
  margin-bottom: 15px;
}

.update-store .form-control {
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  padding: 10px;
  font-size: 16px;
  background: var(--glass-bg);
  color: var(--text-color);
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.update-store .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.update-store #url {
  float: right;
  border-radius: 0 10px 10px 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.update-store #basic-addon1 {
  float: left;
  text-align: center;
  border-radius: 10px 0 0 10px;
  background-color: var(--secondary-color);
  padding: 10px 0px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.update-store .form-control:focus {
  border-color: var(--accent-color);
  -webkit-box-shadow: 0 0 5px var(--accent-color);
          box-shadow: 0 0 5px var(--accent-color);
  outline: none;
}

.update-store .btn-primary {
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  background: var(--accent-color);
  border: none;
  color: var(--text-color);
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.update-store .btn-primary:hover {
  background: var(--hover-color);
}

.update-store .btn-primary:active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.update-store .store-header {
  text-align: center;
  padding: 10px;
  background: transparent;
  border-bottom: 1px solid var(--glass-border);
  border-radius: 15px 15px 0 0;
  position: relative;
}

.update-store .store-cover {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  background: var(--secondary-color);
  -webkit-box-shadow: 0 0px 10px rgba(255, 255, 255, 0.69);
          box-shadow: 0 0px 10px rgba(255, 255, 255, 0.69);
}

.update-store .store-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-top: -75px;
  background: var(--secondary-color);
  border: 5px solid #fff;
  -webkit-box-shadow: 0 0px 10px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0px 10px rgba(255, 255, 255, 0.5);
}

.update-store .store-header .btns-logo {
  text-align: center;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
}

.update-store .store-header .btns-banner {
  text-align: center;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  position: absolute;
  top: 300px;
  right: 20px;
}

.update-store .custom-file-upload {
  background-color: rgb(71, 2, 71);
  color: white;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  border-radius: 15px;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  color: white;
  text-decoration: none;
}

.update-store .delete-file {
  background-color: rgb(71, 2, 71);
  color: white;
  border: none;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  border-radius: 15px;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  color: white;
  text-decoration: none;
}

.update-store .custom-file-upload:hover,
.update-store .delete-file:hover {
  background-color: rgb(47, 13, 151);
}

.update-store .file-input {
  display: none;
}

.update-store .check_delete {
  display: none;
}

.update-store .invalid-feedback {
  background-color: #f8d7da;
  border-radius: 10px;
  padding: 20px;
  color: red;
  text-shadow: 0 1px red, 0 1px red, 0 1px red, 0 1px red;
  display: none;
}

.update-store #alert,
.update-store #alert2 {
  background-color: #f8d7da;
  color: #721c24;
  padding: 10px;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
  margin-bottom: 20px;
}

.update-store #Categories option {
  background: var(--secondary-color);
}

.update-store #social-links-container input {
  margin-bottom: 10px;
}

.update-store #addLink {
  margin-top: 10px;
}

.update-store #submit-btn, .update-store #submit-btn.spinner-border {
  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;
  width: 100%;
  font-size: 1rem;
}

.update-store #name:required:invalid {
  border: 2px solid #ff0000;
}

.update-store #url:required:invalid {
  border: 2px solid #ff0000;
}

.update-store #Categories:required:invalid {
  border: 2px solid #ff0000;
}

@media (max-width: 768px) {
  .update-store .container,
  .create-store .container {
    min-width: 100%;
  }
  .update-store .store-cover {
    height: 200px;
  }

  .update-store .store-logo {
    width: 100px;
    height: 100px;
    margin-top: -50px;
  }

  .update-store .store-header .btns-logo {
    font-size: 12px;
  }
  
  .update-store .store-header .btns-banner {
    font-size: 12px;
    top: 200px;
    right: 10px;
  }
  
  .update-store .btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .update-store .card-title {
    font-size: 20px;
  }

  .update-store .form-control {
    font-size: 14px;
    padding: 8px;
  }
}

@media (max-width: 576px) {
  .update-store {
    padding: 0;
  }
 
  .update-store .row, .update-store .container {
    width: 100%;
    margin: 0;
  }

  .update-store .store-cover {
    height: 150px;
  }

  .update-store .store-logo {
    width: 80px;
    height: 80px;
    margin-top: -40px;
  }

  .update-store .store-header .btns-logo {
    font-size: 8px;
  }
  
  .update-store .store-header .btns-banner {
    font-size: 8px;
    top: 150px;
    right: 5px;
  }
  .update-store .btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .update-store .card-title {
    font-size: 18px;
  }

  .update-store .form-control {
    font-size: 12px;
    padding: 6px;
  }
  
  .update-store .iti,
  .update-store .country-select {
    width: 100%;
  }
}

.update-store .iti {
  text-align: right;
  color: black;
  direction: ltr;
}

.update-store .flag-dropdown {
  text-align: right;
  color: black;
  direction: ltr;
}

.update-store .description::-webkit-input-placeholder, .update-store .addLink::-webkit-input-placeholder {
  color: white;
}

.update-store .description::-moz-placeholder, .update-store .addLink::-moz-placeholder {
  color: white;
}

.update-store .description:-ms-input-placeholder, .update-store .addLink:-ms-input-placeholder {
  color: white;
}

.update-store .description::-ms-input-placeholder, .update-store .addLink::-ms-input-placeholder {
  color: white;
}

.update-store .description::placeholder,
.update-store .addLink::placeholder {
  color: white;
}

.update-store .modal-header {
  background-color: var(--secondary-color);
}

.update-store .modal-body {
  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;
  max-height: 80vh;
  overflow: hidden;
}

.update-store .cropper-container {
  max-width: 100%;
  max-height: 70vh;
}

.update-store #cropperImage {
  padding: 0;
  margin: 0;
  max-width: 100%;
  max-height: 70vh;
  display: block;
}

.add-product .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  background: var(--secondary-color);
  -webkit-box-shadow: 0 4px 8px var(--shadow-color);
          box-shadow: 0 4px 8px var(--shadow-color);
  border-radius: 12px;
  color: #ffffff;
  font-family: "Arial", sans-serif;
}

.add-product h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #f8f9fa;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.add-product label {
  position: relative;
  font-weight: bold;
  margin-top: 15px;
  display: block;
  color: #f1f1f1;
  font-size: 1rem;
}

.add-product .card-header {
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 10px;
  display: block;
  color: white;
  font-size: 1rem;
}

.add-product .card-body {
  border: 1px solid #0284c7;
  background-color: #1e293b;
  border-radius: 6px;
  padding: 10px;
}

.add-product input[type="text"],
.add-product input[type="number"],
.add-product #currency,
.add-product #Categories,
.add-product #product_status,
.add-product .tagify,
.add-product .tagify input,
.add-product textarea,
.add-product input[type="file"] {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  margin-bottom: 20px;
  border: 1px solid #0284c7;
  background-color: #1e293b;
  color: white;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1rem;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.add-product span.tagify__input::before {
  color: rgb(165, 155, 155);
}

.add-product #submit-btn, .add-product #submit-btn.spinner-border {
  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;
  width: 100%;
  font-size: 1rem;
}

.add-product #name:required:invalid {
  border: 2px solid #ff0000;
}

.add-product input:focus,
.add-product textarea:focus {
  color: white;
  background-color: #1e293b;
  border-color: #007bff;
  -webkit-box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
  outline: none;
}

.add-product button {
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  background: var(--accent-color);
  border: none;
  color: var(--text-color);
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.add-product button:hover {
  background: var(--hover-color);
}

.add-product .alert {
  padding: 15px;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.add-product .image-preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.add-product .image-box {
  position: relative;
  width: 120px;
  height: 120px;
  border: 2px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, border-color 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
  background: var(--secondary-color);
}

.add-product .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.add-product .image-box .delete-btn, .add-product .image-box .delete-btn2 {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 0, 0, 0.7);
  color: white;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  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: 18px;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, -webkit-transform 0.2s ease;
  -o-transition: background 0.3s ease, transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.add-product .image-box .delete-btn:hover, .add-product .image-box .delete-btn2:hover {
  background: rgba(255, 0, 0, 0.9);
  -webkit-transform: scale(1.01);
      -ms-transform: scale(1.01);
          transform: scale(1.01);
}

.add-product .image-box:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  border-color: #007bff;
}

.add-product .image-preview .image-box:first-child {
  border: 3px solid #007bff;
  -webkit-box-shadow: 0 4px 10px rgba(0, 123, 255, 0.5);
          box-shadow: 0 4px 10px rgba(0, 123, 255, 0.5);
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  position: relative;
}

.add-product .image-preview .image-box:first-child::after {
  content: "⭐";
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.78);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.add-product .upload-box {
  width: 120px;
  height: 120px;
  border: 2px dashed #ccc;
  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: 28px;
  cursor: pointer;
  color: #aaa;
  border-radius: 8px;
  -webkit-transition: border-color 0.3s ease, color 0.3s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.3s ease, color 0.3s ease, -webkit-transform 0.2s ease;
  -o-transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.add-product .hidden {
  display: none;
}

.add-product .upload-box:hover {
  border-color: #007bff;
  color: #007bff;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.add-product #file-input {
  display: none;
}

@media (max-width: 768px) {
  .add-product .container {
    padding: 15px;
  }

  .add-product h2 {
    font-size: 1.5rem;
  }

  .add-product button {
    font-size: 1rem;
    padding: 10px 16px;
  }

  .add-product .image-box,
  .add-product .upload-box {
    width: 100px;
    height: 100px;
  }

  .add-product .image-box .delete-btn, .add-product .image-box .delete-btn2 {
    width: 22px;
    height: 22px;
    font-size: 15px;
  }
}

.update-product .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  background: var(--secondary-color);
  -webkit-box-shadow: 0 4px 8px var(--shadow-color);
          box-shadow: 0 4px 8px var(--shadow-color);
  border-radius: 12px;
  color: #ffffff;
  font-family: "Arial", sans-serif;
}

.update-product h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #f8f9fa;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.update-product label {
  position: relative;
  font-weight: bold;
  margin-top: 15px;
  display: block;
  color: #f1f1f1;
  font-size: 1rem;
}

.update-product .card-header {
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 10px;
  display: block;
  color: white;
  font-size: 1rem;
}

.update-product .card-body {
  border: 1px solid #0284c7;
  background-color: #1e293b;
  border-radius: 6px;
  padding: 10px;
}

.update-product input[type="text"],
.update-product input[type="number"],
.update-product #currency,
.update-product #Categories,
.update-product #product_status,
.update-product .tagify,
.update-product .tagify input,
.update-product textarea,
.update-product input[type="file"] {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  margin-bottom: 20px;
  border: 1px solid #0284c7;
  background-color: #1e293b;
  color: white;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1rem;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.update-product span.tagify__input::before {
  color: rgb(165, 155, 155);
}

.update-product #submit-btn, .update-product #submit-btn.spinner-border {
  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;
  width: 100%;
  font-size: 1rem;
}

.update-product #name:required:invalid {
  border: 2px solid #ff0000;
}

.update-product input:focus,
.update-product textarea:focus {
  border-color: #007bff;
  outline: none;
  -webkit-box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

.update-product button {
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  background: var(--accent-color);
  border: none;
  color: var(--text-color);
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.update-product button:hover {
  background: var(--hover-color);
}

.update-product .alert {
  padding: 15px;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.update-product .image-preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.update-product .image-box {
  position: relative;
  width: 120px;
  height: 120px;
  border: 2px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, border-color 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease;
  transition: transform 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
  background: var(--secondary-color);
}

.update-product .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.update-product .image-box .delete-btn, .update-product .image-box .delete-btn2 {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 0, 0, 0.7);
  color: white;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  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: 18px;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, -webkit-transform 0.2s ease;
  -o-transition: background 0.3s ease, transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.update-product .image-box .delete-btn:hover, .update-product .image-box .delete-btn2:hover {
  background: rgba(255, 0, 0, 0.9);
  -webkit-transform: scale(1.01);
      -ms-transform: scale(1.01);
          transform: scale(1.01);
}

.update-product .image-box:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  border-color: #007bff;
}

.update-product .image-preview .image-box:first-child {
  border: 3px solid #007bff;
  -webkit-box-shadow: 0 4px 10px rgba(0, 123, 255, 0.5);
          box-shadow: 0 4px 10px rgba(0, 123, 255, 0.5);
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  position: relative;
}

.update-product .image-preview .image-box:first-child::after {
  content: "⭐";
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.78);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.update-product .upload-box {
  width: 120px;
  height: 120px;
  border: 2px dashed #ccc;
  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: 28px;
  cursor: pointer;
  color: #aaa;
  border-radius: 8px;
  -webkit-transition: border-color 0.3s ease, color 0.3s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.3s ease, color 0.3s ease, -webkit-transform 0.2s ease;
  -o-transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.update-product .hidden {
    display: none;
}

.update-product .upload-box:hover {
  border-color: #007bff;
  color: #007bff;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.update-product #file-input {
  display: none;
}

@media (max-width: 768px) {
  .update-product .container {
    padding: 15px;
  }

  .update-product h2 {
    font-size: 1.5rem;
  }

  .update-product button {
    font-size: 1rem;
    padding: 10px 16px;
  }

  .update-product .image-box,
  .update-product .upload-box {
    width: 100px;
    height: 100px;
  }

  .update-product .image-box .delete-btn, .update-product .image-box .delete-btn2 {
    width: 22px;
    height: 22px;
    font-size: 15px;
  }
}

.subscriptions {
font-family: 'Cairo', sans-serif;
}

.subscriptions .container {
max-width: 1200px;
margin: auto;
padding: 40px 20px;
}

.subscriptions h1 {
text-align: center;
font-size: 2.5em;
color: #58a6ff;
margin-bottom: 10px;
}

.subscriptions p.subtitle {
text-align: center;
color: #aaa;
}

.subscriptions .plans {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}

.subscriptions .plan {
background: #161b22;
border: 2px solid #21262d;
border-radius: 12px;
padding: 30px 20px;
display: flex;
flex-direction: column;
align-items: center;
transition: 0.3s ease;
}

.subscriptions .plan:hover {
border-color: #58a6ff;
transform: scale(1.02);
}

.subscriptions .plan h2 {
margin-top: 0;
font-size: 1.8em;
margin-bottom: 5px;
}

.subscriptions .price {
font-size: 1.5em;
color: #58a6ff;
margin-bottom: 20px;
}

.subscriptions .features {
list-style: none;
padding: 0;
width: 100%;
}

.subscriptions .features li {
padding: 8px 0;
border-bottom: 1px solid #2c313a;
display: flex;
align-items: center;
}

.subscriptions .features li::before {
content: '✔';
color: #3fb950;
margin-left: 8px;
}

.subscriptions .features li.not::before {
content: 'X';
color:rgb(233, 12, 12);
margin-left: 8px;
}

.subscriptions .cta-btn {
text-decoration: none;
text-align: center;
margin-top: auto;
color: white;
opacity: 0.9;
padding: 12px 24px;
border: none;
border-radius: 8px;
font-size: 1em;
cursor: pointer;
transition: 0.3s;
width: 100%;
}

.subscriptions .cta-btn:hover {
opacity: 1;
}

@media (max-width: 600px) {
.subscriptions .plan h2 {
    font-size: 1.5em;
}
.subscriptions .price {
    font-size: 1.2em;
}
}

.dashboard .store-header {
  position: relative;
  text-align: center;
  padding: 20px;
  background-color: transparent;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dashboard .store-cover {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-box-shadow: 0 0px 10px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0px 10px rgba(255, 255, 255, 0.5);
}

.dashboard .store-logo {
  background-color: #fff;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-top: -75px;
  border: 5px solid #fff;
  -webkit-box-shadow: 0 0px 10px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0px 10px rgba(255, 255, 255, 0.5);
}

.dashboard .store-header {
  position: relative;
}

.dashboard .store-header .info-view {
  background-color: #606060;
  border-radius: 5px;
  padding: 0px 2px 0px 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 12px;
}

.dashboard .store-header .tit-store {
  text-decoration: none;
  text-transform: none;
}

.dashboard .store-actions {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.dashboard .store-actions .action-btn {
  background-color: transparent;
  color: gray;
  border: gray 1px double;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 50px;
  height: 50px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.dashboard .store-actions .action-btn:hover {
  background-color: transparent;
  color: white;
  border: white 1px double;
  -webkit-box-shadow: 0 0px 10px white;
          box-shadow: 0 0px 10px white;
}

.dashboard .store-actions .not {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  font-size: 10px;
  background-color: red;
  position: absolute;
  -webkit-transform: translate(15px, -15px);
      -ms-transform: translate(15px, -15px);
          transform: translate(15px, -15px);
  -webkit-animation: notice 1s alternate infinite;
          animation: notice 1s alternate infinite;
}

@-webkit-keyframes notice {
  0% {
    scale: 1;
  }

  100% {
    scale: 0.9;
  }
}

@keyframes notice {
  0% {
    scale: 1;
  }

  100% {
    scale: 0.9;
  }
}

.dashboard h1 {
  color: white;
  margin: 20px 0;
  font-size: 2.5em;
}

.dashboard .product-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

.dashboard .product-card {
  color: white;
  background: var(--secondary-color);
  border: none;
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 8px var(--shadow-color);
          box-shadow: 0 4px 8px var(--shadow-color);
  -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;
  -o-transition: transform 0.3s ease, 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;
  padding: 5px;
  padding-bottom: 0px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.dashboard .product-card:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 8px 16px var(--shadow-color);
          box-shadow: 0 8px 16px var(--shadow-color);
}

.dashboard .product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.dashboard .product-card {
  position: relative;
  margin: 20px 0px;
}

.dashboard .product-grid .info-view {
  background-color: #606060;
  border-radius: 5px;
  padding: 0px 2px 0px 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 5px;
  right: 14px;
  color: white;
  font-size: 12px;
}

.dashboard .product-grid .info-rate {
  background-color: #606060;
  border-radius: 5px;
  padding: 0px 2px 0px 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 5px;
  left: 14px;
  color: white;
  font-size: 12px;
}

.dashboard .product-grid .card-body {
  margin: 0;
  padding: 0;
}

.dashboard .product-grid .card-title {
  padding: 5px 0;
  text-shadow: 1px 1px black;
  text-align: center;
  font-size: 1.2rem;
}

.dashboard .product-card h2 {
  font-size: 20px;
  margin: 10px 0;
}

.dashboard .product-card p {
  font-size: 16px;
  margin: 5px 0;
}

.dashboard .edit-button,
.dashboard .view-button {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-color);
  background: var(--accent-color);
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: background 0.3s ease, transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.dashboard .edit-button:hover,
.dashboard .view-button:hover {
  background: var(--hover-color);
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

.dashboard .edit-button:active,
.dashboard .view-button:active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.dashboard .edit-tool {
  width: 100%;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
}

.dashboard .edit-tool .menu {
  position: relative;
  padding: 30px;
  width: 25px;
  height: 25px;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  background: #e8e8f3;
  border-radius: 50%;
  cursor: pointer;
  scale: 0.9;
}

.dashboard .edit-tool .menu::before,
.dashboard .edit-tool .menu::after {
  content: "Z";
  background: rgb(20, 17, 31);
  border-radius: 5px;
  width: 25px;
  height: 5px;
  position: absolute;
  left: 16px;
  top: 27px;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  z-index: 1;
}

.dashboard .edit-tool .menu::before {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.dashboard .edit-tool .menu::after {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.dashboard .edit-tool .menu.open {
  opacity: 0.9;
}

.dashboard .edit-tool .menu.open::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.dashboard .edit-tool .menu.open::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.dashboard .edit-tool .menu.open .button {
  opacity: 1;
  pointer-events: auto;
}

.dashboard .edit-tool .menu.open .button:first-of-type {
  bottom: 40px;
  right: 70px;
}

.dashboard .edit-tool .menu.open .button:nth-of-type(2) {
  bottom: 80px;
  -webkit-transition-delay: 0.05s;
       -o-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.dashboard .edit-tool .menu.open .button:last-of-type {
  bottom: 40px;
  right: -70px;
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.dashboard .edit-tool .button {
  width: 30px;
  height: 30px;
  padding: 30px;
  border-radius: 50%;
  cursor: pointer;
  background: black;
  position: absolute;
  bottom: 0;
  right: -5px;
  opacity: 0;
  pointer-events: none;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  -webkit-transition: 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28), 0.2s ease opacity,
    0.2s cubic-bezier(0.08, 0.82, 0.17, 1) -webkit-transform;
  transition: 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28), 0.2s ease opacity,
    0.2s cubic-bezier(0.08, 0.82, 0.17, 1) -webkit-transform;
  -o-transition: 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28), 0.2s ease opacity,
    0.2s cubic-bezier(0.08, 0.82, 0.17, 1) transform;
  transition: 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28), 0.2s ease opacity,
    0.2s cubic-bezier(0.08, 0.82, 0.17, 1) transform;
  transition: 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28), 0.2s ease opacity,
    0.2s cubic-bezier(0.08, 0.82, 0.17, 1) transform, 0.2s cubic-bezier(0.08, 0.82, 0.17, 1) -webkit-transform;
  z-index: -1;
}

.dashboard .edit-tool .button:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.dashboard .edit-tool i {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.dashboard .add-product {
  cursor: pointer;
  min-height: 200px;
  margin: 20px 0px;
  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: var(--secondary-color);
  border: 2px dashed var(--accent-color);
  border-radius: 15px;
  text-align: center;
  color: var(--text-color);
  font-size: 1.5em;
  font-weight: bold;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: background 0.3s ease, transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.dashboard .add-product:hover {
  background: var(--hover-color);
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.dashboard .add-product span {
  display: block;
  padding: 10px;
  border-radius: 10px;
  color: var(--text-color);
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: background 0.3s ease, transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media (max-width: 1000px) {
  .create-store .store-header {
    padding: 0;
    padding-top: 10px;
  }

  .update-store .store-header {
    padding: 0;
    padding-top: 10px;
  }

  .dashboard .store-header {
    padding: 0;
  }

  .dashboard .store-cover {
    width: 100%;
    height: 280px;
    border-radius: 0;
  }

  .dashboard .store-header .info-view {
    top: 8px;
    right: 10px;
  }

  .dashboard .store-logo {
    width: 130px;
    height: 130px;
  }

  .dashboard h1 {
    font-size: 1.8em;
    margin: 15px 0;
  }

  .dashboard .store-actions .action-btn {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .dashboard .store-cover {
    width: 100%;
    height: 180px;
  }

  .dashboard .store-logo {
    margin-top: -45px;
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 340px) {
  .dashboard .store-cover {
    width: 100%;
    height: 180px;
  }

  .dashboard .store-logo {
    width: 90px;
    height: 90px;
  }
}

.dashboard_settings .card-body {
  background-color: rgb(6, 29, 52);
}

.dashboard_settings .form-check-input:checked {
  background-color: #28a745;
  border-color: #28a745;
}

.dashboard_settings #connectHWBlocked {
  background-color: #3a4344;
  border-color: #3a4344;
  cursor: not-allowed;
}

.orders-control {
  color: #f1f5f9;
  font-family: "Cairo", sans-serif;
  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: start;
  min-height: 100vh;
  padding: 10px;
  line-height: 1.6;
}

.orders-control .orders-container {
  width: 100%;
  background-color: #334155;
  padding: 15px 30px;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.orders-control .orders-container header {
  all: unset;
  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;
  border-bottom: 2px solid #0284c7;
  padding-bottom: 10px;
  background-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.orders-control .orders-container header h1 {
  all: unset;
  margin: 5px;
  font-size: 1.8rem;
  color: #0ea5e9;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.orders-control .orders-container .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.orders-control .orders-container .controls input,
.orders-control .orders-container .controls select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #0284c7;
  background-color: #1e293b;
  color: #f1f5f9;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.orders-control .orders-container .controls input:focus,
.orders-control .orders-container .controls select:focus {
  outline: none;
  border-color: #0ea5e9;
  -webkit-box-shadow: 0 0 8px #0ea5e9;
          box-shadow: 0 0 8px #0ea5e9;
}

.orders-control .orders-container .controls select {
  cursor: pointer;
}

.orders-control .table-container {
  min-height: 60vh;
  margin-top: 20px;
  overflow-x: auto;
  border-radius: 8px;
}

.orders-control .orders-container table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1e293b;
  color: #f1f5f9;
  border-radius: 8px;
  overflow: hidden;
}


.orders-control .orders-container tr {
    border-top: 1px solid #0284c7;
}

.orders-control .orders-container th,
.orders-control .orders-container td {
  padding: 15px;
  text-align: center;
}

.orders-control .orders-container th {
  background-color: #0ea5e9;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
}

.orders-control .orders-container td {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  background-color: #334155;
}

.orders-control .orders-container td textarea {
  text-align: center;
  border-radius: 8px;
  border: 1px solid #0284c7;
  background-color: #1e293b;
  color: #f1f5f9;
}

.orders-control .orders-container tr:hover {
  background-color: #0284c7;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.orders-control .table-container .status-select {
  width: 120px;
  margin: 2px;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #0284c7;
  background-color: #1e293b;
  color: #f1f5f9;
  font-size: 0.9rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.orders-control .table-container .status-select:hover {
  border-color: #0ea5e9;
  -webkit-box-shadow: 0 0 5px #0ea5e9;
          box-shadow: 0 0 5px #0ea5e9;
}

.orders-control .table-container .status-select.bg-dark {
  cursor: not-allowed;
}

.orders-control .table-container .qr-btn,
.orders-control .table-container .copy-btn {
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  -o-transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.orders-control .table-container .delete-btn,
.orders-control .table-container .block-btn,
.orders-control .table-container .unblock-btn {
  margin: 2px;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  -o-transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.orders-control .table-container .qr-btn,
.orders-control .table-container .copy-btn {
  padding: 5px 12px;
  border: 1px solid #1e293b;
  background-color: #1e293b;
  color: #ffffff;
}


.orders-control .table-container .qr-btn i,
.orders-control .table-container .copy-btn i {
  pointer-events: none;
}

.orders-control .table-container .delete-btn {
  width: 120px;
  padding: 5px 12px;
  border: 1px solid red;
  background-color: #1e293b;
  color: #ffffff;
}

.orders-control .table-container .block-btn {
  border: 1px solid red;
  background-color: #1e293b;
  color: #ffffff;
}

.orders-control .table-container .unblock-btn {
  border: 1px solid red;
  background-color: #1e293b;
  color: #ffffff;
}

.orders-control .table-container .qr-btn:hover,
.orders-control .table-container .copy-btn:hover {
  background-color: #141c29;
}

.orders-control .table-container .delete-btn:hover {
  background-color: #dc2626;
}

.orders-control .table-container .block-btn:hover {
  background-color: #dc2626;
}

.orders-control .table-container .unblock-btn:hover {
  background-color: #dc2626;
}

.orders-control .table-container .delete-btn.bg-dark {
  cursor: not-allowed;
}

.orders-control .orders-container .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.orders-control .orders-container .pagination button {
  background-color: #0ea5e9;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  -o-transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.orders-control .orders-container .pagination button:hover {
  background-color: #0284c7;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.orders-control .orders-container .pagination span {
  font-size: 1rem;
  font-weight: bold;
  color: #f1f5f9;
}

.orders-control .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.orders-control #toggleControls {
  display: none;
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #0284c7;
  background-color: #1e293b;
  color: #f1f5f9;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  -o-transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.orders-control #toggleControls:hover {
  border-color: #0ea5e9;
  -webkit-box-shadow: 0 0 5px #0ea5e9;
          box-shadow: 0 0 5px #0ea5e9;
}

@media (max-width: 1000px) {
  .orders-control .orders-container header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    text-align: center;
  }

  .orders-control .controls {
    display: none;
  }

  .orders-control #toggleControls {
    display: block;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .orders-control .orders-container .controls input,
  .orders-control .orders-container .controls select {
    width: 100%;
  }

  .orders-control .orders-container table {
    font-size: 0.9rem;
  }

  .orders-control .orders-container th,
  .orders-control .orders-container td {
    padding: 10px;
  }
}

.custom-modal-overlay {
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  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: 9999;
}

.custom-modal-box {
  background-color: #1e293b;
  color: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  -webkit-box-shadow: 0 4px 10px rgba(0,0,0,0.3);
          box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  font-family: sans-serif;
}

.custom-modal-checkbox {
  display: block;
  margin: 10px 0;
  text-align: right;
}

.custom-modal-box .setText {
  width: 100%;
  margin: 20px auto;
  padding: 5px 10px;
  border: 1px solid #0284c7;
  background-color: #30415d;
  color: #f1f5f9;
  -webkit-box-shadow: 0 4px 10px rgba(0,0,0,0.3);
          box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  -o-transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  font-family: sans-serif;
}

.custom-modal-box .setText:hover {
  border-color: #0ea5e9;
  -webkit-box-shadow: 0 0 5px #0ea5e9;
          box-shadow: 0 0 5px #0ea5e9;
}

.custom-modal-buttons {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.custom-modal-buttons button {
  color: white;
  background-color: #0b0c2a;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
}

.services-zone {
font-family: 'Segoe UI', sans-serif;
color: #fff;
min-height: 100vh;
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;
padding: 40px 20px;
}

.services-zone .services-content {
text-align: center;
max-width: 900px;
width: 100%;
}

.services-zone .services-title {
font-size: 2.5em;
margin-bottom: 50px;
color: #ffffff;
}

.services-zone .services-grid {
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;
gap: 30px;
}

.services-zone .service-box {
background-color: #1f2229;
border-radius: 12px;
padding: 30px 20px;
color: #fff;
text-decoration: none;
max-width: 300px;
-webkit-box-flex: 1;
    -ms-flex: 1 1 250px;
        flex: 1 1 250px;
-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.5);
        box-shadow: 0 0 15px rgba(0,0,0,0.5);
-webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
-o-transition: transform 0.3s, box-shadow 0.3s;
transition: transform 0.3s, box-shadow 0.3s;
transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
text-align: center;
}

.services-zone .service-box:hover {
-webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
        transform: translateY(-5px);
-webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.services-zone .service-icon i {
width: 60px;
height: 60px;
margin-bottom: 20px;
}

.services-zone .service-heading {
font-size: 1.5em;
margin: 0;
}

.services-zone .service-desc {
color: #aaa;
margin-top: 10px;
font-size: 1em;
}

@media (max-width: 600px) {
.services-zone .services-title {
    font-size: 2em;
}

.services-zone .service-heading {
    font-size: 1.3em;
}

.services-zone .service-desc {
    font-size: 0.9em;
}
}

.services {
    font-family: 'Cairo', sans-serif;
}

.services .text-info {
  color: #03dac6;
}

.services .custom-card-link {
    color: white;
    background-color: transparent;
    border: none;
    border-radius: 12px;
}

.services .custom-card {
    color: white;
    background-color: #1e1e2f;
    border: none;
    border-radius: 12px;
    padding: 0px;
}

.services .card-body {
    padding: 30px 15px;
}

.services .custom-card h5 {
    margin-right: 20px;
}

@media (max-width: 576px) {
  .services .card-body {
      padding: 20px 5px;
  }

  .services .custom-card h5 {
      margin-right: 10px;
  }
}

.services .code-box {
    text-align: center;
    max-width: fit-content;
    margin: auto;
    font-size: 1.5rem;
    background-color: #222;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px dashed #03dac6;
    letter-spacing: 3px;
    font-weight: bold;
}

.services .code-input {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    border-radius: 6px;
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
}

@media (max-width: 576px) {
    .services .code-input {
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 1rem;
        color: #fff;
        width: 25px;
        height: 25px;
    }
}

.services .code-input:focus {
    border-color: #03dac6;
    outline: none;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(3, 218, 198, 0.25);
            box-shadow: 0 0 0 0.2rem rgba(3, 218, 198, 0.25);
}

.services .btn-service-link {
    color: rgb(255, 255, 255);
    background-color: #03dac6;
    -webkit-box-shadow: 0 0px 5px #03dac6;
            box-shadow: 0 0px 5px #03dac6;
    border: none;
    margin-top: 10px;
    padding: 8px 30px;
    border-radius: 10px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.services .btn-service-link strong{
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
}

.services .btn-service-link:hover {
    background-color: #03dac6;
    -webkit-box-shadow: 0 0px 20px #03dac6;
            box-shadow: 0 0px 20px #03dac6;
}

.services .linkServiceForm {
    padding: 20px;
    padding-top: 30px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    aspect-ratio: 1 / 1;
    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: #03dac6 2px dashed;
    border-radius: 50%;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.services .linkServiceForm:hover {
    border: #03dac6 2px solid;
    -webkit-box-shadow: 0 0px 10px #03dac6;
            box-shadow: 0 0px 10px #03dac6;
}

.services .linkResult {
    text-align: center;
}
.services .text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  min-width: 100px;
  max-width: 500px;
}

@media (max-width: 576px) {
  .services .text-ellipsis {
    max-width: 100px;
  }
}
.services .link-results {
  padding: 20px;
  text-align: right;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.services .link-results .actions {
  gap: 10px;
}

@media (max-width: 576px) {
  .services .link-results {
    padding: 8px;
  }
  
  .services .link-results .actions {
    gap: 3px;
  }
}

.services .worker-card {
    background-color: #29293d;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.services .worker-card:hover {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.3);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.services .status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 5px;
}

.services .text-muted {
  color: #c3cfe2;
}


.worker_profile {
    background-color: #1a1a1a;
    color: white;
}
.worker_profile .profile-card {
    background: #2c2c2c;
    padding: 30px;
    border-radius: 12px;
    max-width: 1000px;
    margin: auto;
    margin-top: 60px;
}
.worker_profile .profile-header {
  text-align: center;
}
.worker_profile .profile-header img {
    font-size: large;
    border-radius: 50%;
    width: 160px;
    height: 160px;
}

@media (max-width: 768px) {
    .worker_profile .profile-header img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 440px) {
    .worker_profile .profile-header img {
        width: 80px;
        height: 80px;
    }
}
.worker_profile .contact-phone, .worker_profile .contact-email {
  color: rgb(171, 175, 223);
  text-decoration: none;
  text-transform: none;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.worker_profile .contact-phone:hover, .worker_profile .contact-email:hover {
  color: #F8E231;
}
.worker_profile .profile-body {
  font-size: medium;
  text-align: right;
}
.worker_profile .profile-body .custom-hr {
  padding-top: 20px;
  border-top: #fff 3px solid;
}
.worker_profile .profile-body .line-clamp {
  padding-top: 20px;
  border-top: #555 1px double;
}

.services_dashboard .service-header {
position: relative;
text-align: center;
padding: 20px;
background-color: transparent;
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services_dashboard .service-cover {
display: none;
width: 100%;
height: 300px;
-o-object-fit: cover;
    object-fit: cover;
border-radius: 10px;
}

.services_dashboard .service-picture {
background-color: #fff;
width: 200px;
height: 200px;
border-radius: 50%;
margin-top: 55px;
border: 5px solid #fff;
-webkit-box-shadow: 0 0px 10px rgba(255, 255, 255, 0.5);
        box-shadow: 0 0px 10px rgba(255, 255, 255, 0.5);
}

.services_dashboard .service-header {
position: relative;
}

.services_dashboard .service-actions {
margin-top: 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
gap: 15px;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
}

.services_dashboard .service-actions .action-btn {
background-color: transparent;
color: gray;
border: gray 1px double;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
text-align: center;
-ms-flex-line-pack: center;
    align-content: center;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
gap: 5px;
width: 50px;
height: 50px;
font-size: 1rem;
font-weight: bold;
text-decoration: none;
border-radius: 50%;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}

.services_dashboard .service-actions .action-btn:hover {
background-color: transparent;
color: white;
border: white 1px double;
-webkit-box-shadow: 0 0px 10px white;
        box-shadow: 0 0px 10px white;
}

.services_dashboard .service-actions .not {
width: 15px;
height: 15px;
border-radius: 50%;
font-size: 10px;
background-color: red;
position: absolute;
-webkit-transform: translate(15px, -15px);
    -ms-transform: translate(15px, -15px);
        transform: translate(15px, -15px);
-webkit-animation: notice 1s alternate infinite;
        animation: notice 1s alternate infinite;
}

@-webkit-keyframes notice {
0% {
    scale: 1;
}

100% {
    scale: 0.9;
}
}

@keyframes notice {
0% {
    scale: 1;
}

100% {
    scale: 0.9;
}
}

.services_dashboard h1 {
color: white;
margin: 20px 0;
font-size: 2.5em;
}

@media (max-width: 1000px) {
.services_dashboard .service-header {
    padding: 0;
}

.services_dashboard .service-cover {
    width: 100%;
    height: 280px;
    border-radius: 0;
}

.services_dashboard .service-picture {
    width: 160px;
    height: 160px;
}

.services_dashboard h1 {
    font-size: 1.8em;
    margin: 15px 0;
}

.services_dashboard .service-actions .action-btn {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
}
}

@media (max-width: 600px) {
.services_dashboard .service-cover {
    width: 100%;
    height: 180px;
}

.services_dashboard .service-picture {
    margin-top: 30px;
    width: 130px;
    height: 130px;
}
}

@media (max-width: 340px) {
.services_dashboard .service-cover {
    width: 100%;
    height: 180px;
}
}
        
.services_dashboard .stores_linked {
color: #f1f5f9;
font-family: "Cairo", sans-serif;
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: start;
    -ms-flex-align: start;
        align-items: start;
min-height: 100vh;
line-height: 1.6;
}

.services_dashboard .stores_linked h1 {
width: 100%;
font-weight: bolder;
text-align: center;
margin: 10px 0;
font-size: 2rem;
}

.services_dashboard .stores_linked .control-container {
width: 100%;
background-color: #334155;
padding: 15px 30px;
border-radius: 12px;
-webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.services_dashboard .stores_linked .control-container header {
all: unset;
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;
border-bottom: 2px solid #0284c7;
padding-bottom: 10px;
background-color: transparent;
-webkit-box-sizing: border-box;
        box-sizing: border-box;
}

.services_dashboard .stores_linked .control-container header h2 {
all: unset;
margin: 5px;
font-size: 1.8rem;
color: #0ea5e9;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
}

.services_dashboard .stores_linked .table-container {
min-height: 60dvh;
margin-top: 20px;
overflow-x: auto;
border-radius: 8px;
}

.services_dashboard .stores_linked .control-container table {
width: 100%;
border-collapse: collapse;
color: #f1f5f9;
border-radius: 8px;
overflow: hidden;
}

.services_dashboard .stores_linked .control-container th,
.services_dashboard .stores_linked .control-container td {
    text-wrap: nowrap;
    padding: 15px;
    text-align: center;
    border-top: 1px solid #0284c7;
}

.services_dashboard .stores_linked .control-container th {
    background-color: #0ea5e9;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
}

.services_dashboard .stores_linked .control-container td {
    background-color: #334155;
}

.services_dashboard .stores_linked .control-container td .no_results {
text-align: center;
color: #f1f5f9;
font-size: 1.2rem;
}

.services_dashboard .stores_linked .control-container tr:hover td, .services_dashboard .stores_linked .control-container tr:hover {
    background-color:rgb(17, 24, 33);
}
.services_dashboard .stores_linked .product-name, .services_dashboard .stores_linked .store-name {
    display: inline-block;
    max-width: 400px;
    color: whitesmoke;
    font-weight: bold;
    cursor: pointer;
    text-transform: none;
    text-decoration: none;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    unicode-bidi: -moz-plaintext;
    unicode-bidi: plaintext;
    white-space: nowrap;
    overflow: hidden;
}

.services_dashboard .stores_linked .table-container .delete-btn {
width: 120px;
margin: 2px;
padding: 5px 12px;
border-radius: 6px;
border: 1px solid red;
background-color: #1e293b;
color: #ffffff;
font-size: 0.9rem;
cursor: pointer;
-webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
-o-transition: background-color 0.3s ease, transform 0.2s ease;
transition: background-color 0.3s ease, transform 0.2s ease;
transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.services_dashboard .stores_linked .control-container .actions {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    justify-items: center;
}

.services_dashboard .stores_linked .control-container .actions button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    justify-items: center;
}

@media (max-width: 768px) {
.services_dashboard .stores_linked .control-container {
padding: 15px;
}

.services_dashboard .stores_linked .control-container table {
    font-size: 0.9rem;
}

.services_dashboard .stores_linked .control-container th,
.services_dashboard .stores_linked .control-container td {
    padding: 10px;
}
}

.services_dashboard .stores_linked .green-dot, .services_dashboard .stores_linked .red-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.services_dashboard .stores_linked .green-dot { background-color: #28a745; }
.services_dashboard .stores_linked .red-dot { background-color: #dc3545; }

.services_dashboard .stores_linked .btn {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.services_dashboard .stores_linked .btn:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

.update-profile {
-ms-flex-line-pack: center;
    align-content: center;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
justify-items: center;
}

.update-profile .card {
border: 1px solid var(--glass-border);
border-radius: 15px;
-webkit-box-shadow: 0 4px 8px var(--shadow-color);
        box-shadow: 0 4px 8px var(--shadow-color);
-webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
background: var(--secondary-color);
border: none;
border-radius: 15px;
box-shadow: 0 4px 8px var(--shadow-color);
-webkit-transition: -webkit-box-shadow 0.3s ease;
transition: -webkit-box-shadow 0.3s ease;
-o-transition: box-shadow 0.3s ease;
transition: box-shadow 0.3s ease;
transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.update-profile .card:hover {
-webkit-box-shadow: 0 8px 16px var(--shadow-color);
        box-shadow: 0 8px 16px var(--shadow-color);
}

.update-profile .card-title {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
text-align: center;
}

.update-profile .form-group {
margin-bottom: 15px;
}

.update-profile .form-control {
border-radius: 10px;
border: 1px solid var(--glass-border);
padding: 10px;
font-size: 16px;
background: var(--glass-bg);
color: var(--text-color);
-webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
-o-transition: border-color 0.3s ease, box-shadow 0.3s ease;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.update-profile .input-group {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.update-profile #basic-addon1 {
float: left;
text-align: center;
border-radius: 10px 0 0 10px;
background-color: var(--secondary-color);
padding: 10px 0px;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
}

.update-profile .form-control:focus {
border-color: var(--accent-color);
-webkit-box-shadow: 0 0 5px var(--accent-color);
        box-shadow: 0 0 5px var(--accent-color);
outline: none;
}

.update-profile .btn-primary {
border-radius: 10px;
padding: 10px 20px;
font-size: 16px;
width: 100%;
margin-bottom: 10px;
background: var(--accent-color);
border: none;
color: var(--text-color);
-webkit-transition: background 0.3s ease;
-o-transition: background 0.3s ease;
transition: background 0.3s ease;
}

.update-profile .btn-primary:hover {
background: var(--hover-color);
}

.update-profile .btn-primary:active {
-webkit-transform: translateY(0);
    -ms-transform: translateY(0);
        transform: translateY(0);
}

.update-profile .profile-header {
text-align: center;
padding: 10px;
background: transparent;
border-bottom: 1px solid var(--glass-border);
border-radius: 15px 15px 0 0;
position: relative;
}

.update-profile .profile-cover {
display: none;
width: 100%;
height: 300px;
-o-object-fit: cover;
    object-fit: cover;
border-radius: 10px;
background: var(--secondary-color);
-webkit-box-shadow: 0 0px 10px rgba(255, 255, 255, 0.69);
        box-shadow: 0 0px 10px rgba(255, 255, 255, 0.69);
}

.update-profile .profile-picture {
width: 200px;
height: 200px;
border-radius: 50%;
margin-top: 75px;
background: var(--secondary-color);
border: 5px solid #fff;
-webkit-box-shadow: 0 0px 10px rgba(255, 255, 255, 0.5);
        box-shadow: 0 0px 10px rgba(255, 255, 255, 0.5);
}

.update-profile .profile-header .btns-picture {
text-align: center;
-webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
        transform: translateY(-20px);
}

.update-profile .custom-file-upload {
background-color: rgb(71, 2, 71);
color: white;
border-top: 2px solid white;
border-bottom: 2px solid white;
border-radius: 15px;
display: inline-block;
padding: 6px 12px;
cursor: pointer;
color: white;
text-decoration: none;
}

.update-profile .delete-file {
background-color: rgb(71, 2, 71);
color: white;
border: none;
border-top: 2px solid white;
border-bottom: 2px solid white;
border-radius: 15px;
display: inline-block;
padding: 6px 12px;
cursor: pointer;
color: white;
text-decoration: none;
}

.update-profile .custom-file-upload:hover,
.update-profile .delete-file:hover {
background-color: rgb(47, 13, 151);
}

.update-profile .file-input {
display: none;
}

.update-profile .check_delete {
display: none;
}

.update-profile .invalid-feedback {
background-color: #f8d7da;
border-radius: 10px;
padding: 20px;
color: red;
text-shadow: 0 1px red, 0 1px red, 0 1px red, 0 1px red;
display: none;
}

.update-profile #alert,
.update-profile #alert2 {
background-color: #f8d7da;
color: #721c24;
padding: 10px;
border: 1px solid #f5c6cb;
border-radius: 5px;
margin-bottom: 20px;
}

.update-profile #social-links-container input {
margin-bottom: 10px;
}

.update-profile #addLink {
margin-top: 10px;
}

.update-profile #submit-btn, .update-profile #submit-btn.spinner-border {
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;
width: 100%;
font-size: 1rem;
}

.update-profile #name:required:invalid {
border: 2px solid #ff0000;
}

@media (max-width: 1000px) {
.update-profile .container,
.create-profile .container {
    min-width: 100%;
}
.update-profile .profile-cover {
    height: 200px;
}

.update-profile .profile-picture {
    width: 160px;
    height: 160px;
}

.update-profile .profile-header .btns-picture {
    font-size: 12px;
}

.update-profile .btn {
    font-size: 14px;
    padding: 8px 16px;
}

.update-profile .card-title {
    font-size: 20px;
}

.update-profile .form-control {
    font-size: 14px;
    padding: 8px;
}
}

@media (max-width: 600px) {
.update-profile {
    padding: 0;
}

.update-profile .row, .update-profile .container {
    width: 100%;
    margin: 0;
}

.update-profile .profile-cover {
    height: 150px;
}

.update-profile .profile-picture {
    margin-top: 45px;
    width: 130px;
    height: 130px;
}

.update-profile .profile-header .btns-picture {
    font-size: 8px;
}

.update-profile .btn {
    font-size: 12px;
    padding: 6px 12px;
}

.update-profile .card-title {
    font-size: 18px;
}

.update-profile .form-control {
    font-size: 12px;
    padding: 6px;
}

.update-profile .iti,
.update-profile .country-select {
    width: 100%;
}
}

.update-profile .iti {
text-align: right;
color: black;
direction: ltr;
}

.update-profile .flag-dropdown {
text-align: right;
color: black;
direction: ltr;
}

.update-profile .bio::-webkit-input-placeholder, .update-profile .addLink::-webkit-input-placeholder {
color: white;
}

.update-profile .bio::-moz-placeholder, .update-profile .addLink::-moz-placeholder {
color: white;
}

.update-profile .bio:-ms-input-placeholder, .update-profile .addLink:-ms-input-placeholder {
color: white;
}

.update-profile .bio::-ms-input-placeholder, .update-profile .addLink::-ms-input-placeholder {
color: white;
}

.update-profile .bio::placeholder,
.update-profile .addLink::placeholder {
color: white;
}

.update-profile .modal-header {
background-color: var(--secondary-color);
}

.update-profile .modal-body {
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;
max-height: 80vh;
overflow: hidden;
}

.update-profile .cropper-container {
max-width: 100%;
max-height: 70vh;
}

.update-profile #cropperImage {
padding: 0;
margin: 0;
max-width: 100%;
max-height: 70vh;
display: block;
}

@media (max-width: 600px) {
  
  .dashboard .store-actions {
    gap: 5px;
  }

  .dashboard .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .dashboard .product-card {
    margin: 20px 0px;
  }
    
  .dashboard .edit-tool {
    height: 30px;
  }

  .dashboard .edit-tool .menu {
    scale: 0.7;
  }
}

.sharing-section {
  padding: 30px 18px;
  background: -o-linear-gradient(315deg, #f5f7fa, #c3cfe2);
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  text-align: center;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.sharing-section .follow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  text-align: center;
}

.sharing-section .fab:hover {
  color: rgb(65, 65, 245);
}

.sharing-section .follow a {
  margin: 20px;
  color: black;
}

.sharing-section .follow i {
  font-size: 1.7rem;
  margin-top: 20px;
}

.sharing-section .follow a:hover {
  text-decoration: none;
}

.sharing-section .divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 25px 0;
}

.sharing-section .divider span {
  font-size: 1.2rem;
  margin: 0 10px;
  color: #0f0f21;
}

.sharing-section .divider-line {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  background-color: #0f0f21;
}

.sharing-section .copy-link-pushable {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  -webkit-transition: -webkit-filter 250ms;
  transition: -webkit-filter 250ms;
  -o-transition: filter 250ms;
  transition: filter 250ms;
  transition: filter 250ms, -webkit-filter 250ms;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.sharing-section .copy-link-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: hsl(0deg 0% 0% / 0.25);
  will-change: transform;
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
  -webkit-transition: -webkit-transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  transition: -webkit-transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  -o-transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1), -webkit-transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1),
    -webkit-transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.sharing-section .copy-link-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: -o-linear-gradient(
    right,
    hsl(340deg 100% 16%) 0%,
    hsl(340deg 100% 32%) 8%,
    hsl(340deg 100% 32%) 92%,
    hsl(340deg 100% 16%) 100%
  );
  background: -webkit-gradient(
    linear,
    right top, left top,
    from(hsl(340deg 100% 16%)),
    color-stop(8%, hsl(340deg 100% 32%)),
    color-stop(92%, hsl(340deg 100% 32%)),
    to(hsl(340deg 100% 16%))
  );
  background: linear-gradient(
    to left,
    hsl(340deg 100% 16%) 0%,
    hsl(340deg 100% 32%) 8%,
    hsl(340deg 100% 32%) 92%,
    hsl(340deg 100% 16%) 100%
  );
}

.sharing-section .copy-link-front {
  display: block;
  position: relative;
  padding: 12px 27px;
  border-radius: 12px;
  font-size: 1.1rem;
  color: white;
  background: hsl(345deg 100% 47%);
  will-change: transform;
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-transition: -webkit-transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  transition: -webkit-transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  -o-transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1), -webkit-transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1),
    -webkit-transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.sharing-section .copy-link-pushable:hover {
  filter: brightness(110%);
  -webkit-filter: brightness(110%);
}

.sharing-section .copy-link-pushable:hover .copy-link-front {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
  transition: -webkit-transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
  -o-transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5), -webkit-transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5),
    -webkit-transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.sharing-section .copy-link-pushable:active .copy-link-front {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-transition: -webkit-transform 34ms;
  transition: -webkit-transform 34ms;
  -o-transition: transform 34ms;
  transition: transform 34ms;
  transition: transform 34ms, -webkit-transform 34ms;
}

.sharing-section .copy-link-pushable:hover .copy-link-shadow {
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
  transition: -webkit-transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
  -o-transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5), -webkit-transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5),
    -webkit-transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.sharing-section .copy-link-pushable:active .copy-link-shadow {
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
  -webkit-transition: -webkit-transform 34ms;
  transition: -webkit-transform 34ms;
  -o-transition: transform 34ms;
  transition: transform 34ms;
  transition: transform 34ms, -webkit-transform 34ms;
}

.sharing-section .copy-link-pushable:focus:not(:focus-visible) {
  outline: none;
}

.imageModal {
  display: none;
  position: fixed;
  z-index: 1150;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.imageModal .modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.imageModal .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.imageModal .close:hover,
.imageModal .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.report {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.report .card {
  color: white;
  background-color: transparent;
  max-width: 600px;
  margin: auto;
}
.report .dark-container {
  border: 1px solid #001432;
  -webkit-box-shadow: 0 0 8px #001432;
          box-shadow: 0 0 8px #001432;
}
.report .dark-container .card-header {
  background-color: #001432;
}
.report .dark-container .alert {
  background-color: red;
}
.report .dark-container .success {
  background-color: forestgreen;
}
.report .dark-container button {
  color: white;
  background-color: #0b0c2b;
  border: 1px solid #001432;
  padding: 8px auto;
}
.report .dark-container button:hover {
  background-color: #0000ff;
}
.report .form-control {
  min-height: 120px;
}
.report .form-label {
  font-weight: bold;
}
.report textarea {
  border: 1px solid #0284c7;
  background-color: #1e293b;
}
.report textarea::-webkit-input-placeholder {
  color:rgb(97, 100, 103);
}
.report textarea::-moz-placeholder {
  color:rgb(97, 100, 103);
}
.report textarea:-ms-input-placeholder {
  color:rgb(97, 100, 103);
}
.report textarea::-ms-input-placeholder {
  color:rgb(97, 100, 103);
}
.report textarea::placeholder {
  color:rgb(97, 100, 103);
}
.report textarea:focus {
  outline: none;
  border-color: #0ea5e9;
  -webkit-box-shadow: 0 0 8px #0ea5e9;
          box-shadow: 0 0 8px #0ea5e9;
}

.checkout .card-body {
  background-color: rgb(6, 29, 52);
}

.checkout #productId,
.checkout #quantity {
  display: none;
}

.checkout .form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.order_review .card-body {
  background-color: rgb(6, 29, 52);
}

.order_review #submit-btn, .order_review #submit-btn.spinner-border {
  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;
  width: 100%;
  font-size: 1rem;
}

.order_success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.order_success .card-body {
  background-color: rgb(6, 29, 52);
}

.order_failed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.order_failed .container {
  text-align: center;
  max-width: 600px;
  margin: auto;
  background-color: #e22b3b;
  background-color: #e22b3b;
  border-radius: 8px;
  padding: 20px;
}

.order_failed a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.order_failed a:hover {
  color: white;
  text-decoration: underline;
}
.pay-failed .container {
  text-align: center;
  max-width: 600px;
  margin: auto;
  background-color: #e22b3b;
  background-color: #e22b3b;
  border-radius: 8px;
  padding: 20px;
}

.pay-failed a {
  text-decoration: none;
  color: #390b10;
  font-weight: bold;
}

.pay-failed a:hover {
  color: black;
  text-decoration: underline;
}

.single_purchase i,
.reset_success {
  color: #00ff08;
}

.double_purchase i {
  color: rgb(0, 153, 255);
}

.section-card {
  overflow: hidden;
  background-color: #001432;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
  padding: 20px;
  margin-top: 20px;
  height: 100%;
}

.profile {
    background-color: #0d1117;
    color: #c9d1d9;
    font-family: 'Cairo', sans-serif;
}

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

.profile .profile-card {
    background: linear-gradient(145deg, #161b22, #0d1117);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

.profile .profile-card:hover {
    box-shadow: 0 6px 30px rgba(0, 123, 255, 0.3);
}

.profile .profile-card h2 {
    border-bottom: 1px solid #2e3a4b;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #58a6ff;
}

.profile .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.profile .product-card {
    background-color: #161b22;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(88, 166, 255, 0.1);
    transition: 0.3s ease;
    cursor: pointer;
}

.profile .product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(88, 166, 255, 0.3);
}

.profile .product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.profile .product-card .card-body {
    padding: 15px;
}

.profile .pagination  {
    justify-content: center;
}

.profile .modal-content {
    background-color: #161b22;
    color: #c9d1d9;
}

.profile .btn-glow {
    background-color: #238636;
    color: white;
    border: none;
    box-shadow: 0 0 8px #238636;
}

.profile .btn-danger-glow {
    background-color: #da3633;
    color: white;
    border: none;
    box-shadow: 0 0 8px #da3633;
}

.btn-logout {
  color: red;
}

.profile_settings .card-body {
  background-color: rgb(6, 29, 52);
}

.profile_settings .settings-container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  background-color: gray;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile_settings .section-title {
  font-weight: bold;
  font-size: 1.25rem;
  margin-top: 1.5rem;
  color: #333;
}

.profile_settings .language {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #0284c7;
  background-color: #1e293b;
  color: #f1f5f9;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.profile_settings .language:focus {
  outline: none;
  border-color: #0ea5e9;
  -webkit-box-shadow: 0 0 8px #0ea5e9;
          box-shadow: 0 0 8px #0ea5e9;
}

.contact-title-cover {
  position: relative;
}

.contact-form-section form {
  text-align: left;
}

.contact-info-section {
  color: var(--luxury-color);
}

.contact-info-section {
  position: relative;
  background-size: cover;
  width: 100%;
  height: 300px;
  border-radius: 50px;
  overflow: hidden;
}

.contact-cover {
  height: 60vh;
  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;
  color: white;
  text-align: center;
}

.contact-title {
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-shadow: 1px 1px black;
}

.script-support {
  padding: 5px;
  text-shadow: 1px 1px black;
}

.contact-section {
  background-color: transparent;
}

.contact-section .contact-card {
  -webkit-transform: translateY(-70px);
  -ms-transform: translateY(-70px);
  transform: translateY(-70px);
  background-color: #212529;
  color: #ffffff;
  border-radius: 30px;
  padding: 30px 25px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  box-sizing: border-box;
}

.contact-section .col-md-6 {
  padding: 20;
}

@media (max-width: 576px) {
  .contact-section {
    padding-left: 6px;
    padding-right: 6px;
    background-color: transparent;
  }

  .contact-section .col-lg-8 {
    padding: 0;
  }

  .contact-section .contact-card {
    padding: 15px 8px;
  }

  .contact-section .row {
    padding: 0;
    margin: 0;
  }

  .contact-section .col-md-6 {
    padding-left: 0;
    padding-right: 0;
  }

}

.contact-section .mt-md-0 {
  border-left: solid yellow 3px;
  justify-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.contact-section .support_ligne {
  border-left: solid rgb(0, 224, 254) 3px;
}

.contact-section h5 {
  margin-bottom: 10%;
}

.contact-section .form-control,
.contact-section .btn {
  border-radius: 4px;
}

.contact-section .btn-custom {
  background-color: #ffcc00;
  color: #212529;
}

.contact-section .btn-support {
  background-color: rgb(0, 224, 254);
}

.contact-section .btn-custom:hover {
  background-color: #e6b800;
}

.contact-section .btn-support:hover {
  background-color: rgb(0, 224, 254);
  -webkit-box-shadow: 0 0 15px rgb(0, 224, 254);
  box-shadow: 0 0 15px rgb(0, 224, 254);
}

.contact-section .contact-info i {
  font-size: 1.2em;
  color: #ffcc00;
  margin-right: 10px;
}

.contact-section .support_info i {
  color: rgb(0, 224, 254);
}

.contact-section .contact-email {
  text-decoration: none;
  text-transform: none;
  color: white;
}

.contact-section .contact-email:hover {
  color: gold;
}

.contact-section .support-contact:hover {
  color: rgb(0, 224, 254);
}

.privacy .fa-square,
.terms .fa-square {
  scale: 0.5;
  margin: 10px;
}

.privacy .li-space-lg,
.terms .li-space-lg {
  padding: 15px;
  background-color: #a9a3a382;
  border-radius: 10px;
}

.privacy .number-items,
.terms .number-items {
  margin: 10px;
}

.privacy .contact-us,
.terms .contact-us {
  display: inline-block;
  color: white;
  background-color: #0b0c2a;
  border-radius: 30px;
  font-weight: bolder;
  margin-top: 20px;
  padding: 20px;
  text-decoration: none;
  text-transform: none;
  border: white solid 2px;
}

.privacy .contact-us:hover,
.terms .contact-us:hover {
  color: white;
  background-color: black;
}

.blog-script {
  position: relative;
  width: 100%;
  height: 350px;
  margin-bottom: 30px;
}

.blog-script-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.blog .blog-item {
  margin-bottom: 20px;
  position: relative;
  background-size: cover;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.lg-item .blog-cover {
  width: 100%;
  aspect-ratio: 3 / 2;
  -o-object-fit: cover;
     object-fit: cover;
}

.sm-item .blog-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog .blog-item::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  bottom: 0;
  background: -o-linear-gradient(bottom, rgb(0, 0, 0) 0%, transparent 100%);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 0, 0)), to(transparent));
  background: linear-gradient(to top, rgb(0, 0, 0) 0%, transparent 100%);
}

.blog-item-text {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-shadow: 1px 1px black;
  z-index: 10;
}

.blog-script .blog-item-text .blog-item-title {
  text-decoration: none;
  text-transform: none;
  color: white;
}

.blog-item-text .fa-calendar-days.complete {
  color: rgb(77, 235, 45);
}

.blog-item-text .fa-calendar-days {
  color: gold;
}

.blog .blog-item-text .blog-item-title {
  text-decoration: none;
  text-transform: none;
  color: white;
}

.blog .sm-item .blog-item-title {
  font-size: medium;
}

.blog-script .blog-item-text {
  bottom: unset;
  top: 30%;
}

.feedback-section {
  padding: 50px 0;
  background-color: transparent;
}

.feedback-form h4 {
  margin-top: 20px;
}

.feedback-form .btn-dark {
  border: 1px solid white;
}

.evaluation-item {
  background-color: rgb(46, 46, 48);
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 15px;
  padding-bottom: 30px;
  padding-top: 30px;
}

.feedback-display .feedback-item {
  background-color: black;
  padding: 20px;
  margin-top: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feedback .badge-pill {
  padding: 10px;
  border-radius: 5px;
}

.feedback .rate {
  float: right;
  height: 46px;
  padding: 0 10px;
}

.feedback .rate:not(:checked) > input {
  position: absolute;
}

.feedback .rate:not(:checked) > label {
  float: left;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 30px;
  color: #ccc;
}

.feedback .rate:not(:checked) > label:before {
  content: "★ ";
}

.feedback .rate > input:checked ~ label {
  color: #ffc700;
}

.feedback .rate:not(:checked) > label:hover,
.feedback .rate:not(:checked) > label:hover ~ label {
  color: #deb217;
}

.feedback .rate > input:checked + label:hover,
.feedback .rate > input:checked + label:hover ~ label,
.feedback .rate > input:checked ~ label:hover,
.feedback .rate > input:checked ~ label:hover ~ label,
.feedback .rate > label:hover ~ input:checked ~ label {
  color: #c59b08;
}

.feedback .rate input {
  visibility: hidden;
}

.feature-card {
  height: 100%;
  background-color: #3c3c3c;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  -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;
  -o-transition: transform 0.3s ease, 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;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.feature-card:hover {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #61abff;
  text-shadow: 0 8px 16px rgb(33, 112, 152);
}

.feature-text {
  font-size: 1rem;
  color: #ccc;
}

.features-grid {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

.about .hero-section {
  border-left: 10px solid #0b0c2a;
  border-right: 10px solid #0b0c2a;
  height: 60vh;
  position: relative;
}

.about .hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.about .hero-section .overlay h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 2px 2px rgb(0, 0, 0);
}

.about .content-section {
  padding: 4rem 0;
}

.about .content-section h2 {
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about .content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about .team-section {
  background-color: rgba(81, 79, 79, 0.454);
  border-radius: 15px;
  padding: 4rem 0;
}

.about .membership {
  text-align: center;
  margin-bottom: 3rem;
}

.about .membership img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.about .membership:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.about .membership h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
}

.about .membership p {
  color: #666;
}

.about .membership-section {
  width: 100%;
  padding: 60px 0;
  background-color: transparent;
  overflow: hidden;
  position: relative;
}

.about .membership-section .slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-animation: slide 15s alternate infinite;
  animation: slide 15s alternate infinite;
}

.about .membership-section .slider-item {
  min-width: 250px;
  background: transparent;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.about .membership-section .slider-item img {
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  height: 150px;
}

.about .membership-section .slider-item h5 {
  margin-top: 15px;
  color: white;
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.about .membership-section .slider-item:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.membership-section2 {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.about .membership-section2 .slider-item {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.about .membership-section2 .slider-item img {
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  height: 150px;
}

.about .membership-section2 .slider-item h5 {
  margin-top: 15px;
  color: #333;
}

.membership-section3 {
  padding: 60px 0;
  overflow: hidden;
}

.about .membership-section3 .slider-item {
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.about .membership-section3 .slider-item img {
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  height: 150px;
}

.about .membership-section3 .slider-item h5 {
  margin-top: 15px;
  color: #333;
}

.about .membership-section3 .slick-slide {
  -webkit-transition: -webkit-transform 0.5s linear;
  transition: -webkit-transform 0.5s linear;
  -o-transition: transform 0.5s linear;
  transition: transform 0.5s linear;
  transition: transform 0.5s linear, -webkit-transform 0.5s linear;
}

.searchModal {
  margin: 1px;
}

#searchModal {
  -ms-flex-line-pack: start;
      align-content: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#captchaModal .modal-body {
  text-align: center;
  margin: auto;
}

#searchModal .modal-content,
#menuModal .modal-content,
#captchaModal .modal-content {
  color: whitesmoke;
  background-color: var(--secondary-color);
}

.payment .return {
  margin-bottom: 10px;
}

.payment .cart-summary {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
}

.payment .discount-section input {
  max-width: 200px;
}

.payment .recommendation {
  padding: 8px;
  background-color: #666;
  border-radius: 8px;
}

.payment .cart-item {
  border: 1px solid white;
  border-radius: 15px;
}

.bundle_membership,
.bundle_only,
.bundle_membership label,
.bundle_only label {
  cursor: pointer;
}

.payment .icon-crystal {
  width: 30px;
  height: auto;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.banner-icon-crystal {
  width: 20px;
  height: auto;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin: 0px 5px;
}

.payment .cart-item input[type="radio"] {
  accent-color: #f1c40f;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.payment .price {
  float: left;
}

.payment .features {
  list-style: none;
  padding: 0;
  width: 100%;
}

.payment .features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.payment .features li::before {
  content: '✔';
  color: #3fb950;
  margin-left: 8px;
}

.payment .btn-buy-now {
  color: rgb(191, 0, 255);
  background-color: rgb(119, 6, 156);
  -webkit-box-shadow: 0 0px 8px rgb(103, 7, 135);
  box-shadow: 0 0px 8px rgb(103, 7, 135);
  border: none;
  margin: 15px 0px;
  padding: 15px 30px;
  border-radius: 10px;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.payment .btn-buy-now strong {
  color: rgb(255, 255, 255);
}

.payment .btn-buy-now:hover {
  background-color: rgb(191, 0, 255);
  -webkit-box-shadow: 0 0px 15px rgb(200, 35, 255);
  box-shadow: 0 0px 15px rgb(200, 35, 255);
}

.divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 30px 0;
}

.divider span {
  font-size: 1.2rem;
  margin: 0 10px;
  color: #d4d4d8;
}

.divider-line {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  background-color: #d4d4d8;
}

.crystal-banner,
.update-banner {
  position: relative;
  background: transparent;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-wrap: nowrap;
}

.update-banner {
  color: #f1c40f;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: bold;
}

.crystal-btn {
  color: #f1c40f;
  text-decoration: none;
  font-weight: bold;
}

.crystal-btn:hover {
  text-decoration: none;
  color: rgb(191, 0, 255);
}

.crystal-banner .slider-item {
  color: white;
}

.crystal-banner .slider-item span {
  color: rgb(191, 0, 255);
}

.crystal-banner .slider-item img {
  display: inline;
}

.member-name {
  text-transform: capitalize;
}

.success-purchase .form-check-label a {
  text-decoration: none;
}


.cart {
  max-width: 100%;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

.cart h2 {
  font-size: 28px;
  color: #333;
  margin: 30px auto 30px auto;
}

.cart .alert {
  font-size: 18px;
  padding: 15px;
  border-radius: 10px;
  background-color: #f8d7da;
  margin-bottom: 20px;
}

.cart .card {
  background-color: transparent;
  color: white;
  margin-bottom: 20px;
  border-radius: 10px;
}

.cart .card-body {
  padding: 8px;
}

.cart .cart-item {
  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;
          margin-bottom: 5px;
  padding: 15px;
  border-top: 2px solid #0284c7;
  border-bottom: 2px solid #0284c7;
  border-radius: 10px;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  -o-transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.cart .cart-item:hover {
  background-color: #0b0c2a;
}

.cart .cart-item img {
  margin: 10px;
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cart .cart-item h5 {
  font-size: 18px;
  margin: 0 0 5px;
  color: #fff;
}

.cart .flex-grow-1 {
  float: right;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  unicode-bidi: -moz-plaintext;
  unicode-bidi: plaintext;
}

.cart .flex-grow-2 {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 10px;
}

.cart .price_item {
  font-size: 16px;
  color: #28a745;
  font-weight: bold;
}

.cart .cart-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cart .quantity-selector {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #1a1c22;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.4);
          box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.cart .quantity-selector button {
  background: #222;
  color: #fff;
  border: none;
  padding: 8px;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}

.cart .quantity-selector button:hover {
  background: #333;
}

.cart .quantity-selector input {
  width: 40px;
  text-align: center;
  background: #1a1c22;
  color: #fff;
  border: none;
  font-size: 15px;
  outline: none;
  -moz-appearance: textfield;
}

.cart .quantity-selector input::-webkit-outer-spin-button,
.cart .quantity-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart .btn {
  font-size: 14px;
  padding: 5px 8px;
  margin: 5px;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  -o-transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
  cursor: pointer;
  text-wrap: nowrap;
}

.cart .btn {
  background: transparent;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  color: #fff;
}

.cart .btn-secondary:hover { background: #5c636a; }
.cart .btn-danger:hover { background: #c82333; }
.cart .btn-info:hover { background: #138496; }
.cart .btn-success:hover { background: #1e7e34; }

.cart .text-end {
  text-align: right;
  margin-top: 20px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .cart .cart-item {
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .cart .cart-control {
    width: 100%;
    text-align: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  .cart .quantity-input,
  .cart .btn {
    margin: 3px;
  }
} 

@media (max-width: 440px) {
  .cart .cart-item {
      padding: 0px;
  }
}
.message-store {
  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;
}
.message-store .main-container {
  padding: 30px 45px;
  background-color:rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  text-align: center;
}

.message-product {
    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;
}
.message-product .main-container {
    padding: 30px 45px;
    background-color:rgba(255, 255, 255, 0.17);
    border-radius: 10px;
    text-align: center;
}

.feedback-form {
  border-top: 4px double white;
  padding-top: 20px;
}

.blog-item {
  border: white solid 1px;
}

.first-blog {
  -webkit-box-shadow: 0 0px 10px rgb(255, 255, 255);
  box-shadow: 0 0px 10px rgb(255, 255, 255);
}

.blog-script h1,
.blog-script h4 {
  color: rgb(255, 255, 255);
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.blog-item-text p,
.blog .blog-item-title {
  color: rgb(255, 255, 255);
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.membership-section3 .feature-card {
  max-width: 300px;
}

.about .about-section {
  background-color: rgba(81, 79, 79, 0.454);
  padding: 1rem 0;
  color: #ffffff;
  font-family: "Arial", sans-serif;
}

.about .about-section h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: rgb(195, 54, 255);
  text-transform: uppercase;
  border-left: 2px solid #6a11cb;
  border-right: 2px solid #2575fc;
  border-radius: 20px;
  padding: 20px;
  margin: 40px 0px 30px 0px;
  text-align: center;
}

.about .about-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.about .section-title {
  text-align: center;
  font-size: 2.0em;
  background: -o-linear-gradient(315deg, #6a11cb, #2575fc);
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.about .about-intro,
.about-details,
.about .about-promo,
.about .about-call-to-action {
  font-size: 1.1em;
  font-weight: bolder;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.about .about-promo {
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
}

.about .about-promo strong {
  font-size: 1.2em;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px black;
}

.about .promo-benefits {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.about .promo-benefits li {
  margin-bottom: 15px;
  font-size: 1.1em;
  padding-left: 30px;
  position: relative;
  color: #ffffff;
}

.about .promo-benefits .promo-rank {
  text-align: justify;
  margin: 30px;
}

.about .promo-benefits .promo-rank::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-size: 1.2em;
}

.about .promo-benefits ul {
  margin-top: 20px;
  padding-left: 20px;
}

.about .promo-benefits ul li {
  list-style-type: square;
  padding-left: 10px;
  color: #3194f7;
  list-style: none;
}

.about .aap a {
  color: #60a5d2;
  text-decoration: none;
}

.about .aap a:hover {
  color: #1abc9c;
}

.about .aap i {
  width: 40px;
  text-align: center;
}

.about .about-call-to-action {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
}

.about .about-call-to-action strong {
  color: #0593e0;
}

.about .offer-alert {
  background: -o-linear-gradient(left, #ffecd2, #fcb69f);
  background: -webkit-gradient(linear, left top, right top, from(#ffecd2), to(#fcb69f));
  background: linear-gradient(90deg, #ffecd2, #fcb69f);
  border: 2px solid #e67e22;
  color: #2c3e50;
  font-size: 1.1em;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.about .offer-alert strong {
  font-size: bolder;
  color: #e74c3c;
}

.about .offer-alert p {
  text-align: justify;
}

.about .offer-alert:hover {
  background: -o-linear-gradient(left, #ffe6c1, #f5a97f);
  background: -webkit-gradient(linear, left top, right top, from(#ffe6c1), to(#f5a97f));
  background: linear-gradient(90deg, #ffe6c1, #f5a97f);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.about .pages-section {
  color: #333;
  padding: 50px 20px;
  font-family: "Arial", sans-serif;
  text-align: center;
}

.about .pages-section .container {
  max-width: 1000px;
  margin: auto;
}

.about .pages-section .section-title {
  font-size: 2.2em;
  color: #61abff;
  text-shadow: 0 8px 16px rgb(33, 112, 152);
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.about .pages-section .section-description {
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 30px;
}

.about .pages-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about .page-card {
  background-color: #3c3c3c;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: calc(45% - 20px);
  min-width: 200px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.about .page-card:hover h3 {
  -webkit-text-shadow: 0 0 15px rgb(33, 112, 152);
  text-shadow: 0 0 15px rgb(33, 112, 152);
}

.about .page-title {
  font-size: 1.5em;
  color: #3498db;
  margin-bottom: 10px;
  font-weight: bold;
}

.about .page-description {
  font-size: 1em;
  color: #ffffff;
  line-height: 1.6;
}

.about .update-note {
  margin-top: 30px;
  font-size: 1em;
  color: #e67e22;
  font-weight: bold;
  background: -o-linear-gradient(left, #ffecd2, #fcb69f);
  background: -webkit-gradient(linear, left top, right top, from(#ffecd2), to(#fcb69f));
  background: linear-gradient(90deg, #ffecd2, #fcb69f);
  border: 2px solid #e67e22;
  padding: 30px 20px;
  border-radius: 5px;
}

.about .update-note:hover {
  background: -o-linear-gradient(left, #ffe6c1, #f5a97f);
  background: -webkit-gradient(linear, left top, right top, from(#ffe6c1), to(#f5a97f));
  background: linear-gradient(90deg, #ffe6c1, #f5a97f);
}

.about .btn-buy-now {
  color: rgb(191, 0, 255);
  background-color: rgb(119, 6, 156);
  -webkit-box-shadow: 0 0px 15px rgb(103, 7, 135);
  box-shadow: 0 0px 15px rgb(103, 7, 135);
  border: none;
  margin-top: 10px;
  padding: 15px 30px;
  border-radius: 10px;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.about .btn-buy-now strong {
  color: rgb(255, 255, 255);
}

.about .btn-buy-now:hover {
  background-color: rgb(191, 0, 255);
  -webkit-box-shadow: 0 0px 30px rgb(200, 35, 255);
  box-shadow: 0 0px 30px rgb(200, 35, 255);
}

.about h1,
.about h2 {
  color: #ff5722;
}

.about a {
  text-decoration: none;
}

.about-cover {
  height: 300px;
  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;
  color: white;
  text-align: center;
}

.about-cover h1 {
  color: white;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.about .about-section {
  font-family: "Cairo", sans-serif;
  padding: 50px 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
          box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}
        
.about .feature-box {
  background:#111623;
  border-radius:12px;
  padding:20px;
  min-height:110px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  transition:0.3s;
  height: 100%;
}

.about .feature-box:hover {
  background:#151b2d;
  transform:translateY(-8px);
}

.about .feature-box .feature-details {
  padding:0px 10px;
}

.about .feature-box .ico {
  width:48px;
  height:48px;
  border-radius:10px;
  background:linear-gradient(135deg, rgba(100,215,255,0.12), rgba(164,123,255,0.06));
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  flex-shrink:0;
  font-weight:700;
}

.about .feature-box h4 {
  text-align: right;
  margin:0 0 6px;
  font-size:15px;
  color:#fff;
}

.about .feature-box p {
  margin:0;
  text-align: justify;
  font-size:13px;
  color:var(--muted);
  line-height:1.45;
}

.about .section-title {
  color: #ff5722;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.about .about-details {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 20px;
}

.about ul.about-details {
  list-style: none;
  padding: 0;
}

.about ul.about-details .title-item {
  color: #2575fc;
}

.about ul.about-details li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.about ul.about-details li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2575fc;
  font-size: 1.2rem;
}

.about ul.about-details.steps li::before {
  content: "🎯";
}

.about .btn-custom {
  background: -o-linear-gradient(315deg, #6a11cb, #2575fc);
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}

.about .btn-custom:hover {
  background: -o-linear-gradient(315deg, #6a11cb, #2575fc);
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  -webkit-box-shadow: 0 0px 15px #2575fc;
          box-shadow: 0 0px 15px #2575fc;
}

@media (max-width: 768px) {
  .about-cover h1 {
    font-size: 2.2rem;
  }

  .about .section-title {
    font-size: 1.8rem;
  }

  .about .about-details {
    font-size: 1rem;
  }
}


.info-item mark {
  color: white;
  background-color: red;
}

.limited-buy {
  cursor: not-allowed;
}
     
.control {
margin-bottom: 40px;
color: #f1f5f9;
font-family: "Cairo", sans-serif;
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: start;
    -ms-flex-align: start;
        align-items: start;
min-height: 100vh;
line-height: 1.6;
}

.control h1 {
width: 100%;
font-weight: bolder;
text-align: center;
margin: 10px 0;
font-size: 2rem;
}

.control .control-container {
width: 100%;
background-color: #334155;
padding: 15px 30px;
border-radius: 12px;
-webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.control .control-container header {
all: unset;
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;
border-bottom: 2px solid #0284c7;
padding-bottom: 10px;
background-color: transparent;
-webkit-box-sizing: border-box;
        box-sizing: border-box;
}

.control .control-container header h2 {
all: unset;
margin: 5px;
font-size: 1.8rem;
color: #0ea5e9;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
}

.control .control-container .controls {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
gap: 10px;
}

.control .control-container .controls input,
.control .control-container .controls select {
padding: 10px;
border-radius: 8px;
border: 1px solid #0284c7;
background-color: #1e293b;
color: #f1f5f9;
font-size: 1rem;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}

.control .control-container .controls input:focus,
.control .control-container .controls select:focus {
outline: none;
border-color: #0ea5e9;
-webkit-box-shadow: 0 0 8px #0ea5e9;
        box-shadow: 0 0 8px #0ea5e9;
}

.control .control-container .controls select {
cursor: pointer;
}

.control .table-container {
margin-top: 20px;
overflow-x: auto;
border-radius: 8px;
}

.control .control-container table {
width: 100%;
border-collapse: collapse;
color: #f1f5f9;
border-radius: 8px;
overflow: hidden;
}

.control .control-container tr {
    border-top: 1px solid #0284c7;
}

.control .control-container th,
.control .control-container td {
    text-wrap: nowrap;
    padding: 15px;
    text-align: center;
}

.control .control-container th {
    background-color: #0ea5e9;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
}

.control .control-container td {
    background-color: #334155;
}

.control .control-container td .no_results {
text-align: center;
color: #f1f5f9;
font-size: 1.2rem;
}

.control .control-container tr:hover td, .control .control-container tr:hover {
    background-color:rgb(17, 24, 33);
}
.control .product-name, .control .store-name {
    display: inline-block;
    max-width: 400px;
    color: whitesmoke;
    font-weight: bold;
    cursor: pointer;
    text-transform: none;
    text-decoration: none;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    unicode-bidi: -moz-plaintext;
    unicode-bidi: plaintext;
    white-space: nowrap;
    overflow: hidden;
}

.control .table-container .delete-btn {
width: 120px;
margin: 2px;
padding: 5px 12px;
border-radius: 6px;
border: 1px solid red;
background-color: #1e293b;
color: #ffffff;
font-size: 0.9rem;
cursor: pointer;
-webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
-o-transition: background-color 0.3s ease, transform 0.2s ease;
transition: background-color 0.3s ease, transform 0.2s ease;
transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.control .table-container .delete-btn:hover {
background-color: #dc2626;
}

.control .control-container .pagination {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
gap: 10px;
margin-top: 20px;
}

.control .control-container .pagination button {
background-color: #0ea5e9;
color: #ffffff;
border: none;
padding: 10px 20px;
border-radius: 6px;
cursor: pointer;
font-size: 1rem;
-webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
-o-transition: background-color 0.3s ease, transform 0.2s ease;
transition: background-color 0.3s ease, transform 0.2s ease;
transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.control .control-container .pagination button:hover {
background-color: #0284c7;
-webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
        transform: scale(1.05);
}

.control .control-container .pagination span {
font-size: 1rem;
font-weight: bold;
color: #f1f5f9;
}

.control .controls {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
gap: 10px;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}

.control #toggleControls {
display: none;
width: 100%;
color: #ffffff;
padding: 10px 20px;
border: 1px solid #0284c7;
background-color: #1e293b;
color: #f1f5f9;
border-radius: 6px;
cursor: pointer;
font-size: 1rem;
font-weight: bold;
text-transform: uppercase;
-webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
-o-transition: background-color 0.3s ease, transform 0.2s ease;
transition: background-color 0.3s ease, transform 0.2s ease;
transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.control #toggleControls:hover {
border-color: #0ea5e9;
-webkit-box-shadow: 0 0 5px #0ea5e9;
        box-shadow: 0 0 5px #0ea5e9;
}

.control .control-container .actions {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    justify-items: center;
}

.control .control-container .actions button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    justify-items: center;
}

@media (max-width: 1000px) {
.control .control-container.products header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    text-align: center;
}

.control .control-container.products header h2 {
    text-align: right;
}

.control .controls {
    display: none;
}

.control #toggleControls {
    display: block;
    margin-top: 10px;
    margin-bottom: 20px;
}
}

@media (max-width: 768px) {
.control .control-container {
  padding: 15px;
}
  
.control .control-container .controls input,
.control .control-container .controls select {
    width: 100%;
}

.control .control-container table {
    font-size: 0.9rem;
}

.control .control-container th,
.control .control-container td {
    padding: 10px;
}
}

.control .green-dot, .control .red-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.control .green-dot { background-color: #28a745; }
.control .red-dot { background-color: #dc3545; }

.control .btn {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.control .btn:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

.control .modal-content {
background-color: var(--secondary-color);
color: var(--text-color);
border-radius: 10px;
-webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.control .modal-header {
border-bottom: 1px solid var(--hover-color);
}

.control .modal-body {
padding: 0;
}

.control .modal-footer {
border-top: 1px solid var(--hover-color);
}

.generateqr {
  color: black;
  -webkit-box-shadow: 0 0px 30px rgb(0, 0, 0);
          box-shadow: 0 0px 30px rgb(0, 0, 0);
}

.generateqr .generate_IDC {
  background: -o-linear-gradient(315deg, #ecdfdf 0%, #ecdfdf 100%);
  background: linear-gradient(135deg, #ecdfdf 0%, #ecdfdf 100%);
  border: none;
  border-radius: 12px;
  padding: 20px;
  -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.generateqr .card-body {
  text-align: center;
}

.generateqr .Link {
  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;
}

.generateqr #title_Link {
  font-weight: bold;
  margin-right: 10px;
  color: #495057;
}

.generateqr #URL a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.generateqr .M_QR_IDC {
  margin-top: 20px;
}

.generateqr .M-QR-IDC {
  background-color: #25303b;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  border-radius: 10px;
}

.generateqr #title_Qr,.generateqr  #title_Id {
  margin: 0 10px;
}


.generateqr #switch_QR:hover,.generateqr  #switch_ID:hover {
  background-color: gold;
  color: #25303b;
}

.generateqr .CQR {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.generateqr .Customize_Qr {
  height: 95vh;
  overflow-y: auto;
  width: 60%;
  float: left;
  text-align: left;
}

.generateqr .Customize_Qr h1 {
  text-align: right;
  width: 100%;
  background-color: #ecdfdf;
  -webkit-box-shadow: 0 0 10px #000000;
          box-shadow: 0 0 10px #000000;
  position: sticky;
  top: 0;
}

.generateqr .Display_Qr {
  height: 95vh;
  width: 39%;
  float: left;
  overflow: auto;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.generateqr #qrcode {
  max-width: 300px!important;
  width: 100%;
  margin-top: 20px;
  display: inline-block;
}

.generateqr .generate_IDC input,.generateqr .generate_IDC select,.generateqr .generate_IDC textarea {
  padding: 10px;
  font-size: 16px;
  width: 80%;
  margin-bottom: 10px;
}

.generateqr .containerQr {
  padding: 20px;
}

.generateqr .generate_IDC h2 {
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
}

.generateqr .generate_IDC .section {
  margin-bottom: 15px;
}

.generateqr .section-header {
  background-color: #766e6ebc;
  padding: 10px;
  cursor: pointer;
  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;
}

.generateqr .section-header h3 {
  margin: 0;
  font-size: 18px;
}

.generateqr .section-content {
  padding: 10px;
  display: none;
  border-top: 1px solid #ccc;
  text-align: right;
}

.generateqr .input-group {
  margin-bottom: 10px;
}

.generateqr .input-group label {
  display: block;
  margin-bottom: 5px;
}

.generateqr .input-group input, 
.generateqr .input-group select {
  width: calc(100% - 20px);
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.generateqr  #label-upload {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  margin-bottom: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.generateqr .Customize_Qr button {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  margin-bottom: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.generateqr .Customize_Qr button:hover, .generateqr #label-upload:hover {
  background-color: #45a049;
}

.generateqr .generate_IDC input[type="text"], .generateqr .generate_IDC input[type="number"], .generateqr .generate_IDC select {
  display: block;
}
.generateqr .generate_IDC select#format {
  display: inline-block;
}

.generateqr .generate_IDC input[type="color"] {
  float: left;
  margin-left: 20%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.generateqr .generate_IDC input[type="checkbox"] {
  display: inline;
  float: left;
  margin-left: 20%;
  width: 20px;
  height: 20px;
}

.generateqr #switch_QR, .generateqr #switch_ID {
  width: 160px;
  margin: 0;
  background-color: transparent;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.generateqr .Result_Qr {
  margin-top: 20px;
}

.generateqr .Result_Qr button {
  width: 45%;
  display: inline;
  background-color: #007bff;
  color: white;
  margin-bottom: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.generateqr .Result_Qr button:hover {
  background-color: #004bff;
}

.generateqr .btn-registration, .support-section button {
  width: 92%;
  display: inline;
  background-color: #4CAF50;
  color: white;
  margin-bottom: 5px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.generateqr  .btn-registration:hover, .support-section button:hover {
  background-color: #45a049;
}

.generateqr .qr-join {
  width: 92%;
  padding: 0.6em 2em;
  margin-bottom: 20px;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.generateqr .boxOptions, .generateqr .file-input, .generateqr #content {
  display: none;
}

#foregroundColor {
  background-color: #000000;
}

#gradientFgStartColor {
  background-color: #ff0000;
}

#gradientFgEndColor {
  background-color: #0000ff;
}

#eyeFrameColor {
  background-color: #000000;
}

#gradientEfStartColor {
  background-color: #ff0000;
}

#gradientEfEndColor {
  background-color: #0000ff;
}

#eyeBallColor {
  background-color: #000000;
}

#gradientEbStartColor {
  background-color: #ff0000;
}

#gradientEbEndColor {
  background-color: #0000ff;
}

#backgroundColor {
  background-color: #ffffff;
}

#gradientBgStartColor {
  background-color: #ff0000;
}

#gradientBgEndColor {
  background-color: #0000ff;
}

.categories {
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
}
.categories .get-categories {
  width: 100%;
  color: #ffffff;
  padding: 10px 20px;
  border: 1px solid #0284c7;
  background-color: #1e293b;
  color: #f1f5f9;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  -o-transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.categories .get-categories:hover {
  border-color: #0ea5e9;
  -webkit-box-shadow: 0 0 5px #0ea5e9;
          box-shadow: 0 0 5px #0ea5e9;
}
.categories .category-sidebar {
  height: 80vh;
  background: transparent;
  border-radius: 12px;
  padding: 15px;
  -webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.07);
          box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  max-height: 80vh;
  overflow-x: hidden;
  overflow-y: auto;
  position: sticky;
  top: 90px;
}
.categories .category-item {
  padding: 10px 12px;
  margin-bottom: 6px;
  border-radius: 8px;
  background: transparent;
  -webkit-transition: background 0.2s, -webkit-transform 0.2s;
  transition: background 0.2s, -webkit-transform 0.2s;
  -o-transition: background 0.2s, transform 0.2s;
  transition: background 0.2s, transform 0.2s;
  transition: background 0.2s, transform 0.2s, -webkit-transform 0.2s;
  font-weight: 500;
  font-size: 15px;
}
.categories .category-item.active {
  background-color: #0d6efd;
  color: white;
  font-weight: bold;
}
.categories .category-item.active:hover {
  background-color: #0b5ed7;
}
.categories .category-item:hover {
  background-color:rgb(9, 10, 71);
  -webkit-transform: translateX(-4px);
      -ms-transform: translateX(-4px);
          transform: translateX(-4px);
  cursor: pointer;
}
.categories .category-item.all {
  color: white;
  font-weight: bold;
}
.categories .category-item.all:hover {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.categories #filterForm {
  background: rgba(0,0,0,0.07);
  padding: 15px;
  border-radius: 12px;
}
.categories #filterForm input,
.categories #filterForm select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #0284c7;
  background-color: #1e293b;
  color: #f1f5f9;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.categories #filterForm input:focus,
.categories #filterForm select:focus {
  outline: none;
  border-color: #0ea5e9;
  -webkit-box-shadow: 0 0 8px #0ea5e9;
          box-shadow: 0 0 8px #0ea5e9;
}

.categories #filterForm select {
  cursor: pointer;
}
.categories .filter-btn {
  width: 100%;
  color: #ffffff;
  padding: 10px 20px;
  border: 1px solid #0284c7;
  background-color:rgb(10, 39, 86);
  color: #f1f5f9;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  -o-transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.categories .filter-btn:hover {
  background-color:rgb(6, 139, 201);
  border-color: #0ea5e9;
  -webkit-box-shadow: 0 0 5px #0ea5e9;
          box-shadow: 0 0 5px #0ea5e9;
}
.categories #filterForm input::-webkit-input-placeholder {
  color:rgb(97, 100, 103);
}
.categories #filterForm input::-moz-placeholder {
  color:rgb(97, 100, 103);
}
.categories #filterForm input:-ms-input-placeholder {
  color:rgb(97, 100, 103);
}
.categories #filterForm input::-ms-input-placeholder {
  color:rgb(97, 100, 103);
}
.categories #filterForm input::placeholder {
  color:rgb(97, 100, 103);
}

.categories .product-item {
  padding: auto;
}

.categories .product-card {
  background-color: transparent;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.1);
          box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.categories .product-btn {
  text-decoration: none;
  text-transform: none;
  text-align: center;
  color: white;
  border: 1px solid transparent;
  border-radius: 10px;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.categories .product-btn:hover {
  border: 1px solid #e9ecef;
}
.categories .product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.categories .rating-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.1);
          box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: #f39c12;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
.categories #categoryToggle {
  display: none;
}

.categories .product-card .info-rate {
  background-color: #606060;
  border-radius: 5px;
  padding: 0px 2px 0px 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 8px;
  right: 10px;
  color: white;
  font-size: 12px;
}

.categories .product-card .card-body {
  margin: 0;
  padding: 0;
}

.categories .product-card .card-title {
  padding: 5px 0;
  text-shadow: 1px 1px black;
  text-align: center;
  font-size: 1.2rem;
}

.categories .product-card .card-text {
  font-size: smaller;
}

@media (max-width: 995px) {
  .categories .category-sidebar {
      height: 60vh;
      display: none;
      margin-top: 15px;
  }
  .categories #filterForm {
      display: none;
  }
  .categories #categoryToggle {
      display: block;
  }
}

@media (max-width: 440px) {
  
  .categories .product-card .card-title {
    font-size: 1rem;
  }
  .categories .product-card .info-rate {
    font-size: 10px;
  }
  .categories .product-item {
    padding: 3px;
  }  
}

.categories #loading { text-align: center; padding: 30px; display: none; }
.categories #no-results { text-align: center; padding: 20px; color: gray; display: none; }

.categories .pagination  {
    justify-content: center;
}
.ai_control .control-container {
  background-color: #001432;
}

.ai_control .control-container td {
  background-color: #001432;
}

.ai_analyze {
  background: radial-gradient(ellipse at top, #0a0a0a 0%, #111 100%);
  color: #fff;
  font-family: 'Cairo', sans-serif;
  padding-bottom: 60px;
}

.ai_analyze .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
}

.ai_analyze .box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.1);
}

.ai_analyze .analysis-result {
  background:rgb(9, 21, 38);
  border-left: 5px solid #00ffd0;
}

.ai_analyze .analysis-result .textarea {
  resize: vertical;
  width: 100%;
  height: 90vh;
  border: 1px solid #ccc;
  margin: 10px 0;
  padding: 10px;
  border-radius: 8px;
  font-family: inherit;
  font-size: larger;
  border: 1px solid #0284c7;
  background-color: #1e293b;
  color: #f1f5f9;
  white-space: pre-wrap;
  overflow-x: hidden;
  overflow-y: auto;
}

.ai_analyze .header-box {
  text-align: center;
}

.ai_analyze h2, .ai_analyze h3 {
  color: #00d9ff;
  margin-bottom: 15px;
}

.ai_analyze .analysis-title {
  text-align: center;
  color: gray;
  font-size: medium;
  margin: 20px auto; 
}

.ai_analyze .analysis-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.ai_analyze .analysis-options button {
  background: #111827;
  color: #00f7ff;
  border: 1px solid #00f0ff55;
  border-radius: 12px;
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
      
.ai_analyze .analysis-options button {
  border-radius: 25px;
  text-align: right;
  box-shadow: 0 0 5px #00eaff55;
}

.ai_analyze .analysis-options button:hover {
  background: #00c8ff;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 10px #00eaffaa;
}

.ai_analyze .analysis-history .analysis-item {
  background:rgb(9, 21, 38);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  border-left: 4px solid #00caff;
}

.ai_analyze .analysis-history .textarea {
  resize: vertical;
  width: 100%;
  height: 50vh;
  border: 1px solid #ccc;
  margin: 10px 0;
  padding: 10px;
  border-radius: 8px;
  font-family: inherit;
  font-size: large;
  border: 1px solid #0284c7;
  background-color: #1e293b;
  color: #f1f5f9;
  white-space: pre-wrap;
  overflow-x: hidden;
  overflow-y: auto;
}

.ai_analyze .analysis-item p, .ai_analyze .analysis-item small {
  color: #cbd5e1;
}

.ai_analyze .copy-button {
  float: left;
  color: gray;
  transition: all 0.3s ease;
}

.ai_analyze .copy-button:hover {
  color: white;
}

.ai_analyze .remaining-info {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #94a3b8;
}

.disputes {
    color: #e0e0e0;
    font-family: 'Tajawal', sans-serif;
    text-align: center;
}
.disputes h2 {
  margin: 40px auto 30px auto;
}
.disputes .container {
  width: 100%;
  padding: 30px;
  min-height: 60vh;
  margin-top: 20px;
  border-radius: 8px;
  line-height: 1.6;
}
.disputes .table-dark-custom {
    width: 100%;
    background-color: #1e1e1e;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    overflow-x: auto;
    animation: fadeIn 0.8s ease;
}
.disputes .table-dark-custom th {
    background-color: #2a2a2a;
    color: #ffcc00;
}
.disputes .table-dark-custom td, .disputes .table-dark-custom th {
    min-width: 160px;
    border: 1px solid #444;
    padding: 12px;
    vertical-align: middle;
}
.disputes .table-dark-custom tr.open {
    color: black;
    background-color:rgb(254, 114, 0);
}
.disputes .table-dark-custom tr:hover {
    color: white;
    background-color: #333;
}
.disputes .status-open {
    color: #ffc107;
    font-weight: bold;
}
.disputes .status-resolved {
    color: #28a745;
    font-weight: bold;
}
.disputes a.view-link {
    color: #00bfff;
    text-decoration: none;
}
.disputes a.view-link:hover {
    text-decoration: underline;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px);}
    to { opacity: 1; transform: translateY(0);}
}

.dispute_item {
background-color: #121212;
color: #e0e0e0;
font-family: 'Tajawal', sans-serif;
padding: 30px;
background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
background-size: 30px 30px;
}
.dispute_item .court-box {
background: #1e1e1e;
border-radius: 12px;
border: 1px solid #2d2d2d;
padding: 25px;
margin-bottom: 25px;
box-shadow: 0 0 20px rgba(0,0,0,0.3);
animation: fadeInUp 0.6s ease;
}
.dispute_item .court-box h3 {
border-bottom: 1px solid #333;
padding-bottom: 10px;
margin-bottom: 20px;
}
.dispute_item textarea, input[type="file"] {
background-color: #222;
border: 1px solid #444;
color: #fff;
}
.dispute_item .btn-dark {
background-color: #333;
border-color: #444;
color: #fff;
}
.dispute_item .btn-dark:hover {
background-color: #555;
}
.dispute_item .judge-icon {
color: #ffcc00;
font-size: 1.8em;
margin-left: 10px;
}
.dispute_item .speech {
background: #252525;
border: 1px solid #444;
border-radius: 10px;
padding: 15px;
margin: 15px 0;
position: relative;
animation: fadeIn 0.6s ease;
}
.dispute_item .speech.buyer::before, .dispute_item .speech.seller::before, .dispute_item .speech.system::before {
content: "";
position: absolute;
border-style: solid;
}
.dispute_item .court-box.buyer .speech.seller::before {
left: -15px;
right: auto;
border-width: 8px 15px 8px 0;
border-color: transparent #252525 transparent transparent;
}
.dispute_item .court-box.buyer .speech.buyer::before {
right: -15px;
left: auto;
border-width: 8px 0 8px 15px;
border-color: transparent transparent transparent #252525;
}
.dispute_item .court-box.seller .speech.buyer::before {
left: -15px;
right: auto;
border-width: 8px 15px 8px 0;
border-color: transparent #252525 transparent transparent;
}
.dispute_item .court-box.seller .speech.seller::before {
right: -15px;
left: auto;
border-width: 8px 0 8px 15px;
border-color: transparent transparent transparent #252525;
}
.dispute_item .speech.system::before {
left: -15px;
right: auto;
border-width: 8px 15px 8px 0;
border-color: transparent #252525 transparent transparent;
}
.dispute_item .speech {
background:  #252525;
border: 1px solid #444;
border-radius: 10px;
padding: 15px;
margin: 15px 0;
position: relative;
animation: fadeIn 0.6s ease;
}
.dispute_item .speech.alionc {
text-align: justify;
padding: 40px auto;
}
.dispute_item .fa-hexagon-nodes, .dispute_item .fa-user, .dispute_item .fa-shop {
color: blueviolet;
}
.dispute_item a {
color: #00bfff;
text-decoration: none;
text-transform: none;
cursor: pointer;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px);}
to { opacity: 1; transform: translateY(0);}
}
@keyframes fadeInUp {
from {opacity: 0; transform: translateY(30px);}
to {opacity: 1; transform: translateY(0);}
}

.balance .container {
  color: #c9d1d9;
  font-family: 'Cairo', sans-serif;
  padding: 10px;
}

.balance .balance-card {
  background: -o-linear-gradient(315deg, #6a11cb, #2575fc);
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  padding: 30px;
  border-radius: 16px;
  color: white;
  box-shadow: 0 0 30px rgba(95, 180, 255, 0.15);
  margin-bottom: 40px;
  position: relative;
}

.balance .balance-card h2 {
  font-weight: bold;
  margin-bottom: 20px;
}

.balance .balance-item {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.balance .balance-item strong {
  font-size: 1.4rem;
}

.balance .dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 25px;
}

.balance .section-box {
  background: #161b22;
  border: 1px solid #30363d;
  margin: 35px auto;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(90, 180, 255, 0.05);
  overflow: hidden;
}

.balance .section-box:hover {
  transform: translateY(-5px);
}

.balance .section-box h4 {
  color: #58a6ff;
  margin-bottom: 15px;
  font-weight: bold;
}

.balance .form-control, .balance .form-select {
  background-color: #0d1117;
  color: white;
  border-color: #30363d;
}

.balance .form-control:focus, .balance .form-select:focus {
  border-color: #58a6ff;
  box-shadow: 0 0 6px #58a6ff99;
}

.balance .table {
    width: 100%;
    border-radius: 12px;
    overflow-x: auto;
}

.balance .table th {
  background: #21262d;
  color: #58a6ff;
}

.balance .table td {
  background: #0d1117;
}

.balance .table th, .balance .table td {
  white-space: nowrap;
}

.balance .pagination .page-link {
  background: #21262d;
  color: #fff;
  border-color: #30363d;
}

.balance .pagination .page-item.active .page-link {
  background: #58a6ff;
  color: #0d1117;
}

.balance .section-icon {
  margin-left: 10px;
  color: #58a6ff;
}

.banned-users .container {
  color: #c9d1d9;
  font-family: 'Cairo', sans-serif;
  padding: 10px;
}

.banned-users .banned-users-card {
  background: -o-linear-gradient(315deg, #6a11cb, #2575fc);
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  padding: 30px;
  border-radius: 16px;
  color: white;
  box-shadow: 0 0 30px rgba(95, 180, 255, 0.15);
  margin-bottom: 40px;
  position: relative;
}

.banned-users .banned-users-card h2 {
  font-weight: bold;
  margin-bottom: 20px;
}

.banned-users .banned-users-item {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.banned-users .banned-users-item strong {
  font-size: 1.4rem;
}

.banned-users .dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 25px;
}

.banned-users .section-box {
  background: #161b22;
  border: 1px solid #30363d;
  margin: 35px auto;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(90, 180, 255, 0.05);
  overflow: hidden;
}

.banned-users .section-box:hover {
  transform: translateY(-5px);
}

.banned-users .section-box h4 {
  color: #58a6ff;
  margin-bottom: 15px;
  font-weight: bold;
}

.banned-users .form-control, .banned-users .form-select {
  background-color: #0d1117;
  color: white;
  border-color: #30363d;
}

.banned-users .form-control:focus, .banned-users .form-select:focus {
  border-color: #58a6ff;
  box-shadow: 0 0 6px #58a6ff99;
}

.banned-users .table {
    width: 100%;
    border-radius: 12px;
    overflow-x: auto;
}

.banned-users .table th {
  background: #21262d;
  color: #58a6ff;
}

.banned-users .table td {
  background: #0d1117;
}

.banned-users .table th, .banned-users .table td {
  white-space: nowrap;
}

.banned-users .pagination .page-link {
  background: #21262d;
  color: #fff;
  border-color: #30363d;
}

.banned-users .pagination .page-item.active .page-link {
  background: #58a6ff;
  color: #0d1117;
}

.banned-users .section-icon {
  margin-left: 10px;
  color: #58a6ff;
}

.banned_users .table {
  border-collapse: separate;
  border-spacing: 0 10px;
  border-radius: 8px;
}
.banned_users .table thead {
  background-color: #112233;
}

.banned_users .search-box {
  max-width: 300px;
  margin-bottom: 15px;
}

.analyze-loader-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(10, 10, 10, 0.9);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.analyze-loader-text {
  color: #00eaff;
  font-size: 1.3rem;
  font-weight: bold;
  text-shadow: 0 0 10px #00eaffaa;
}

.ai-bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.ai-bubble-container .highlight-bubble {
    position: fixed;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-origin: center;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: bubble-pulse 2s infinite;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.3s ease;
}

.ai-bubble-container .highlight-bubble.visible {
    opacity: 1;
}

.ai-bubble-container .highlight-bubble:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

.ai-bubble-container .bubble-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease;
}

.ai-bubble-container .bubble-title {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.8rem;
    color: white;
}

.ai-bubble-container .bubble-subtitle {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.ai-bubble-container .bubble-timer {
    font-size: 0.7rem;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.ai-bubble-container .data-ai {
    background: -o-linear-gradient(90deg, #6a11cb, #2575fc);
    background: linear-gradient(0deg, #6a11cb, #2575fc);
    width: 70px;
    height: 70px;
}

.ai-bubble-container .close-bubble {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 0.6rem;
    color: white;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
}

.ai-bubble-container .highlight-bubble:hover .close-bubble {
    opacity: 1;
}

.ai-bubble-container .bubble-extended {
    position: fixed;
    direction: rtl;
    bottom: 20px;
    border-radius: 8px;
    background: -o-linear-gradient(90deg, #6a11cb, #2575fc);
    background: linear-gradient(0deg, #6a11cb, #2575fc);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    padding: 15px;
    z-index: 100;
    width: 220px;
    pointer-events: auto;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s, transform 0.3s;
    display: none;
}

.ai-bubble-container .bubble-extended.active {
    opacity: 1;
    transform: scale(1);
    display: block;
}

.ai-bubble-container .extended-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ai-bubble-container .extended-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.ai-bubble-container .extended-close {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.ai-bubble-container .extended-details {
    margin-bottom: 12px;
}

.ai-bubble-container .extended-notice {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color:rgb(247, 86, 37);
    text-shadow: 0 0 2px black;
}

.ai-bubble-container .extended-desc {
    font-size: 0.8rem;
    font-weight: bold;
    color:white;
    line-height: 1.4;
    margin-bottom: 10px;
}

.ai-bubble-container .extended-timer {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 12px;
}

.ai-bubble-container .timer-unit {
    background: #f5f5f5;
    border-radius: 4px;
    padding: 4px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.ai-bubble-container .timer-value {
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
}

.ai-bubble-container .timer-label {
    font-size: 0.6rem;
    color: #888;
}

.ai-bubble-container .extended-cta {
    background: #4a6cf7;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.ai-bubble-container .extended-cta:hover {
    background: #3a5be6;
}

.ai-bubble-container .cta-icon {
    font-size: 0.75rem;
}

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

.ai-bubble-container .notification {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: bottom 0.3s ease;
    z-index: 1000;
}

.ai-bubble-container .notification.show {
    bottom: 20px;
}

@media (max-width: 480px) {
    .ai-bubble-container .highlight-bubble {
        transform: scale(0.85);
    }
    
    .ai-bubble-container .highlight-bubble:hover {
        transform: scale(0.95);
    }
    
    .ai-bubble-container .bubble-extended {
        width: 80%;
        max-width: 220px;
    }
}

.project {
  font-family:'Noto Sans Arabic', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: radial-gradient(1200px 600px at 10% 20%, rgba(100,215,255,0.06), transparent 5%),
              radial-gradient(900px 450px at 85% 80%, rgba(164,123,255,0.04), transparent 10%),
              linear-gradient(180deg, var(--bg1), var(--bg2));
  color:#eaf6ff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.project {
  position:relative;
  padding:32px;
}

.project .header {
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:22px;
}

.project .logo {
  width:72px !important;
  height:72px !important;
  border-radius:14px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:20px;
  color:#022033;
  box-shadow:0 8px 30px rgba(100,215,255,0.08), 0 2px 6px rgba(0,0,0,0.4);
}

.project .title-group h1{
  margin:0;
  font-size:26px;
  letter-spacing:0.4px;
}
.project .title-group p{ margin:4px 0 0; color:var(--muted); font-size:14px; }

.project .content{
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap:26px;
  align-items:start;
  margin-bottom:22px;    
  justify-items: start;
  justify-content: center;
}

.project .card{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:14px;
  padding:22px;
  box-shadow: 0 10px 30px rgba(2,16,28,0.6);
  backdrop-filter: blur(8px);
  border:1px solid rgba(255,255,255,0.03);
}

.project .hero{
  gap:20px;
  align-items:flex-start;
}

.project .badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(100,215,255,0.12), rgba(164,123,255,0.08));
  color:var(--accent);
  font-weight:600;
  font-size:13px;
  margin-bottom:10px;
}
  
.project .spinner-grow{
  width:13px;
  height:13px;
  animation-duration: 1s;
}

.project .hero h2{
  margin:0 0 10px;
  font-size:22px;
  color:#fff;
}

.project .hero p.lead{
  text-align: justify;
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.project .actions{
  margin-top:16px;
  margin-bottom:16px;
  display:flex;
  gap:12px;
  align-items:center;
}

.project .actions h2{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#022033;
  font-weight: bolder;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding:10px 14px;
  border-radius:10px;
  font-weight:700;
  cursor:default;
  border:none;
}

.project .ghost{
  background:transparent;
  color:var(--muted);
  padding:10px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.04);
}

.project .services{
  margin-bottom:18px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap:14px;
}

.project .feature{
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,0.01));
  border-radius:12px;
  padding:14px;
  min-height:110px;
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.project .feature .ico{
  width:48px;
  height:48px;
  border-radius:10px;
  background:linear-gradient(135deg, rgba(100,215,255,0.12), rgba(164,123,255,0.06));
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  flex-shrink:0;
  font-weight:700;
}

.project .feature h4{ margin:0 0 6px; font-size:15px; color:#fff; }
.project .feature p{ margin:0; text-align: justify; font-size:13px; color:var(--muted); line-height:1.45; }

.project .summary{
  position:sticky;
  top:28px;
}

.project .stats{
  display:flex;
  gap:10px;
  margin-bottom:12px;
}

.project .stat{
  flex:1;
  background:var(--glass);
  padding:12px;
  border-radius:10px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.02);
}
.project .stat .num{ font-weight:700; font-size:18px; color:#fff; }
.project .stat .lbl{ color:var(--muted); font-size:12px; margin-top:6px; }

.project .revenue-chart{
  margin-top:12px;
  display:flex;
  gap:14px;
  align-items:center;
}

.project .pie-wrap{
  width:150px;
  height:150px;
  position:relative;
}
.project .pie-wrap svg{ width:100%; height:100%; transform:rotate(-90deg); }

.project .pie-legend{ flex:1; color:var(--muted); font-size:14px; }
.project .legend-item{ display:flex; gap:10px; align-items:center; margin-bottom:10px; }
.project .color-dot{ min-width:12px; width:12px; height:12px; border-radius:4px; }
.project .color-dot.commissions{ background:#64d7ff; }
.project .color-dot.subscriptions{ background:#a47bff; }

.project .cta{
  margin-bottom:18px;
  padding:14px;
  border-radius:12px;
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border:1px solid rgba(255,255,255,0.03);
}

.project .revenue-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding:14px;
  border-radius: 18px;
  backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.project .revenue-panel h5 {
  text-align: center;
  background: linear-gradient(120deg, #00eaff, #0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
  
.project .revenue-panel p {
  text-align: justify;
  font-size: 14px;
}

.project .inline-input {
  direction: ltr;
  display: inline-block;
  padding: 4px 8px;
  border: 1px #0284c7;
  background: rgba(255,255,255,0.07);
  color: #f1f5f9;
  cursor: text;
  min-width: 40px;
  text-align: center;
  outline: none;
  transition: 0.25s;
  border-radius: 6px;
}

.project .inline-input:hover {
  background: rgba(255,255,255,0.2);
}

.project .footer .card{
  padding-top: 16px;
  padding-bottom: 16px;
  gap:18px;
}
  
.project .footer .sub {
  color:var(--muted);
  font-size:14px;
  font-weight: bold;
}

.project .footer .notice {
  background: linear-gradient(90deg, rgba(100,215,255,0.04), rgba(164,123,255,0.03));
  border: 1px solid rgba(255,255,255,0.03);
  padding:14px;
  border-radius:10px;
  color: #dff8ff;
  line-height:1.6;
  text-align: justify;
}

.project .footer .notice .actions {
  width: 100%;
  text-align: center;
}

.project .footer .btn-custom {
  background: -o-linear-gradient(315deg, #6a11cb, #2575fc);
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  padding: 12px 30px;
  margin: auto;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}

.project .footer .btn-custom:hover {
  background: -o-linear-gradient(315deg, #6a11cb, #2575fc);
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  -webkit-box-shadow: 0 0px 15px #2575fc;
          box-shadow: 0 0px 15px #2575fc;
}

.project .footer .notice strong { color:#fff; }

.project .footer .amount {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.02);
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.03);
}

.project .footer .amount input {
  width:140px;
  background:transparent;
  border:none;
  color:#eaf6ff;
  font-weight:700;
  font-size:16px;
  outline:none;
  text-align:center;
}

.project .footer .label { color:var(--muted); font-size:13px; min-width:130px; }

.project .contact{
  text-align: center;
}
  
.project .email{
  background:linear-gradient(90deg, rgba(100,215,255,0.06), rgba(164,123,255,0.04));
  padding:20px 24px;
  border-radius:10px;
  border: #00eaff 2px dashed;
  color:var(--accent);
  font-weight:700;
  text-decoration:none;
  transition: 0.3s ease all;
}

.project .email:hover{
  border: #00eaffff 2px double;
  box-shadow: 0 0px 10px #00eaff;
}

  @media (max-width:980px){
.project .content{ grid-template-columns:1fr; }
.project .summary{ position:relative; top:auto; }
}

  @media (max-width:720px){
.project .footer .label { min-width:initial; }
}

  @media (max-width:620px){
.project .revenue-chart{
  margin-top:12px;
  display:flex;
  flex-direction:column;
  align-items:unset;
  gap:14px;
}
.project .pie-wrap{
  text-align: center;
  justify-self: center;
  align-self: center;
}
.project .pie-legend{
  margin-top:12px;
}
}

.project .p-18 {
  padding: 18px;
}

.project .p-style {
  text-align: justify;
  margin:0 0 14px;
  color:var(--muted);
  font-size:14px;
}
  
.project .h3-style {
  margin:0 0 10px;
}

.project .feature-style {
  margin-bottom:18px;
}

.project svg g {
  transform-origin:center;
}
  
.project svg g text {
  transform:rotate(90deg);
}

.project .legent-title {
  font-weight:700;
  color:#fff;
}
  
.project .legent-text {
  font-size:13px;
  color:var(--muted);
}

.project .mt-8 {
  margin-top:8px; 
}

.project .p-muted {
  text-align: justify;
  margin-top:8px;
  margin-bottom:8px;
  color:var(--muted);
  font-size:13px;
}

.project .p-muted2 {
  text-align: justify;
  margin-top:8px;
  margin-bottom:8px;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
        
.info-icon {
  cursor: pointer;
  color: #0d6efd;
  margin-right: 5px;
}

.tooltip-box {
  display: none;
  position: absolute;
  background: #fff;
  text-align: justify;
  color: #333;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 250px;
  font-size: 14px;
  z-index: 999;
  top: 40px;
  right: 0;
  pointer-events: none;
}

.text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  unicode-bidi: -moz-plaintext;
  unicode-bidi: plaintext;
}

.dot {
  -webkit-animation: dots 1.5s infinite;
          animation: dots 1.5s infinite;
}

.dot:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.dot:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.dot:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@-webkit-keyframes dots {
  0% {
  opacity: 0;
  }
  50% {
  opacity: 1;
  }
  100% {
  opacity: 0;
  }
}
@keyframes dots {
  0% {
  opacity: 0;
  }
  50% {
  opacity: 1;
  }
  100% {
  opacity: 0;
  }
}

@media (max-width: 1000px) {

  .generateqr .M_QR_IDC {
      margin-top: 0px;
  }
  
  .generateqr .card-body {
      padding: 0px;
  }
  
  .generateqr .generate_IDC {
      background: -o-linear-gradient(315deg, #ecdfdf 0%, #dacfc9 100%);
      background: linear-gradient(135deg, #ecdfdf 0%, #dacfc9 100%);
      border: none;
      border-radius: 12px;
      padding: 15px 5px;
      -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
              box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  }
  
  .generateqr .CQR {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
              flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
  }

  .generateqr .Customize_Qr {
      height: 70vh;
      overflow-y: auto;
      width: 100%;
      float: left;
      text-align: left;
      overflow-y: auto;
  }
  
  .generateqr .Display_Qr {
      height: 100%;
      width: 100%;
      padding-top: 0;
      float: left;
      overflow: hidden;
      text-align: center;
  }
}
  
@media (max-width: 890px) { 
  .generateqr #qrcode {
    max-width: 260px!important;
    width: 100%;
    margin-top: 20px;
    display: inline-block;
  }
}

@media (max-width: 770px) {  
  .generateqr #qrcode {
    max-width: 210px!important;
    width: 100%;
    margin-top: 20px;
    display: inline-block;
  }
}

@media (max-width: 580px) {  
  .categories .col-sm-6 {
    width: 49%;
  }
}

@media (max-width: 440px) {
  .generateqr #qrcode {
      max-width: 210px!important;
      width: 100%;
      margin-top: 20px;
      display: inline-block;
  }
}

@media (max-width: 390px) {   
  .generateqr #qrcode {
      max-width: 210px!important;
      width: 100%;
      margin-top: 20px;
      display: inline-block;
  }
}

@media (max-width: 890px) {  
  .contact-section .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contact-section .col-md-6,
  .contact-section .mt-md-0 {
    width: 100%;
    padding-bottom: 20px;
  }

  .contact-section .mt-md-0 {
    border-left: unset;
    border-top: solid yellow 3px;
    padding-top: 50px;
  }

  .contact-section .support_ligne {
    border-top: solid rgb(0, 224, 254) 3px;
  }

  .blog .blog-item-title {
    font-size: large;
  }

  footer .col-md-4 {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 770px) {
  .about .container {
    padding: 30px;
  }
  
  footer .footer-logo img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 440px) {
  .crystal-banner .slider-item {
    margin-left: 45px;
    margin-right: 80px;
  }

  .update-banner .slider-item {
    margin-left: 45px;
    margin-right: 80px;
  }

  .about .follow i {
    font-size: 1.5rem;
    margin-top: 15px;
  }

  .about .page-card {
    width: calc(100% - 20px);
  }
}

@media only screen and (max-width: 1660px) {
  :root {
    --heading-large: 5.4rem;
    --heading-medium: 3.4rem;
    --heading-small: 2.2rem;
  }
}

@media only screen and (max-width: 1456px) {
  :root {
    --heading-large: 5.2rem;
    --heading-medium: 3.2rem;
    --heading-small: 2rem;
  }

  header .view-width {
    width: 80%;
  }
}

@media only screen and (max-width: 1220px) {
  header .view-width {
    width: 70%;
  }
}

@media only screen and (max-width: 1024px) {
  :root {
    --heading-large: 5rem;
    --heading-medium: 3rem;
    --heading-small: 1.8rem;
    --sz: 12px;
  }

  header .view-width {
    width: 75%;
  }
}

@media only screen and (max-width: 756px) {
  :root {
    --heading-large: 4rem;
    --heading-medium: 2.6rem;
    --heading-small: 1.6rem;
    --paragraph: 1rem;
    --navbar-buttons: 2.2rem;
    --sz: 10px;
  }

  main {
    margin-left: 0em;
  }

  header #navbar {
    width: 3em;
    -webkit-transition: width 0.55s cubic-bezier(var(--transition-main2), 1);
    -o-transition: width 0.55s cubic-bezier(var(--transition-main2), 1);
    transition: width 0.55s cubic-bezier(var(--transition-main2), 1);
    position: fixed;
    top: 0;
    left: -100%;
    background-color: #111;
    transition: left 0.3s ease-in-out;
    z-index: 9999;
  }

  #navbar.nav-open {
    left: 0;
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    height: 40px;
    padding: auto;
    backdrop-filter: blur(5px);
    background-color: rgba(17, 24, 33, 0.8);
    border-radius: 50%;
    font-weight: bolder;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: pointer;
    overflow: hidden;
  }

  .menu-close {
    position: fixed;
    top: 50%;
    right: 0; 
    width: 40px;
    height: 40px;
    padding: auto;
    backdrop-filter: blur(10px);
    background-color: rgba(17, 24, 33, 0.8);
    border-radius: 50%;
    font-weight: bolder;
    display: none; 
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
  }

  .menu-toggle span:nth-child(1) {
    color: #00eaff;
    animation: arrow-animation-1 ease 10s infinite;
    animation-delay: 2200ms;
  }
  
  .menu-toggle span:nth-child(2) {
    color: #00eaff;
    animation: arrow-animation-2 ease 10s infinite;
    animation-delay: 2000ms;
  }

  .menu-close span:nth-child(1) {
    color: #00eaff;
    animation: arrow-animation-1 ease 10s infinite reverse;
    animation-delay: 2000ms;
  }
  
  .menu-close span:nth-child(2) {
    color: #00eaff;
    animation: arrow-animation-2 ease 10s infinite reverse;
    animation-delay: 2200ms;
  }

  @keyframes arrow-animation-1 {
    0% {
      transform: translateX(0);
      opacity: 1;
    }
    5% {
      transform: translateX(0);
      opacity: 0;
    }
    10% {
      transform: translateX(0);
      opacity: 1;
    }
    15% {
      transform: translateX(0);
      opacity: 1;
    }
    20% {
      transform: translateX(0);
      opacity: 1;
    }
    30% {
      transform: translateX(0);
      opacity: 1;
    }
    45% {
      transform: translateX(80px);
      opacity: 0;
    }
    50% {
      transform: translateX(-500px);
      opacity: 0;
    }
    55% {
      transform: translateX(0);
      opacity: 1;
    }
    95% {
      opacity: 1;
    }
  }
  
  @keyframes arrow-animation-2 {
    0% {
      transform: translateX(0);
      opacity: 1;
    }
    5% {
      transform: translateX(0);
      opacity: 1;
    }
    10% {
      transform: translateX(0);
      opacity: 0;
    }
    15% {
      transform: translateX(0);
      opacity: 1;
    }
    20% {
      transform: translateX(0);
      opacity: 1;
    }
    30% {
      transform: translateX(0);
      opacity: 1;
    }
    45% {
      transform: translateX(80px);
      opacity: 0;
    }
    50% {
      transform: translateX(-500px);
      opacity: 0;
    }
    55% {
      transform: translateX(0);
      opacity: 1;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  .menu-close span:nth-child(1) {
    color: red;
  }
  
  .menu-close span:nth-child(2) {
    color: red;
  }

  header .navbar-logo > .navbar-item-inner > img {
    width: 38px;
    height: 38px;
  }

  footer {
    margin-left: 0em;
  }

  header .view-width {
    width: calc(100% - 5em);
  }
}

@media only screen and (max-width: 576px) {
  header .view-width {
    width: calc(100% - 3em);
  }
  .orders-control {
    padding: 5px;
  }

  .orders-control .orders-container {
    padding: 10px;
  }
  
  .lg-item .blog-cover, .sm-item .blog-cover {
    aspect-ratio: 3 / 2;
  }
}