@charset "UTF-8";
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--neo-font-family, "Heebo", sans-serif);
  color: var(--neo-text, #1F2937);
  background-color: var(--neo-background, #FFFFFF);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
.neo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.neo-container-fluid {
  width: 100%;
  padding: 0;
}
.neo-main {
  min-height: 60vh;
}
.neo-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s, box-shadow 0.3s;
  overflow-x: clip;
}
.neo-header--sticky {
  position: sticky;
  top: 0;
}
.neo-header--overlay-first, .neo-header--overlay-hero {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  border-bottom-color: rgba(255, 255, 255, 0.18);
}
.neo-header--border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.neo-header--scrolled {
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
.neo-header--scrolled .neo-header__floating,
.neo-header--scrolled .neo-header__capsule {
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.neo-header--scrolled .neo-nav__link,
.neo-header--scrolled .neo-header__action,
.neo-header--scrolled .neo-header__logo-text {
  transition: color 0.3s ease;
}
@media (max-width: 1024px) {
  .neo-header--mobile-1024 .neo-header__nav {
    display: none;
  }
}
@media (max-width: 1024px) {
  .neo-header--mobile-1024 .neo-header__hamburger {
    display: flex;
  }
}
.neo-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
}
.neo-header__logo-mobile {
  display: none;
}
@media (max-width: 768px) {
  .neo-header__logo-mobile {
    display: block;
  }
  .neo-header__logo-desktop:has(+ .neo-header__logo-mobile) {
    display: none;
  }
  .neo-header__logo-desktop:not(:has(+ .neo-header__logo-mobile)) {
    max-width: var(--mobile-logo-width, 100px) !important;
  }
}
.neo-header--default .neo-header__nav {
  justify-content: center;
}
.neo-header--centered .neo-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.neo-header--centered .neo-header__logo {
  justify-self: center;
}
.neo-header--centered .neo-header__actions {
  justify-self: end;
}
.neo-header--centered .neo-header__nav {
  grid-column: 1/-1;
  order: 3;
  padding-bottom: 12px;
}
.neo-header--minimal .neo-header__nav {
  justify-content: flex-start;
}
.neo-header--split .neo-header__nav {
  justify-content: flex-end;
}
.neo-header--transparent-premium {
  background: rgba(255, 255, 255, 0.18) !important;
  border-bottom-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px);
}
.neo-header--topbar-nav {
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}
.neo-header--topbar-nav .neo-header__inner {
  min-height: 88px;
  align-items: flex-end;
  padding-bottom: 10px;
}
.neo-header__logo {
  display: flex;
  align-items: center;
}
.neo-header__logo img {
  max-height: 45px;
  width: auto;
}
.neo-header__logo-text {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--neo-font-heading);
  color: inherit;
}
.neo-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .neo-header__nav {
    display: none;
  }
}
.neo-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.neo-nav__link {
  display: block;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: inherit;
  border-radius: var(--neo-radius, 8px);
  transition: all 0.2s;
  text-decoration: none;
}
.neo-nav__link:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--neo-primary, #4F46E5);
}
.neo-mobile-menu {
  display: none;
  position: fixed;
  z-index: 200;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.neo-header.is-mobile-open .neo-mobile-menu {
  display: block;
}
body.neo-mobile-menu-open {
  overflow: hidden;
}
.neo-mobile-menu--drawer {
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}
[dir=rtl] .neo-mobile-menu--drawer {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}
.neo-header.is-mobile-open .neo-mobile-menu--drawer {
  transform: translateX(0);
}
.neo-mobile-menu--dropdown {
  top: 100%;
  right: 0;
  left: 0;
  position: absolute;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.neo-header.is-mobile-open .neo-mobile-menu--dropdown {
  max-height: 80vh;
  overflow-y: auto;
}
.neo-mobile-menu--fullscreen {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.neo-header.is-mobile-open .neo-mobile-menu--fullscreen {
  display: flex;
}
.neo-mobile-menu--fullscreen .neo-mobile-menu__list {
  gap: 16px;
}
.neo-mobile-menu--fullscreen .neo-mobile-menu__link {
  font-size: 24px;
  font-weight: 700;
}
.neo-mobile-menu__inner {
  padding: 20px;
  position: relative;
}
.neo-mobile-menu__close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: inherit;
  border-radius: var(--neo-radius, 8px);
}
[dir=rtl] .neo-mobile-menu__close {
  left: auto;
  right: 16px;
}
.neo-mobile-menu__close:hover {
  background: rgba(0, 0, 0, 0.05);
}
.neo-mobile-menu__list {
  list-style: none;
  padding: 40px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.neo-mobile-menu__link {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  border-radius: var(--neo-radius, 8px);
  transition: background 0.2s;
}
.neo-mobile-menu__link:hover {
  background: rgba(0, 0, 0, 0.05);
}
.neo-mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.neo-mobile-menu__action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: inherit;
  text-decoration: none;
  font-size: 15px;
  border-radius: var(--neo-radius, 8px);
}
.neo-mobile-menu__action:hover {
  background: rgba(0, 0, 0, 0.05);
}
.neo-mobile-menu__cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  margin-top: 8px;
}
.neo-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.neo-header__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--neo-radius, 8px);
  color: inherit;
  transition: all 0.2s;
}
.neo-header__action:hover {
  background: var(--neo-surface, #f3f4f6);
  color: var(--neo-primary, #4F46E5);
}
.neo-header__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: var(--neo-radius, 8px);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 18px;
  padding: 0;
}
@media (max-width: 768px) {
  .neo-header__hamburger {
    display: flex;
  }
}
.neo-header__hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 22px;
}
.neo-header__hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.neo-header.is-mobile-open .neo-header__hamburger-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.neo-header.is-mobile-open .neo-header__hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.neo-header.is-mobile-open .neo-header__hamburger-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.neo-footer {
  padding: 60px 0 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.neo-footer a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.neo-footer a:hover {
  opacity: 0.8;
}
.neo-footer__wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-99%);
  line-height: 0;
}
.neo-footer__wave svg {
  display: block;
  width: 100%;
  height: 60px;
}
.neo-footer--wave {
  margin-top: 80px;
}
.neo-footer__grid {
  display: grid;
  gap: 40px;
  padding-bottom: 40px;
}
.neo-footer__grid--2 {
  grid-template-columns: 1.5fr 1fr;
}
.neo-footer__grid--4 {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}
.neo-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.neo-footer__col--brand .neo-footer__logo {
  max-height: 40px;
  width: auto;
  margin-bottom: 8px;
}
.neo-footer__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.neo-footer__col-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
  opacity: 0.9;
}
.neo-footer__desc {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.6;
  margin: 0;
}
.neo-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.neo-footer__links li a {
  font-size: 14px;
  opacity: 0.7;
}
.neo-footer__links li a:hover {
  opacity: 1;
}
.neo-footer__contact-item {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.neo-footer__contact-item i {
  width: 16px;
  text-align: center;
  opacity: 0.6;
}
.neo-footer__social {
  display: flex;
  gap: 12px;
}
.neo-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
}
.neo-footer__social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  opacity: 1;
}
.neo-footer__social--center {
  justify-content: center;
}
.neo-footer__newsletter {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.neo-footer__newsletter strong {
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}
.neo-footer__newsletter p {
  font-size: 14px;
  opacity: 0.7;
  margin: 0 0 16px;
}
.neo-footer__newsletter--center {
  max-width: 400px;
  margin: 0 auto;
}
.neo-footer__newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}
.neo-footer__newsletter-form input[type=email] {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  font-size: 14px;
}
.neo-footer__newsletter-form input[type=email]::placeholder {
  color: inherit;
  opacity: 0.4;
}
.neo-footer__newsletter-form input[type=email]:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
}
.neo-footer__newsletter-form button {
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.neo-footer__newsletter-form button:hover {
  background: rgba(255, 255, 255, 0.25);
}
.neo-footer__bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  opacity: 0.5;
}
.neo-footer__bottom p {
  margin: 0;
}
.neo-footer__centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding-bottom: 32px;
}
.neo-footer__centered .neo-footer__logo--center {
  max-height: 48px;
  width: auto;
}
.neo-footer__centered .neo-footer__desc {
  max-width: 500px;
}
.neo-footer__nav-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.neo-footer__nav-inline a {
  font-size: 14px;
  opacity: 0.7;
}
.neo-footer__nav-inline a:hover {
  opacity: 1;
}
.neo-footer__minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}
.neo-footer__minimal-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.neo-footer__minimal-brand .neo-footer__logo {
  max-height: 32px;
  width: auto;
}
.neo-footer--minimal {
  padding: 0;
}
.neo-footer--minimal .neo-footer__bottom {
  border-top: none;
  padding-top: 12px;
}
@media (max-width: 768px) {
  .neo-footer {
    padding: 40px 0 0;
  }
  .neo-footer__grid--2, .neo-footer__grid--4 {
    grid-template-columns: 1fr;
  }
  .neo-footer__minimal {
    flex-direction: column;
    text-align: center;
  }
  .neo-footer__minimal .neo-footer__nav-inline {
    justify-content: center;
  }
  .neo-footer__minimal .neo-footer__social {
    justify-content: center;
  }
}
[data-neo-editable],
[data-neo-image],
[data-neo-action] {
  outline: none !important;
  outline-offset: 0 !important;
}
.neo-sector {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden;
  overflow-y: visible;
  isolation: isolate;
  z-index: 0;
}
.neo-sector + .neo-sector {
  margin-top: 0 !important;
}
.neo-sector > .neo-container,
.neo-sector > .neo-container-fluid {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.neo-sector > .neo-container [style*=min-height][style*=vh],
.neo-sector > .neo-container-fluid [style*=min-height][style*=vh] {
  min-height: auto !important;
}
.neo-sector > .neo-container > div[style*=vh],
.neo-sector > .neo-container > section[style*=vh],
.neo-sector > .neo-container-fluid > div[style*=vh],
.neo-sector > .neo-container-fluid > section[style*=vh] {
  min-height: auto !important;
  height: auto !important;
}
.neo-sector h1, .neo-sector h2, .neo-sector h3, .neo-sector h4, .neo-sector h5 {
  font-family: var(--neo-font-heading);
}
:where(.neo-sector) h1,
:where(.neo-sector) h2,
:where(.neo-sector) h3,
:where(.neo-sector) h4,
:where(.neo-sector) h5 {
  color: var(--neo-text, #1f2937);
}
.neo-sector__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: var(--neo-text);
}
.neo-products__grid {
  display: grid;
  grid-template-columns: repeat(var(--neo-card-cols, 4), 1fr);
  gap: var(--neo-card-gap, 16px);
}
@media (max-width: 768px) {
  .neo-products__grid {
    grid-template-columns: repeat(var(--neo-mobile-cols, 2), 1fr) !important;
    gap: 12px;
  }
}
.neo-product-card {
  border-radius: var(--neo-card-radius, var(--neo-radius, 8px));
  overflow: hidden;
  transition: all 0.3s;
}
.neo-product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.neo-products--clean .neo-product-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.neo-products--bordered .neo-product-card {
  border: 2px solid rgba(0, 0, 0, 0.12);
}
.neo-products--shadow .neo-product-card {
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.neo-products--shadow .neo-product-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
}
.neo-products--minimal .neo-product-card {
  background: transparent;
  border: none;
  border-radius: 0;
}
.neo-products--minimal .neo-product-card:hover {
  box-shadow: none;
  transform: none;
}
.neo-products--minimal .neo-product-card__button {
  border-top: none;
}
.neo-products--slider .neo-products__slider-wrap {
  position: relative;
}
.neo-products--slider .neo-products__grid {
  display: flex !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.neo-products--slider .neo-products__grid::-webkit-scrollbar {
  display: none;
}
.neo-products--slider .neo-product-card {
  flex: 0 0 calc(100% / var(--neo-card-cols, 4) - var(--neo-card-gap, 16px));
  scroll-snap-align: start;
  min-width: 0;
  margin-inline-end: var(--neo-card-gap, 16px);
}
@media (max-width: 768px) {
  .neo-products--slider .neo-product-card {
    flex: 0 0 calc(100% / var(--neo-mobile-cols, 2) - 8px);
  }
}
.neo-products__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--neo-text, #1f2937);
  font-size: 16px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.2s;
}
.neo-products__arrow:hover {
  opacity: 1;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.neo-products__arrow--right {
  right: -12px;
}
.neo-products__arrow--left {
  left: -12px;
}
@media (max-width: 768px) {
  .neo-products__arrow {
    display: none;
  }
}
.neo-product-card__button {
  display: block;
  width: 100%;
  padding: 10px;
  border: none;
  background: var(--neo-card-btn-bg, rgba(0, 0, 0, 0.04));
  color: var(--neo-card-btn-text, var(--neo-text, inherit));
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.2s;
}
.neo-product-card__button:hover {
  background: var(--neo-card-btn-bg-hover, rgba(0, 0, 0, 0.08));
}
.neo-has-overlay-header .neo-main {
  position: relative;
}
.neo-has-overlay-header .neo-main > .neo-sector:first-child {
  padding-top: calc(var(--neo-header-height, 72px) + 40px) !important;
}
.neo-announcement,
.neo-announcement-preview {
  position: relative;
  z-index: 120;
  font-size: 14px;
  line-height: 1.5;
}
.neo-announcement__inner,
.neo-announcement-preview__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  padding: 10px 0;
}
.neo-announcement__cta,
.neo-announcement-preview__cta,
.neo-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}
.neo-announcement__cta:hover,
.neo-announcement-preview__cta:hover,
.neo-header__cta:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}
.neo-announcement__cta,
.neo-announcement-preview__cta {
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
}
.neo-announcement--sticky {
  position: sticky;
  top: 0;
}
.neo-announcement__close {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  opacity: 0.6;
  font-size: 14px;
  padding: 4px;
  transition: opacity 0.2s;
}
.neo-announcement__close:hover {
  opacity: 1;
}
.neo-announcement {
  position: relative;
}
@media (max-width: 768px) {
  .neo-announcement--condensed .neo-announcement__inner,
  .neo-announcement--condensed .neo-announcement-preview__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
  }
}
.neo-announcement--gradient::before,
.neo-announcement-preview.neo-announcement--gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
.neo-announcement--glass,
.neo-announcement-preview.neo-announcement--glass {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.neo-announcement--neon,
.neo-announcement-preview.neo-announcement--neon {
  border-bottom: 2px solid currentColor;
  box-shadow: 0 0 8px currentColor, 0 0 20px rgba(255, 255, 255, 0.05), inset 0 0 20px rgba(255, 255, 255, 0.03);
}
.neo-announcement--neon .neo-announcement__text,
.neo-announcement--neon .neo-announcement-preview__text,
.neo-announcement-preview.neo-announcement--neon .neo-announcement__text,
.neo-announcement-preview.neo-announcement--neon .neo-announcement-preview__text {
  text-shadow: 0 0 8px currentColor, 0 0 20px currentColor;
}
.neo-announcement--neon .neo-announcement__cta,
.neo-announcement--neon .neo-announcement-preview__cta,
.neo-announcement-preview.neo-announcement--neon .neo-announcement__cta,
.neo-announcement-preview.neo-announcement--neon .neo-announcement-preview__cta {
  border: 1px solid currentColor;
  box-shadow: 0 0 8px currentColor;
  background: transparent;
}
.neo-announcement--marquee,
.neo-announcement-preview.neo-announcement--marquee {
  overflow: hidden;
}
.neo-announcement--marquee .neo-announcement__inner,
.neo-announcement--marquee .neo-announcement-preview__inner,
.neo-announcement-preview.neo-announcement--marquee .neo-announcement__inner,
.neo-announcement-preview.neo-announcement--marquee .neo-announcement-preview__inner {
  animation: neo-marquee 18s linear infinite;
  white-space: nowrap;
  display: inline-flex;
  width: max-content;
  padding-right: 100%;
}
@keyframes neo-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.neo-announcement--minimal,
.neo-announcement-preview.neo-announcement--minimal {
  font-size: 12px;
}
.neo-announcement--minimal .neo-announcement__inner,
.neo-announcement--minimal .neo-announcement-preview__inner,
.neo-announcement-preview.neo-announcement--minimal .neo-announcement__inner,
.neo-announcement-preview.neo-announcement--minimal .neo-announcement-preview__inner {
  min-height: 28px;
  padding: 4px 0;
  justify-content: center;
  gap: 12px;
}
.neo-announcement--minimal .neo-announcement__cta,
.neo-announcement--minimal .neo-announcement-preview__cta,
.neo-announcement-preview.neo-announcement--minimal .neo-announcement__cta,
.neo-announcement-preview.neo-announcement--minimal .neo-announcement-preview__cta {
  padding: 2px 10px;
  font-size: 11px;
  background: transparent;
  text-decoration: underline;
  border-radius: 0;
}
.neo-header--spacing-compact .neo-header__inner {
  min-height: 56px;
}
.neo-header--spacing-comfortable .neo-header__inner {
  min-height: 68px;
}
.neo-header--spacing-airy .neo-header__inner {
  min-height: 82px;
}
.neo-header__cta {
  background: var(--neo-primary);
  color: #fff;
}
.neo-header__cta--outline {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}
.neo-header__cta--soft {
  background: color-mix(in srgb, var(--neo-primary) 14%, white);
  color: var(--neo-primary);
}
.neo-header__cta--solid {
  background: var(--neo-primary);
  color: #fff;
}
.neo-header__cta--glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.neo-header__cta--pill {
  background: var(--neo-primary);
  color: #fff;
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 13px;
}
.neo-footer__newsletter,
.neo-footer-preview__newsletter {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.neo-footer__newsletter-form {
  display: flex;
  gap: 12px;
}
.neo-footer__newsletter-form input,
.neo-footer__newsletter-form button {
  height: 44px;
  border-radius: 999px;
  border: none;
}
.neo-footer__newsletter-form input {
  min-width: 240px;
  padding: 0 16px;
}
.neo-footer__newsletter-form button {
  padding: 0 18px;
  background: var(--neo-primary);
  color: #fff;
  font-weight: 700;
}
.neo-overlay--gradient {
  position: relative;
}
.neo-overlay--gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.16));
  pointer-events: none;
}
.neo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.neo-btn--primary {
  background: var(--neo-primary);
  color: #fff;
}
.neo-btn--ghost {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}
.neo-manual-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neo-accent, #F59E0B);
}
.neo-manual-hero,
.neo-manual-cta,
.neo-manual-editorial,
.neo-manual-conversion__box,
.neo-manual-text {
  position: relative;
}
.neo-manual-hero--default,
.neo-manual-editorial,
.neo-manual-conversion,
.neo-manual-cta--default,
.neo-manual-cta--premium {
  margin: -60px -20px;
  padding: 88px 40px;
}
.neo-manual-hero--default,
.neo-manual-cta--default,
.neo-manual-conversion {
  text-align: center;
  background: linear-gradient(135deg, var(--neo-primary, #4F46E5), color-mix(in srgb, var(--neo-primary, #4F46E5) 58%, #000));
  color: #fff;
}
.neo-manual-hero--default h1,
.neo-manual-editorial h1,
.neo-manual-conversion h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 18px;
}
.neo-manual-hero--default p,
.neo-manual-editorial p,
.neo-manual-conversion p,
.neo-manual-cta p {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
  line-height: 1.8;
}
.neo-manual-hero__actions,
.neo-manual-cta__action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.neo-manual-hero--split,
.neo-manual-about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.neo-manual-hero__media img,
.neo-manual-about img {
  width: 100%;
  border-radius: 24px;
  display: block;
}
.neo-manual-cards__head,
.neo-manual-testimonials > h2,
.neo-manual-gallery > h2,
.neo-manual-team > h2,
.neo-manual-faq > h2 {
  text-align: center;
  margin-bottom: 26px;
}
.neo-manual-cards__grid,
.neo-manual-testimonials__grid,
.neo-manual-tiles__grid,
.neo-manual-team__grid,
.neo-manual-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.neo-manual-cards__grid article,
.neo-manual-testimonials__grid article,
.neo-manual-team__grid article,
.neo-manual-faq__item,
.neo-manual-timeline__item,
.neo-manual-masonry article {
  padding: 24px;
  border-radius: 20px;
}
.neo-manual-team__grid article img {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 999px;
  margin: 0 auto 14px;
}
.neo-manual-gallery__grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
}
.neo-manual-faq {
  max-width: 860px;
  margin: 0 auto;
}
.neo-manual-faq__item + .neo-manual-faq__item,
.neo-manual-timeline__item + .neo-manual-timeline__item {
  margin-top: 14px;
}
.neo-manual-tiles__grid {
  grid-template-columns: 1.1fr 0.9fr 1fr;
}
.neo-manual-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.neo-manual-stats div {
  padding: 18px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--neo-primary, #4F46E5) 12%, white);
  text-align: center;
}
.neo-manual-stats strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-family: var(--neo-font-heading, inherit);
  margin-bottom: 8px;
}
.neo-manual-stats--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.neo-manual-cta--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.neo-manual-cta--premium {
  text-align: center;
}
.neo-manual-spotlight {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.neo-manual-spotlight blockquote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin: 20px 0;
}
.neo-manual-timeline {
  max-width: 800px;
  margin: 0 auto;
}
.neo-manual-timeline__items {
  position: relative;
  padding-right: 30px;
  border-right: 3px solid var(--neo-primary, #4F46E5);
}
.neo-manual-timeline__item {
  position: relative;
}
.neo-manual-timeline__item::before {
  content: "";
  position: absolute;
  right: -38px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neo-primary, #4F46E5);
  border: 3px solid #fff;
}
.neo-manual-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.neo-manual-masonry article:nth-child(2) {
  transform: translateY(20px);
}
.neo-elevated {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.neo-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.neo-gradient-text {
  background: linear-gradient(135deg, var(--neo-primary, #4F46E5), var(--neo-accent, #F59E0B));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.neo-pattern--grid {
  position: relative;
}
.neo-pattern--grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
}
.neo-overlay--gradient {
  position: relative;
}
.neo-overlay--gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.12), transparent 55%);
}
.neo-manual-pricing {
  text-align: center;
}
.neo-manual-pricing__head {
  margin-bottom: 40px;
}
.neo-manual-pricing__head h2 {
  font-family: var(--neo-font-heading, inherit);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.neo-manual-pricing__head p {
  color: var(--neo-text-secondary, #666);
  margin-top: 8px;
}
.neo-manual-pricing__grid {
  display: grid;
  grid-template-columns: repeat(var(--neo-pricing-cols, 3), 1fr);
  gap: 24px;
  align-items: start;
}
.neo-manual-pricing__grid article {
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  position: relative;
}
.neo-manual-pricing__grid article h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.neo-manual-pricing__price {
  margin: 16px 0 24px;
}
.neo-manual-pricing__price strong {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--neo-primary, #4F46E5);
}
.neo-manual-pricing__price span {
  color: var(--neo-text-secondary, #666);
  font-size: 0.9rem;
}
.neo-manual-pricing__grid ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: right;
}
.neo-manual-pricing__grid ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.neo-manual-pricing__grid ul li i {
  color: var(--neo-primary, #4F46E5);
  font-size: 0.85rem;
}
.neo-manual-pricing__featured {
  transform: scale(1.05);
  border: 2px solid var(--neo-primary, #4F46E5) !important;
  z-index: 1;
}
.neo-manual-pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neo-primary, #4F46E5);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}
.neo-manual-video {
  text-align: center;
}
.neo-manual-video h2 {
  font-family: var(--neo-font-heading, inherit);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}
.neo-manual-video p {
  color: var(--neo-text-secondary, #666);
  margin-bottom: 32px;
}
.neo-manual-video__wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.neo-manual-video__wrapper:not(:has(iframe)) {
  aspect-ratio: 16/9;
}
.neo-manual-video__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.neo-manual-video__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #999;
  background: #1a1a2e;
}
.neo-manual-video__placeholder i {
  font-size: 48px;
  color: var(--neo-primary, #4F46E5);
}
.neo-manual-logos {
  text-align: center;
}
.neo-manual-logos h2 {
  font-family: var(--neo-font-heading, inherit);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 32px;
  color: var(--neo-text-secondary, #666);
}
.neo-manual-logos__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.neo-manual-logos__item {
  max-height: var(--neo-logos-height, 60px);
}
.neo-manual-logos__item img {
  max-height: var(--neo-logos-height, 60px);
  width: auto;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.3s;
}
.neo-manual-logos__item img:hover {
  filter: grayscale(0);
  opacity: 1;
}
.neo-type--no-grayscale .neo-manual-logos__item img {
  filter: none;
  opacity: 1;
}
.neo-manual-countdown {
  text-align: center;
}
.neo-manual-countdown h2 {
  font-family: var(--neo-font-heading, inherit);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.neo-manual-countdown p {
  color: var(--neo-text-secondary, #666);
  margin-bottom: 32px;
}
.neo-manual-countdown__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.neo-manual-countdown__unit {
  background: var(--neo-surface, #f8f9fa);
  border-radius: 12px;
  padding: 20px 24px;
  min-width: 80px;
  text-align: center;
}
.neo-manual-countdown__unit strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--neo-primary, #4F46E5);
  font-family: var(--neo-font-heading, inherit);
}
.neo-manual-countdown__unit span {
  display: block;
  font-size: 0.8rem;
  color: var(--neo-text-secondary, #666);
  margin-top: 4px;
}
.neo-manual-countdown__sep {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neo-primary, #4F46E5);
}
.neo-manual-map {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.neo-manual-map__content h2 {
  font-family: var(--neo-font-heading, inherit);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 24px;
}
.neo-manual-map__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.neo-manual-map__detail {
  display: flex;
  align-items: center;
  gap: 12px;
}
.neo-manual-map__detail i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--neo-surface, #f0f0f0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neo-primary, #4F46E5);
  flex-shrink: 0;
}
.neo-manual-map__embed {
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
  background: #e8e8e8;
  position: relative;
}
.neo-manual-map__embed iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}
.neo-manual-map__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #999;
}
.neo-manual-map__placeholder i {
  font-size: 48px;
  color: var(--neo-primary, #4F46E5);
  opacity: 0.3;
}
.neo-manual-divider {
  text-align: center;
  padding: 0;
}
.neo-manual-divider__line {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--neo-primary, #4F46E5), transparent);
  max-width: 60%;
  margin: 0 auto;
}
.neo-manual-slider {
  overflow: hidden;
}
.neo-manual-slider h2 {
  font-family: var(--neo-font-heading, inherit);
  text-align: center;
  margin-bottom: 24px;
}
.neo-manual-slider__track {
  display: flex;
  border-radius: 16px;
}
.neo-manual-slider__slide {
  flex: 0 0 100%;
}
.neo-manual-slider__slide img {
  width: 100%;
  height: var(--neo-slider-height, 500px);
  object-fit: cover;
  display: block;
}
.neo-manual-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.neo-manual-slider__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.2s;
}
.neo-manual-slider__dots span.is-active {
  background: var(--neo-primary, #4F46E5);
  transform: scale(1.2);
}
.neo-manual-blog__head {
  text-align: center;
  margin-bottom: 40px;
}
.neo-manual-blog__head h2 {
  font-family: var(--neo-font-heading, inherit);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.neo-manual-blog__head p {
  color: var(--neo-text-secondary, #666);
  margin-top: 8px;
}
.neo-manual-blog__grid {
  display: grid;
  grid-template-columns: repeat(var(--neo-blog-cols, 3), 1fr);
  gap: 24px;
}
.neo-manual-blog__grid article {
  border-radius: 16px;
  overflow: hidden;
}
.neo-manual-blog__grid article img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.neo-manual-blog__body {
  padding: 20px;
}
.neo-manual-blog__date {
  font-size: 0.8rem;
  color: var(--neo-text-secondary, #999);
}
.neo-manual-blog__body h3 {
  font-size: 1.1rem;
  margin: 8px 0;
}
.neo-manual-blog__body p {
  font-size: 0.9rem;
  color: var(--neo-text-secondary, #666);
  line-height: 1.6;
}
.neo-manual-icon-strip {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
}
.neo-manual-icon-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 160px;
}
.neo-manual-icon-strip__item i {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--neo-surface, #f0f0f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--neo-primary, #4F46E5);
}
.neo-manual-icon-strip__item strong {
  font-size: 0.95rem;
}
.neo-manual-icon-strip__item span {
  font-size: 0.8rem;
  color: var(--neo-text-secondary, #666);
}
.neo-manual-before-after {
  text-align: center;
}
.neo-manual-before-after h2 {
  font-family: var(--neo-font-heading, inherit);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 32px;
}
.neo-manual-before-after__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.neo-manual-before-after__side {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.neo-manual-before-after__side img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.neo-manual-before-after__label {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.neo-video-bg-sector {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.neo-video-bg-sector__poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-color: #111;
  transition: opacity 0.8s ease;
}
.neo-video-bg-sector__poster.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.neo-video-bg-sector__player {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.neo-video-bg-sector__player iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}
.neo-video-bg-sector__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #000;
  pointer-events: none;
}
.neo-video-bg-sector__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
  max-width: 800px;
}
.neo-video-bg-sector__content h1 {
  font-family: var(--neo-font-heading, inherit);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.neo-video-bg-sector__content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  opacity: 0.9;
  margin-bottom: 32px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}
.neo-video-bg-sector__cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--neo-primary, #4F46E5);
  color: #fff !important;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.neo-video-bg-sector__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.neo-manual-faq__item, [data-neo-faq] {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.neo-manual-faq__item strong, [data-neo-faq] strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: 1.05rem;
  transition: color 0.2s;
  user-select: none;
}
.neo-manual-faq__item strong::after, [data-neo-faq] strong::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.3s;
  color: var(--neo-primary, #4F46E5);
}
.neo-manual-faq__item strong:hover, [data-neo-faq] strong:hover {
  color: var(--neo-primary, #4F46E5);
}
.neo-manual-faq__item p, [data-neo-faq] p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
  margin: 0;
  line-height: 1.7;
  color: var(--neo-text-secondary, #666);
}
.neo-manual-faq__item.is-active strong::after, [data-neo-faq].is-active strong::after {
  content: "−";
  transform: rotate(0deg);
}
.neo-manual-faq__item.is-active p, [data-neo-faq].is-active p {
  max-height: 500px;
  padding-bottom: 18px;
}
.neo-manual-faq--cards .neo-manual-faq__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.neo-manual-faq--cards .neo-manual-faq__item {
  border-bottom: none;
  padding: 24px;
  border-radius: 16px;
}
.neo-manual-faq--cards .neo-manual-faq__item strong {
  padding: 0 0 12px;
  font-size: 1rem;
}
.neo-manual-faq--cards .neo-manual-faq__item strong::after {
  display: none;
}
.neo-manual-faq--cards .neo-manual-faq__item p {
  max-height: none;
  padding-bottom: 0;
  overflow: visible;
}
.neo-manual-faq--minimal .neo-manual-faq__item {
  border-bottom: none;
  padding: 12px 0;
}
.neo-manual-faq--minimal .neo-manual-faq__item strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neo-primary, #4F46E5);
}
.neo-manual-faq--minimal .neo-manual-faq__item strong::after {
  display: none;
}
.neo-manual-faq--minimal .neo-manual-faq__item p {
  max-height: none;
  overflow: visible;
  padding-bottom: 0;
  margin-top: 4px;
  font-size: 0.9rem;
}
.neo-manual-faq--minimal .neo-manual-faq__item + .neo-manual-faq__item {
  margin-top: 0;
}
@media (max-width: 768px) {
  .neo-manual-hero--split,
  .neo-manual-about {
    grid-template-columns: 1fr;
  }
  .neo-manual-cards__grid,
  .neo-manual-testimonials__grid,
  .neo-manual-tiles__grid,
  .neo-manual-team__grid,
  .neo-manual-gallery__grid,
  .neo-manual-stats,
  .neo-manual-masonry,
  .neo-manual-faq--cards .neo-manual-faq__list {
    grid-template-columns: 1fr;
  }
  .neo-manual-hero--default,
  .neo-manual-editorial,
  .neo-manual-conversion,
  .neo-manual-cta--default,
  .neo-manual-cta--premium {
    margin: -40px -20px;
    padding: 64px 24px;
  }
  .neo-manual-cta--split {
    flex-direction: column;
    text-align: center;
  }
  .neo-manual-masonry article:nth-child(2) {
    transform: none;
  }
}
.neo-type--vertical .neo-manual-icon-strip {
  flex-direction: column;
  align-items: center;
}
.neo-type--vertical .neo-manual-icon-strip__item {
  flex-direction: row;
  max-width: none;
  gap: 16px;
  text-align: right;
}
.neo-type--icon-square .neo-manual-icon-strip__item i {
  border-radius: 10px;
}
.neo-type--icon-none .neo-manual-icon-strip__item i {
  background: none;
  width: auto;
  height: auto;
}
.neo-type--hide-date .neo-manual-blog__date {
  display: none;
}
.neo-type--countdown-circles .neo-manual-countdown__unit {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  min-width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.neo-type--countdown-minimal .neo-manual-countdown__unit {
  background: none;
  padding: 0;
}
.neo-type--countdown-minimal .neo-manual-countdown__sep {
  font-size: 1.5rem;
}
.neo-manual-map__embed {
  min-height: var(--neo-map-height, 400px);
}
.neo-manual-map__embed iframe {
  min-height: var(--neo-map-height, 400px);
}
@media (max-width: 768px) {
  .neo-manual-pricing__grid {
    grid-template-columns: 1fr;
  }
  .neo-manual-pricing__featured {
    transform: none;
  }
  .neo-manual-map {
    grid-template-columns: 1fr;
  }
  .neo-manual-blog__grid {
    grid-template-columns: 1fr;
  }
  .neo-manual-before-after__container {
    grid-template-columns: 1fr;
  }
  .neo-manual-countdown__unit {
    min-width: 60px;
    padding: 12px 16px;
  }
  .neo-manual-countdown__unit strong {
    font-size: 1.8rem;
  }
  .neo-manual-icon-strip {
    gap: 24px;
  }
  .neo-manual-icon-strip__item {
    max-width: 120px;
  }
  .neo-manual-slider__slide img {
    height: 250px;
  }
  .neo-manual-logos__grid {
    gap: 24px;
  }
}
.neo-sector--bg-gradient {
  background: linear-gradient(135deg, color-mix(in srgb, var(--neo-primary) 18%, white), transparent);
}
.neo-sector--bg-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.neo-sector--bg-surface {
  background: var(--neo-surface);
}
.neo-sector--bg-dark-contrast {
  background: linear-gradient(135deg, #111827, color-mix(in srgb, #111827 82%, var(--neo-primary)));
  color: #fff;
}
.neo-sector--overlay-dark,
.neo-sector--overlay-gradient,
.neo-sector--overlay-mesh {
  position: relative;
  overflow: clip;
}
.neo-sector--overlay-dark::before,
.neo-sector--overlay-gradient::before,
.neo-sector--overlay-mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.neo-sector--overlay-dark::before {
  background: rgba(15, 23, 42, 0.28);
}
.neo-sector--overlay-gradient::before {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.12), transparent 55%);
}
.neo-sector--overlay-mesh::before {
  background: radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--neo-accent) 18%, transparent), transparent 28%), radial-gradient(circle at 80% 0%, color-mix(in srgb, var(--neo-primary) 14%, transparent), transparent 34%);
}
.neo-sector--decor-grid::after,
.neo-sector--decor-dots::after,
.neo-sector--decor-glow::after,
.neo-sector--decor-blob::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.neo-sector--decor-grid::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
}
.neo-sector--decor-dots::after {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
}
.neo-sector--decor-glow::after {
  background: radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.18), transparent 22%);
}
.neo-sector--decor-blob::after {
  width: 360px;
  height: 360px;
  top: -80px;
  left: -80px;
  inset: auto;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--neo-accent) 20%, transparent), transparent 70%);
}
.neo-sector--text-right {
  text-align: right;
}
.neo-sector--text-center {
  text-align: center;
}
.neo-sector--text-left {
  text-align: left;
}
@media (min-width: 1025px) {
  .neo-hide-desktop {
    display: none !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .neo-hide-tablet {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .neo-hide-mobile {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .neo-sector--decor-mobile-hide::before, .neo-sector--decor-mobile-hide::after {
    display: none;
  }
}
.neo-anim {
  will-change: transform, opacity, filter;
}
.neo-anim--blur-in {
  animation: neoBlurIn 0.8s ease both;
}
.neo-anim--scale-fade {
  animation: neoScaleFade 0.7s ease both;
}
.neo-anim--layered-rise {
  animation: neoLayeredRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.neo-anim--headline-reveal h1,
.neo-anim--headline-reveal h2 {
  animation: neoHeadlineReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.neo-anim--cta-pop .neo-btn,
.neo-anim--cta-pop a[data-neo-action] {
  animation: neoCtaPop 0.7s ease both 0.1s;
}
.neo-anim--stagger-cards .neo-elevated,
.neo-anim--stagger-cards article,
.neo-anim--stagger-cards .neo-manual-cards__grid > *,
.neo-anim--stagger-cards .neo-manual-testimonials__grid > * {
  opacity: 0;
  animation: neoBlurIn 0.65s ease forwards;
}
.neo-anim--stagger-cards .neo-elevated:nth-child(2),
.neo-anim--stagger-cards article:nth-child(2),
.neo-anim--stagger-cards .neo-manual-cards__grid > *:nth-child(2),
.neo-anim--stagger-cards .neo-manual-testimonials__grid > *:nth-child(2) {
  animation-delay: 0.1s;
}
.neo-anim--stagger-cards .neo-elevated:nth-child(3),
.neo-anim--stagger-cards article:nth-child(3),
.neo-anim--stagger-cards .neo-manual-cards__grid > *:nth-child(3),
.neo-anim--stagger-cards .neo-manual-testimonials__grid > *:nth-child(3) {
  animation-delay: 0.2s;
}
@keyframes neoBlurIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
@keyframes neoScaleFade {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes neoLayeredRise {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes neoHeadlineReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
    letter-spacing: 0.04em;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: normal;
  }
}
@keyframes neoCtaPop {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }
  70% {
    opacity: 1;
    transform: translateY(-2px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 768px) {
  .neo-footer__newsletter,
  .neo-footer-preview__newsletter,
  .neo-announcement__inner,
  .neo-announcement-preview__inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
  .neo-footer__newsletter-form {
    width: 100%;
    flex-direction: column;
  }
  .neo-footer__newsletter-form input,
  .neo-footer__newsletter-form button {
    width: 100%;
  }
}
.neo-product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.neo-product-card__image {
  position: relative;
  aspect-ratio: var(--neo-img-ratio, 1/1);
  overflow: hidden;
  background: var(--neo-surface, #f9fafb);
}
.neo-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: var(--neo-img-fit, cover);
  transition: transform 0.3s;
}
.neo-product-card:hover .neo-product-card__image img {
  transform: scale(1.05);
}
.neo-product-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  background: #ef4444;
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.neo-product-card__info {
  padding: 14px;
}
.neo-product-card__title {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--neo-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.neo-product-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.neo-product-card__current-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--neo-primary, #4F46E5);
}
.neo-product-card__compare-price {
  font-size: 14px;
  color: var(--neo-text-secondary, #9ca3af);
  text-decoration: line-through;
}
.neo-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .neo-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.neo-category-card {
  display: block;
  text-decoration: none;
  color: inherit;
  text-align: center;
  border-radius: var(--neo-radius, 8px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}
.neo-category-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.neo-category-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--neo-surface, #f9fafb);
}
.neo-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.neo-category-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--neo-text-secondary);
}
.neo-category-card__title {
  padding: 14px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.neo-contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.neo-contact-form__field {
  margin-bottom: 16px;
}
.neo-contact-form__field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
}
.neo-contact-form__field input, .neo-contact-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: var(--neo-radius, 8px);
  font-size: 15px;
  font-family: var(--neo-font-family);
  transition: border-color 0.2s;
}
.neo-contact-form__field input:focus, .neo-contact-form__field textarea:focus {
  outline: none;
  border-color: var(--neo-primary, #4F46E5);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.neo-contact-form__field textarea {
  resize: vertical;
  min-height: 100px;
}
.neo-contact-form__submit {
  width: 100%;
  padding: 14px;
  background: var(--neo-primary, #4F46E5);
  color: #fff;
  border: none;
  border-radius: var(--neo-radius, 8px);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--neo-font-family);
  cursor: pointer;
  transition: background 0.2s;
}
.neo-contact-form__submit:hover {
  filter: brightness(0.9);
}
.neo-contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.neo-contact-form__error {
  color: #ef4444;
  margin-top: 12px;
  font-size: 14px;
}
.neo-contact-form__success {
  text-align: center;
  padding: 40px 20px;
}
.neo-contact-form__success i {
  font-size: 48px;
  color: var(--neo-secondary, #10B981);
  margin-bottom: 16px;
}
.neo-contact-form__success h3 {
  margin: 0 0 8px;
}
.neo-contact-form__success p {
  color: var(--neo-text-secondary);
}
.neo-empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--neo-text-secondary, #6b7280);
}
.neo-empty-state h2 {
  color: var(--neo-text, #1f2937);
  margin-bottom: 12px;
}
.neo-products__loading,
.neo-categories__loading {
  text-align: center;
  padding: 40px;
  color: var(--neo-text-secondary);
}
.neo-products__empty {
  text-align: center;
  padding: 40px;
  color: var(--neo-text-secondary);
}
.neo-page {
  padding: 20px 0;
}
.neo-page h1 {
  font-family: var(--neo-font-heading);
  color: var(--neo-text);
  margin-bottom: 24px;
}
.neo-page__content {
  line-height: 1.8;
  color: var(--neo-text);
}
.neo-page__content p {
  margin-bottom: 16px;
}
.neo-page__content img {
  border-radius: var(--neo-radius, 8px);
}
.neo-product__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .neo-product__layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 0;
  }
}
.neo-product__main-image {
  position: relative;
  border-radius: var(--neo-radius, 8px);
  overflow: hidden;
  background: var(--neo-surface, #f9fafb);
}
.neo-product__main-image img {
  width: 100%;
  height: auto;
  display: block;
}
.neo-product__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
}
.neo-product__thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--neo-radius, 8px);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.neo-product__thumb--active {
  border-color: var(--neo-primary, #4F46E5);
}
.neo-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.neo-product__title {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--neo-font-heading);
  color: var(--neo-text);
  margin: 0 0 8px;
}
.neo-product__sku {
  font-size: 13px;
  color: var(--neo-text-secondary, #6b7280);
  margin-bottom: 16px;
}
.neo-product__pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.neo-product__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neo-primary, #4F46E5);
}
.neo-product__compare {
  font-size: 1.1rem;
  color: var(--neo-text-secondary, #9ca3af);
  text-decoration: line-through;
}
.neo-product__discount {
  padding: 4px 10px;
  background: #fef2f2;
  color: #dc2626;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.neo-product__variants {
  margin-bottom: 24px;
}
.neo-product__variant-group {
  margin-bottom: 16px;
}
.neo-product__variant-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}
.neo-product__variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.neo-product__variant-btn {
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: var(--neo-radius, 8px);
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--neo-font-family);
  transition: all 0.2s;
}
.neo-product__variant-btn:hover {
  border-color: var(--neo-primary, #4F46E5);
}
.neo-product__variant-btn--active {
  background: var(--neo-primary, #4F46E5);
  color: #fff;
  border-color: var(--neo-primary, #4F46E5);
}
.neo-product__quantity {
  margin-bottom: 24px;
}
.neo-product__quantity label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}
.neo-product__qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: var(--neo-radius, 8px);
  overflow: hidden;
}
.neo-product__qty-controls button {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--neo-surface, #f3f4f6);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.neo-product__qty-controls button:hover {
  background: #e5e7eb;
}
.neo-product__qty-controls input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid #d1d5db;
  border-right: 1px solid #d1d5db;
  font-size: 16px;
  font-family: var(--neo-font-family);
}
.neo-product__add-to-cart {
  width: 100%;
  padding: 14px;
  background: var(--neo-primary, #4F46E5);
  color: #fff;
  border: none;
  border-radius: var(--neo-radius, 8px);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--neo-font-family);
  cursor: pointer;
  transition: background 0.2s;
}
.neo-product__add-to-cart:hover {
  filter: brightness(0.9);
}
.neo-product__add-to-cart:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.neo-product__description {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.neo-product__description h3 {
  font-family: var(--neo-font-heading);
  margin-bottom: 12px;
}
.neo-product__description {
  line-height: 1.8;
}
.neo-product__related {
  padding: 48px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 32px;
}
@media (max-width: 480px) {
  .neo-header__inner {
    height: 56px;
  }
  .neo-sector__title {
    font-size: 1.5rem;
  }
}
.neo-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.neo-glass--dark {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.neo-glass--strong {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.neo-elevated {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.neo-elevated:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}
.neo-elevated--lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.neo-elevated--lg:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}
.neo-elevated--xl {
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.12);
}
.neo-elevated--xl:hover {
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.2);
  transform: translateY(-6px);
}
.neo-glow {
  box-shadow: 0 0 20px rgba(var(--neo-primary-rgb, 79, 70, 229), 0.3);
}
.neo-glow--accent {
  box-shadow: 0 0 20px rgba(var(--neo-accent-rgb, 245, 158, 11), 0.3);
}
.neo-glow--secondary {
  box-shadow: 0 0 20px rgba(var(--neo-secondary-rgb, 16, 185, 129), 0.3);
}
.neo-glow--soft {
  box-shadow: 0 0 40px rgba(var(--neo-primary-rgb, 79, 70, 229), 0.15);
}
.neo-glow--pulse {
  animation: neo-glow-pulse 2s ease-in-out infinite;
}
@keyframes neo-glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(var(--neo-primary-rgb, 79, 70, 229), 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(var(--neo-primary-rgb, 79, 70, 229), 0.5);
  }
}
.neo-gradient {
  background: linear-gradient(135deg, var(--neo-primary) 0%, var(--neo-secondary) 100%);
}
.neo-gradient--diagonal {
  background: linear-gradient(135deg, var(--neo-primary) 0%, var(--neo-accent) 100%);
}
.neo-gradient--radial {
  background: radial-gradient(circle at center, var(--neo-primary) 0%, var(--neo-secondary) 100%);
}
.neo-gradient--subtle {
  background: linear-gradient(180deg, var(--neo-surface) 0%, var(--neo-background) 100%);
}
.neo-gradient--dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.neo-gradient--mesh {
  background: radial-gradient(at 40% 20%, var(--neo-primary) 0px, transparent 50%), radial-gradient(at 80% 0%, var(--neo-accent) 0px, transparent 50%), radial-gradient(at 0% 50%, var(--neo-secondary) 0px, transparent 50%);
}
.neo-gradient-text {
  background: linear-gradient(135deg, var(--neo-primary), var(--neo-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.neo-pattern--dots {
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}
.neo-pattern--grid {
  background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.neo-pattern--diagonal {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.02) 10px, rgba(0, 0, 0, 0.02) 20px);
}
.neo-pattern--noise {
  position: relative;
}
.neo-pattern--noise::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.neo-pattern--noise > * {
  position: relative;
  z-index: 1;
}
.neo-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.neo-blob--primary {
  background: var(--neo-primary);
}
.neo-blob--secondary {
  background: var(--neo-secondary);
}
.neo-blob--accent {
  background: var(--neo-accent);
}
.neo-divider {
  width: 60px;
  height: 4px;
  background: var(--neo-primary);
  border-radius: 2px;
  margin: 0 auto;
}
.neo-divider--wide {
  width: 120px;
}
.neo-divider--gradient {
  width: 80px;
  background: linear-gradient(90deg, var(--neo-primary), var(--neo-accent));
}
.neo-divider--center {
  margin: 16px auto;
}
.neo-divider--start {
  margin: 16px 0;
}
.neo-text-balance {
  text-wrap: balance;
}
.neo-text-gradient {
  background: linear-gradient(135deg, var(--neo-primary), var(--neo-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.neo-text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.neo-text-shadow--strong {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.neo-text-shadow--glow {
  text-shadow: 0 0 20px rgba(var(--neo-primary-rgb, 79, 70, 229), 0.5);
}
.neo-overlay {
  position: relative;
  overflow: hidden;
}
.neo-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.neo-overlay--dark::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.neo-overlay--gradient::after {
  background: linear-gradient(135deg, rgba(var(--neo-primary-rgb, 79, 70, 229), 0.6) 0%, rgba(var(--neo-secondary-rgb, 16, 185, 129), 0.4) 100%);
}
.neo-overlay--full::after {
  background: rgba(0, 0, 0, 0.5);
}
.neo-overlay > * {
  position: relative;
  z-index: 1;
}
.neo-accent-border--top {
  border-top: 3px solid var(--neo-primary);
}
.neo-accent-border--bottom {
  border-bottom: 3px solid var(--neo-primary);
}
.neo-accent-border--right {
  border-right: 3px solid var(--neo-primary);
}
.neo-accent-border--left {
  border-left: 3px solid var(--neo-primary);
}
.neo-accent-border--gradient-top {
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--neo-primary), var(--neo-accent)) 1;
}
.neo-card {
  border-radius: var(--neo-radius, 8px);
  overflow: hidden;
  transition: all 0.3s ease;
}
.neo-card--bordered {
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.neo-card--filled {
  background: var(--neo-surface);
}
.neo-card--hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.neo-card--hover-glow:hover {
  box-shadow: 0 0 30px rgba(var(--neo-primary-rgb, 79, 70, 229), 0.2);
}
.neo-card--hover-border:hover {
  border-color: var(--neo-primary);
}
.neo-section-spacing--sm {
  padding: 40px 0;
}
.neo-section-spacing--md {
  padding: 80px 0;
}
.neo-section-spacing--lg {
  padding: 120px 0;
}
.neo-section-spacing--xl {
  padding: 160px 0;
}
.neo-aspect--video {
  aspect-ratio: 16/9;
}
.neo-aspect--square {
  aspect-ratio: 1;
}
.neo-aspect--portrait {
  aspect-ratio: 3/4;
}
.neo-aspect--wide {
  aspect-ratio: 21/9;
}
.neo-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.neo-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.neo-counter {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.neo-marquee {
  overflow: hidden;
  white-space: nowrap;
}
.neo-marquee__track {
  display: inline-flex;
  animation: neo-marquee 20s linear infinite;
}
@keyframes neo-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes neo-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.neo-float {
  animation: neo-float 3s ease-in-out infinite;
}
@keyframes neo-spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.neo-spin-slow {
  animation: neo-spin-slow 20s linear infinite;
}
.neo-clip--wave-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  padding-bottom: 40px;
}
.neo-clip--wave-top {
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  padding-top: 40px;
}
.neo-clip--diagonal {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
}
.neo-stagger > *:nth-child(1) {
  transition-delay: 0s;
}
.neo-stagger > *:nth-child(2) {
  transition-delay: 0.1s;
}
.neo-stagger > *:nth-child(3) {
  transition-delay: 0.2s;
}
.neo-stagger > *:nth-child(4) {
  transition-delay: 0.3s;
}
.neo-stagger > *:nth-child(5) {
  transition-delay: 0.4s;
}
.neo-stagger > *:nth-child(6) {
  transition-delay: 0.5s;
}
.neo-zoom-hover {
  overflow: hidden;
}
.neo-zoom-hover img {
  transition: transform 0.5s ease;
}
.neo-zoom-hover:hover img {
  transform: scale(1.08);
}
.neo-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .neo-parallax {
    background-attachment: scroll;
  }
}
.neo-header-preview--classic .neo-header-preview__inner {
  justify-content: space-between;
}
.neo-header--classic .neo-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.neo-header--classic .neo-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.neo-header--classic .neo-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.neo-header--classic .neo-nav__link {
  display: block;
  padding: 8px 16px;
  font-size: var(--neo-nav-font-size, 15px);
  font-family: var(--neo-nav-font-family, inherit);
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  border-radius: var(--neo-radius, 8px);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.neo-header--classic .neo-nav__link:hover {
  background: var(--neo-surface, rgba(0, 0, 0, 0.04));
  color: var(--neo-primary, #4F46E5);
}
.neo-header--classic .neo-header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.neo-header--classic .neo-header__action {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s;
  font-size: 15px;
}
.neo-header--classic .neo-header__action:hover {
  background: var(--neo-surface, rgba(0, 0, 0, 0.04));
}
.neo-header--classic.neo-header--spacing-compact .neo-header__inner {
  min-height: 56px;
}
.neo-header--classic.neo-header--spacing-comfortable .neo-header__inner {
  min-height: 68px;
}
.neo-header--classic.neo-header--spacing-airy .neo-header__inner {
  min-height: 82px;
}
.neo-header--classic.neo-header--overlay-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-glass-light {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-glass-dark {
  background: rgba(0, 0, 0, 0.45) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff !important;
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-nav__link {
  color: rgba(255, 255, 255, 0.9);
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__action {
  color: #fff;
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__action:hover {
  background: rgba(255, 255, 255, 0.1);
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__logo-text {
  color: #fff !important;
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-transparent {
  background: transparent !important;
  color: #fff !important;
  border-bottom-color: transparent;
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-transparent .neo-nav__link {
  color: rgba(255, 255, 255, 0.9);
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-transparent .neo-nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__action {
  color: #fff;
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__action:hover {
  background: rgba(255, 255, 255, 0.1);
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__logo-text {
  color: #fff !important;
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-solid-fade {
  background: transparent !important;
  color: #fff !important;
  transition: background-color 0.3s, backdrop-filter 0.3s, color 0.3s;
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-nav__link {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-header__action {
  color: #fff;
  transition: color 0.3s;
}
.neo-header--classic.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-header__logo-text {
  color: #fff !important;
  transition: color 0.3s;
}
.neo-header--classic.neo-header--border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .neo-header--classic .neo-header__nav {
    display: none;
  }
}
@media (max-width: 1024px) {
  .neo-header--classic.neo-header--mobile-1024 .neo-header__nav {
    display: none;
  }
  .neo-header--classic.neo-header--mobile-1024 .neo-header__hamburger {
    display: flex !important;
  }
}
.neo-header-preview--floating {
  margin: 8px 16px 0;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.neo-header-preview--floating .neo-header-preview__inner {
  padding: 0 20px;
  justify-content: space-between;
}
.neo-header--floating {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 16px 24px 0;
}
.neo-header--floating .neo-header__floating {
  background: var(--neo-header-float-bg, rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  padding: 0 24px;
  transition: all 0.3s ease;
}
.neo-header--floating .neo-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.neo-header--floating .neo-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.neo-header--floating .neo-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.neo-header--floating .neo-nav__link {
  display: block;
  padding: 8px 14px;
  font-size: var(--neo-nav-font-size, 14px);
  font-family: var(--neo-nav-font-family, inherit);
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s;
  white-space: nowrap;
}
.neo-header--floating .neo-nav__link:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--neo-primary, #4F46E5);
}
.neo-header--floating .neo-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.neo-header--floating .neo-header__action {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: inherit;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 14px;
}
.neo-header--floating .neo-header__action:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: scale(1.05);
}
.neo-header--floating.neo-header--spacing-compact .neo-header__inner {
  min-height: 52px;
}
.neo-header--floating.neo-header--spacing-comfortable .neo-header__inner {
  min-height: 62px;
}
.neo-header--floating.neo-header--spacing-airy .neo-header__inner {
  min-height: 76px;
}
.neo-header--floating.neo-header--border-bottom .neo-header__floating {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.neo-header--floating.neo-header--overlay-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-glass-light .neo-header__floating {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__floating {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-nav__link {
  color: rgba(255, 255, 255, 0.9);
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__action {
  color: #fff;
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__action:hover {
  background: rgba(255, 255, 255, 0.1);
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__logo-text {
  color: #fff !important;
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__floating {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
  color: #fff;
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-transparent .neo-nav__link {
  color: rgba(255, 255, 255, 0.9);
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-transparent .neo-nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__action {
  color: #fff;
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__action:hover {
  background: rgba(255, 255, 255, 0.1);
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__logo-text {
  color: #fff !important;
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-header__floating {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
  color: #fff;
  transition: all 0.3s;
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-nav__link {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-header__action {
  color: #fff;
  transition: color 0.3s;
}
.neo-header--floating.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-header__logo-text {
  color: #fff !important;
  transition: color 0.3s;
}
.neo-header--floating.neo-header--sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (max-width: 768px) {
  .neo-header--floating {
    padding: 8px 12px 0;
  }
  .neo-header--floating .neo-header__floating {
    border-radius: 14px;
    padding: 0 16px;
  }
  .neo-header--floating .neo-header__nav {
    display: none;
  }
}
@media (max-width: 1024px) {
  .neo-header--floating.neo-header--mobile-1024 .neo-header__nav {
    display: none;
  }
  .neo-header--floating.neo-header--mobile-1024 .neo-header__hamburger {
    display: flex !important;
  }
}
.neo-header-preview--stacked .neo-header-preview__inner {
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 0 6px;
}
.neo-header-preview--stacked .neo-header-preview__actions {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.neo-header-preview--stacked .neo-header-preview__nav {
  order: 2;
  font-size: 12px;
}
.neo-header-preview--stacked .neo-header-preview__logo {
  order: 1;
}
.neo-header--stacked .neo-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
.neo-header--stacked .neo-header__logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 0 12px;
  position: relative;
}
.neo-header--stacked .neo-header__logo {
  display: flex;
  align-items: center;
}
.neo-header--stacked .neo-header__divider {
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.08), transparent);
  margin: 0 auto;
}
.neo-header--stacked .neo-header__nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 0;
  position: relative;
}
.neo-header--stacked .neo-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.neo-header--stacked .neo-nav__link {
  display: block;
  padding: 6px 16px;
  font-size: var(--neo-nav-font-size, 13px);
  font-family: var(--neo-nav-font-family, inherit);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.neo-header--stacked .neo-nav__link:hover {
  color: var(--neo-primary, #4F46E5);
}
.neo-header--stacked .neo-header__actions {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
}
[dir=rtl] .neo-header--stacked .neo-header__actions {
  left: auto;
  right: 0;
}
.neo-header--stacked .neo-header__action {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s;
  font-size: 14px;
}
.neo-header--stacked .neo-header__action:hover {
  background: rgba(0, 0, 0, 0.04);
}
.neo-header--stacked.neo-header--spacing-compact .neo-header__logo-row {
  padding: 10px 0 8px;
}
.neo-header--stacked.neo-header--spacing-compact .neo-header__nav-row {
  padding: 6px 0;
}
.neo-header--stacked.neo-header--spacing-comfortable .neo-header__logo-row {
  padding: 16px 0 12px;
}
.neo-header--stacked.neo-header--spacing-comfortable .neo-header__nav-row {
  padding: 8px 0;
}
.neo-header--stacked.neo-header--spacing-airy .neo-header__logo-row {
  padding: 24px 0 16px;
}
.neo-header--stacked.neo-header--spacing-airy .neo-header__nav-row {
  padding: 10px 0;
}
.neo-header--stacked.neo-header--overlay-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-glass-light {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-glass-dark {
  background: rgba(0, 0, 0, 0.45) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff !important;
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-nav__link {
  color: rgba(255, 255, 255, 0.85);
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-nav__link:hover {
  color: #fff;
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__action {
  color: #fff;
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__logo-text {
  color: #fff !important;
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__divider {
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-transparent {
  background: transparent !important;
  color: #fff !important;
  border-bottom: none;
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-transparent .neo-nav__link {
  color: rgba(255, 255, 255, 0.85);
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-transparent .neo-nav__link:hover {
  color: #fff;
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__action {
  color: #fff;
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__logo-text {
  color: #fff !important;
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__divider {
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-solid-fade {
  background: transparent !important;
  color: #fff !important;
  transition: all 0.3s;
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-nav__link {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-header__action {
  color: #fff;
  transition: color 0.3s;
}
.neo-header--stacked.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-header__divider {
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: background 0.3s;
}
.neo-header--stacked.neo-header--border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .neo-header--stacked .neo-header__inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .neo-header--stacked .neo-header__logo-row {
    padding: 0;
    width: auto;
  }
  .neo-header--stacked .neo-header__divider {
    display: none;
  }
  .neo-header--stacked .neo-header__nav-row {
    display: none;
  }
  .neo-header--stacked .neo-header__actions {
    position: static;
    transform: none;
  }
  .neo-header--stacked .neo-header__inner {
    height: 60px;
  }
}
@media (max-width: 1024px) {
  .neo-header--stacked.neo-header--mobile-1024 .neo-header__inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .neo-header--stacked.neo-header--mobile-1024 .neo-header__logo-row {
    padding: 0;
    width: auto;
  }
  .neo-header--stacked.neo-header--mobile-1024 .neo-header__divider {
    display: none;
  }
  .neo-header--stacked.neo-header--mobile-1024 .neo-header__nav-row {
    display: none;
  }
  .neo-header--stacked.neo-header--mobile-1024 .neo-header__actions {
    position: static;
    transform: none;
  }
  .neo-header--stacked.neo-header--mobile-1024 .neo-header__hamburger {
    display: flex !important;
  }
}
.neo-header-preview--editorial .neo-header-preview__inner {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
}
.neo-header-preview--editorial .neo-header-preview__logo {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}
.neo-header-preview--editorial .neo-header-preview__nav {
  display: flex;
  justify-content: center;
  padding: 5px 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.neo-header-preview--editorial .neo-header-preview__actions {
  position: absolute;
  left: 16px;
  top: 8px;
}
.neo-header--editorial .neo-header__inner {
  display: flex;
  flex-direction: column;
}
.neo-header--editorial .neo-header__row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  position: relative;
}
.neo-header--editorial .neo-header__row-top--centered {
  justify-content: center;
  gap: 0;
}
.neo-header--editorial .neo-header__row-top--centered .neo-header__actions--start,
.neo-header--editorial .neo-header__row-top--centered .neo-header__actions--end {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}
.neo-header--editorial .neo-header__row-top--centered .neo-header__actions--start {
  justify-content: flex-start;
}
.neo-header--editorial .neo-header__row-top--centered .neo-header__actions--end {
  justify-content: flex-end;
}
.neo-header--editorial .neo-header__row-top--centered .neo-header__logo--centered {
  flex: 0 0 auto;
  text-align: center;
  padding: 0 24px;
}
.neo-header--editorial .neo-header__row-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.neo-header--editorial .neo-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.neo-header--editorial .neo-nav__link {
  display: block;
  padding: 12px 20px;
  font-size: var(--neo-nav-font-size, 13px);
  font-family: var(--neo-nav-font-family, inherit);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}
.neo-header--editorial .neo-nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--neo-primary, #4F46E5);
  transition: left 0.3s ease, right 0.3s ease;
}
.neo-header--editorial .neo-nav__link:hover {
  color: var(--neo-primary, #4F46E5);
}
.neo-header--editorial .neo-nav__link:hover::after {
  left: 20px;
  right: 20px;
}
.neo-header--editorial .neo-header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.neo-header--editorial .neo-header__action {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s;
  font-size: 15px;
}
.neo-header--editorial .neo-header__action:hover {
  background: rgba(0, 0, 0, 0.04);
}
.neo-header--editorial.neo-header--spacing-compact .neo-header__row-top {
  padding: 10px 0;
}
.neo-header--editorial.neo-header--spacing-compact .neo-nav__link {
  padding: 8px 16px;
  font-size: var(--neo-nav-font-size, 12px);
}
.neo-header--editorial.neo-header--spacing-comfortable .neo-header__row-top {
  padding: 16px 0;
}
.neo-header--editorial.neo-header--spacing-comfortable .neo-nav__link {
  padding: 12px 20px;
}
.neo-header--editorial.neo-header--spacing-airy .neo-header__row-top {
  padding: 22px 0;
}
.neo-header--editorial.neo-header--spacing-airy .neo-nav__link {
  padding: 14px 24px;
  font-size: var(--neo-nav-font-size, 14px);
}
.neo-header--editorial.neo-header--overlay-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-glass-light {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-glass-light .neo-header__row-top {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-glass-light .neo-header__row-bottom {
  border-bottom-color: rgba(0, 0, 0, 0.03);
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-glass-dark {
  background: rgba(0, 0, 0, 0.45) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff !important;
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__row-top {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__row-bottom {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-nav__link {
  color: rgba(255, 255, 255, 0.9);
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-nav__link:hover {
  color: #fff;
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-nav__link::after {
  background: #fff;
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__action {
  color: #fff;
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__action:hover {
  background: rgba(255, 255, 255, 0.1);
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__logo-text {
  color: #fff !important;
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-transparent {
  background: transparent !important;
  color: #fff !important;
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__row-top {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__row-bottom {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-transparent .neo-nav__link {
  color: rgba(255, 255, 255, 0.9);
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-transparent .neo-nav__link:hover {
  color: #fff;
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-transparent .neo-nav__link::after {
  background: #fff;
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__action {
  color: #fff;
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__action:hover {
  background: rgba(255, 255, 255, 0.1);
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__logo-text {
  color: #fff !important;
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-solid-fade {
  background: transparent !important;
  color: #fff !important;
  transition: all 0.3s;
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-header__row-top {
  border-bottom-color: rgba(255, 255, 255, 0.15);
  transition: border-color 0.3s;
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-header__row-bottom {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s;
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-nav__link {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
}
.neo-header--editorial.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-header__action {
  color: #fff;
  transition: color 0.3s;
}
.neo-header--editorial.neo-header--scrolled .neo-header__row-top {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
.neo-header--editorial.neo-header--scrolled .neo-header__row-bottom {
  border-bottom-color: rgba(0, 0, 0, 0.04);
}
.neo-header--editorial.neo-header--border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .neo-header--editorial .neo-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
  }
  .neo-header--editorial .neo-header__row-top {
    border-bottom: none;
    padding: 0;
    flex: 1;
  }
  .neo-header--editorial .neo-header__row-top--centered .neo-header__actions--start {
    display: none;
  }
  .neo-header--editorial .neo-header__row-top--centered .neo-header__logo--centered {
    padding: 0;
  }
  .neo-header--editorial .neo-header__row-top--centered .neo-header__actions--end {
    flex: 0;
  }
  .neo-header--editorial .neo-header__row-bottom {
    display: none;
  }
}
@media (max-width: 1024px) {
  .neo-header--editorial.neo-header--mobile-1024 .neo-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
  }
  .neo-header--editorial.neo-header--mobile-1024 .neo-header__row-top {
    border-bottom: none;
    padding: 0;
    flex: 1;
  }
  .neo-header--editorial.neo-header--mobile-1024 .neo-header__row-top--centered .neo-header__actions--start {
    display: none;
  }
  .neo-header--editorial.neo-header--mobile-1024 .neo-header__row-top--centered .neo-header__logo--centered {
    padding: 0;
  }
  .neo-header--editorial.neo-header--mobile-1024 .neo-header__row-top--centered .neo-header__actions--end {
    flex: 0;
  }
  .neo-header--editorial.neo-header--mobile-1024 .neo-header__row-bottom {
    display: none;
  }
  .neo-header--editorial.neo-header--mobile-1024 .neo-header__hamburger {
    display: flex !important;
  }
}
.neo-header-preview--capsule {
  margin: 8px auto 0;
  max-width: 85%;
  border-radius: 999px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.neo-header-preview--capsule .neo-header-preview__inner {
  padding: 0 20px;
  height: 44px;
}
.neo-header-preview--capsule .neo-header-preview__link {
  font-size: 11px;
}
.neo-header-preview--capsule .neo-header-preview__logo-img {
  max-height: 24px !important;
}
.neo-header--capsule {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 12px 0 0;
  display: flex;
  justify-content: center;
}
.neo-header--capsule .neo-container {
  max-width: 900px;
}
.neo-header--capsule .neo-header__capsule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--neo-header-capsule-bg, rgba(255, 255, 255, 0.92));
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  padding: 0 8px 0 20px;
  min-height: 48px;
  transition: all 0.3s;
}
.neo-header--capsule .neo-header__logo img {
  max-height: 26px;
}
.neo-header--capsule .neo-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.neo-header--capsule .neo-nav__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.neo-header--capsule .neo-nav__link {
  display: block;
  padding: 6px 12px;
  font-size: var(--neo-nav-font-size, 13px);
  font-family: var(--neo-nav-font-family, inherit);
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s;
  white-space: nowrap;
}
.neo-header--capsule .neo-nav__link:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--neo-primary, #4F46E5);
}
.neo-header--capsule .neo-header__actions {
  display: flex;
  align-items: center;
  gap: 2px;
}
.neo-header--capsule .neo-header__action {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: inherit;
  text-decoration: none;
  transition: all 0.15s;
  font-size: 13px;
}
.neo-header--capsule .neo-header__action:hover {
  background: rgba(0, 0, 0, 0.04);
}
.neo-header--capsule .neo-header__cta {
  border-radius: 999px !important;
  padding: 6px 18px !important;
  font-size: 13px !important;
  height: 34px;
  display: flex;
  align-items: center;
}
.neo-header--capsule.neo-header--spacing-compact .neo-header__capsule {
  min-height: 40px;
  padding: 0 16px;
}
.neo-header--capsule.neo-header--spacing-compact .neo-nav__link {
  padding: 4px 10px;
  font-size: var(--neo-nav-font-size, 12px);
}
.neo-header--capsule.neo-header--spacing-comfortable .neo-header__capsule {
  min-height: 48px;
}
.neo-header--capsule.neo-header--spacing-airy .neo-header__capsule {
  min-height: 56px;
  padding: 0 28px;
}
.neo-header--capsule.neo-header--spacing-airy .neo-nav__link {
  padding: 8px 14px;
}
.neo-header--capsule.neo-header--border-bottom .neo-header__capsule {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.neo-header--capsule.neo-header--overlay-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.neo-header--capsule.neo-header--overlay-hero.neo-header--overlay-glass-light .neo-header__capsule {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.3);
}
.neo-header--capsule.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__capsule {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.neo-header--capsule.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-nav__link {
  color: rgba(255, 255, 255, 0.9);
}
.neo-header--capsule.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.neo-header--capsule.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__action {
  color: #fff;
}
.neo-header--capsule.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__action:hover {
  background: rgba(255, 255, 255, 0.1);
}
.neo-header--capsule.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__logo-text {
  color: #fff !important;
}
.neo-header--capsule.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__capsule {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  color: #fff;
}
.neo-header--capsule.neo-header--overlay-hero.neo-header--overlay-transparent .neo-nav__link {
  color: rgba(255, 255, 255, 0.9);
}
.neo-header--capsule.neo-header--overlay-hero.neo-header--overlay-transparent .neo-nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.neo-header--capsule.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__action {
  color: #fff;
}
.neo-header--capsule.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__action:hover {
  background: rgba(255, 255, 255, 0.1);
}
.neo-header--capsule.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__logo-text {
  color: #fff !important;
}
.neo-header--capsule.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-header__capsule {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
  color: #fff;
  transition: all 0.3s;
}
.neo-header--capsule.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-nav__link {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
}
.neo-header--capsule.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-header__action {
  color: #fff;
  transition: color 0.3s;
}
.neo-header--capsule.neo-header--sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (max-width: 768px) {
  .neo-header--capsule {
    padding: 8px 16px 0;
  }
  .neo-header--capsule .neo-container {
    max-width: 100%;
  }
  .neo-header--capsule .neo-header__capsule {
    padding: 0 8px 0 16px;
    min-height: 44px;
  }
  .neo-header--capsule .neo-header__nav {
    display: none;
  }
  .neo-header--capsule .neo-header__logo img {
    max-height: 22px;
  }
}
@media (max-width: 1024px) {
  .neo-header--capsule.neo-header--mobile-1024 .neo-header__nav {
    display: none;
  }
  .neo-header--capsule.neo-header--mobile-1024 .neo-header__hamburger {
    display: flex !important;
  }
}
.neo-header-preview--mega .neo-header-preview__inner {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
}
.neo-header-preview--mega .neo-header-preview__logo {
  display: flex;
  align-items: center;
  padding: 8px 16px;
}
.neo-header-preview--mega .neo-header-preview__nav {
  display: flex;
  padding: 4px 16px;
  background: rgba(0, 0, 0, 0.02);
  font-size: 11px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  gap: 4px;
  overflow: hidden;
}
.neo-header-preview--mega .neo-header-preview__actions {
  position: absolute;
  left: 16px;
  top: 8px;
}
.neo-header--mega .neo-header__inner {
  display: flex;
  flex-direction: column;
}
.neo-header--mega .neo-header__row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.neo-header--mega .neo-header__row-bottom {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.01);
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  mask-image: linear-gradient(to left, transparent, black 24px, black calc(100% - 24px), transparent);
  -webkit-mask-image: linear-gradient(to left, transparent, black 24px, black calc(100% - 24px), transparent);
}
.neo-header--mega .neo-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.neo-header--mega .neo-nav__item {
  position: relative;
}
.neo-header--mega .neo-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  font-size: var(--neo-nav-font-size, 14px);
  font-family: var(--neo-nav-font-family, inherit);
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.neo-header--mega .neo-nav__link:hover {
  color: var(--neo-primary, #4F46E5);
  background: rgba(0, 0, 0, 0.02);
}
.neo-header--mega .neo-nav__link.has-children::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  opacity: 0.5;
  transition: transform 0.2s;
}
.neo-header--mega .neo-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.neo-header--mega .neo-header__action {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s;
  font-size: 15px;
}
.neo-header--mega .neo-header__action:hover {
  background: rgba(0, 0, 0, 0.04);
}
.neo-header--mega .neo-header__row-top--centered {
  justify-content: center;
  gap: 0;
}
.neo-header--mega .neo-header__row-top--centered .neo-header__actions--start,
.neo-header--mega .neo-header__row-top--centered .neo-header__actions--end {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.neo-header--mega .neo-header__row-top--centered .neo-header__actions--start {
  justify-content: flex-start;
}
.neo-header--mega .neo-header__row-top--centered .neo-header__actions--end {
  justify-content: flex-end;
}
.neo-header--mega .neo-header__row-top--centered .neo-header__logo--centered {
  flex: 0 0 auto;
  text-align: center;
  padding: 0 20px;
}
.neo-header--mega.neo-header--spacing-compact .neo-header__row-top {
  padding: 8px 0;
}
.neo-header--mega.neo-header--spacing-compact .neo-nav__link {
  padding: 8px 12px;
  font-size: var(--neo-nav-font-size, 13px);
}
.neo-header--mega.neo-header--spacing-comfortable .neo-header__row-top {
  padding: 12px 0;
}
.neo-header--mega.neo-header--spacing-comfortable .neo-nav__link {
  padding: 10px 16px;
}
.neo-header--mega.neo-header--spacing-airy .neo-header__row-top {
  padding: 16px 0;
}
.neo-header--mega.neo-header--spacing-airy .neo-nav__link {
  padding: 14px 20px;
}
.neo-header--mega.neo-header--overlay-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-glass-light {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-glass-light .neo-header__row-bottom {
  border-top-color: rgba(0, 0, 0, 0.04);
  background: rgba(0, 0, 0, 0.02);
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-glass-dark {
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff !important;
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__row-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-nav__link {
  color: rgba(255, 255, 255, 0.9);
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__action {
  color: #fff;
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-glass-dark .neo-header__logo-text {
  color: #fff !important;
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-transparent {
  background: transparent !important;
  color: #fff !important;
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__row-bottom {
  border-top-color: rgba(255, 255, 255, 0.15);
  background: transparent;
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-transparent .neo-nav__link {
  color: rgba(255, 255, 255, 0.9);
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-transparent .neo-nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__action {
  color: #fff;
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-transparent .neo-header__logo-text {
  color: #fff !important;
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-solid-fade {
  background: transparent !important;
  color: #fff !important;
  transition: all 0.3s;
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-header__row-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
  background: transparent;
  transition: all 0.3s;
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-nav__link {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
}
.neo-header--mega.neo-header--overlay-hero.neo-header--overlay-solid-fade .neo-header__action {
  color: #fff;
  transition: color 0.3s;
}
.neo-header--mega.neo-header--border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .neo-header--mega .neo-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
  }
  .neo-header--mega .neo-header__row-top {
    padding: 0;
    flex: 1;
  }
  .neo-header--mega .neo-header__row-top--centered .neo-header__actions--start {
    display: none;
  }
  .neo-header--mega .neo-header__row-top--centered .neo-header__logo--centered {
    padding: 0;
  }
  .neo-header--mega .neo-header__row-top--centered .neo-header__actions--end {
    flex: 0;
  }
  .neo-header--mega .neo-header__row-bottom {
    display: none;
  }
}
@media (max-width: 1024px) {
  .neo-header--mega.neo-header--mobile-1024 .neo-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 60px;
  }
  .neo-header--mega.neo-header--mobile-1024 .neo-header__row-top {
    padding: 0;
    flex: 1;
  }
  .neo-header--mega.neo-header--mobile-1024 .neo-header__row-bottom {
    display: none;
  }
  .neo-header--mega.neo-header--mobile-1024 .neo-header__hamburger {
    display: flex !important;
  }
}
.neo-header-preview--burger {
  overflow: visible;
}
.neo-header-preview--burger .neo-header-preview__inner--burger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.neo-header-preview--burger .neo-header-preview__nav {
  display: none;
}
.neo-header-preview--burger .neo-header-preview__logo--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.neo-header-preview--burger .neo-header-preview__burger-toggle {
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.15s;
  z-index: 2;
}
.neo-header-preview--burger .neo-header-preview__burger-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}
.neo-header-preview--burger .neo-burger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 20px;
  height: 16px;
}
.neo-header-preview--burger .neo-burger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-origin: center;
}
.neo-header-preview--burger .neo-burger-icon.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.neo-header-preview--burger .neo-burger-icon.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.neo-header-preview--burger .neo-burger-icon.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.neo-header-preview--burger .neo-header-preview__actions {
  z-index: 2;
}
.neo-header-preview--burger .neo-header-preview__burger-menu {
  background: inherit;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 20px 20px;
  overflow: hidden;
}
.neo-header-preview--burger .neo-burger-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.neo-header-preview--burger .neo-burger-menu__link {
  display: block;
  padding: 10px 16px;
  color: inherit;
  text-decoration: none;
  font-size: var(--neo-nav-font-size, 15px);
  font-family: var(--neo-nav-font-family, inherit);
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.15s;
}
.neo-header-preview--burger .neo-burger-menu__link:hover {
  background: rgba(0, 0, 0, 0.04);
}
.neo-header-preview--burger .neo-burger-menu__cta {
  margin-top: 12px;
  padding: 0 16px;
}
.neo-header-preview--burger .neo-burger-menu__cta .neo-header-preview__cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px 20px;
  pointer-events: none;
}
.neo-burger-menu-enter-active {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.neo-burger-menu-leave-active {
  transition: all 0.2s ease-in;
}
.neo-burger-menu-enter,
.neo-burger-menu-leave-to {
  opacity: 0;
  max-height: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.neo-burger-menu-enter-to,
.neo-burger-menu-leave {
  opacity: 1;
  max-height: 400px;
}
.neo-header--burger .neo-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.neo-header--burger .neo-header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.neo-header--burger .neo-header__nav {
  display: none !important;
}
.neo-header--burger .neo-header__hamburger,
.neo-header--burger .neo-header__hamburger--always {
  display: flex !important;
  order: -1;
}
.neo-header--burger.neo-header--spacing-compact .neo-header__inner {
  padding: 8px 0;
}
.neo-header--burger.neo-header--spacing-airy .neo-header__inner {
  padding: 22px 0;
}
.neo-header--custom .neo-header__custom {
  width: 100%;
}
.neo-header--custom .neo-custom-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.neo-header--custom .neo-custom-nav__link {
  display: block;
  padding: 8px 16px;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.neo-header--custom .neo-custom-nav__link:hover {
  opacity: 0.7;
}
.neo-header--custom .neo-custom-logo img {
  max-width: 100%;
  height: auto;
}
.neo-header--custom .neo-custom-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: inherit;
  text-decoration: none;
  border-radius: 50%;
  transition: background 0.2s;
}
.neo-header--custom .neo-custom-action:hover {
  background: rgba(0, 0, 0, 0.05);
}
.neo-header--custom .neo-custom-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 8px;
  background: var(--neo-primary, #4F46E5);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.neo-header--custom .neo-custom-cta:hover {
  opacity: 0.9;
}
.neo-dynamic-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.neo-dynamic-products__card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--neo-surface, #fff);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.neo-dynamic-products__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.neo-dynamic-products__image-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}
.neo-dynamic-products__image-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.neo-dynamic-products__image-wrap:hover img {
  transform: scale(1.05);
}
.neo-dynamic-products__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--neo-primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.neo-dynamic-products__badge:empty {
  display: none;
}
.neo-dynamic-products__info {
  padding: 16px;
}
.neo-dynamic-products__title {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.4;
}
.neo-dynamic-products__title a {
  color: var(--neo-text);
  text-decoration: none;
}
.neo-dynamic-products__title a:hover {
  color: var(--neo-primary);
}
.neo-dynamic-products__prices {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.neo-dynamic-products__price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--neo-primary);
}
.neo-dynamic-products__compare {
  text-decoration: line-through;
  color: #999;
  font-size: 0.85rem;
}
.neo-dynamic-products__compare:empty {
  display: none;
}
.neo-dynamic-products__btn {
  display: block;
  text-align: center;
  background: var(--neo-primary);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 0.3s;
}
.neo-dynamic-products__btn:hover {
  opacity: 0.9;
}
.neo-dynamic-products--carousel .neo-dynamic-products__track {
  scrollbar-width: none;
}
.neo-dynamic-products--carousel .neo-dynamic-products__track::-webkit-scrollbar {
  display: none;
}
@media (max-width: 992px) {
  .neo-dynamic-products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .neo-dynamic-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.neo-dynamic-form__form {
  max-width: 600px;
  margin: 0 auto;
}
.neo-dynamic-form__field {
  margin-bottom: 20px;
}
.neo-dynamic-form__label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--neo-text);
}
.neo-dynamic-form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--neo-surface, #fff);
}
.neo-dynamic-form__input:focus {
  outline: none;
  border-color: var(--neo-primary);
  box-shadow: 0 0 0 3px rgba(var(--neo-primary-rgb, 79, 70, 229), 0.15);
}
.neo-dynamic-form__submit {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  font-size: 1rem;
  cursor: pointer;
}
#etxcart .etx-checkout {
  --primary: #667eea;
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --border: #e5e7eb;
  --bg-main: #f5f6fa;
  --bg-card: #ffffff;
  --bg-light: #f9fafb;
  --text-dark: #111827;
  --text-muted: #6b7280;
  --success: #10b981;
  --success-bg: #fdfdec;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  min-height: 100vh;
  background: var(--bg-main);
  padding: 1rem;
}
#etxcart .etx-checkout * {
  box-sizing: border-box;
}
#etxcart .etx-checkout-container {
  max-width: 1400px;
  margin: 0 auto;
}
#etxcart .etx-checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
#etxcart .etx-checkout-header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}
#etxcart .etx-checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.95fr 1.1fr;
  gap: 1rem;
  align-items: stretch;
}
#etxcart .etx-checkout .etx-column {
  background: var(--bg-card);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  min-height: 600px;
  max-height: 750px;
  display: flex;
  flex-direction: column;
}
#etxcart .etx-checkout .etx-column-content {
  padding: 1rem;
  overflow-y: auto;
  flex: 1;
}
#etxcart .etx-checkout .etx-column-content::-webkit-scrollbar {
  width: 4px;
}
#etxcart .etx-checkout .etx-column-content::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 2px;
}
#etxcart .etx-checkout .etx-column-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}
#etxcart .etx-checkout .etx-column--payment .etx-column-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
#etxcart .etx-checkout .etx-column--payment .etx-payment-section {
  padding: 1rem 1.25rem;
}
#etxcart .etx-checkout .etx-column--payment .etx-payment-section:last-child {
  border-bottom: none;
}
#etxcart .etx-checkout .etx-column--payment .etx-section-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#etxcart .etx-checkout .etx-column--payment .etx-section-title i {
  color: var(--primary);
}
#etxcart .etx-checkout .etx-column--payment .etx-shipping-options,
#etxcart .etx-checkout .etx-column--payment .etx-order-summary,
#etxcart .etx-checkout .etx-column--payment .etx-payment-options {
  padding: 0;
  background: transparent;
  border: none;
  margin: 0;
}
#etxcart .etx-checkout .etx-column--payment .etx-shipping-list {
  gap: 0.375rem;
}
#etxcart .etx-checkout .etx-column--payment .etx-option-content {
  padding: 0.75rem;
}
#etxcart .etx-checkout .etx-column--payment .etx-option-content:hover {
  background: #f3f4f6;
}
#etxcart .etx-checkout .etx-column--payment .etx-shipping-option--selected .etx-option-content {
  background: var(--success-bg);
  border-color: var(--success);
  margin-bottom: 0;
}
#etxcart .etx-checkout .etx-column--payment .etx-summary-line {
  padding: 0.5rem 0;
  font-size: 0.9rem;
}
#etxcart .etx-checkout .etx-column--payment .etx-line--total {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 2px solid var(--border);
}
#etxcart .etx-checkout .etx-column--payment .etx-value--total {
  font-size: 1.25rem;
  font-weight: 800;
}
#etxcart .etx-checkout .etx-column--payment .etx-benefits,
#etxcart .etx-checkout .etx-column--payment .etx-installments,
#etxcart .etx-checkout .etx-column--payment .etx-payment-description,
#etxcart .etx-checkout .etx-column--payment .etx-payment-info-box {
  display: none;
}
#etxcart .etx-checkout .etx-column--payment .etx-checkout-final {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 1.5rem;
  border-top: 2px solid rgba(102, 126, 234, 0.2);
  margin-top: auto;
}
#etxcart .etx-checkout .etx-column--payment .etx-checkout-final .etx-btn-checkout {
  margin-top: 1rem;
  box-shadow: 0 10px 25px -5px rgba(102, 126, 234, 0.25);
}
#etxcart .etx-checkout .etx-column--payment .etx-checkout-final .etx-btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -5px rgba(102, 126, 234, 0.35);
}
#etxcart .etx-checkout .etx-column--shipping input,
#etxcart .etx-checkout .etx-column--shipping textarea {
  padding: 0.5rem;
  font-size: 0.9rem;
}
#etxcart .etx-checkout .etx-column--shipping label {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
#etxcart .etx-checkout .etx-secure-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #28a745;
  font-size: 0.9rem;
}
#etxcart .etx-checkout .etx-security-badges {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
#etxcart .etx-checkout .etx-security-badges img {
  height: 20px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.2s;
}
#etxcart .etx-checkout .etx-security-badges img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@media (max-width: 1024px) {
  #etxcart .etx-checkout-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #etxcart .etx-checkout .etx-column {
    min-height: auto;
    max-height: none;
  }
  #etxcart .etx-checkout .etx-column--items {
    order: 1;
  }
  #etxcart .etx-checkout .etx-column--shipping {
    order: 2;
  }
  #etxcart .etx-checkout .etx-column--payment {
    order: 3;
  }
}
@media (max-width: 768px) {
  #etxcart .etx-checkout {
    padding: 0.5rem;
  }
  #etxcart .etx-checkout-header {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  #etxcart .etx-checkout-header h1 {
    font-size: 1.25rem;
  }
  #etxcart .etx-checkout .etx-column-content {
    padding: 0.75rem;
  }
}
#etxcart [dir=rtl] .etx-checkout-grid {
  direction: rtl;
}
#etxcart [dir=rtl] .etx-secure-badge,
#etxcart [dir=rtl] .etx-column-title {
  flex-direction: row-reverse;
}
#etxcart .etx-security-bar {
  background: linear-gradient(90deg, #f0fdf4 0%, #e0f2fe 100%);
  border-bottom: 1px solid #e5e7eb;
  padding: 0.625rem 0;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 2rem;
}
#etxcart .etx-security-bar__content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0 1rem;
}
#etxcart .etx-security-bar__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: #374151;
}
#etxcart .etx-security-bar__item i {
  font-size: 0.875rem;
  color: #10b981;
}
#etxcart {
  /* Trust Section */
}
#etxcart .etx-trust-section {
  margin: 1rem 0;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 6px;
}
#etxcart .etx-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
#etxcart .etx-card-logo {
  height: 20px;
  width: auto;
  opacity: 0.7;
}
#etxcart .etx-trust-divider {
  width: 1px;
  height: 20px;
  background: #e5e7eb;
}
#etxcart .etx-trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: #6b7280;
}
#etxcart .etx-trust-item i {
  color: #10b981;
}
#etxcart {
  /* Checkout Button */
}
#etxcart .etx-checkout-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
#etxcart .etx-checkout-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}
#etxcart .etx-checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#etxcart .etx-checkout-btn--loading {
  background: #9ca3af;
}
#etxcart .etx-checkout-btn i {
  font-size: 0.875rem;
}
#etxcart {
  /* Footer Security */
}
#etxcart .etx-checkout-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}
#etxcart .etx-footer-security {
  text-align: center;
}
#etxcart .etx-footer-security__text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #6b7280;
}
#etxcart .etx-footer-security__text i {
  color: #3b82f6;
}
#etxcart {
  /* Payment Section */
}
#etxcart .etx-payment-section {
  margin-bottom: 0;
}
#etxcart .etx-payment-section:last-child {
  margin-bottom: 0;
}
#etxcart .etx-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}
#etxcart .etx-section-title i {
  font-size: 0.875rem;
  color: #6b7280;
}
#etxcart {
  /* Grid Layout */
}
#etxcart .etx-checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  align-items: start;
}
#etxcart .etx-column {
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 600px;
  max-height: 700px;
  display: flex;
  flex-direction: column;
}
#etxcart .etx-column-content {
  padding: 1rem;
  overflow-y: auto;
  flex: 1;
}
#etxcart {
  /* Responsive */
}
@media (max-width: 1024px) {
  #etxcart .etx-checkout-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #etxcart .etx-column {
    min-height: auto;
    max-height: none;
  }
}
@media (max-width: 640px) {
  #etxcart .etx-security-bar__content {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  #etxcart .etx-trust-badges {
    flex-wrap: wrap;
  }
}
#etxcart .etx-checkout-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 3rem;
}
#etxcart .etx-loading-container {
  text-align: center;
}
#etxcart .etx-loading-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  position: relative;
}
#etxcart .etx-loading-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
#etxcart .etx-loading-ring:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-top-color: #8b5cf6;
  animation-delay: 0.2s;
}
#etxcart .etx-loading-ring:nth-child(3) {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-top-color: #a78bfa;
  animation-delay: 0.4s;
}
#etxcart .etx-loading-text {
  font-size: 1.125rem;
  color: #6b7280;
  font-weight: 500;
}
#etxcart {
  /* Empty Cart */
}
#etxcart .etx-empty-cart-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 3rem;
}
#etxcart .etx-empty-cart {
  text-align: center;
  max-width: 400px;
}
#etxcart .etx-empty-cart__icon {
  font-size: 5rem;
  color: #e5e7eb;
  margin-bottom: 1.5rem;
}
#etxcart .etx-empty-cart__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}
#etxcart .etx-empty-cart__text {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
}
#etxcart .etx-empty-cart__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #6366f1;
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s;
}
#etxcart .etx-empty-cart__button:hover {
  background: #4f46e5;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.25);
}
#etxcart .etx-empty-cart__button i {
  font-size: 0.875rem;
}
#etxcart {
  /* Security Bar */
}
#etxcart .etx-security-bar {
  background: linear-gradient(90deg, #f9fafb, #f3f4f6);
  border-bottom: 1px solid #e5e7eb;
  padding: 0.75rem 0;
  margin-bottom: 2rem;
}
#etxcart .etx-security-bar__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 0 1rem;
}
#etxcart .etx-security-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
#etxcart .etx-security-bar__item i {
  color: #10b981;
}
#etxcart .etx-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}
#etxcart .etx-section-title i {
  color: #6366f1;
}
#etxcart {
  /* Checkout Button */
}
#etxcart .etx-checkout-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
#etxcart .etx-checkout-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.25);
}
#etxcart .etx-checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#etxcart .etx-checkout-btn--loading {
  background: #9ca3af;
}
#etxcart .etx-checkout-btn i {
  font-size: 1rem;
}
#etxcart {
  /* Footer */
}
#etxcart .etx-checkout-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}
#etxcart .etx-footer-security {
  text-align: center;
}
#etxcart .etx-footer-security__text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
#etxcart .etx-footer-security__text i {
  color: #10b981;
}
#etxcart {
  /* Payment Container */
}
#etxcart .etx-payment-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}
#etxcart .etx-user-alert {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
#etxcart .etx-user-alert i {
  color: #10b981;
  font-size: 1.5rem;
}
#etxcart .etx-user-alert-content {
  flex: 1;
}
#etxcart .etx-user-alert-content strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #166534;
}
#etxcart .etx-user-alert-content p {
  margin: 0.25rem 0;
  color: #15803d;
  font-size: 0.875rem;
}
#etxcart .etx-order-header {
  text-align: center;
  margin-bottom: 2rem;
}
#etxcart .etx-order-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
#etxcart .etx-order-header .etx-order-total {
  font-size: 1.25rem;
  color: #6b7280;
}
#etxcart .etx-order-header .etx-order-total strong {
  color: #6366f1;
  font-size: 1.5rem;
}
#etxcart .etx-payment-frame {
  position: relative;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
#etxcart .etx-payment-frame iframe {
  width: 100%;
  height: 600px;
  border: none;
}
#etxcart .etx-payment-frame .etx-iframe-loading {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#etxcart .etx-payment-frame .etx-iframe-loading .etx-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e7eb;
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1rem;
}
#etxcart .etx-payment-frame .etx-iframe-loading p {
  color: #6b7280;
  font-size: 0.875rem;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#etxcart {
  /* Responsive */
}
@media (max-width: 1200px) {
  #etxcart .etx-checkout-grid {
    grid-template-columns: 1fr;
  }
  #etxcart .etx-checkout-grid .etx-column--items {
    order: 2;
  }
  #etxcart .etx-checkout-grid .etx-column--shipping {
    order: 1;
  }
  #etxcart .etx-checkout-grid .etx-column--payment {
    order: 3;
  }
}
@media (max-width: 768px) {
  #etxcart .etx-security-bar__content {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  #etxcart .etx-column-content {
    padding: 1rem;
  }
  #etxcart .etx-empty-cart__icon {
    font-size: 4rem;
  }
  #etxcart .etx-empty-cart__title {
    font-size: 1.5rem;
  }
  #etxcart .etx-empty-cart__text {
    font-size: 1rem;
  }
}
#etxcart {
  /* RTL Support */
}
#etxcart [dir=rtl] .etx-empty-cart__button {
  flex-direction: row-reverse;
}
#etxcart [dir=rtl] .etx-empty-cart__button i {
  transform: rotate(180deg);
}
#etxcart [dir=rtl] .etx-section-title {
  flex-direction: row-reverse;
}
#etxcart [dir=rtl] .etx-footer-security__text {
  flex-direction: row-reverse;
}
#etxcart .etx-shipping-options {
  width: 100%;
}
#etxcart .etx-shipping-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#etxcart .etx-shipping-option {
  display: block;
  cursor: pointer;
  margin-bottom: 0;
  border-bottom: 1px solid #e9ecef;
}
#etxcart .etx-shipping-option .etx-radio-input {
  display: none;
}
#etxcart .etx-shipping-option .etx-option-content {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0;
  background: white;
  border-radius: 6px;
  transition: all 0.15s ease;
}
#etxcart .etx-shipping-option:hover .etx-option-content {
  background: #f9fafb;
  border-color: #d1d5db;
}
#etxcart .etx-shipping-option--selected .etx-option-content {
  background: #ecfdf5;
  border-color: #10b981;
  box-shadow: 0 0 0 1px #10b981;
}
#etxcart .etx-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
#etxcart .etx-option-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  flex: 1;
}
#etxcart .etx-option-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  margin-inline-start: auto;
}
#etxcart .etx-price--free {
  color: #10b981;
  background: #d1fae5;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
}
#etxcart .etx-option-time {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1;
}
#etxcart .etx-delivery-notice {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#etxcart .etx-delivery-notice i {
  color: #f59e0b;
  font-size: 0.9rem;
}
#etxcart .etx-column--payment .etx-shipping-options {
  padding: 0;
  margin: 0;
}
#etxcart .etx-column--payment .etx-shipping-list {
  gap: 0.375rem;
}
#etxcart .etx-column--payment .etx-option-content {
  padding: 0;
  border-radius: 0;
}
#etxcart .etx-column--payment .etx-option-title {
  font-size: 0.875rem;
}
#etxcart .etx-column--payment .etx-option-time {
  font-size: 0.7rem;
}
@media (max-width: 768px) {
  #etxcart .etx-option-content {
    padding: 0.75rem;
  }
  #etxcart .etx-option-title {
    font-size: 0.875rem;
  }
  #etxcart .etx-option-time {
    font-size: 0.7rem;
  }
  #etxcart .etx-option-price {
    font-size: 0.85rem;
  }
}
#etxcart [dir=rtl] .etx-delivery-notice {
  flex-direction: row-reverse;
}
#etxcart .etx-shipping-form {
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
#etxcart .etx-form-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}
#etxcart .etx-form-title i {
  color: #667eea;
  font-size: 0.9rem;
}
#etxcart .etx-address-selector {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 10px;
}
#etxcart .etx-selector-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#etxcart .etx-selector-title i {
  color: #667eea;
  font-size: 0.8rem;
}
#etxcart .etx-address-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
#etxcart .etx-address-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
#etxcart .etx-address-option:hover {
  border-color: #818cf8;
  background: rgba(102, 126, 234, 0.02);
}
#etxcart .etx-address-option:has(input:checked) {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.05);
}
#etxcart .etx-radio {
  margin-top: 0.25rem;
  accent-color: #667eea;
  cursor: pointer;
}
#etxcart .etx-address-card {
  flex: 1;
}
#etxcart .etx-address-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
#etxcart .etx-address-header strong {
  font-size: 0.9rem;
  color: #111827;
}
#etxcart .etx-badge-recent {
  padding: 0.125rem 0.5rem;
  background: #10b981;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 12px;
}
#etxcart .etx-address-details {
  font-size: 0.8125rem;
  color: #374151;
  line-height: 1.5;
}
#etxcart .etx-btn-new-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  background: white;
  color: #667eea;
  border: 2px dashed #667eea;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}
#etxcart .etx-btn-new-address:hover {
  background: rgba(102, 126, 234, 0.05);
  border-style: solid;
}
#etxcart .etx-btn-new-address i {
  font-size: 0.75rem;
}
#etxcart .etx-form-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#etxcart .etx-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
#etxcart .etx-form-row--three {
  grid-template-columns: 1fr 1fr 1fr;
}
#etxcart .etx-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
#etxcart .etx-label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
}
#etxcart .etx-label .etx-required {
  color: #ef4444;
  font-size: 0.875rem;
}
#etxcart .etx-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
#etxcart .etx-input-wrapper i {
  position: absolute;
  right: 0.875rem;
  color: #9ca3af;
  font-size: 0.8rem;
  pointer-events: none;
  z-index: 1;
}
#etxcart .etx-input-wrapper--textarea {
  align-items: flex-start;
}
#etxcart .etx-input-wrapper--textarea i {
  top: 0.875rem;
}
#etxcart .etx-input,
#etxcart .etx-textarea {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 0.875rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  background: white;
  transition: all 0.2s ease;
  direction: rtl;
  text-align: right;
}
#etxcart .etx-input::placeholder,
#etxcart .etx-textarea::placeholder {
  color: #9ca3af;
  font-size: 0.8125rem;
  font-weight: 400;
}
#etxcart .etx-input:hover:not(:focus),
#etxcart .etx-textarea:hover:not(:focus) {
  border-color: #d1d5db;
  background: #f9fafb;
}
#etxcart .etx-input:focus,
#etxcart .etx-textarea:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
#etxcart .etx-input--error,
#etxcart .etx-textarea--error {
  border-color: #ef4444;
  background: #fef2f2;
}
#etxcart .etx-input--error:focus,
#etxcart .etx-textarea--error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
#etxcart .etx-textarea {
  resize: vertical;
  min-height: 70px;
  padding-top: 0.75rem;
  line-height: 1.5;
}
#etxcart .etx-error-msg {
  font-size: 0.7rem;
  color: #ef4444;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
#etxcart .etx-error-msg::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: bold;
}
#etxcart .etx-input-note {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(102, 126, 234, 0.08));
  border-right: 3px solid #667eea;
  border-radius: 0 6px 6px 0;
  font-size: 0.75rem;
  color: #667eea;
  font-weight: 500;
}
#etxcart .etx-input-note i {
  font-size: 0.8rem;
  opacity: 0.8;
}
#etxcart .etx-saved-address {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #818cf8 100%);
  color: white;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}
#etxcart .etx-saved-content {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
#etxcart .etx-saved-content i {
  font-size: 1.5rem;
  opacity: 0.9;
}
#etxcart .etx-saved-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
#etxcart .etx-saved-details strong {
  font-size: 0.95rem;
  font-weight: 600;
}
#etxcart .etx-saved-details span {
  font-size: 0.8125rem;
  opacity: 0.95;
  line-height: 1.3;
}
#etxcart .etx-btn-edit {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: white;
  color: #667eea;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#etxcart .etx-btn-edit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
#etxcart .etx-btn-edit i {
  font-size: 0.75rem;
}
#etxcart .etx-save-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 6px;
  margin-top: 0.5rem;
}
#etxcart .etx-checkbox {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #667eea;
  cursor: pointer;
}
#etxcart .etx-checkbox-label {
  font-size: 0.8125rem;
  color: #374151;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}
@media (max-width: 768px) {
  #etxcart .etx-form-row {
    grid-template-columns: 1fr;
  }
  #etxcart .etx-form-row--three {
    grid-template-columns: 1fr;
  }
  #etxcart .etx-saved-address {
    flex-direction: column;
    gap: 0.875rem;
    align-items: stretch;
  }
  #etxcart .etx-btn-edit {
    width: 100%;
    justify-content: center;
  }
  #etxcart .etx-address-options {
    max-height: 300px;
    overflow-y: auto;
  }
}
#etxcart [dir=ltr] .etx-input-wrapper i {
  right: auto;
  left: 0.875rem;
}
#etxcart [dir=ltr] .etx-input,
#etxcart [dir=ltr] .etx-textarea {
  padding: 0.75rem 0.875rem 0.75rem 2.5rem;
  text-align: left;
  direction: ltr;
}
#etxcart [dir=ltr] .etx-input-note {
  border-right: none;
  border-left: 3px solid #667eea;
  border-radius: 6px 0 0 6px;
}
#etxcart .etx-terms-checkbox {
  width: 100%;
  margin: 1rem 0;
}
#etxcart {
  /* Main Label */
}
#etxcart .etx-terms-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
  padding: 0.75rem;
  background: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.2s;
}
#etxcart .etx-terms-label:hover {
  background: #f1f5f9;
  border-color: #cbd5e0;
}
#etxcart .etx-terms--error {
  background: #fef2f2;
  border-color: #fca5a5;
}
#etxcart {
  /* Hidden Input */
}
#etxcart .etx-terms-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
#etxcart {
  /* Custom Checkbox */
}
#etxcart .etx-checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: white;
  border: 2px solid #cbd5e0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  position: relative;
}
#etxcart .etx-terms-input:checked ~ .etx-checkbox-custom {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
}
#etxcart .etx-checkbox-custom i {
  color: white;
  font-size: 0.75rem;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s;
}
#etxcart .etx-terms-input:checked ~ .etx-checkbox-custom i {
  opacity: 1;
  transform: scale(1);
}
#etxcart {
  /* Success Animation */
}
#etxcart .etx-checkbox--success {
  animation: success 0.6s ease;
}
@keyframes success {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
#etxcart {
  /* Terms Text */
}
#etxcart .etx-terms-text {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.5;
}
#etxcart .etx-terms-link {
  color: #667eea;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}
#etxcart .etx-terms-link:hover {
  color: #764ba2;
}
#etxcart {
  /* Error Message */
}
#etxcart .etx-terms-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 6px;
  color: #dc2626;
  font-size: 0.875rem;
}
#etxcart .etx-terms-error i {
  font-size: 1rem;
}
#etxcart {
  /* Shake Animation */
}
#etxcart .etx-shake {
  animation: shake 0.5s;
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-4px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(4px);
  }
}
#etxcart {
  /* Additional Legal Links */
}
#etxcart .etx-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
}
#etxcart .etx-legal-links a {
  color: #718096;
  text-decoration: none;
  transition: color 0.2s;
}
#etxcart .etx-legal-links a:hover {
  color: #667eea;
  text-decoration: underline;
}
#etxcart .etx-separator {
  color: #cbd5e0;
}
#etxcart {
  /* Trust Badge */
}
#etxcart .etx-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.062745098) 0%, rgba(118, 75, 162, 0.062745098) 100%);
  border-radius: 6px;
  font-size: 0.8rem;
  color: #4a5568;
}
#etxcart .etx-trust-badge i {
  color: #667eea;
  font-size: 1rem;
}
#etxcart {
  /* Slide Transition */
}
#etxcart .slide-enter-active, #etxcart .slide-leave-active {
  transition: all 0.3s ease;
}
#etxcart .slide-enter {
  transform: translateY(-10px);
  opacity: 0;
}
#etxcart .slide-leave-to {
  transform: translateY(-10px);
  opacity: 0;
}
#etxcart [dir=rtl] .etx-terms-error {
  flex-direction: row-reverse;
}
#etxcart [dir=rtl] .etx-trust-badge {
  flex-direction: row-reverse;
}
#etxcart {
  /* Responsive */
}
@media (max-width: 768px) {
  #etxcart .etx-terms-label {
    padding: 0.5rem;
  }
  #etxcart .etx-terms-text {
    font-size: 0.85rem;
  }
  #etxcart .etx-legal-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
#etxcart .etx-payment-options {
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
#etxcart .etx-payment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
#etxcart .etx-payment-option {
  display: block;
  cursor: pointer;
  position: relative;
}
#etxcart .etx-payment-option .etx-radio-input {
  display: none;
}
#etxcart .etx-payment-option .etx-payment-content {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.6rem 1.125rem;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 54px;
}
#etxcart .etx-payment-option:hover .etx-payment-content {
  background: #fafafa;
  border-color: #cbd5e0;
  transform: translateY(-1px);
}
#etxcart .etx-payment-option--selected .etx-payment-content {
  background: #5046e5;
  border-color: #5046e5;
  color: white;
  box-shadow: 0 4px 14px rgba(80, 70, 229, 0.25);
}
#etxcart .etx-payment-option--selected .etx-payment-content .etx-payment-name {
  color: white;
  font-weight: 600;
}
#etxcart .etx-payment-option--selected .etx-payment-content .etx-payment-icon-wrapper {
  background: rgba(255, 255, 255, 0.15);
}
#etxcart .etx-payment-option--selected .etx-payment-content .etx-payment-icon-wrapper i {
  color: white;
}
#etxcart .etx-payment-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f3f4f6;
  border-radius: 10px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
#etxcart .etx-payment-icon-wrapper i {
  font-size: 1rem;
  color: #4b5563;
  transition: color 0.2s ease;
}
#etxcart .etx-payment-icon-wrapper i.fa-mobile-alt {
  color: #00d4aa;
  font-size: 1.1rem;
}
#etxcart .etx-payment-icon-wrapper i.fa-paypal {
  color: #003087;
  font-size: 1.1rem;
}
#etxcart .etx-payment-icon-wrapper i.fa-hand-holding-usd {
  color: #f59e0b;
  font-size: 0.9rem;
}
#etxcart .etx-payment-icon-wrapper i.fa-credit-card {
  color: #6366f1;
  font-size: 0.95rem;
}
#etxcart .etx-payment-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1f2937;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
#etxcart .etx-security-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem;
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 500;
}
#etxcart .etx-security-notice i {
  font-size: 0.875rem;
  color: #10b981;
}
@keyframes selectPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(80, 70, 229, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(80, 70, 229, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(80, 70, 229, 0);
  }
}
#etxcart .etx-payment-option--selected .etx-payment-content {
  animation: selectPulse 0.4s ease-out;
}
@media (max-width: 640px) {
  #etxcart .etx-payment-list {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
  #etxcart .etx-payment-content {
    padding: 0.875rem 1rem;
    min-height: 50px;
  }
  #etxcart .etx-payment-icon-wrapper {
    width: 32px;
    height: 32px;
  }
  #etxcart .etx-payment-icon-wrapper i {
    font-size: 0.875rem;
  }
  #etxcart .etx-payment-name {
    font-size: 0.875rem;
  }
}
@media (prefers-color-scheme: dark) {
  #etxcart .etx-payment-content {
    background: #1f2937;
    border-color: #374151;
  }
  #etxcart .etx-payment-content:hover {
    background: #111827;
    border-color: #4b5563;
  }
  #etxcart .etx-payment-name {
    color: #f3f4f6;
  }
  #etxcart .etx-payment-icon-wrapper {
    background: #374151;
  }
  #etxcart .etx-payment-option--selected .etx-payment-content {
    background: #6366f1;
    border-color: #6366f1;
  }
}
#etxcart .etx-order-summary {
  width: 100%;
  padding: 0;
  margin: 0;
}
#etxcart .etx-summary-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#etxcart .etx-coupon-section {
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
#etxcart .etx-price-lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#etxcart .etx-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  padding: 0;
}
#etxcart .etx-line-label {
  color: #6b7280;
  font-weight: 500;
}
#etxcart .etx-line-value {
  font-weight: 600;
  color: #111827;
}
#etxcart .etx-line--discount .etx-line-label {
  color: #059669;
}
#etxcart .etx-line--discount .etx-value--discount {
  color: #059669;
  font-weight: 700;
}
#etxcart .etx-value--free {
  color: #059669;
  font-weight: 700;
  font-size: 0.875rem;
}
#etxcart .etx-summary-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0.5rem 0;
}
#etxcart .etx-line--total {
  font-size: 1rem;
  padding-top: 0.5rem;
}
#etxcart .etx-line--total .etx-line-label {
  font-weight: 700;
  color: #111827;
}
#etxcart .etx-line--total .etx-value--total {
  font-size: 1.25rem;
  font-weight: 800;
  color: #667eea;
}
#etxcart .etx-vat-note {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.5rem;
}
#etxcart .etx-vat-note i {
  font-size: 0.7rem;
}
#etxcart .etx-column--payment .etx-order-summary {
  padding: 0;
  background: transparent;
  border: none;
}
#etxcart .etx-column--payment .etx-coupon-section {
  padding: 0.5rem;
  margin-bottom: 0.375rem;
}
#etxcart .etx-column--payment .etx-summary-line {
  padding: 0.25rem 0;
  font-size: 0.8rem;
}
#etxcart .etx-column--payment .etx-line--total {
  padding-top: 0.375rem;
}
#etxcart .etx-column--payment .etx-line--total .etx-value--total {
  font-size: 1.125rem;
}
#etxcart .etx-column--payment .etx-vat-note {
  font-size: 0.7rem;
}
#etxcart [dir=rtl] .etx-summary-line {
  direction: rtl;
}
#etxcart [dir=rtl] .etx-vat-note {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  #etxcart .etx-summary-content {
    gap: 0.5rem;
  }
  #etxcart .etx-summary-line {
    font-size: 0.8rem;
  }
  #etxcart .etx-value--total {
    font-size: 1.125rem;
  }
}
#etxcart .etx-order-items {
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
#etxcart .etx-items-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
#etxcart .etx-items-header .etx-header-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
#etxcart .etx-items-header .etx-header-title i {
  color: #6366f1;
  font-size: 1.125rem;
}
#etxcart .etx-items-header .etx-header-count {
  padding: 0.25rem 0.75rem;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 1rem;
}
#etxcart .etx-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#etxcart .etx-item-card {
  position: relative;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 0.2s;
}
#etxcart .etx-item-card:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
#etxcart .etx-item-card--promo {
  background: linear-gradient(to right, #faf5ff, #f0f9ff);
  border-color: #c7d2fe;
}
#etxcart .etx-promo-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.625rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.375rem;
  z-index: 1;
}
#etxcart .etx-item-layout {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  position: relative;
}
#etxcart .etx-item-image {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #f9fafb;
}
#etxcart .etx-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#etxcart .etx-item-image .etx-discount-label {
  position: absolute;
  top: 0.375rem;
  left: 0.375rem;
  padding: 0.125rem 0.375rem;
  background: #ef4444;
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 0.25rem;
}
#etxcart .etx-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
#etxcart .etx-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  margin: 0 0 0.375rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#etxcart .etx-item-variant {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}
#etxcart .etx-item-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
#etxcart .etx-price-section {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
#etxcart .etx-price-section .etx-price-current {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}
#etxcart .etx-price-section .etx-price-original {
  font-size: 0.75rem;
  color: #9ca3af;
  text-decoration: line-through;
}
#etxcart .etx-price-section .etx-saved-text {
  font-size: 0.6875rem;
  color: #10b981;
  font-weight: 500;
}
#etxcart .etx-quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: #f9fafb;
  border-radius: 0.5rem;
}
#etxcart .etx-quantity-controls .etx-qty-btn {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.25rem;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s;
}
#etxcart .etx-quantity-controls .etx-qty-btn:hover:not(:disabled) {
  background: #6366f1;
  border-color: #6366f1;
  color: white;
}
#etxcart .etx-quantity-controls .etx-qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
#etxcart .etx-quantity-controls .etx-qty-btn i {
  font-size: 0.625rem;
}
#etxcart .etx-quantity-controls .etx-qty-value {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: #111827;
}
#etxcart .etx-total-section {
  margin-left: auto;
  text-align: right;
}
#etxcart .etx-total-section .etx-total-label {
  display: block;
  font-size: 0.6875rem;
  color: #9ca3af;
  margin-bottom: 0.125rem;
  text-transform: uppercase;
}
#etxcart .etx-total-section .etx-total-price {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}
#etxcart .etx-remove-button {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #fee2e2;
  border-radius: 50%;
  color: #ef4444;
  cursor: pointer;
  transition: all 0.2s;
}
#etxcart .etx-remove-button:hover {
  background: #ef4444;
  color: white;
  transform: rotate(90deg);
}
#etxcart .etx-remove-button i {
  font-size: 0.875rem;
}
#etxcart .etx-loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  z-index: 10;
}
#etxcart .etx-loading-overlay .etx-spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #e5e7eb;
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#etxcart .fade-enter-active,
#etxcart .fade-leave-active {
  transition: opacity 0.2s;
}
#etxcart .fade-enter,
#etxcart .fade-leave-to {
  opacity: 0;
}
@media (max-width: 768px) {
  #etxcart .etx-item-layout {
    padding: 0.75rem;
  }
  #etxcart .etx-item-image {
    width: 80px;
    height: 80px;
  }
  #etxcart .etx-item-footer {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  #etxcart .etx-total-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #etxcart .etx-total-section .etx-total-label {
    display: inline;
    margin: 0;
  }
  #etxcart .etx-total-section .etx-total-price {
    display: inline;
  }
  #etxcart .etx-promo-badge {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem;
  }
}
#etxcart [dir=rtl] .etx-promo-badge {
  right: auto;
  left: 0.75rem;
}
#etxcart [dir=rtl] .etx-remove-button {
  left: auto;
  right: 0.75rem;
}
#etxcart [dir=rtl] .etx-item-image .etx-discount-label {
  left: auto;
  right: 0.375rem;
}
#etxcart [dir=rtl] .etx-total-section {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
#etxcart .etx-checkout-button-wrapper {
  width: 100%;
  margin-top: 1rem;
}
#etxcart {
  /* Main Button */
}
#etxcart .etx-checkout-btn {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
#etxcart .etx-checkout-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
}
#etxcart .etx-checkout-btn:active:not(:disabled) {
  transform: translateY(0);
}
#etxcart {
  /* Pulse Animation */
}
#etxcart .etx-checkout-btn--pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(102, 126, 234, 0.6);
  }
}
#etxcart {
  /* Click Animation */
}
#etxcart .etx-btn-clicked {
  animation: click 0.3s ease;
}
@keyframes click {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.98);
  }
}
#etxcart {
  /* Button Content */
}
#etxcart .etx-btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
#etxcart .etx-btn-icon {
  font-size: 1rem;
}
#etxcart .etx-btn-text {
  font-size: 1.05rem;
}
#etxcart .etx-btn-amount {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 800;
}
#etxcart {
  /* Disabled State */
}
#etxcart .etx-checkout-btn--disabled {
  background: #cbd5e0;
  cursor: not-allowed;
  box-shadow: none;
}
#etxcart .etx-checkout-btn--disabled:hover {
  transform: none;
}
#etxcart {
  /* Loading State */
}
#etxcart .etx-checkout-btn--loading {
  pointer-events: none;
}
#etxcart .etx-btn-spinner {
  display: inline-flex;
  gap: 0.25rem;
  margin-left: 0.5rem;
}
#etxcart .etx-btn-spinner span {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}
#etxcart .etx-btn-spinner span:nth-child(1) {
  animation-delay: -0.32s;
}
#etxcart .etx-btn-spinner span:nth-child(2) {
  animation-delay: -0.16s;
}
@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
#etxcart {
  /* Express Options */
}
#etxcart .etx-express-options {
  margin-top: 1.5rem;
}
#etxcart .etx-express-divider {
  text-align: center;
  position: relative;
  margin: 1rem 0;
}
#etxcart .etx-express-divider span {
  background: white;
  padding: 0 1rem;
  color: #718096;
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}
#etxcart .etx-express-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e2e8f0;
}
#etxcart .etx-express-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.75rem;
}
#etxcart .etx-express-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
#etxcart .etx-express-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#etxcart .etx-express-paypal {
  color: #003087;
}
#etxcart .etx-express-paypal:hover {
  border-color: #003087;
  background: #003087;
  color: white;
}
#etxcart .etx-express-apple {
  color: #000;
}
#etxcart .etx-express-apple:hover {
  border-color: #000;
  background: #000;
  color: white;
}
#etxcart .etx-express-google {
  color: #4285f4;
}
#etxcart .etx-express-google:hover {
  border-color: #4285f4;
  background: #4285f4;
  color: white;
}
#etxcart {
  /* Security Note */
}
#etxcart .etx-security-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem;
  background: #f0f9ff;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #1e40af;
}
#etxcart .etx-security-note i:first-child {
  color: #3b82f6;
}
#etxcart {
  /* Security Info */
}
#etxcart .etx-security-info {
  margin-top: 0.5rem;
  padding: 1rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #4a5568;
}
#etxcart .etx-security-badges {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
  justify-content: center;
}
#etxcart .etx-security-badges img {
  height: 24px;
  width: auto;
  opacity: 0.7;
}
#etxcart {
  /* Urgency Message */
}
#etxcart .etx-urgency-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem;
  background: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: 6px;
  font-size: 0.875rem;
  color: #92400e;
  animation: fadeInOut 5s infinite;
}
#etxcart .etx-urgency-message i {
  color: #f59e0b;
  animation: flame 1s infinite;
}
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
  }
  10%, 90% {
    opacity: 1;
  }
}
@keyframes flame {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
#etxcart {
  /* Transitions */
}
#etxcart .fade-enter-active, #etxcart .fade-leave-active {
  transition: opacity 0.3s;
}
#etxcart .fade-enter, #etxcart .fade-leave-to {
  opacity: 0;
}
#etxcart {
  /* RTL Support */
}
#etxcart [dir=rtl] .etx-btn-content {
  flex-direction: row-reverse;
}
#etxcart [dir=rtl] .etx-security-note {
  flex-direction: row-reverse;
}
#etxcart [dir=rtl] .etx-urgency-message {
  flex-direction: row-reverse;
}
#etxcart {
  /* Responsive */
}
@media (max-width: 768px) {
  #etxcart .etx-checkout-btn {
    padding: 1rem;
    font-size: 1rem;
  }
  #etxcart .etx-btn-amount {
    font-size: 1rem;
  }
  #etxcart .etx-express-buttons {
    grid-template-columns: 1fr;
  }
}
#etxcart .etx-coupon-box {
  --cp-primary: var(--btn-primary-bg, #1a1a1a);
  --cp-success: #10b981;
  --cp-error: #ef4444;
  --cp-bg: #ffffff;
  --cp-bg-secondary: #f9fafb;
  --cp-border: #e5e7eb;
  --cp-text: #1f2937;
  --cp-text-secondary: #6b7280;
  margin-bottom: 1rem;
}
#etxcart {
  /* Toggle Button */
}
#etxcart .etx-coupon-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--cp-bg-secondary);
  border: 1px solid var(--cp-border);
  border-radius: 8px;
  color: var(--cp-text);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
#etxcart .etx-coupon-toggle:hover {
  background: var(--cp-bg);
  border-color: var(--cp-primary);
}
#etxcart .etx-coupon-toggle i {
  color: var(--cp-primary);
}
#etxcart {
  /* Input Section */
}
#etxcart .etx-coupon-input-wrapper {
  margin-top: 0.75rem;
}
#etxcart .etx-coupon-input-group {
  display: flex;
  gap: 0.5rem;
}
#etxcart .etx-coupon-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--cp-bg);
  border: 2px solid var(--cp-border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}
#etxcart .etx-coupon-input:focus {
  outline: none;
  border-color: var(--cp-primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}
#etxcart .etx-coupon-input--error {
  border-color: var(--cp-error);
}
#etxcart .etx-coupon-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#etxcart .etx-coupon-input::placeholder {
  color: var(--cp-text-secondary);
  text-transform: none;
  letter-spacing: normal;
}
#etxcart {
  /* Buttons */
}
#etxcart .etx-coupon-apply,
#etxcart .etx-coupon-cancel {
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
#etxcart .etx-coupon-apply {
  background: var(--cp-primary);
  color: white;
  min-width: 80px;
}
#etxcart .etx-coupon-apply:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
#etxcart .etx-coupon-apply:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#etxcart .etx-coupon-cancel {
  background: var(--cp-bg-secondary);
  color: var(--cp-text-secondary);
  padding: 0.75rem;
}
#etxcart .etx-coupon-cancel:hover {
  background: var(--cp-error);
  color: white;
}
#etxcart {
  /* Error Message */
}
#etxcart .etx-coupon-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #fef2f2;
  border-inline-start: 3px solid var(--cp-error);
  color: var(--cp-error);
  font-size: 0.8125rem;
  border-radius: 4px;
}
#etxcart {
  /* Applied Coupon */
}
#etxcart .etx-coupon-applied {
  padding: 1rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid var(--cp-success);
  border-radius: 8px;
  position: relative;
}
#etxcart .etx-coupon-applied::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  height: 3px;
  background: var(--cp-success);
  border-radius: 8px 8px 0 0;
}
#etxcart .etx-coupon-applied--success {
  animation: pulseSuccess 0.5s ease;
}
#etxcart .etx-coupon-applied-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#etxcart .etx-coupon-applied-icon {
  color: var(--cp-success);
  font-size: 1.25rem;
}
#etxcart .etx-coupon-applied-details {
  flex: 1;
}
#etxcart .etx-coupon-code {
  font-weight: 600;
  font-size: 0.875rem;
  color: #065f46;
  font-family: monospace;
  margin-bottom: 0.25rem;
}
#etxcart .etx-coupon-discount {
  font-size: 0.8125rem;
  color: #047857;
}
#etxcart .etx-coupon-remove {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--cp-border);
  border-radius: 6px;
  color: var(--cp-text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}
#etxcart .etx-coupon-remove:hover {
  background: #fef2f2;
  border-color: var(--cp-error);
  color: var(--cp-error);
}
#etxcart {
  /* Coverage Indicator */
}
#etxcart .etx-coupon-coverage {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  font-size: 0.75rem;
  color: #065f46;
}
#etxcart {
  /* Animations */
}
@keyframes pulseSuccess {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
#etxcart {
  /* Transitions */
}
#etxcart .etx-slide-enter-active,
#etxcart .etx-slide-leave-active {
  transition: all 0.3s ease;
}
#etxcart .etx-slide-enter,
#etxcart .etx-slide-leave-to {
  opacity: 0;
  transform: translateY(-10px);
}
#etxcart .etx-fade-enter-active,
#etxcart .etx-fade-leave-active {
  transition: opacity 0.2s;
}
#etxcart .etx-fade-enter,
#etxcart .etx-fade-leave-to {
  opacity: 0;
}
#etxcart {
  /* Mobile */
}
@media (max-width: 480px) {
  #etxcart .etx-coupon-input-group {
    flex-wrap: wrap;
  }
  #etxcart .etx-coupon-input {
    flex: 1 1 100%;
    margin-bottom: 0.5rem;
  }
  #etxcart .etx-coupon-apply,
  #etxcart .etx-coupon-cancel {
    flex: 1;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
#etxcart .etx-payment-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  direction: rtl;
  min-height: 100vh;
  position: relative;
}
#etxcart .etx-payment-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/img/pattern.png") repeat;
  opacity: 0.03;
  pointer-events: none;
}
#etxcart .etx-progress-bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
#etxcart .etx-progress-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e2e8f0;
  transform: translateY(-50%);
  z-index: 0;
}
#etxcart .etx-progress-bar .etx-progress-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
#etxcart .etx-progress-bar .etx-progress-step i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #718096;
  transition: all 0.3s;
}
#etxcart .etx-progress-bar .etx-progress-step span {
  font-size: 12px;
  color: #718096;
  font-weight: 500;
}
#etxcart .etx-progress-bar .etx-progress-step.etx-step--completed i {
  background: #48bb78;
  border-color: #48bb78;
  color: #ffffff;
}
#etxcart .etx-progress-bar .etx-progress-step.etx-step--completed span {
  color: #2d3748;
}
#etxcart .etx-progress-bar .etx-progress-step.etx-step--active i {
  background: #5a67d8;
  border-color: #5a67d8;
  color: #ffffff;
  animation: pulse 2s infinite;
}
#etxcart .etx-progress-bar .etx-progress-step.etx-step--active span {
  color: #5a67d8;
  font-weight: 600;
}
#etxcart .etx-account-created {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 20px;
  position: relative;
  overflow: hidden;
  animation: slideDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#etxcart .etx-account-created::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5a67d8, #48bb78, #ed8936);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
#etxcart .etx-account-created .etx-account-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5a67d8, #48bb78);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#etxcart .etx-account-created .etx-account-icon i {
  font-size: 28px;
  color: #ffffff;
  animation: pulse 2s infinite;
}
#etxcart .etx-account-created .etx-account-content {
  flex: 1;
}
#etxcart .etx-account-created .etx-account-content h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  color: #2d3748;
  font-weight: 600;
}
#etxcart .etx-account-created .etx-account-content p {
  margin: 0 0 12px 0;
  color: #718096;
  font-size: 14px;
}
#etxcart .etx-account-created .etx-account-content .etx-benefits {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
#etxcart .etx-account-created .etx-account-content .etx-benefits span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #2d3748;
}
#etxcart .etx-account-created .etx-account-content .etx-benefits span i {
  color: #48bb78;
  font-size: 12px;
}
#etxcart .etx-account-created .etx-account-content .etx-login-details {
  background: #f7fafc;
  border-radius: 8px;
  padding: 12px;
}
#etxcart .etx-account-created .etx-account-content .etx-login-details div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #2d3748;
}
#etxcart .etx-account-created .etx-account-content .etx-login-details div:last-child {
  margin-bottom: 0;
}
#etxcart .etx-account-created .etx-account-content .etx-login-details div i {
  color: #5a67d8;
  width: 16px;
}
#etxcart .etx-account-created .etx-dismiss {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  color: #718096;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
#etxcart .etx-account-created .etx-dismiss:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}
#etxcart .etx-payment-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 24px;
}
@media (max-width: 1024px) {
  #etxcart .etx-payment-content {
    grid-template-columns: 1fr;
  }
}
#etxcart .etx-summary-sidebar .etx-summary-sticky {
  position: sticky;
  top: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  #etxcart .etx-summary-sidebar .etx-summary-sticky {
    position: static;
  }
}
#etxcart .etx-summary-sidebar .etx-summary-header {
  background: linear-gradient(135deg, #5a67d8, rgb(131.25, 141, 225.75));
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#etxcart .etx-summary-sidebar .etx-summary-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}
#etxcart .etx-summary-sidebar .etx-summary-header .etx-order-id {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}
#etxcart .etx-summary-sidebar .etx-summary-items {
  padding: 16px 20px;
  max-height: 250px;
  overflow-y: auto;
  border-bottom: 1px solid #e2e8f0;
}
#etxcart .etx-summary-sidebar .etx-summary-items::-webkit-scrollbar {
  width: 4px;
}
#etxcart .etx-summary-sidebar .etx-summary-items::-webkit-scrollbar-track {
  background: #e2e8f0;
}
#etxcart .etx-summary-sidebar .etx-summary-items::-webkit-scrollbar-thumb {
  background: #718096;
  border-radius: 2px;
}
#etxcart .etx-summary-sidebar .etx-summary-items .etx-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed #e2e8f0;
}
#etxcart .etx-summary-sidebar .etx-summary-items .etx-summary-item:last-child {
  border-bottom: none;
}
#etxcart .etx-summary-sidebar .etx-summary-items .etx-summary-item .etx-item-info {
  flex: 1;
}
#etxcart .etx-summary-sidebar .etx-summary-items .etx-summary-item .etx-item-info .etx-item-name {
  display: block;
  color: #2d3748;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
#etxcart .etx-summary-sidebar .etx-summary-items .etx-summary-item .etx-item-info .etx-item-variant {
  display: block;
  color: #718096;
  font-size: 12px;
}
#etxcart .etx-summary-sidebar .etx-summary-items .etx-summary-item .etx-item-price-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
#etxcart .etx-summary-sidebar .etx-summary-items .etx-summary-item .etx-item-price-info .etx-item-qty {
  color: #718096;
  font-size: 13px;
}
#etxcart .etx-summary-sidebar .etx-summary-items .etx-summary-item .etx-item-price-info .etx-item-price {
  color: #2d3748;
  font-weight: 600;
  font-size: 14px;
}
#etxcart .etx-summary-sidebar .etx-summary-pricing {
  padding: 16px 20px;
  background: #f7fafc;
}
#etxcart .etx-summary-sidebar .etx-summary-pricing .etx-price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: #2d3748;
}
#etxcart .etx-summary-sidebar .etx-summary-pricing .etx-price-row.etx-discount {
  color: #48bb78;
}
#etxcart .etx-summary-sidebar .etx-summary-pricing .etx-price-row.etx-discount .etx-discount-amount {
  font-weight: 600;
}
#etxcart .etx-summary-sidebar .etx-summary-pricing .etx-price-row.etx-total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid #5a67d8;
  font-size: 18px;
  font-weight: 600;
}
#etxcart .etx-summary-sidebar .etx-summary-pricing .etx-price-row.etx-total .etx-total-price {
  color: #5a67d8;
  font-size: 22px;
}
#etxcart .etx-summary-sidebar .etx-summary-pricing .etx-price-row .etx-free {
  color: #48bb78;
  font-weight: 600;
}
#etxcart .etx-summary-sidebar .etx-summary-shipping {
  padding: 20px;
  border-top: 1px solid #e2e8f0;
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-shipping-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-shipping-header h4 {
  margin: 0;
  font-size: 16px;
  color: #2d3748;
  font-weight: 600;
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-shipping-header .etx-edit-btn {
  background: none;
  border: none;
  color: #5a67d8;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.3s;
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-shipping-header .etx-edit-btn:hover {
  background: rgba(90, 103, 216, 0.1);
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-address-display .etx-address-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #718096;
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-address-display .etx-address-line:last-child {
  margin-bottom: 0;
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-address-display .etx-address-line i {
  width: 16px;
  color: rgb(171.6396761134, 180.4453441296, 193.3603238866);
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-address-edit form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-address-edit form input {
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-address-edit form input:focus {
  outline: none;
  border-color: #5a67d8;
  box-shadow: 0 0 0 3px rgba(90, 103, 216, 0.1);
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-address-edit form .etx-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-address-edit form .etx-edit-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-address-edit form .etx-edit-actions button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-address-edit form .etx-edit-actions button.etx-save-btn {
  background: #48bb78;
  color: #ffffff;
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-address-edit form .etx-edit-actions button.etx-save-btn:hover {
  background: rgb(56.3505976096, 151.6494023904, 96.1274900398);
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-address-edit form .etx-edit-actions button.etx-cancel-btn {
  background: #e2e8f0;
  color: #718096;
}
#etxcart .etx-summary-sidebar .etx-summary-shipping .etx-address-edit form .etx-edit-actions button.etx-cancel-btn:hover {
  background: rgb(192.3863636364, 205.3409090909, 222.6136363636);
}
#etxcart .etx-payment-main {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}
#etxcart .etx-payment-main .etx-payment-header {
  background: linear-gradient(135deg, #2d3748, rgb(74.4230769231, 90.9615384615, 119.0769230769));
  padding: 24px;
}
#etxcart .etx-payment-main .etx-payment-header .etx-header-content h2 {
  margin: 0 0 12px 0;
  color: #ffffff;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#etxcart .etx-payment-main .etx-payment-header .etx-header-content h2 i {
  color: #48bb78;
}
#etxcart .etx-payment-main .etx-payment-header .etx-header-content .etx-trust-badges {
  display: flex;
  gap: 16px;
}
#etxcart .etx-payment-main .etx-payment-header .etx-header-content .etx-trust-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}
#etxcart .etx-payment-main .etx-payment-header .etx-header-content .etx-trust-badges span i {
  color: #48bb78;
}
#etxcart .etx-payment-main .etx-frame-container {
  background: #ffffff;
}
#etxcart .etx-payment-main .etx-frame-container .etx-frame-top-bar {
  background: #f7fafc;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #e2e8f0;
}
#etxcart .etx-payment-main .etx-frame-container .etx-frame-top-bar .etx-payment-amount {
  display: flex;
  align-items: center;
  gap: 8px;
}
#etxcart .etx-payment-main .etx-frame-container .etx-frame-top-bar .etx-payment-amount span {
  color: #718096;
  font-size: 14px;
}
#etxcart .etx-payment-main .etx-frame-container .etx-frame-top-bar .etx-payment-amount strong {
  color: #5a67d8;
  font-size: 20px;
  font-weight: 700;
}
#etxcart .etx-payment-main .etx-frame-container .etx-frame-top-bar .etx-payment-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  color: #ed8936;
  font-size: 14px;
  font-weight: 500;
}
#etxcart .etx-payment-main .etx-frame-container .etx-frame-top-bar .etx-payment-timer i {
  animation: pulse 1s infinite;
}
#etxcart .etx-payment-main .etx-frame-container .etx-iframe-wrapper {
  position: relative;
  background: #f7fafc;
  min-height: 600px;
}
#etxcart .etx-payment-main .etx-frame-container .etx-iframe-wrapper iframe {
  width: 100%;
  border: none;
  background: #ffffff;
  transition: height 0.3s;
}
#etxcart .etx-payment-main .etx-frame-container .etx-iframe-wrapper .etx-iframe-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
#etxcart .etx-payment-main .etx-frame-container .etx-iframe-wrapper .etx-iframe-loading .etx-loading-content {
  text-align: center;
}
#etxcart .etx-payment-main .etx-frame-container .etx-iframe-wrapper .etx-iframe-loading .etx-loading-content .etx-spinner-circle {
  width: 60px;
  height: 60px;
  border: 4px solid #e2e8f0;
  border-top-color: #5a67d8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
#etxcart .etx-payment-main .etx-frame-container .etx-iframe-wrapper .etx-iframe-loading .etx-loading-content p {
  color: #718096;
  font-size: 14px;
  margin-bottom: 16px;
}
#etxcart .etx-payment-main .etx-frame-container .etx-iframe-wrapper .etx-iframe-loading .etx-loading-content .etx-loading-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
#etxcart .etx-payment-main .etx-frame-container .etx-iframe-wrapper .etx-iframe-loading .etx-loading-content .etx-loading-dots span {
  width: 8px;
  height: 8px;
  background: #5a67d8;
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}
#etxcart .etx-payment-main .etx-frame-container .etx-iframe-wrapper .etx-iframe-loading .etx-loading-content .etx-loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
#etxcart .etx-payment-main .etx-frame-container .etx-iframe-wrapper .etx-iframe-loading .etx-loading-content .etx-loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
#etxcart .etx-payment-main .etx-frame-container .etx-frame-bottom {
  padding: 20px 24px;
  background: #f7fafc;
  border-top: 1px solid #e2e8f0;
}
#etxcart .etx-payment-main .etx-frame-container .etx-frame-bottom .etx-security-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #718096;
  font-size: 13px;
  margin-bottom: 16px;
}
#etxcart .etx-payment-main .etx-frame-container .etx-frame-bottom .etx-security-text i {
  color: #5a67d8;
}
#etxcart .etx-payment-main .etx-frame-container .etx-frame-bottom .etx-payment-methods {
  display: flex;
  justify-content: center;
  gap: 16px;
}
#etxcart .etx-payment-main .etx-frame-container .etx-frame-bottom .etx-payment-methods img {
  height: 32px;
  opacity: 0.6;
  transition: all 0.3s;
}
#etxcart .etx-payment-main .etx-frame-container .etx-frame-bottom .etx-payment-methods img:hover {
  opacity: 1;
  transform: scale(1.1);
}
#etxcart .etx-support-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 100;
}
#etxcart .etx-support-float .etx-support-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5a67d8, #48bb78);
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#etxcart .etx-support-float .etx-support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
#etxcart .etx-support-float .etx-support-btn i {
  animation: pulse 2s infinite;
}
#etxcart .etx-support-float .etx-support-popup {
  position: absolute;
  bottom: 70px;
  left: 0;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#etxcart .etx-support-float .etx-support-popup h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #2d3748;
}
#etxcart .etx-support-float .etx-support-popup p {
  margin: 0 0 12px 0;
  font-size: 13px;
  color: #718096;
}
#etxcart .etx-support-float .etx-support-popup a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: all 0.3s;
}
#etxcart .etx-support-float .etx-support-popup a.etx-support-call {
  background: #5a67d8;
  color: #ffffff;
}
#etxcart .etx-support-float .etx-support-popup a.etx-support-call:hover {
  background: rgb(48.75, 65, 206.25);
}
#etxcart .etx-support-float .etx-support-popup a.etx-support-whatsapp {
  background: #25d366;
  color: #ffffff;
}
#etxcart .etx-support-float .etx-support-popup a.etx-support-whatsapp:hover {
  background: rgb(29.3911290323, 167.6088709677, 81.0241935484);
}
#etxcart .slideDown-enter-active,
#etxcart .slideDown-leave-active,
#etxcart .slideUp-enter-active,
#etxcart .slideUp-leave-active,
#etxcart .fade-enter-active,
#etxcart .fade-leave-active {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#etxcart .slideDown-enter,
#etxcart .slideDown-leave-to {
  opacity: 0;
  transform: translateY(-20px);
}
#etxcart .slideUp-enter,
#etxcart .slideUp-leave-to {
  opacity: 0;
  transform: translateY(20px);
}
#etxcart .fade-enter,
#etxcart .fade-leave-to {
  opacity: 0;
}
@media (max-width: 768px) {
  #etxcart .etx-payment-page {
    padding: 12px;
  }
  #etxcart .etx-payment-content {
    grid-template-columns: 1fr;
  }
  #etxcart .etx-summary-sidebar {
    order: 2;
  }
  #etxcart .etx-payment-main {
    order: 1;
  }
  #etxcart .etx-progress-bar {
    padding: 12px;
  }
  #etxcart .etx-progress-bar .etx-progress-step span {
    display: none;
  }
}
.etx-cart-trigger {
  display: none !important;
}
.neo-cart-badge {
  font-size: 18px;
  position: relative;
  cursor: pointer;
}
.neo-header__action .neo-cart-badge {
  color: inherit;
}
.neo-field--error,
input.neo-field--error,
textarea.neo-field--error,
select.neo-field--error {
  border-color: #dc2626 !important;
  background: #fef2f2 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.neo-form-msg {
  margin-top: 12px;
  font-size: 0.95rem;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role=button]:focus-visible {
  outline: 2px solid var(--neo-accent, #f59e0b);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}