/* Generic */
body {
  min-height: 100vh;
}

[x-cloak] {
  display: none !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.px-32 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-5-nav {
  padding-top: calc(74px + 1.5rem);
  padding-bottom: 1.5rem;
}

.bg-gray {
  background: var(--bs-gray-bg);
}

.bg-image {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

/* Override Bootstrap colors */
:root {
  --bs-primary: var(--cl-accent);
  --bs-primary-rgb: var(--cl-accent-rgb);
  --bs-link-color: var(--cl-accent);
  --bs-body-bg: var(--cl-background-primary);
  --bs-body-bg-rgb: var(--cl-background-primary-rgb);
  --bs-gray-bg: var(--cl-background-secondary);
  --bs-gray-bg-rgb: var(--cl-background-secondary-rgb);
  --bs-border-color: var(--cl-border);
  --bs-border-color-rgb: var(--cl-border-rgb);
  --bs-border-radius: 0.5rem;
}

.bg-primary-dark {
  background-color: var(--cl-accent);
}

.form-check-input {
  --bs-form-check-bg: var(--bs-gray-bg);
}

.form-check-input:checked,
form-check-input[type=checkbox]:indeterminate {
  background-color: var(--cl-accent);
  border-color: var(--cl-accent);
}

.form-range::-webkit-slider-thumb,
.form-range::-moz-range-thumb {
  background-color: var(--cl-accent);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.form-range:focus::-webkit-slider-thumb,
.form-range:focus::-moz-range-thumb,
.nav-link:focus-visible {
  border-color: var(--cl-accent);
  box-shadow: 0 0 0 0.25rem rgba(var(--cl-accent-rgb), .25);
}

.form-control:disabled,
.form-select:disabled {
  background-color: initial;
}

.form-control,
.form-select {
  background-color: var(--bs-gray-bg);
}

.btn:hover {
  background-color: var(--cl-accent);
  border-color: var(--cl-accent);
}

.btn-primary {
  --bs-btn-bg: var(--cl-accent);
  --bs-btn-border-color: var(--cl-accent);
  --bs-btn-disabled-bg: var(--cl-accent);
  --bs-btn-disabled-border-color: var(--cl-accent);
  --bs-btn-hover-bg: var(--cl-accent);
  --bs-btn-hover-border-color: var(--cl-accent);
  --bs-btn-active-bg: var(--cl-accent);
  --bs-btn-active-border-color: var(--cl-accent);
}

.btn-outline-primary {
  --bs-btn-color: var(--cl-accent);
  --bs-btn-border-color: var(--cl-accent);
  --bs-btn-hover-bg: var(--cl-accent);
  --bs-btn-active-bg: var(--cl-accent);
  --bs-btn-active-border-color: var(--cl-accent);
  --bs-btn-disabled-color: var(--cl-accent);
  --bs-btn-disabled-border-color: var(--cl-accent);
}

.dropdown-menu,
.dropdown-menu-dark {
  --bs-dropdown-link-active-bg: var(--cl-accent);
}

.nav-pills {
  --bs-nav-pills-link-active-bg: var(--cl-accent);
}

.pagination {
  --bs-pagination-active-bg: var(--cl-accent);
  --bs-pagination-active-border-color: var(--cl-accent);
}

.progress,
.progress-stacked {
  --bs-progress-bar-bg: var(--cl-accent);
}

.list-group {
  --bs-list-group-active-bg: var(--cl-accent);
  --bs-list-group-active-border-color: var(--cl-accent);
}
/* Navbar */
.navbar {
  background: var(--bs-body-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1.25rem;
  font-size: 1.075rem; /* Larger base font */
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: blur(10px);
}

.navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 1.25rem;
  margin-right: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1.125rem;
}

.navbar .navbar-brand img {
  max-height: 2.6rem;
  transition: transform 0.2s ease;
}

.navbar .navbar-brand:hover img {
  transform: scale(1.03);
}

.navbar .navbar-collapse {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.navbar .navbar-toggler,
.navbar .navbar-toggler:focus {
  border: none;
  background: transparent;
  padding: 0.5rem;
  box-shadow: none;
}

.navbar .navbar-toggler .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .navbar-toggler:focus .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .nav-item a.nav-link {
  color: var(--bs-body-color);
  font-size: 1.1rem; /* Slightly larger links */
  padding: 0.4rem 0.75rem;
  transition: color 0.2s ease;
}

.navbar .nav-item a.nav-link:hover {
  color: var(--cl-accent);
}

.navbar .nav-item a.nav-link.active {
  color: var(--cl-accent);
  position: relative;
}

.navbar .nav-item a.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--cl-accent);
  border-radius: 1px;
}

.navbar .cart .btn {
  position: relative;
  overflow: visible;
    background-color: transparent; /* Slightly darker purple on hover */
  --bs-btn-padding-x: 0.625rem;
    color: var(--cl-accent) ;

  border-radius: 50%; /* Circular button */
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 6px var(--cl-accent); /* Subtle purple glow */
  transition: all 0.2s ease;
}

.navbar .cart .btn:hover {
    color: white; /* White icon for contrast */
  background-color: var(--cl-accent); /* Purple background */
  box-shadow: 0 0 12px var(--cl-accent);
}
.navbar .user .btn .icon,
.navbar .cart .btn .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.navbar .user .btn.btn-outline-primary .icon,
.navbar .cart .btn.btn-outline-primary .icon {
  width: 1.125rem;
  height: 1.125rem;
}

.navbar .cart .btn .count {
  position: absolute;
  top: -0.45rem;
  right: -0.45rem;
  width: 1.125rem;
  height: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cl-accent);
  color: #ffffff;
  font-size: 0.7rem;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--bs-body-bg);
}

@media screen and (min-width: 992px) {
  .navbar .navbar-collapse .navbar-nav {
    display: flex;
    gap: 1.25rem; /* Less spacing between nav links */
  }
}
/* Footer */
footer.footer {
  background: var(--bs-gray-bg);
  border-top: 1px solid var(--bs-border-color);
}

.footer .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer .logo img {
  max-height: 3rem;
}

.footer .logo p {
  margin-bottom: 0;
}

.footer h5 {
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer .nav li a {
  padding: 0;
  color: var(--bs-secondary-color);
}

.footer .nav li a:hover {
  color: var(--cl-accent);
}

/* Remove number input arrows. */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield !important;
}

/* Push footer to bottom */
.flex-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Generic title. */
.section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 2rem 0;
}

.section-title h1,
.section-title h2 {
  font-size: 1.75rem;
}

.section-title h1,
.section-title h2,
.section-title p {
  margin-bottom: 0;
}

.section-title p {
  font-size: 0.875rem;
  color: #a3a3a3;
}

@media (min-width: 768px) {
  .section-title p {
    padding-left: 1.5rem;
    border-left: 1px solid var(--bs-border-color);
  }
}

.section-subtitle {
  display: flex;
  align-items: center;
  margin: -1rem 0 2rem 0;
}

/* Announcement */
.announcement {
  padding: 0.5rem 0;
  text-align: center;
  background: var(--cl-accent);
  color: #ffffff;
  border-bottom: 1px solid var(--bs-border-color);
}

.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
}

.announcement a svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Homepage hero. */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
}

.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
  z-index: 1;
}

.hero .content {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
  border-radius: var(--bs-border-radius);
}

.hero .content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero .content p {
  margin-bottom: 2rem;
}

.hero .content a {
  margin-bottom: 2.5rem;
}
/*
.hero .content .stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 30rem;
  padding: 0.5rem;
  margin: 0 auto;
  background: var(--bs-gray-bg);
  border-radius: var(--bs-border-radius);
}
*/
.fake-searchbar {
  background: linear-gradient(135deg, rgba(37, 36, 41, 0.85), rgba(53, 53, 53, 0.85));
  background-size: 200% 200%;
  background-position: 0% 0%;
  transition: background-position 0.4s ease;
}

.fake-searchbar:hover {
  background-position: 100% 100%;
}

/* OLD FAKE SEARCHBAR CSS:
.fake-searchbar {
  background: linear-gradient(135deg, #252429, #353535);
}

.fake-searchbar:hover {
  background: linear-gradient(135deg, #2a292f, #3a3a3a);
}
*/

.hero .content .stats {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 32rem;
  padding: 0.5rem;
  margin: 0 auto;
  background: linear-gradient(135deg, #252429, #353535);
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
  z-index: 0;
}

.hero .content .stats::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a292f, #3a3a3a); /* darker hover version */
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.hero .content .stats:hover::after {
  opacity: 1;
}

.hero .content .stats > * {
  position: relative;
  z-index: 2;
}



.hero .content .stats div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero .content .stats div .value {
  font-weight: 600;
  font-size: 1rem;
}

.hero .content .stats div .value svg {
  width: 1rem;
  height: 1rem;
  vertical-align: -0.125rem;
}

.hero .content .stats div .label {
  font-size: 0.7rem;
  color: #a3a3a3;
}

.hero .search-modal {
  --bs-modal-width: 700px;
}

.hero .fake-searchbar {
  margin: 0 auto 2rem auto;
}

.hero .fake-searchbar,
.hero .search-modal .searchbar {
  width: 100%;
  position: relative;
}

.hero .fake-searchbar input,
.hero .search-modal .searchbar input {
  background: var(--bs-gray-bg);
  padding: 1rem 2rem 1rem 4rem;
}

.hero .fake-searchbar svg,
.hero .search-modal .searchbar svg {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 1rem;
  fill: #a3a3a3;
}

.hero .search-modal .products {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero .search-modal .product {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: initial;
  color: initial;
}

.hero .search-modal .product .left {
  flex: 1;
  display: flex;
  gap: 1rem;
}

.hero .search-modal .product .image {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  aspect-ratio: 16/9;
  max-height: 96px;
  background: var(--bs-gray-bg);
  border-radius: var(--bs-border-radius);
}

.hero .search-modal .product .image img {
  object-fit: scale-down;
  aspect-ratio: 16/9;
  border-radius: var(--bs-border-radius);
}

.hero .search-modal .product .image .product-img-placeholder svg {
  width: 48px;
  height: 48px;
}

.hero .search-modal .product .image .badges {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero .search-modal .product .image .badges div {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--cl-accent);
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 500;
  padding: 0.125rem 0.25rem;
  border-radius: 0.125rem;
}

.hero .search-modal .product .text {
  flex: 1;
  color: #ffffff;
}

.hero .search-modal .product h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.hero .search-modal .product p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.hero .search-modal .product .right {
  display: none;
}

@media (min-width: 468px) {
  .hero .content .stats {
    display: inline-flex;
    gap: 1.5rem;
    padding: 1rem;
  }

  .hero.alignment-left .content .stats {
    justify-content: flex-start;
  }
  
  .hero.alignment-right .content .stats {
    justify-content: flex-end;
  }

  .hero .content .stats div .value {
    font-size: 1.25rem;
  }

  .hero .content .stats div .value svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .hero .content .stats div .label {
    font-size: 0.75rem;
  }

  .hero .search-modal .product .left .stock {
    display: none;
  }

  .hero .search-modal .product .right {
    display: block;
  }
}
.status-indicator {
  background: #1e1e2f;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  font-size: 1.1em;
  margin-top: 20px;
  position: relative;
  z-index: 999;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

.status-text {
  color: #4caf50; /* green for ONLINE */
}

.online {
  background-color: #4caf50;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

/* Make the image div smaller and move it up */
.col-12.aspect-1\/1 {
  max-height: 300px;          /* Limit height */
  height: 300px;              /* Set a fixed height */
  overflow: hidden;           /* Prevent overflow */
  transform: translateY(-100px) scale(0.5); /* Shrink and move up */
  margin-top: 0px;     
    margin-bottom: -100px;       /* Pull up even more if needed */
}

/* Make sure the image itself scales down */
.col-12.aspect-1\/1 img {
  width: 100%;
  height: auto;
  object-fit: contain;        /* Keep proportions */
  transform: scale(0.8);      /* Shrink image */
}

@media (min-width: 768px) {
  .hero {
    min-height: 100vh;
  }

  .hero.height-short {
    min-height: unset;
  }

  .hero.height-medium {
    min-height: 60vh;
  }

  .hero .container {
    padding: 6rem 2rem;
  }

  .hero .content {
    min-width: 60%;
  }

  .hero .fake-searchbar {
    max-width: 600px;
  }

  .hero.alignment-left .container,
  .hero.alignment-right .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero.alignment-left .content,
  .hero.alignment-right .content {
    margin: 0;
    padding: 0;
  }

  .hero.alignment-left .content {
    text-align: left;
  }

  .hero.alignment-right .content {
    text-align: right;
    order: 1;
  }

  .hero.alignment-left .fake-searchbar {
    margin-left: 0;
    margin-right: 0;
  }

  .hero.alignment-right .fake-searchbar {
    margin-left: auto;
    margin-right: 0;
  }
}

/* Homepage socials. */
.socials {
  background: var(--bs-gray-bg);
  padding: 5rem 0;
}

.socials .list .social {
  display: flex;
  justify-content: space-between;
  background: var(--bs-body-bg);
  padding: 1rem;
  margin-bottom: var(--bs-gutter-x);
  border-radius: var(--bs-border-radius);
  text-decoration: none;
  color: #ffffff;
}

.socials .list .social .left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.socials .list .social .left svg {
  display: inline-flex;
  padding: 0.5rem;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: var(--cl-accent);
  color: #ffffff;
}

.socials .list .social .right svg {
  width: 1.5rem;
  height: 1.5rem;
}

.socials .list .social:hover {
  color: var(--cl-accent);
}

@media (min-width: 992px) {
  .socials .list .social {
    margin-bottom: 0;
  }
}

/* Homepage CTA, text + image. */
.cta-text-image {
  display: flex;
  flex-direction: column;
  background: var(--bs-gray-bg);
}

.cta-text-image .content {
  padding: 5rem 2rem;
}

.cta-text-image .content .subtitle {
  color: var(--cl-accent);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.cta-text-image .content .title {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.cta-text-image .content .description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-text-image .image {
  background-repeat: no-repeat, no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

@media (min-width: 768px) {
  .cta-text-image {
    flex-direction: row;
  }

  .cta-text-image .content {
    padding: 5rem 8rem;
  }
}

/* Homepage CTA, text only. */
.cta-text-center {
  background: #0c0c0c;
  text-align: center;
}

.cta-text-center .content {
  padding: 5rem 2rem;
}

.cta-text-center .content .subtitle {
  color: var(--cl-accent);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.cta-text-center .content .title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cta-text-center .content {
    padding: 6rem 0;
  }
}

/* Homepage products */
.chips {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.chips .btn {
  border-radius: var(--bs-border-radius-xxl);
}



.products .card .card-img-top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bs-gray-bg);
}

.products .card .card-img-top img,
.products .card .card-img-top svg {
  object-fit: scale-down;
  aspect-ratio: 16/9;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.products .card .card-img-top .overlay {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  padding: 1rem;
  text-align: center;
  opacity: 0;
  transition: all .3s ease;
}

.products .card .card-img-top .overlay .btn:hover {
  background-color: var(--cl-accent);
  border-color: var(--bs-btn-border-color);
}

.products .card .card-img-top .overlay .btn {
  width: 100%;
}

.products .card:hover .card-img-top .overlay {
  opacity: 1;
  bottom: 0;
}

.products .card .card-img-top .badges {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.products .card .card-img-top .badges div {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--cl-accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.product-img-placeholder svg {
  width: 96px;
  height: 96px;
}

.product-img-placeholder svg.large {
  width: 256px;
  height: 256px;
}

.products .card .info {
  display: flex;
  justify-content: space-between;
  color: #d1d1d1;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.products .card .info p {
  margin-bottom: 0;
}

.products .card .info .price {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.products .card .card-title {
  font-size: 1.125rem;
  margin-bottom: 0rem;
}

.stock-indicator {
  pointer-events: none;
}

.stock-unlimited {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.stock-unlimited svg {
  width: 1rem;
  height: 1rem;
}

/* Homepage features. */
.features .list .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem;
  margin-bottom: var(--bs-gutter-x);
  border-radius: var(--bs-border-radius);
  background: var(--bs-gray-bg);

  /* start just a tad smaller */
  transform: scale(0.993);

  /* animate movement, shadows, bg */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}
/* Heading gradient OLD 
#app > div:nth-child(1) > div > section.hero.alignment-left.height-short.component > div.container > div.content > h1 > strong {
  background: linear-gradient(130deg, #aa4ff0, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 51px;
}


OLD - new :   background: linear-gradient(135deg, #ffffff 0%, #ffffff 15%, #b96aff 60%, #9E20FF 100%);

    background: linear-gradient(315deg, #8e5fe7 0%, #ae86ff 100%);


      background: linear-gradient(135deg, #9E20FF, #b96aff);

*/

#app > div:nth-child(1) > div > section.hero.alignment-left.height-short.component > div.container > div.content > h1 > strong {
background: linear-gradient(135deg, #8e5fe7 0%, #a763ff 50%, #b96aff 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 55px;
  font-weight: 800;
text-shadow: 0 0 6px rgba(255, 255, 255, 0.2);


}


.finished::first-line {
  font-weight: bold;
  color: white;
}
#app > div:nth-child(1) > div > section.hero.alignment-left.height-short.component > div.container > div.content > h1 {
  color: white;
    font-weight: bold;
}
#app > div:nth-child(1) > div > section.hero.alignment-left.height-short.component > div.container > div.content > h1 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #5b4b63; /* Cursor effect */
  animation:
    typing 1s steps(20) 0.1s 1 normal forwards,
    blink 0.75s step-end 2 0.1s,
    fadeCursor 0.4s ease 1.2s forwards;
  width: 0; /* Start with no width */
  animation-fill-mode: forwards; /* Retain final state after animation */
          text-align: center;
}
/* Wrap on smaller screens */
@media screen and (max-width: 1400px) {
  #app > div:nth-child(1) > div > section.hero.alignment-left.height-short.component > div.container > div.content > h1 {
    white-space: normal;
    word-break: break-word;
        text-align: center;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 63%; /* Stop at 63% of the width */
  }
}

@keyframes blink {
  50% {
    border-color: transparent; /* Blink the cursor */
  }

}

/* Cursor pseudo-element */
#app > div:nth-child(1) > div > section.hero.alignment-left.height-short.component > div.container > div.content > h1::after {
  content: none;
  animation: none;
}

/* Stop the blinking cursor after typing animation is done */
#app > div:nth-child(1) > div > section.hero.alignment-left.height-short.component > div.container > div.content > h1.finished::after {
  animation: none; /* Stop blinking */
  border-color: transparent; /* Hide the cursor */
  opacity: 0; /* Fade out the cursor */
}



@keyframes fadeCursor {
  0% {
    border-color: #5b4b63;
  }
  100% {
    border-color: transparent; /* Hide cursor */
  }
}

/* Base paragraph style */
#app > div:nth-child(1) > div > section.hero.alignment-left.height-short.component > div.container > div.content > p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #f8f8f8d1; /* soft purple-gray */
  transition: color 0.4s ease;
}

/* Hover: brighten the color */
#app > div:nth-child(1) > div > section.hero.alignment-left.height-short.component > div.container > div.content > p:hover {
  color: #fefdff; /* lighter, more vibrant version */
}

/* You can use a narrower animation width for even smaller screens */
@media screen and (max-width: 2100px) {
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 70%; /* Expand to full width if screen is narrow */
    }
  }

  .typing-indicator, 
  #app h1.typing-indicator {
    margin: 0 auto;
    display: block;
    text-align: center;
    width: 70%;
    }
      /* Ensure the text stays after typing */

  }

/* You can use a narrower animation width for even smaller screens */
@media screen and (max-width: 1500px) {
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 75%; /* Expand to full width if screen is narrow */
    }
  }

  .typing-indicator, 
  #app h1.typing-indicator {
    margin: 0 auto;
    display: block;
    text-align: center;
    width: 75%;
    }
      /* Ensure the text stays after typing */

  }
  #app > div:nth-child(1) > div > section.hero.alignment-left.height-short.component > div.container > div.content > p {

        text-align: center;
  }
.features .list .feature i,
.features .list .feature svg {
  font-size: 4rem;
  width: 64px;
  height: 64px;
  margin-bottom: 2rem;
  color: var(--cl-accent);

  /* animate icon pop (color handled per-feature below) */
  transition: transform 0.4s ease, color 0.4s ease;
}

.features .list .feature .title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.features .list .feature .description {
  padding: 0 2rem;
  font-size: 0.875rem;
  color: #a3a3a3;
}

/* — Hover & focus — */
.features .list .feature:hover,
.features .list .feature:focus {
  /* lift to natural size & float */
  transform: translateY(-1px) scale(1.01);
/*old:   transform: translateY(-4px) scale(1.03);*/

  /* soft shadow + white “border” via second box-shadow */
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.12),
    0 0 0 4px rgba(255, 255, 255, 0.6);

  /* slight lighten of bg */
  background-color: color-mix(in srgb, var(--bs-gray-bg) 90%, #ffffff);
}

.features .list .feature:hover i,
.features .list .feature:hover svg {
  transform: scale(1.1);
  /* color set per-feature below */
}



.features .list .feature:active i,
.features .list .feature:active svg {
  transform: scale(1);
  /* keep the hover color while pressed */
}

/* — Per‐feature hover colors — */
/* 1. Auto Advance: light/white blue */
.row.list > div:nth-child(1) .feature:hover i,
.row.list > div:nth-child(1) .feature:hover svg {
  color: #e0f7ff;
}

/* 2. Auto Answers: study blue */
.row.list > div:nth-child(2) .feature:hover i,
.row.list > div:nth-child(2) .feature:hover svg {
  color: #4a90e2;
}

/* 3. Auto Submit: orange */
.row.list > div:nth-child(3) .feature:hover i,
.row.list > div:nth-child(3) .feature:hover svg {
  color: #f5a623;
}

/* 4. Auto Answers Delays: yellow */
.row.list > div:nth-child(4) .feature:hover i,
.row.list > div:nth-child(4) .feature:hover svg {
  color: #f8e71c;
}

/* 5. Auto Assignment: green */
.row.list > div:nth-child(5) .feature:hover i,
.row.list > div:nth-child(5) .feature:hover svg {
  color: #7ed321;
}

/* 6. Auto Interactive Frames: purple */
.row.list > div:nth-child(6) .feature:hover i,
.row.list > div:nth-child(6) .feature:hover svg {
  color: #bd10e0;
}

/* 7. Auto Ungraded: teal */
.row.list > div:nth-child(7) .feature:hover i,
.row.list > div:nth-child(7) .feature:hover svg {
  color: #50e3c2;
}

/* 8. QOL features: magenta */
.row.list > div:nth-child(8) .feature:hover i,
.row.list > div:nth-child(8) .feature:hover svg {
  color: #9013fe;
}

/* 9. Discord Logging: discord-blue */
.row.list > div:nth-child(9) .feature:hover i,
.row.list > div:nth-child(9) .feature:hover svg {
  color: #7289da;
}


/* Single product. */
.product-wrapper {
  min-height: calc(100vh - 257px); /* 257px is footer */
}

.product-wrapper .carousel img {
  border-radius: var(--bs-border-radius);
}

.product-wrapper .thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.product-wrapper .thumbnails button {
  border: 0;
  padding: 0;
  background: none;
  border-radius: var(--bs-border-radius);
  transition: all .3s ease;
}

.product-wrapper .thumbnails button:not(.active) {
  opacity: 0.5;
}

.product-wrapper .thumbnails button img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.product-wrapper .badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-wrapper .badges div {
  background: var(--cl-accent);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 0.125rem;
}

.product-tabs .editor p {
  margin-bottom: 0;
}

.product-wrapper .buy-buttons .btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.input-group-btn svg {
  width: 24px;
  height: 24px;
}

.variants {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.variants .variant {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  position: relative;
  padding: 0.375rem 0.775rem 0.375rem 0.375rem;
  background: var(--bs-gray-bg);
  border-radius: var(--bs-border-radius);
  border: var(--bs-border-width) solid var(--bs-border-color);
}

.variants .variant.active {
  color: var(--bs-body-color);
  background-color: var(--bs-gray-bg);
  border-color: var(--bs-btn-border-color);
  outline: 0;
}

.variants .variant {
  padding: 0.5rem 0.75rem;
}

.variants .variant .name-stock {
  text-align: left;
}

.variants .variant .name,
.variants .variant .stock {
  margin-bottom: 0;
}

.variants .variant .description {
  font-size: 0.875rem;
  color: #a3a3a3;
}

.variants .variant .stock {
  font-size: 0.75rem;
}

.variants .variant .price {
  padding: 0.25rem 0.5rem;
  border-radius: var(--bs-border-radius);
  background: rgba(255, 255, 255, 0.025);
  color: #a3a3a3;
  font-weight: 500;
}

.variants .variant .active-indicator {
  position: absolute;
  top: -12px;
  right: -4px;
  z-index: 1;
  background: var(--bs-gray-bg);
  border-radius: 50%;
}

.variants .variant .active-indicator svg {
  width: 24px;
  height: 24px;
}

.live-stats svg {
  width: 1.25rem;
  height: 1.25rem;
}

.live-stats p {
  margin-bottom: 0;
  flex: 1;
}

/* Testimonials */
.testimonials .col-12 {
  margin-bottom: var(--bs-gutter-x);
}

.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: var(--bs-border-radius);
  background: var(--bs-gray-bg);
}

.testimonial .header {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem 0 1.5rem;
  margin-bottom: 0.5rem;
}

.testimonial .header svg {
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(255, 255, 255, 0.1);
}

.testimonial .header p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.testimonial .stars svg {
  width: 1rem;
  height: 1rem;
}

.testimonial .content {
  padding: 0 1.5rem;
}

.testimonial .content .message {
  word-break: break-word;
}

.testimonial .content .reply {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--bs-border-radius);
}

.testimonial .content .reply .text {
  margin: 0;
  font-size: 0.875rem;
  padding-left: 0.5rem;
  border-left: 0.125rem solid var(--cl-accent);
  word-break: break-word;
}

.testimonial .content .reply .author {
  font-size: 0.8rem;
  margin: 1rem 0 0 0;
  text-align: right;
  color: #a3a3a3;
}

.testimonial .content .reply .author span {
  color: var(--cl-accent);
}

.testimonial .footer {
  padding: 0.4rem 0.6rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius);
  color: #a3a3a3;
}

.testimonial .footer p {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.testimonial .footer svg {
  width: 1.15rem;
  height: 1.15rem;
  margin-right: 0.25rem;
  color: #27ae60;
}

.testimonial .footer .date {
  font-weight: 600;
}

.pagination .page-item:not(.active) .page-link {
  color: var(--bs-secondary-color);
  background-color: var(--bs-gray-bg);
}

/* BLOCKS */
.bg-block-primary {
  background-color: var(--bs-body-bg);
}

.bg-block-secondary {
  background-color: var(--bs-gray-bg);
}

.text-block.alignment-center,
.text-image-block.alignment-center,
.text-video-block.alignment-center {
  text-align: center;
}

.text-block.alignment-center .section-title,
.text-block.alignment-center .section-subtitle,
.text-image-block.alignment-center .section-title,
.text-image-block.alignment-center .section-subtitle,
.text-video-block.alignment-center .section-title,
.text-video-block.alignment-center .section-subtitle {
  justify-content: center;
}

.text-block.alignment-right,
.text-image-block.alignment-right,
.text-video-block.alignment-right {
  text-align: right;
}

.text-block.alignment-right .section-title,
.text-block.alignment-right .section-subtitle,
.text-image-block.alignment-right .section-title,
.text-image-block.alignment-right .section-subtitle,
.text-video-block.alignment-right .section-title,
.text-video-block.alignment-right .section-subtitle {
  justify-content: flex-end;
}

.text-image-block.alignment-right .row,
.text-video-block.alignment-right .row {
  flex-direction: row-reverse;
}

.text-image-block .section-subtitle,
.text-video-block .section-subtitle {
  margin: -1rem 0 1rem 0;
}

.text-image-block .row,
.text-video-block .row {
  --bs-gutter-x: 4rem;
  --bs-gutter-y: 2rem;
}

.text-image-block img,
.text-video-block iframe {
  width: 100%;
  border-radius: var(--bs-border-radius);
}

.text-image-block .aspect-16\/9 img,
.text-image-block .aspect-4\/3 img,
.text-image-block .aspect-1\/1 img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  border-radius: var(--bs-border-radius);
}

.text-image-block .aspect-16\/9 img {
  aspect-ratio: 16/9;
}

.text-image-block .aspect-4\/3 img {
  aspect-ratio: 4/3;
}

.text-image-block .aspect-1\/1 img {
  aspect-ratio: 1/1;
}

.text-video-block .video-wrapper {
  display: flex;
  justify-content: center;
}

.text-video-block iframe {
  aspect-ratio: 16/9;
}

.image-gallery .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

.image-gallery .aspect-16\/9 img,
.image-gallery .aspect-4\/3 img,
.image-gallery .aspect-1\/1 img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  border-radius: var(--bs-border-radius);
}

.image-gallery .aspect-16\/9 img {
  aspect-ratio: 16/9;
}

.image-gallery .aspect-4\/3 img {
  aspect-ratio: 4/3;
}

.image-gallery .aspect-1\/1 img {
  aspect-ratio: 1/1;
}

.faq .accordion {
  --bs-accordion-border-color: transparent;
  --bs-accordion-bg: transparent;
  --bs-accordion-btn-color: #f1f3fb;
  --bs-accordion-active-color: #f1f3fb;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-focus-border-color: transparent;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23888' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23aa4ff0' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  max-width: none;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq .accordion-item {
  margin-bottom: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: background-color 0.2s ease;
}

.faq .accordion-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.faq .accordion-button {
  min-height: 56px;
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  color: #f1f3fb;
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  background: transparent;
  color: #f1f3fb;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button::after {
  width: 18px;
  height: 18px;
  background-size: 18px 18px;
}

.faq .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23aa4ff0' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
}

/* Landing page FAQ only: closed icon neutral, open icon purple */
.faq.component[data-component-id="faq-1746940792457"] .accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23888' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
}

.faq.component[data-component-id="faq-1746940792457"] .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23aa4ff0' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
}

.faq .accordion-body {
  padding: 0 22px 22px;
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  background: rgba(0, 0, 0, 0.2);
}

.faq .accordion-body p:last-child {
  margin-bottom: 0;
}

/* TROUBLESHOOT COMPONENT */
.troubleshoot .accordion {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  --bs-accordion-border-color: transparent;
  --bs-accordion-bg: transparent;
  --bs-accordion-btn-color: #f3f6fb;
  --bs-accordion-active-color: #ffffff;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-focus-border-color: transparent;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23707580' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c49bf5' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: faq-counter;
}

.troubleshoot .accordion-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(20px) saturate(110%);
  -webkit-backdrop-filter: blur(20px) saturate(110%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
  counter-increment: faq-counter;
}

.troubleshoot .accordion-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.troubleshoot .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(170, 79, 240, 0.18);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(170, 79, 240, 0.05);
}

.troubleshoot .accordion-button {
  min-height: 64px;
  padding: 18px 24px;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease, background 0.2s ease;
}

.troubleshoot .accordion-button::before {
  content: counter(faq-counter);
  min-width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.3s ease;
}

.troubleshoot .accordion-button:not(.collapsed)::before {
  background: rgba(170, 79, 240, 0.14);
  border-color: rgba(170, 79, 240, 0.24);
  color: #c9a4f5;
}

.troubleshoot .accordion-button:not(.collapsed) {
  background: transparent;
  color: #ffffff;
}

.troubleshoot .accordion-button::after {
  width: 18px;
  height: 18px;
  background-size: 18px 18px;
  opacity: 0.5;
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.troubleshoot .accordion-button:not(.collapsed)::after {
  opacity: 1;
}

.troubleshoot .accordion-button:hover::after {
  opacity: 0.7;
}

.troubleshoot .accordion-button:focus {
  box-shadow: none;
}

.troubleshoot .accordion-collapse {
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.troubleshoot .accordion-body {
  padding: 18px 28px 28px 69px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.78;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
  border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.troubleshoot .accordion-body p:last-child {
  margin-bottom: 0;
}

.troubleshoot .accordion-body strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.troubleshoot .accordion-body code {
  background: rgba(255, 255, 255, 0.065);
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 0.87em;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.troubleshoot .accordion-body a {
  color: #c4a0f0;
  text-decoration: none;
  border-bottom: 1px solid rgba(170, 79, 240, 0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.troubleshoot .accordion-body a:hover {
  color: #dbc2f7;
  border-bottom-color: rgba(170, 79, 240, 0.55);
}

.troubleshoot .accordion-body img {
  border-radius: 4px;
}

.troubleshoot .accordion-body sm {
  display: block;
  margin-top: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid rgba(170, 79, 240, 0.28);
  border-radius: 0 8px 8px 0;
  font-size: 0.88em;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

.troubleshoot .accordion-body sm strong {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
  .troubleshoot .accordion {
    gap: 8px;
  }

  .troubleshoot .accordion-item {
    border-radius: 12px;
  }

  .troubleshoot .accordion-button {
    min-height: 56px;
    padding: 14px 16px;
    gap: 12px;
    font-size: 0.92rem;
  }

  .troubleshoot .accordion-button::before {
    min-width: 26px;
    height: 26px;
    flex: 0 0 26px;
    font-size: 0.72rem;
    border-radius: 7px;
  }

  .troubleshoot .accordion-body {
    padding: 14px 18px 22px 54px;
    font-size: 0.9rem;
    line-height: 1.72;
  }
}

/* STATUS */
.status-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.status-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bs-gray-bg);
  border-radius: var(--bs-border-radius);
  text-decoration: none;
}

.status-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

.status-group {
  margin-bottom: 1rem;
}

.status-group h2 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
}

.status {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status .indicator {
  position: relative;
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
}

.status .label {
  font-weight: 600;
}

.pulsating {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  opacity: 0;
  pointer-events: none;
  animation: pulsating 1.25s linear infinite;
}

@keyframes pulsating {
  0% {
    opacity: 0.4;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#snow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  z-index: 9999;
}

#snow .snowflake {
  position: absolute;
  width: 10px;
  height: 10px;
  margin-top: -10px;
  border-radius: 100%;
  background: rgba(var(--cl-snow, 255, 255, 255, 1));
}

.cart .btn-outline-primary svg {
  width: 1.25rem;
  height: 1.25rem;
}
 
.cart .product {
  background: var(--bs-gray-bg);
}

.cart .form {
  background: var(--bs-gray-bg);
}

/* Container for the notification */
.notification-container {
  position: relative;
}

.notification-popup {
  position: fixed;
  z-index: 1050;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}

@media (min-width: 640px) {
  .notification-popup {
    right: auto;
  }
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: var(--bs-gray-bg);
  border-radius: var(--bs-border-radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.notification-image-container {
  position: relative;
}

.notification-image {
  width: 3.75rem;
  height: 3.75rem;
  object-fit: cover;
  border-radius: var(--bs-border-radius);
}

@media (min-width: 640px) {
  .notification-image {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.notification-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 0.5rem;
}

.notification-text-primary {
  margin-bottom: 0;
  font-size: 0.75rem;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .notification-text-primary {
    font-size: 0.875rem;
  }
}

.notification-text-secondary {
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .notification-text-secondary {
    font-size: 1rem;
  }
}

.notification-text-tertiary {
  margin-bottom: 0;
  font-size: 0.75rem;
  opacity: 0.75;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .notification-text-tertiary {
    font-size: 0.875rem;
  }
}

.flag-icon {
  width: 0.625rem;
  height: 0.625rem;
}

@media (min-width: 640px) {
  .flag-icon {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.currency-selector {
  max-width: 153px;
}

.currency-selector select {
  width: 80px;
  height: 40px;
  background-color: transparent;
  border: 1px solid var(--cl-accent);
  border-radius: var(--bs-border-radius);
  outline: none;
  color: transparent;
}

.currency-selector .symbol {
  display: inline-block;
  width: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  color: var(--cl-accent) !important;
  text-align: center;
  padding: 0.125rem 0.25rem;
  margin-right: 0.25rem;
}

.currency-selector .default {
  font-size: 0.75rem;
  opacity: 0.75;
}

.currency-selector .choices__inner {
  min-width: 5rem !important;
  height: 40px !important;
  border-radius: var(--bs-border-radius);
  background-color: transparent !important;
  border: 1px solid var(--cl-accent) !important;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.currency-selector .choices.is-open .choices__inner {
  border-color: var(--cl-accent) !important;
}

.currency-selector .choices__inner .symbol {
  background-color: transparent;
  color: var(--cl-accent);
  min-width: 0;
}

.currency-selector .choices__inner .code,
.currency-selector .choices__inner .default {
  display: none;
}

.currency-selector .choices__inner .choices__item {
  max-width: 50px;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}

.currency-selector .choices__list.choices__list--dropdown {
  min-width: 11rem !important;
  margin-top: 0.5rem;
  border-radius: var(--bs-border-radius);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.currency-selector .choices__list::-webkit-scrollbar {
  display: none;
}

.currency-selector .choices__list--dropdown .choices__item--selectable {
  padding-right: 0.625rem !important;
}

.currency-selector .choices__list--dropdown .choices__item--selectable.is-highlighted::after {
  display: none;
}

.choices {
  border-radius: 0.5rem;
  margin-bottom: 0 !important;
}

.choices.is-open {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.choices .choices__inner {
  min-height: 2.5rem;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.025);
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  width: 100%;
  border: 0;
}

.choices[data-type*="select-one"] .choices__inner {
  padding: 0.5rem 1rem;
}

.choices .choices__list.choices__list--single {
  padding: 0;
}

.choices.is-open .choices__inner {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.choices .choices__list.choices__list--dropdown {
  background-color: var(--bs-gray-bg);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.choices.is-open .choices__list--dropdown,
.choices.is-open .choices__list[aria-expanded] {
  border-color: rgba(255, 255, 255, 0.1);
}

.choices[data-type*="select-one"] .choices__list .choices__input {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.choices[data-type*="select-one"] .choices__list.choices__list--dropdown .choices__input {
  background-color: rgba(255, 255, 255, 0.025);
  color: #fff;
}

.choices .choices__list--dropdown .choices__item,
.choices .choices__list[aria-expanded] .choices__item {
  background-color: rgba(255, 255, 255, 0.025);
  color: #fff;
}

.choices .choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: var(--accent-500);
  color: white;
}

.choices .choices[data-type*="select-one"] .choices__input {
  background-color: var(--accent-500);
  color: white;
}

/* New editor */
.editor .rtl {
  direction: rtl;
}

.editor .e-paragraph {
  position: relative;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  word-wrap: break-word;
}

.editor .e-quote {
  font-size: 1rem;
  padding-left: 1rem;
  border-left-color: var(--cl-accent);
  border-left-width: 0.25rem;
  border-left-style: solid;
}

.editor .e-hr, .editor hr {
  border-top: 1px solid var(--cl-accent);
  margin: 0.5rem 0;
}

.editor .e-heading-h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-bottom: 0;
}

.editor .e-heading-h2 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin-bottom: 0;
}

.editor .e-heading-h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 0;
}

.editor .e-nested-listitem {
  list-style-type: none;
}

.editor .e-list-ol {
  padding: 0;
  margin: 0;
  margin-left: 1rem;
  list-style-type: decimal;
}

.editor .e-list-ul {
  padding: 0;
  margin: 0;
  margin-left: 1rem;
  list-style-type: disc;
}

.editor .e-listitem {
  margin: 0.5rem 1rem 0.5rem 1rem;
}

.editor .e-image img {
  max-width: 100%;
  height: auto;
}

.editor .e-youtube iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

.editor .e-link {
  color: var(--cl-accent);
  text-decoration: underline;
}

.editor .e-text-bold {
  font-weight: bold;
}

.editor .e-text-code {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.0625rem 0.25rem;
  font-family: monospace;
  font-size: 95%;
}

.editor .e-text-italic {
  font-style: italic;
}

.editor .e-text-strikethrough {
  text-decoration: line-through;
}

.editor .e-text-underline {
  text-decoration: underline;
}

.editor .e-text-underlineStrikethrough {
  text-decoration: underline line-through;
}

.editor .e-code {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.5rem;
  font-family: monospace;
  border-radius: var(--bs-border-radius);
}

.editor .e-collapsible {
  margin: 0.25rem 0 0.25rem 0;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}

.editor .e-collapsible-title {
  display: block; 
  position: relative; 
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  font-weight: 600;
}

.editor .e-collapsible-title::marker,
.editor .e-collapsible-title::-webkit-details-marker {
  display: none;
}

.editor .e-collapsible-title:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0.625rem;
  transform: translateY(-50%);
  border: 1px solid transparent;
  border-left-color: var(--cl-accent);
  border-width: 4px 6px 4px 6px;
}

.editor .e-collapsible[open] > .editor .e-collapsible-title:before {
  border-left-color: transparent;
  border-top-color: var(--cl-accent);
  border-width: 6px 4px 0 4px;
}

.editor .e-collapsible-content {
  padding: 0.5rem;
  border-top: 1px solid var(--bs-border-color);
}

/* BUILDER */
.builder .component {
  position: relative;
}

.builder .component .builder-toolbar {
  display: none;
}

.builder .component:hover .builder-toolbar {
  display: block;
}

.builder .builder-toolbar {
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
}

.builder .builder-toolbar .actions {
  background: #070d19;
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: var(--bs-border-radius);
}

.builder .builder-toolbar .actions button {
  padding: 0.5rem;
  border-radius: var(--bs-border-radius);
  background: #0c1427;
  border: 0;
}

.builder .builder-toolbar .actions button:hover {
  background: #0a0f1f;
}

.builder .builder-toolbar .actions button svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #ffffff;
}

.builder .announcement .builder-toolbar .actions button:not(.edit),
.builder .navbar .builder-toolbar .actions button:not(.edit),
.builder .footer .builder-toolbar .actions button:not(.edit) {
  display: none;
}

.grecaptcha-badge { 
  visibility: hidden;
}

:root {
  --altcha-border-width: 1px;
  --altcha-border-radius: var(--bs-border-radius);
  --altcha-color-base: rgba(255, 255, 255, 0.025);
  --altcha-color-border: rgba(255, 255, 255, 0.05);
  --altcha-color-text: #fff;
  --altcha-color-border-focus: currentColor;
  --altcha-color-error-text: #ef4444;
  --altcha-color-footer-bg: #f4f4f4;
  --altcha-max-width: 600px;
}
#app > div:nth-child(1) > div > section.hero.alignment-left.height-short.component > div.container > div.content > h1.finished {
  width: 75%; /* Keep text visible */
}
#app > div:nth-child(1) > div > section.hero.alignment-left.height-short.component > div.container > div.content > h1.finished {
  width: 70%; /* Keep text visible */
}

#app > div:nth-child(1) > div > section.hero.alignment-left.height-short.component > div.container > div.content > h1.finished {
  animation: fadeCursor 0.4s ease forwards;
}
