/**

1.  Single-Product-Page

2. Cart

3. Checkout 
**/



.popup-cart {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: min(390px, calc(100vw - 32px));
  padding: 16px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035)),
    rgba(6, 7, 9, .94);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px);
  font-size: 13px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 14px, 0);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2147482500;
}

.popup-cart.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.popup-cart-icon {
  background: #ffffff;
  color: #050505;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}

.popup-cart.error .popup-cart-icon {
  color: #ffffff;
  background: rgba(217, 45, 32, .9);
}

.popup-cart-content {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.popup-cart-content strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.popup-cart-content span {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.35;
}

.popup-cart-link {
  grid-column: 2;
  justify-self: start;
  margin-top: 8px;
  color: #050505 !important;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.popup-cart-link:hover {
  color: #ffffff !important;
  background: transparent;
  border-color: rgba(255, 255, 255, .42);
}

.btn-main.is-loading {
  opacity: .72;
  cursor: wait;
}

@media only screen and (max-width: 767px) {
  .popup-cart {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 14px;
  }

  .popup-cart-link {
    grid-column: 2;
  }
}

#cart-section {
  margin: 0;
  padding: 90px 0 110px;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.075), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(255, 255, 255, 0.045), transparent 32%),
    linear-gradient(180deg, #030405 0%, #000 100%);
}

#cart-section.cart-section-empty {
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-empty-state {
  width: min(100%, 540px);
  padding: 48px 32px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.cart-empty-state h5 {
  margin-bottom: 8px;
  color: #ffffff;
}

.cart-empty-state p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.cart-empty-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #050505;
  background: #ffffff;
  border-radius: 8px;
  font-size: 22px;
}

.cart-empty-icon .fa-shopping-cart {
  color: #050505 !important;
}

.cart-container {
  font-family: var(--body-font);
  color: var(--body-font-color);
  border-radius: 8px;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-title {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 24px;
  color: var(--body-font-color);
}

.cart-actions button {
  padding: 10px 20px;
  margin-left: 10px;
  background-color: var(--bg-dark-3);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.cart-actions .btn-clear {
  background-color: var(--bg-color-even);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  border: var(--border-default);
}

.cart-item-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 5px;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 18px;
  font-weight: bold;
}

.cart-item-description {
  font-size: 14px;
  color: var(--dark-body-font-color);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-quantity button {
  background-color: var(--bg-dark-3);
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.btn-remove {
    background-color: var(--bg-dark-3);
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.cart-item-price {
  margin-left: 20px;
  font-weight: bold;
}

.cart-item-total {
  color: var(--body-font-color);
}

.privacy-hero {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 72px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 36%),
    linear-gradient(135deg, #050506 0%, #101114 46%, #000 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-hero h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.privacy-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.privacy-updated {
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.privacy-updated span,
.privacy-updated strong {
  display: block;
}

.privacy-updated span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.privacy-updated strong {
  margin-top: 6px;
  color: #fff;
  font-size: 24px;
}

.privacy-section {
  padding: 70px 0 110px;
  background: #000;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.privacy-toc {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.privacy-toc a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.privacy-toc a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.privacy-content {
  display: grid;
  gap: 14px;
}

.privacy-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.privacy-card h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 24px;
  letter-spacing: 0;
}

.privacy-card p,
.privacy-card li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.privacy-card p {
  margin: 0;
}

.privacy-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.privacy-contact-btn {
  margin-top: 18px;
}

.privacy-note {
  display: flex;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.08);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.privacy-note strong {
  color: #fff;
}

@media (max-width: 991px) {
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .privacy-hero {
    min-height: 360px;
    padding: 126px 0 52px;
  }

  .privacy-hero p {
    font-size: 16px;
  }

  .privacy-section {
    padding: 46px 0 76px;
  }

  .privacy-toc {
    grid-template-columns: 1fr;
  }

  .privacy-card {
    padding: 20px;
  }

  .privacy-note {
    display: block;
  }
}

.cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.total {
  font-size: 18px;
  font-weight: bold;
}

.total-price {
  font-size: 20px;
  color: var(--body-font-color);
}

.btn-checkout {
  background-color: var(--bg-dark-3);
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-checkout:hover {
  background-color: var(--bg-dark-2);
}

.cart-summary {
  position: sticky;
  top: 20px;
}

.btn-checkout {
  transition: all 0.3s ease;
  padding: 12px;
  font-weight: 600;
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cart-item {
  transition: background-color 0.2s ease;
}

.cart-item:hover {
  background-color: var(--bg-dark-4);
}

.form-select {
  cursor: pointer;
}

.cart-shell {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  padding-bottom: 28px;
}

.cart-page-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.cart-page-heading h2 {
  margin: 0;
  color: #ffffff;
}

.cart-continue-link {
  color: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 700;
}

.cart-continue-link:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 28px;
  align-items: start;
}

.cart-items-list {
  display: grid;
  gap: 16px;
}

#cart-section .cart-item {
  display: block;
  padding: 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(5, 6, 8, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

#cart-section .cart-item:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background-color: rgba(10, 11, 13, 0.92);
  transform: translateY(-1px);
}

.cart-item-grid {
  position: relative;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) minmax(150px, auto);
  gap: 22px;
  align-items: center;
  padding: 22px;
}

.cart-item-media {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

#cart-section .cart-item-img {
  width: 82px;
  height: 82px;
  margin: 0;
  object-fit: contain;
  border-radius: 6px;
  filter: grayscale(1) contrast(1.1);
}

.cart-item-main {
  min-width: 0;
}

.cart-item-heading {
  margin-bottom: 8px;
}

.cart-plan-label {
  display: inline-flex;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

#cart-section .cart-item-title {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.12;
}

#cart-section .cart-item-description {
  max-width: 56ch;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.cart-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.cart-specs span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.cart-item-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cart-quantity-control {
  display: inline-flex;
  align-items: center;
  height: 42px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.cart-quantity-control button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 0;
}

.cart-quantity-control button:hover {
  color: #050505;
  background: #ffffff;
}

.cart-quantity-control .quantity {
  min-width: 42px;
  color: #ffffff;
  font-weight: 900;
  text-align: center;
}

#cart-section .subscription-duration {
  width: min(100%, 210px);
  height: 42px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  box-shadow: none;
}

#cart-section .subscription-duration:focus {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

#cart-section .btn-remove {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  padding: 0;
  color: rgba(255, 255, 255, 0.72) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 6px;
}

#cart-section .cart-item-price-block .btn-remove {
  position: absolute;
  top: 22px;
  right: 22px;
}

#cart-section .btn-remove:hover {
  color: #050505 !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
}

.cart-item-price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  text-align: right;
}

#cart-section .cart-item-total {
  margin: 0;
  color: #ffffff;
  font-size: 26px;
  font-family: var(--title-font);
  font-weight: 900;
  line-height: 1;
}

.cart-price-note {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.56) !important;
}

#cart-section .cart-summary {
  position: sticky;
  top: 104px;
}

.cart-summary-panel {
  padding: 26px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(6, 7, 9, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.cart-summary-kicker {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cart-summary-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  color: #ffffff;
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 900;
}

.cart-summary-status {
  padding: 5px 9px;
  color: #050505;
  background: #ffffff;
  border-radius: 6px;
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 900;
}

.cart-summary-lines {
  display: grid;
  gap: 13px;
  margin-bottom: 22px;
}

.cart-summary-line,
.cart-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-summary-line {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.cart-summary-line strong {
  color: #ffffff;
  font-weight: 800;
}

.cart-summary-total {
  margin-top: 6px;
  padding-top: 18px;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 900;
}

.cart-summary-total strong {
  font-size: 28px;
}

.cart-checkout-button {
  margin-bottom: 18px;
  text-align: center;
}

.cart-summary-note {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary-note span {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  background: #8B5CF6;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.65);
}

.cart-summary-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  #cart-section {
    padding: 70px 0 90px;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  #cart-section .cart-summary {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767px) {
  #cart-section .cart-item-price-block .btn-remove {
    top: 18px;
    right: 18px;
  }

  .cart-shell {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cart-page-heading {
    display: block;
  }

  .cart-continue-link {
    display: inline-flex;
    margin-top: 12px;
  }

  .cart-item-grid {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
  }

  .cart-item-media {
    width: 86px;
    height: 86px;
  }

  #cart-section .cart-item-img {
    width: 62px;
    height: 62px;
  }

  .cart-item-price-block {
    grid-column: 1 / -1;
    align-items: flex-start;
    text-align: left;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  #cart-section .cart-item-title {
    font-size: 20px;
  }
}

.input-error {
  border: 2px solid red !important;
  background-color: #ffe6e6;
}

@media (max-width: 768px) {
  .cart-item-img {
    margin-bottom: 15px;
  }
}

#registerForm #phone.form-control {
  color: #fff !important;
  border: solid 2px rgba(255, 255, 255, 0.2) !important;
  background: rgba(34, 34, 34, 0) !important;
  background-color: rgba(34, 34, 34, 0) !important;
}

#registerForm #phone.form-control:focus {
  box-shadow: none !important;
  border-color: rgba(var(--primary-color-rgb), 0.75) !important;
  background: rgba(34, 34, 34, 0) !important;
  background-color: rgba(34, 34, 34, 0) !important;
}

#registerForm #phone:-webkit-autofill,
#registerForm #phone:-webkit-autofill:hover,
#registerForm #phone:-webkit-autofill:focus,
#registerForm #phone:-webkit-autofill:active {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px rgba(17, 17, 17, 1) inset !important;
  transition: background-color 9999s ease-out 0s;
  caret-color: #ffffff;
}

.store-download-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.store-download-actions a {
  display: inline-flex;
}

.aihosting-download-badge {
  min-height: 47px;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  color: #ffffff;
  background: rgba(10, 11, 13, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
}

.aihosting-download-badge:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
}

.aihosting-download-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.app-info-panel {
  overflow: hidden;
  min-height: 420px;
}

.app-info-ai-visual {
  width: min(48%, 460px);
  max-height: 92%;
  object-fit: contain;
  right: 28px !important;
  bottom: 0 !important;
  pointer-events: none;
}

.store-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
}

.store-brand-link:hover {
  color: #ffffff;
}

.store-brand-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.store-footer-brand {
  font-size: 24px;
}

.store-footer-brand img {
  width: 34px;
  height: 34px;
}

#products .de-item .d-overlay .d-label {
  color: #000000;
}

.store-products-actions {
  margin-top: 36px;
}

/* Store luxury black/white layer, merged from the old inDevelopment design. */
html {
  background: #000;
}

body.dark-scheme {
  --primary-color: #ffffff;
  --primary-color-rgb: 255, 255, 255;
  --secondary-color: #a1a1a6;
  --secondary-color-rgb: 161, 161, 166;
  --tertiary-color: #ffffff;
  --tertiary-color-rgb: 255, 255, 255;
  --bg-dark-1: #050505;
  --bg-dark-1-rgb: 5, 5, 5;
  --bg-dark-2: #0b0b0c;
  --bg-dark-3: #111113;
  color: #ffffff;
  background: #000;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dark-scheme h1,
body.dark-scheme h2,
body.dark-scheme h3,
body.dark-scheme h4,
body.dark-scheme h5,
body.dark-scheme h6,
body.dark-scheme .btn-main,
body.dark-scheme .subtitle,
body.dark-scheme .sw-price .d-price,
body.dark-scheme input,
body.dark-scheme button,
body.dark-scheme select,
body.dark-scheme textarea {
  font-family: inherit;
  letter-spacing: 0;
}

body.dark-scheme h1,
body.dark-scheme h2,
body.dark-scheme h3,
body.dark-scheme h4,
body.dark-scheme h5,
body.dark-scheme h6 {
  color: #ffffff;
  font-weight: 700;
}

body.dark-scheme a {
  color: #ffffff;
}

body.dark-scheme .text-gradient,
body.dark-scheme .store-location-count-gradient,
body.dark-scheme .sw-price .d-val,
body.dark-scheme .gradient {
  background: linear-gradient(180deg, #ffffff 0%, #9b9ba1 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

body.dark-scheme .bg-gradient-to-right,
body.dark-scheme .bg-gradient-to-right-2,
body.dark-scheme .bg-gradient-to-top-right,
body.dark-scheme .gradient-soft,
body.dark-scheme .gradient-soft-2,
body.dark-scheme .gradient-soft-45,
body.dark-scheme .overlay-gradient,
body.dark-scheme header.header-gradient {
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)) !important;
}

body.dark-scheme header,
body.dark-scheme header.transparent,
body.dark-scheme header.header-mobile {
  background: rgba(0, 0, 0, .72) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
}

body.dark-scheme .store-brand-link {
  color: #ffffff;
  font-weight: 700;
}

body.dark-scheme #mainmenu a,
body.dark-scheme #mainmenu .menu-item {
  color: #ffffff !important;
  font-weight: 600;
}

body.dark-scheme #mainmenu a:hover,
body.dark-scheme #mainmenu .menu-item:hover {
  color: #ffffff !important;
}

body.dark-scheme #mainmenu ul,
body.dark-scheme .mega,
body.dark-scheme .sb-menu {
  background: rgba(12, 12, 13, .92) !important;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
  backdrop-filter: blur(20px);
}

body.dark-scheme .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 7px 15px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, .055) !important;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

body.dark-scheme .subtitle.blink:before {
  position: static;
  width: 8px;
  height: 8px;
  margin: 0;
  background: #f5f5f7;
  box-shadow: 0 0 16px rgba(255, 255, 255, .32);
}

body.dark-scheme a.btn-main,
body.dark-scheme .btn-main,
body.dark-scheme button.btn-main,
body.dark-scheme input[type="submit"],
body.dark-scheme .cart-checkout-button button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  min-height: 46px;
  padding: 14px 22px;
  color: #050505 !important;
  background: #f5f5f7 !important;
  border: 1px solid rgba(255, 255, 255, .9) !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 28px rgba(255, 255, 255, .055), inset 0 1px 0 rgba(255, 255, 255, .8) !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

body.dark-scheme a.btn-main span,
body.dark-scheme .btn-main span {
  color: #050505 !important;
}

body.dark-scheme a.btn-main:hover,
body.dark-scheme .btn-main:hover,
body.dark-scheme button.btn-main:hover {
  color: #000 !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
  transform: translateY(-1px);
}

body.dark-scheme a.btn-main.btn-line,
body.dark-scheme .btn-main.btn-line,
body.dark-scheme .store-mobile-nav-button-secondary {
  min-height: 42px;
  padding: 12px 18px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, .045) !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  box-shadow: none !important;
}

body.dark-scheme a.btn-main.btn-line span,
body.dark-scheme .btn-main.btn-line span,
body.dark-scheme .store-mobile-nav-button-secondary span {
  color: #ffffff !important;
}

body.dark-scheme section,
body.dark-scheme #content,
body.dark-scheme footer {
  background-color: #000;
}

body.dark-scheme .store-mobile-nav-button-secondary .fa-shopping-cart,
body.dark-scheme header.header-mobile #mainmenu li.store-mobile-nav-actions .store-mobile-nav-button-secondary .fa-shopping-cart {
  color: #050505 !important;
}

body.dark-scheme header #mainmenu a.menu-item,
body.dark-scheme header #mainmenu a.menu-item:link,
body.dark-scheme header #mainmenu a.menu-item:visited,
body.dark-scheme header #mainmenu a.menu-item:active,
body.dark-scheme header.transparent #mainmenu a.menu-item,
body.dark-scheme header.transparent #mainmenu a.menu-item:link,
body.dark-scheme header.transparent #mainmenu a.menu-item:visited,
body.dark-scheme header.transparent #mainmenu a.menu-item:active {
  color: #ffffff !important;
  text-decoration: none !important;
}

body.dark-scheme header #mainmenu a.menu-item:hover,
body.dark-scheme header.transparent #mainmenu a.menu-item:hover {
  color: #d9d9df !important;
  text-decoration: none !important;
}

body.dark-scheme #subheader,
body.dark-scheme #subheader-cart,
body.dark-scheme .auth-digital-section,
body.dark-scheme .store-support-page-section,
body.dark-scheme #products,
body.dark-scheme .products-binary-banner,
body.dark-scheme .ai-services-neural-banner,
body.dark-scheme .app-grid-background,
body.dark-scheme .auth-digital-banner,
body.dark-scheme .product-subheader-neural-banner,
body.dark-scheme .cart-subheader-neural-banner {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .075), transparent 30%),
    linear-gradient(180deg, #050506 0%, #000 78%) !important;
}

body.dark-scheme .swiper-inner.ai-hero-slide {
  background:
    radial-gradient(circle at 64% 42%, rgba(255, 255, 255, .1), transparent 28%),
    linear-gradient(180deg, #08080a 0%, #000 74%) !important;
}

body.dark-scheme .swiper-inner.ai-hero-slide:after,
body.dark-scheme .ai-hero-digital-lines,
body.dark-scheme .auth-digital-lines {
  display: none !important;
}

body.dark-scheme .swiper-inner.ai-hero-slide:before,
body.dark-scheme .products-binary-banner:before,
body.dark-scheme .auth-digital-banner:before {
  opacity: .16 !important;
  background-size: 46px 46px !important;
}

body.dark-scheme .ai-hero-product-mark,
body.dark-scheme .de-item img,
body.dark-scheme .img-fluid[src*="/covers/"],
body.dark-scheme .img-fluid[src*="/covers-landscape/"],
body.dark-scheme .img-fluid[src*="/misc/server"] {
  filter: grayscale(1) saturate(0) brightness(.92) contrast(1.06) !important;
}

body.dark-scheme img[src*="/Store/images/icons/"] {
  filter: brightness(0) invert(1) !important;
  opacity: .96;
}

body.dark-scheme .ai-hero-product-mark {
  opacity: .96;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  box-shadow: 0 44px 120px rgba(0, 0, 0, .52), inset 0 1px 0 rgba(255, 255, 255, .08);
}

body.dark-scheme .ai-hero-slide .slider-title {
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: none !important;
  font-weight: 700;
  letter-spacing: 0;
}

body.dark-scheme .ai-hero-slide .slider-text {
  color: #ffffff !important;
  letter-spacing: 0;
}

body.dark-scheme .ai-hero-slide .sw-overlay,
body.dark-scheme #subheader.product-neural-subheader:after,
body.dark-scheme #subheader-cart.cart-neural-subheader:after,
body.dark-scheme #subheader.knowledgebase-digital-subheader:before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .68) 46%, rgba(0, 0, 0, .28) 76%, rgba(0, 0, 0, .58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .06) 0%, rgba(0, 0, 0, .82) 100%) !important;
}

body.dark-scheme .de-item,
body.dark-scheme .de-box,
body.dark-scheme .de-box-cat,
body.dark-scheme .pricing-box,
body.dark-scheme .de-pricing-plan,
body.dark-scheme .accordion-section,
body.dark-scheme .store-faq-content .accordion-section,
body.dark-scheme .cart-empty-state,
body.dark-scheme .cart-container,
body.dark-scheme .checkout-panel,
body.dark-scheme .checkout-card,
body.dark-scheme .bg-dark-1,
body.dark-scheme .ai-services-neural-panel,
body.dark-scheme .app-info-panel,
body.dark-scheme .store-support-cta {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
    rgba(7, 7, 8, .82) !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 8px !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28) !important;
  backdrop-filter: blur(12px);
}

body.dark-scheme .de-item:hover,
body.dark-scheme .de-box:hover,
body.dark-scheme .de-box-cat:hover,
body.dark-scheme .de-pricing-plan:hover {
  border-color: rgba(255, 255, 255, .22) !important;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36) !important;
}

body.dark-scheme .de-item .d-overlay,
body.dark-scheme .de-item .d-overlay:before,
body.dark-scheme .de-item .d-overlay:after,
body.dark-scheme .product-canvas-visual:after,
body.dark-scheme .ai-services-neural-panel:before,
body.dark-scheme .app-info-panel:before,
body.dark-scheme .de-box-cat.store-knowledge-card:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .72)) !important;
}

body.dark-scheme .product-canvas-visual,
body.dark-scheme .product-canvas-visual-binary {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .1), transparent 36%),
    linear-gradient(180deg, #111113 0%, #030303 100%) !important;
}

body.dark-scheme input,
body.dark-scheme select,
body.dark-scheme textarea,
body.dark-scheme .form-control {
  color: #ffffff !important;
  background: rgba(255, 255, 255, .045) !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

body.dark-scheme input::placeholder,
body.dark-scheme textarea::placeholder {
  color: rgba(245, 245, 247, .42) !important;
}

body.dark-scheme .accordion-section-title,
body.dark-scheme .store-faq-content .accordion.s2 .accordion-section-title {
  color: #ffffff !important;
  background: transparent !important;
}

body.dark-scheme .accordion-section-title:before,
body.dark-scheme .store-faq-content .accordion-section-title:before,
body.dark-scheme .de-box-cat.store-knowledge-card i {
  color: #050505 !important;
  background: #f5f5f7 !important;
  border-color: rgba(255, 255, 255, .72) !important;
}

body.dark-scheme .purple,
body.dark-scheme .color,
body.dark-scheme .id-color,
body.dark-scheme .id-color-2,
body.dark-scheme .de-box-cat.store-knowledge-card span {
  color: #a1a1a6 !important;
  border-color: #a1a1a6 !important;
}

body.dark-scheme .bg-color,
body.dark-scheme .bg-color-2,
body.dark-scheme .bg-color-secondary {
  background-color: #a1a1a6 !important;
  border-color: #a1a1a6 !important;
}

body.dark-scheme .swiper-button-next,
body.dark-scheme .swiper-button-prev {
  color: #ffffff !important;
}

body.dark-scheme .swiper-pagination {
  color: rgba(245, 245, 247, .42) !important;
}

body.dark-scheme .swiper-pagination-current {
  color: #ffffff !important;
}

body.dark-scheme footer {
  padding-top: 72px;
  padding-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

body.dark-scheme footer .spacer-20,
body.dark-scheme footer .spacer-30 {
  height: 14px;
}

body.dark-scheme footer p,
body.dark-scheme footer li,
body.dark-scheme footer small {
  line-height: 1.55;
}

body.dark-scheme footer .widget {
  margin-bottom: 24px;
}

body.dark-scheme footer .widget h5 {
  margin-bottom: 12px;
}

body.dark-scheme footer ul {
  margin-bottom: 0;
}

body.dark-scheme footer .subfooter {
  margin-top: 34px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

body.dark-scheme .chat-bubble,
body.dark-scheme .chat-toggle,
body.dark-scheme .chat-button {
  filter: grayscale(1) saturate(0) !important;
}

body.dark-scheme #server-setup-info,
body.dark-scheme #ad-templ,
body.dark-scheme #review,
body.dark-scheme #server-info,
body.dark-scheme #products,
body.dark-scheme #faq,
body.dark-scheme #app-info,
body.dark-scheme #payments {
  padding-top: 84px;
  padding-bottom: 84px;
}

body.dark-scheme .sw-price .d-starting,
body.dark-scheme .sw-price .d-title,
body.dark-scheme .sw-price .d-cur,
body.dark-scheme .sw-price .d-period,
body.dark-scheme .cart-price-note,
body.dark-scheme .cart-summary-line,
body.dark-scheme .cart-summary-note p,
body.dark-scheme small {
  color: #ffffff !important;
}

body.dark-scheme #products .de-item .d-overlay .d-label {
  color: #050505 !important;
}

@media only screen and (max-width: 767px) {
  body.dark-scheme #server-setup-info,
  body.dark-scheme #ad-templ,
  body.dark-scheme #review,
  body.dark-scheme #server-info,
  body.dark-scheme #products,
  body.dark-scheme #faq,
  body.dark-scheme #app-info,
  body.dark-scheme #payments {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  body.dark-scheme .ai-hero-product-mark {
    filter: grayscale(1) saturate(0) brightness(.92) contrast(1.06) !important;
  }

  body.dark-scheme .swiper-pagination {
    display: none !important;
  }

  body.dark-scheme .ai-hero-slide .slider-title {
    font-size: clamp(40px, 11vw, 54px) !important;
    letter-spacing: 0;
  }

  body.dark-scheme .ai-hero-slide .slider-text {
    max-width: 31rem;
    font-size: 16px !important;
    line-height: 1.5;
  }

  body.dark-scheme .sw-price {
    margin-top: 18px;
  }

  body.dark-scheme .sw-price .d-price {
    font-size: 42px !important;
  }

  body.dark-scheme .btn-main,
  body.dark-scheme a.btn-main,
  body.dark-scheme button.btn-main {
    min-height: 44px;
    padding: 13px 18px;
    font-size: 14px;
  }

  body.dark-scheme .store-mobile-nav-actions {
    gap: 10px;
    padding: 14px 0;
  }

  body.dark-scheme footer {
    padding-top: 54px;
  }

  body.dark-scheme footer .row.gx-5 {
    row-gap: 12px;
  }

  body.dark-scheme footer p {
    margin-bottom: 8px;
  }

  body.dark-scheme footer .widget {
    margin-bottom: 18px;
  }

  body.dark-scheme footer .subfooter {
    margin-top: 18px;
    text-align: left;
  }

  body.dark-scheme footer .menu-simple {
    margin-top: 10px;
  }

  body.dark-scheme .store-download-actions {
    align-items: stretch;
  }

  body.dark-scheme .store-download-actions .btn-main,
  body.dark-scheme .aihosting-download-badge {
    width: 100%;
  }
}
