* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: white;
}

.cookie-consent-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 2600;
  width: min(1040px, calc(100% - 32px));
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(24, 25, 24, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 22px;
  align-items: center;
  transform: translate3d(-50%, calc(100% + 38px), 0);
  opacity: 0;
  animation: cookie-consent-slide-up 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cookie-consent-banner[hidden] {
  display: none;
}

.cookie-consent-banner.cookie-consent-banner-hiding {
  pointer-events: none;
  animation: cookie-consent-slide-down 0.24s ease forwards;
}

.cookie-consent-copy {
  display: grid;
  gap: 8px;
}

.cookie-consent-copy h2 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.cookie-consent-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-consent-button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.cookie-consent-button:hover {
  transform: translateY(-1px);
}

.cookie-consent-view,
.cookie-consent-reject {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.cookie-consent-view:hover,
.cookie-consent-reject:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.13);
}

.cookie-consent-accept {
  border: 1px solid white;
  background: white;
  color: #111;
}

.cookie-consent-accept:hover {
  background: rgba(255, 255, 255, 0.86);
}

.cookie-consent-options {
  grid-column: 1 / -1;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(255, 255, 255, 0.055);
}

.cookie-consent-options[hidden] {
  display: none;
}

.cookie-consent-options h3 {
  margin-bottom: 7px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.cookie-consent-options p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

@keyframes cookie-consent-slide-up {
  from {
    opacity: 0;
    transform: translate3d(-50%, calc(100% + 38px), 0);
  }

  to {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes cookie-consent-slide-down {
  from {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-50%, calc(100% + 38px), 0);
  }
}

@media (max-width: 760px) {
  .cookie-consent-banner {
    bottom: 14px;
    width: min(100% - 24px, 520px);
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent-button {
    width: 100%;
  }
}

.tcs-home-hero-points {
  margin-top: 34px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tcs-home-hero-points span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(24, 25, 24, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-whatsapp-float,
.home-whatsapp-float:visited {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 25, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.home-whatsapp-float:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(24, 25, 24, 0.92);
}

.home-whatsapp-float img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

@media (max-width: 620px) {
  .home-whatsapp-float,
  .home-whatsapp-float:visited {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .home-whatsapp-float img {
    width: 31px;
    height: 31px;
  }
}

.tcs-home-hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  background: #181918;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.tcs-home-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.64)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08) 46%, rgba(0, 0, 0, 0.34));
}

.tcs-home-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}

.tcs-home-hero-card {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 1;
  max-width: 470px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(24, 25, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

.tcs-home-hero-card span,
.tcs-home-path-card span,
.tcs-home-build-card span,
.tcs-home-process-list span,
.tcs-home-trust-grid span {
  color: rgba(192, 154, 92, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tcs-home-hero-card h2 {
  margin: 14px 0 10px;
  color: white;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.tcs-home-hero-card p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.65;
}

.tcs-home-paths,
.tcs-home-categories,
.tcs-home-builds,
.tcs-home-process,
.tcs-home-trust,
.tcs-home-final {
  padding: 92px 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tcs-home-section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.tcs-home-section-head-row {
  max-width: 1280px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.tcs-home-categories .tcs-home-section-head-row {
  position: relative;
  left: 50%;
  width: min(1680px, calc(100vw - clamp(44px, 8.6vw, 176px)));
  max-width: none;
  padding-left: 113px;
  transform: translateX(-50%);
}

.tcs-home-section-head h2,
.tcs-home-process-copy h2,
.tcs-home-final-panel h2 {
  color: white;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.06;
  text-transform: uppercase;
}

.tcs-home-text-link,
.tcs-home-text-link:visited {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.tcs-home-text-link:hover {
  color: white;
}

.tcs-home-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tcs-home-path-card,
.tcs-home-path-card:visited {
  min-height: 248px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(24, 25, 24, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.tcs-home-path-card:hover {
  background: rgba(24, 25, 24, 0.78);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.tcs-home-path-card h3,
.tcs-home-process-list h3,
.tcs-home-trust-grid h3 {
  color: white;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.24;
}

.tcs-home-path-card p,
.tcs-home-process-copy p,
.tcs-home-process-list p,
.tcs-home-trust-grid p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.7;
}

.tcs-home-component-carousel {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.tcs-home-component-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(280px, 1fr));
  justify-content: center;
  gap: 18px;
  transition:
    opacity 0.32s ease,
    transform 0.32s ease;
}

.tcs-home-component-track.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.tcs-home-component-card,
.tcs-home-component-card:visited {
  min-height: 340px;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  background: rgba(24, 25, 24, 0.56);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  color: white;
  text-decoration: none;
  display: grid;
  grid-template-rows: 190px 1fr;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    filter 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.tcs-home-component-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(24, 25, 24, 0.68);
  transform: translateY(-2px);
}

.tcs-home-component-image-frame {
  position: relative;
  width: 100%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tcs-home-component-image-frame::after {
  display: none;
}

.tcs-home-component-image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tcs-home-component-card-body {
  padding: 16px 0 0;
  display: grid;
  align-content: start;
}

.tcs-home-component-card-body h3 {
  margin-bottom: 8px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
  text-transform: uppercase;
}

.tcs-home-component-card-body p {
  max-width: 95%;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.tcs-home-component-price {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.105);
  color: white;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.tcs-home-component-arrow {
  position: static;
  z-index: 3;
  width: 32px;
  height: 38px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.tcs-home-component-arrow:hover {
  color: white;
}

.tcs-home-component-arrow:active {
  transform: translateY(1px);
}

.tcs-home-component-arrow-left {
  left: -46px;
}

.tcs-home-component-arrow-right {
  right: -46px;
}

.tcs-home-component-carousel-footer {
  width: 100%;
  max-width: 1280px;
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tcs-home-component-dots,
.tcs-home-build-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tcs-home-build-dots {
  display: none;
  width: 100%;
  margin: 20px auto 0;
  justify-content: center;
}

.tcs-home-component-dot,
.tcs-home-build-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.tcs-home-component-dot.is-active,
.tcs-home-build-dot.is-active {
  width: 22px;
  background: rgba(192, 154, 92, 0.84);
}

@media (max-width: 1100px) {
  .tcs-home-component-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .tcs-home-categories .tcs-home-section-head-row {
    left: auto;
    width: 100%;
    padding-left: 0;
    transform: none;
    text-align: left;
  }

  .tcs-home-component-carousel {
    width: min(100%, 560px);
    margin: 0 auto;
    display: block;
  }

  .tcs-home-component-arrow {
    display: none;
  }

  .tcs-home-component-track {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .tcs-home-component-card {
    min-height: 320px;
    grid-template-rows: clamp(185px, 53vw, 220px) 1fr;
  }

  .tcs-home-component-card-body {
    text-align: left;
  }

  .tcs-home-component-card:nth-child(n + 2) {
    display: none;
  }

  .tcs-home-component-carousel-footer {
    width: min(100%, 560px);
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .tcs-home-component-carousel-footer .tcs-home-text-link {
    display: none;
  }

  .tcs-home-component-dots {
    justify-content: flex-end;
  }
}

.tcs-home-build-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.tcs-home-build-card,
.tcs-home-build-card:visited {
  min-height: 430px;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  background: rgba(24, 25, 24, 0.56);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  color: white;
  text-decoration: none;
  display: block;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.tcs-home-build-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(24, 25, 24, 0.68);
  transform: translateY(-2px);
}

.tcs-home-build-card img {
  width: 100%;
  height: 340px;
  margin-bottom: 18px;
  border-radius: 24px;
  object-fit: cover;
  display: block;
  opacity: 0.88;
}

.tcs-home-build-card h3 {
  margin: 8px 0;
  color: white;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.tcs-home-build-card p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.tcs-home-process-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 54px;
  align-items: start;
}

.tcs-home-process-copy {
  position: sticky;
  top: 130px;
}

.tcs-home-process-copy p:not(.tcs-home-kicker) {
  margin: 22px 0 0;
  max-width: 520px;
}

.tcs-home-mini-consult-form {
  width: min(520px, 100%);
  margin-top: 28px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(192, 154, 92, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(24, 25, 24, 0.58);
  border: 1px solid rgba(192, 154, 92, 0.32);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(192, 154, 92, 0.08);
  display: grid;
  gap: 14px;
}

.tcs-home-mini-consult-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.tcs-home-mini-consult-field {
  display: grid;
  gap: 8px;
}

.tcs-home-mini-consult-field-full {
  grid-column: 1 / -1;
}

.tcs-home-mini-consult-form label {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tcs-home-mini-consult-form input,
.tcs-home-mini-consult-form select,
.tcs-home-mini-consult-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(8, 9, 8, 0.42);
  color: white;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.tcs-home-mini-consult-form input,
.tcs-home-mini-consult-form select {
  min-height: 46px;
  padding: 0 14px;
}

.tcs-home-mini-consult-form textarea {
  min-height: 86px;
  padding: 13px 14px;
  resize: vertical;
}

.tcs-home-mini-consult-form input::placeholder,
.tcs-home-mini-consult-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.tcs-home-mini-consult-submit {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tcs-home-mini-consult-submit:hover {
  background: rgba(255, 255, 255, 0.18);
}

.tcs-home-process-list {
  display: grid;
  gap: 16px;
}

.tcs-home-process-list article,
.tcs-home-trust-grid article {
  min-height: 190px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(24, 25, 24, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.11);
  display: grid;
  gap: 16px;
  align-content: start;
}

.tcs-home-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tcs-home-final {
  padding-bottom: 120px;
}

.tcs-home-final-panel {
  max-width: 1280px;
  min-height: 330px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(192, 154, 92, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(24, 25, 24, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tcs-home-final-panel h2 {
  max-width: 760px;
}

@media (max-width: 1100px) {
  .tcs-home-hero-inner,
  .tcs-home-process-inner {
    grid-template-columns: 1fr;
  }

  .tcs-home-hero-copy {
    max-width: 760px;
  }

  .tcs-home-hero-visual {
    min-height: 500px;
  }

  .tcs-home-hero-visual img {
    min-height: 500px;
  }

  .tcs-home-path-grid,
  .tcs-home-category-grid,
  .tcs-home-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tcs-home-process-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  .home-page {
    padding-top: 88px;
  }

  .tcs-home-hero {
    min-height: calc(100vh - 88px);
    padding: 50px 22px 68px;
  }

  .tcs-home-paths,
  .tcs-home-categories,
  .tcs-home-builds,
  .tcs-home-process,
  .tcs-home-trust,
  .tcs-home-final {
    padding: 68px 22px;
  }

  .tcs-home-hero-copy h1 {
    font-size: 48px;
  }

  .tcs-home-section-head h2,
  .tcs-home-process-copy h2,
  .tcs-home-final-panel h2 {
    font-size: 34px;
  }

  .tcs-home-section-head-row {
    display: block;
  }

  .tcs-home-text-link {
    margin-top: 18px;
    display: inline-flex;
  }

  .tcs-home-hero-visual,
  .tcs-home-hero-visual img {
    min-height: 420px;
  }

  .tcs-home-builds .tcs-home-section-head-row,
  .tcs-home-build-card {
    text-align: left;
  }

  .tcs-home-build-grid {
    grid-template-columns: 1fr;
  }

  .tcs-home-build-grid.is-mobile-carousel-ready .tcs-home-build-card {
    display: none;
  }

  .tcs-home-build-grid.is-mobile-carousel-ready .tcs-home-build-card.is-active {
    display: block;
    animation: tcsHomeBuildCardIn 0.36s ease;
  }

  .tcs-home-build-card img {
    height: 290px;
  }

  .tcs-home-build-dots {
    display: flex;
    justify-content: flex-end;
  }

  @keyframes tcsHomeBuildCardIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .tcs-home-final-panel {
    min-height: 280px;
    padding: 28px;
    border-radius: 24px;
  }
}

@media (max-width: 620px) {
  .tcs-home-hero-copy h1 {
    font-size: 40px;
  }

  .tcs-home-hero-copy > p:not(.tcs-home-kicker) {
    font-size: 16px;
  }

  .tcs-home-hero-actions,
  .tcs-home-primary-action,
  .tcs-home-secondary-action {
    width: 100%;
  }

  .tcs-home-path-grid,
  .tcs-home-category-grid,
  .tcs-home-trust-grid {
    grid-template-columns: 1fr;
  }

  .tcs-home-path-card {
    min-height: 210px;
  }

  .tcs-home-category-card,
  .tcs-home-category-card img {
    min-height: 280px;
  }

  .tcs-home-hero-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
    border-radius: 20px;
  }

  .tcs-home-hero-card h2 {
    font-size: 24px;
  }
}

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 90;
  width: min(1120px, calc(100% - 48px));
  min-height: 62px;
  padding: 0 14px 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(24, 25, 24, 0.88);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header-logo,
.site-header-logo:visited {
  color: white;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.site-header-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.site-header-nav > a,
.site-header-nav > a:visited,
.site-header-dropdown-toggle,
.site-header-dropdown-toggle:visited {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-header-nav > a:hover,
.site-header-dropdown:hover .site-header-dropdown-toggle {
  color: white;
}

.site-header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-header-cart,
.site-header-cart:visited {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.site-header-cart img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
}

.site-header-cart:hover {
  opacity: 0.72;
}

.site-header .floating-account-widget {
  position: relative;
  top: auto;
  right: auto;
  z-index: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.site-header .floating-account-greeting {
  display: none;
}

.site-header .floating-account-button {
  width: 42px;
  height: 42px;
}

.site-header .floating-account-button img {
  width: 26px;
  height: 26px;
}

.site-header .floating-account-menu {
  top: 52px;
  right: 0;
}

.site-header .hamburger-toggle {
  display: none;
}

@media (max-width: 1100px) {
  .components-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-page,
  .components-hub-page {
    padding-top: 88px;
  }

  .home-start-section {
    min-height: calc(100vh - 88px);
    padding: 54px 22px 72px;
  }

  .home-start-header h1 {
    font-size: 34px;
  }

  .home-start-grid {
    grid-template-columns: 1fr;
  }

  .home-start-card {
    min-height: 160px;
  }

  .home-featured-components-section {
    padding: 24px 22px 72px;
  }

  .home-featured-components-header h2 {
    font-size: 25px;
  }

  .home-featured-components-row {
    grid-template-columns: 1fr;
  }

  .home-featured-component-item:not(:first-child) {
    display: none;
  }

  .home-featured-components-arrow {
    top: 76px;
  }

  .home-featured-components-arrow-left {
    left: -10px;
  }

  .home-featured-components-arrow-right {
    right: -10px;
  }

  .home-featured-component-item:not(:last-child)::after {
    display: none;
  }

  .home-featured-component-item img {
    height: 165px;
  }

  .home-custom-process-section {
    padding: 72px 22px;
  }

  .home-custom-process-left {
    margin-bottom: 48px;
  }

  .home-custom-process-left h2 {
    font-size: 34px;
  }

  .home-custom-process-steps {
    gap: 28px;
  }

  .home-custom-process-step,
  .home-custom-process-step:nth-child(even) {
    max-width: none;
    margin-left: 0;
    padding-bottom: 34px;
  }

  .home-custom-process-step h3 {
    font-size: 30px;
  }

  .home-custom-process-step p {
    font-size: 15px;
  }

  .home-signature-preview-section {
    padding: 72px 22px;
  }

  .home-signature-preview-header {
    display: block;
  }

  .home-signature-preview-header h2 {
    margin-bottom: 18px;
    font-size: 31px;
  }

  .home-signature-preview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-signature-preview-grid.is-mobile-carousel-ready .home-signature-preview-card {
    display: none;
  }

  .home-signature-preview-grid.is-mobile-carousel-ready .home-signature-preview-card.is-active {
    display: block;
    animation: homeSignaturePreviewCardIn 0.36s ease;
  }

  .home-signature-preview-card img {
    height: 260px;
  }

  @keyframes homeSignaturePreviewCardIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .home-support-section {
    padding: 72px 22px;
  }

  .home-support-grid {
    grid-template-columns: 1fr;
  }

  .home-support-item {
    min-height: 170px;
  }

  .components-page-grid-section {
    padding: 46px 20px 72px;
  }

  .components-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .components-page-grid-card {
    min-height: 124px;
    padding: 0 14px;
    border-radius: 15px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .site-header {
    position: fixed;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 1002;
    width: auto;
    height: 54px;
    min-height: 54px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(24, 25, 24, 0.92);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: none;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) 80px;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 0;
  }

  .site-header-nav {
    display: none;
  }

  .site-header-logo,
  .site-header-logo:visited {
    display: block;
    overflow: hidden;
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
  }

  .site-header-cart,
  .site-header-cart:visited {
    display: flex;
    justify-self: end;
    width: 44px;
    height: 44px;
  }

  .site-header-cart img {
    width: 24px;
    height: 24px;
  }

  .site-header .hamburger-toggle {
    position: static;
    z-index: 1;
    display: flex;
    justify-self: start;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 620px) {
  .components-page-grid {
    grid-template-columns: 1fr;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("https://pqmnzktrvnqpfbbhrnoj.supabase.co/storage/v1/object/public/site-assets/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.hero-text {
  max-width: 720px;
  padding: 30px;
}

.hero-eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-text h1 {
  max-width: 720px;
  margin-bottom: 0;
  color: white;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-button,
.hero-button:visited {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.hero-button-primary {
  background: #242624;
  color: #e2e0dc;
  border: 1px solid #242624;
}

.hero-button-secondary {
  background: rgba(36, 38, 36, 0.16);
  color: #f0eeee;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.hero-button:hover {
  opacity: 0.82;
}

.hero-button:active {
  transform: translateY(1px);
}

@media (max-width: 700px) {
  .hero-content {
    padding: 0 25px;
  }

  .hero-text {
    padding: 0;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-button {
    width: 100%;
  }
}

.signature-builds-eyebrow {
  margin-bottom: 12px;
  color: rgba(192, 154, 92, 0.84);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.component-page .signature-builds-eyebrow {
  display: none;
}

.signature-builds-section {
  max-width: 1500px;
  margin: 80px auto 0;
  padding: 0 120px 90px;
}

.signature-builds-header {
  margin-bottom: 28px;
}

.component-search-box {
  width: 100%;
  max-width: 520px;
  margin: 22px auto 0;
}

.component-controls-row {
  width: min(100%, 620px);
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.component-controls-row .component-search-box {
  flex: 1 1 520px;
  min-width: 0;
  margin: 0;
}

.component-search-box input {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.065);
  color: white;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.component-search-box input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.component-search-box input:focus {
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(192, 154, 92, 0.58);
  box-shadow: 0 0 0 4px rgba(192, 154, 92, 0.1);
}

.component-sort-control {
  position: relative;
  flex: 0 0 auto;
}

.component-sort-toggle {
  width: 48px;
  height: 48px;
  padding: 0 13px 0 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.065);
  color: white;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.component-sort-toggle:hover,
.component-sort-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(192, 154, 92, 0.58);
  transform: translateY(-1px);
}

.component-sort-toggle-line {
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  display: block;
}

.component-sort-toggle-line:nth-child(1) {
  width: 22px;
}

.component-sort-toggle-line:nth-child(2) {
  width: 16px;
}

.component-sort-toggle-line:nth-child(3) {
  width: 10px;
}

.component-sort-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  min-width: 190px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(24, 25, 24, 0.96);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.component-sort-menu[hidden] {
  display: none;
}

.component-sort-option {
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.component-sort-option:hover,
.component-sort-option.active {
  background: rgba(192, 154, 92, 0.16);
  color: #ffffff;
}

.component-sort-control.sort-is-loading .component-sort-toggle {
  border-color: rgba(192, 154, 92, 0.68);
  animation: componentSortPulse 0.72s ease-in-out infinite;
}

.component-sort-control.sort-is-loading .component-sort-toggle-line {
  animation: componentSortLineSweep 0.72s ease-in-out infinite;
}

.component-sort-control.sort-is-loading .component-sort-toggle-line:nth-child(2) {
  animation-delay: 0.08s;
}

.component-sort-control.sort-is-loading .component-sort-toggle-line:nth-child(3) {
  animation-delay: 0.16s;
}

.signature-builds-grid.sort-is-updating .signature-build-card {
  opacity: 0.38;
  transform: translateY(8px) scale(0.985);
  filter: blur(1px);
  pointer-events: none;
}

@keyframes componentSortPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(192, 154, 92, 0);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(192, 154, 92, 0.12);
  }
}

@keyframes componentSortLineSweep {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(4px);
  }
}

@media (max-width: 560px) {
  .component-controls-row {
    width: 100%;
    gap: 10px;
  }

  .component-sort-toggle {
    width: 46px;
    height: 46px;
  }

  .component-sort-menu {
    min-width: 180px;
  }
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  margin-left: 12px;
  border-radius: 50%;
  cursor: pointer;
  background:
    linear-gradient(45deg, transparent 43%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.9) 56%, transparent 57%),
    linear-gradient(-45deg, transparent 43%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.9) 56%, transparent 57%);
}

input[type="search"]::-webkit-search-cancel-button:hover {
  background:
    linear-gradient(45deg, transparent 43%, #ffffff 44%, #ffffff 56%, transparent 57%),
    linear-gradient(-45deg, transparent 43%, #ffffff 44%, #ffffff 56%, transparent 57%);
}

.selected-filter-chips {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 30px;
}

.selected-filter-label {
  color: rgba(192, 154, 92, 0.84);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selected-filter-chip,
.selected-filter-clear {
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.selected-filter-chip:hover,
.selected-filter-clear:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.selected-filter-chip:active,
.selected-filter-clear:active {
  transform: translateY(1px);
}

.selected-filter-chip span:last-child {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  line-height: 1;
}

.selected-filter-clear {
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
}

.signature-builds-header h2 {
  color: white;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.signature-builds-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.signature-build-card,
.signature-build-card:visited {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  background: rgba(24, 25, 24, 0.56);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  color: inherit;
  text-decoration: none;
  display: block;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    filter 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.signature-build-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(24, 25, 24, 0.68);
  transform: translateY(-2px);
}

.signature-builds-grid.filter-is-updating .signature-build-card {
  opacity: 0.42;
  transform: translateY(6px) scale(0.985);
  filter: blur(1px);
  pointer-events: none;
}

.product-card-link {
  cursor: pointer;
}

.product-card-link:hover h3 {
  opacity: 1;
}

.signature-build-image-placeholder,
.signature-build-image-frame {
  width: 100%;
  aspect-ratio: 75 / 56;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.signature-build-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signature-build-image-frame {
  overflow: hidden;
}

.signature-build-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.signature-build-card:hover .signature-build-image {
  transform: none;
  opacity: 0.88;
}

.signature-build-card span {
  color: rgba(192, 154, 92, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
}

.signature-build-card h3 {
  margin: 8px 0;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
  text-transform: uppercase;
}

.signature-build-card h3 .case-sensitive-unit {
  text-transform: uppercase;
}

.signature-build-card h3 .case-sensitive-unit::first-letter {
  text-transform: lowercase;
}

.signature-build-card h3 .case-sensitive-unit {
  text-transform: none;
}

.signature-build-card p {
  max-width: 95%;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.signature-build-price {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.105);
  color: white;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .signature-builds-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signature-builds-section {
    padding: 0 60px 80px;
  }
}

@media (max-width: 700px) {
  .signature-page {
    padding-top: 90px;
  }

  .signature-hero {
    min-height: 390px;
    margin: 0 25px;
    border-radius: 0;
  }

  .signature-hero-content {
    padding: 46px 28px;
  }

  .signature-hero-content h1 {
    font-size: 34px;
  }

  .signature-hero-content p:last-child {
    font-size: 17px;
  }

  .signature-builds-section {
    margin-top: 60px;
    padding: 0 25px 70px;
  }

  .signature-builds-header h2 {
    font-size: 30px;
  }

  .signature-builds-grid {
    grid-template-columns: 1fr;
  }
}

.hamburger-toggle {
  position: fixed;
  left: 60px;
  top: 30px;
  z-index: 1002;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-toggle span {
  position: absolute;
  left: 5px;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: white;
  transition:
    top 0.28s ease,
    transform 0.28s ease,
    opacity 0.22s ease;
}

.hamburger-toggle span:nth-child(1) {
  top: 9px;
}

.hamburger-toggle span:nth-child(2) {
  top: 21px;
}

.hamburger-toggle span:nth-child(3) {
  top: 33px;
}

body.nav-menu-open .hamburger-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

body.nav-menu-open .hamburger-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-menu-open .hamburger-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.nav-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

body.nav-menu-open .nav-menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-menu-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s ease;
}

body.nav-menu-open .nav-menu-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  text-align: center;
}

.nav-menu-link,
.nav-menu-link:visited,
.nav-menu-button {
  border: none;
  background: transparent;
  color: white;
  font-family: inherit;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.22s ease,
    opacity 0.22s ease;
}

.nav-menu-link:hover,
.nav-menu-button:hover {
  color: rgba(255, 255, 255, 0.72);
}

.nav-menu-back {
  margin-bottom: 12px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.22s ease;
}

.nav-menu-back:hover {
  color: white;
}

.nav-menu-components .nav-menu-links {
  width: min(1340px, calc(100vw - 54px));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.nav-menu-components .nav-menu-back {
  grid-column: 1 / -1;
  justify-self: center;
  margin-bottom: 18px;
}

.nav-menu-components .nav-menu-link,
.nav-menu-components .nav-menu-link:visited {
  --nav-tile-image: url("https://pqmnzktrvnqpfbbhrnoj.supabase.co/storage/v1/object/public/site-assets/hero.png");
  min-height: 178px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.86)),
    var(--nav-tile-image);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.82);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  transition:
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.nav-menu-components .nav-menu-link:nth-of-type(1) {
  --nav-tile-image: url("https://pqmnzktrvnqpfbbhrnoj.supabase.co/storage/v1/object/public/product-images/CPU/intel-core-ultra-9-285k-1.jpeg");
}

.nav-menu-components .nav-menu-link:nth-of-type(2) {
  --nav-tile-image: url("https://pqmnzktrvnqpfbbhrnoj.supabase.co/storage/v1/object/public/product-images/Coolers/rog-ryujin-iii-360-argb-extreme-1.jpeg");
}

.nav-menu-components .nav-menu-link:nth-of-type(3) {
  --nav-tile-image: url("https://pqmnzktrvnqpfbbhrnoj.supabase.co/storage/v1/object/public/product-images/Motherboards/gigabyte-z890-aorus-master-1.jpeg");
}

.nav-menu-components .nav-menu-link:nth-of-type(4) {
  --nav-tile-image: url("https://pqmnzktrvnqpfbbhrnoj.supabase.co/storage/v1/object/public/product-images/Ram/corsair-dominator-titanium-rgb-96gb-ddr5-7000-cl40-1.jpeg");
}

.nav-menu-components .nav-menu-link:nth-of-type(5) {
  --nav-tile-image: url("https://pqmnzktrvnqpfbbhrnoj.supabase.co/storage/v1/object/public/product-images/Storage/samsung-9100-pro-1tb-1.jpeg");
}

.nav-menu-components .nav-menu-link:nth-of-type(6) {
  --nav-tile-image: url("https://pqmnzktrvnqpfbbhrnoj.supabase.co/storage/v1/object/public/product-images/graphics-cards/gigabyte-rtx-5090-aorus-master-1.jpeg");
}

.nav-menu-components .nav-menu-link:nth-of-type(7) {
  --nav-tile-image: url("https://pqmnzktrvnqpfbbhrnoj.supabase.co/storage/v1/object/public/product-images/Cases/gigabyte-aorus-c500-glass-1.jpeg");
}

.nav-menu-components .nav-menu-link:nth-of-type(8) {
  --nav-tile-image: url("https://pqmnzktrvnqpfbbhrnoj.supabase.co/storage/v1/object/public/product-images/Power%20supplies/gigabyte-ud1600pm-pg5-ai-top-1.jpeg");
}

.nav-menu-components .nav-menu-link:nth-of-type(9) {
  --nav-tile-image: url("https://pqmnzktrvnqpfbbhrnoj.supabase.co/storage/v1/object/public/product-images/Monitors/gigabyte-gs27fa-gaming-monitor-1.jpeg");
}

.nav-menu-components .nav-menu-link:nth-of-type(10) {
  --nav-tile-image: url("https://pqmnzktrvnqpfbbhrnoj.supabase.co/storage/v1/object/public/product-images/Accessories/razer-huntsman-v3-pro-tkl-keyboard-1.jpeg");
}

.nav-menu-components .nav-menu-link:hover {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.76)),
    var(--nav-tile-image);
  border-color: rgba(255, 255, 255, 0.32);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

body.nav-menu-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .hamburger-toggle {
    left: 25px;
    top: 20px;
    width: 42px;
    height: 42px;
  }

  .hamburger-toggle span {
    left: 6px;
    width: 30px;
    height: 2px;
  }

  .nav-menu-link,
  .nav-menu-button {
    font-size: 20px;
    letter-spacing: 0.11em;
  }

  .nav-menu-components .nav-menu-links {
    width: min(460px, calc(100vw - 34px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nav-menu-components .nav-menu-link {
    min-height: 124px;
    padding: 0 14px;
    border-radius: 15px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}

.signature-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  max-width: 1220px;
  margin: 76px auto 0;
  padding: 0 44px 96px;
  align-items: start;
}

@media (min-width: 1528px) {
  .signature-layout {
    grid-template-columns: 280px minmax(0, 824px) 280px;
    max-width: 1528px;
  }
}

.filters-panel {
  position: sticky;
  top: 120px;
  align-self: start;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 14px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(24, 25, 24, 0.56);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  display: grid;
  gap: 8px;
  scrollbar-color: rgba(255, 255, 255, 0.48) rgba(24, 25, 24, 0.56);
  scrollbar-width: thin;
}

.filters-heading {
  margin: 0;
  padding: 10px 14px 6px;
  color: rgba(192, 154, 92, 0.84);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.filter-item {
  border: 0;
}

.filter-item:last-child {
  border-bottom: 0;
}

.filter-toggle {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.filter-toggle:hover,
.filter-item.open .filter-toggle {
  background: rgba(192, 154, 92, 0.1);
  color: rgba(192, 154, 92, 0.92);
}

.chevron {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-right: 4px;
  font-size: 0;
}

.filter-content {
  display: grid;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  padding: 0 8px;
  transition:
    max-height 0.42s ease,
    opacity 0.28s ease,
    padding 0.42s ease;
}

.filter-item.open .filter-content {
  max-height: 560px;
  opacity: 1;
  transform: translateY(0);
  padding: 10px 8px 12px;
}

.filter-item.open .chevron {
  transform: rotate(225deg);
}

.filter-content label {
  position: relative;
  min-height: 40px;
  margin: 0;
  padding: 0 12px 0 22px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition:
    color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease;
}

.filter-content label::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-radius: 999px;
  background: rgba(192, 154, 92, 0.92);
  opacity: 0;
  transform: scaleY(0.35);
  transform-origin: center;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.filter-content input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.filter-content label:hover {
  color: white;
  background: rgba(255, 255, 255, 0.055);
}

.filter-content label:has(input:checked) {
  color: rgba(192, 154, 92, 0.92);
  background: rgba(192, 154, 92, 0.1);
  transform: translateX(2px);
}

.filter-content label:has(input:checked)::before {
  opacity: 1;
  transform: scaleY(1);
}

@media (max-width: 1100px) {
  .signature-layout {
    grid-template-columns: 1fr;
    padding: 0 60px 80px;
  }

  .filters-panel {
    position: static;
    padding: 0;
  }
}

@media (max-width: 700px) {
  .signature-layout {
    padding: 0 25px 70px;
  }
}

.site-footer {
  background: #232423;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 46px 60px 30px;
}

.site-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.site-footer-column h2,
.site-footer-column h3 {
  color: white;
}

.site-footer-column h2 {
  margin-bottom: 16px;
  color: white;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.site-footer-column h3 {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-footer-brand p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.site-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer-links li + li {
  margin-top: 12px;
}

.site-footer-links a,
.site-footer-links a:visited {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.site-footer-links a:hover {
  color: white;
  opacity: 0.88;
}

.site-footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-bottom p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 38px 25px 24px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer-column h2 {
    font-size: 24px;
  }

  .site-footer-column h3 {
    font-size: 12px;
  }
}

.about-us-page {
  min-height: 100vh;
  background: #2a2b2a;
  padding-top: 104px;
  overflow-x: clip;
}

.about-us-hero {
  padding: 76px 44px 24px;
}

.about-us-hero-inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(24, 25, 24, 0.56);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

.about-us-eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-us-hero h1 {
  max-width: 820px;
  margin-bottom: 12px;
  color: white;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.about-us-intro {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.about-us-content {
  padding: 0 44px 96px;
}

.about-us-content-inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(24, 25, 24, 0.56);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  display: grid;
}

.about-us-block {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.105);
}

.about-us-block:first-child {
  padding-top: 0;
}

.about-us-block:last-child {
  padding-bottom: 0;
}

.about-us-number {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.about-us-block h2 {
  margin-bottom: 12px;
  color: white;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-us-block p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .about-us-hero {
    padding: 46px 22px 24px;
  }

  .about-us-hero-inner,
  .about-us-content-inner {
    padding: 24px;
    border-radius: 22px;
  }

  .about-us-content {
    padding: 0 22px 70px;
  }

  .about-us-hero h1 {
    font-size: 30px;
  }

  .about-us-intro {
    font-size: 15px;
  }

  .about-us-block {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .about-us-block h2 {
    font-size: 20px;
  }

  .about-us-block p {
    font-size: 15px;
  }
}

.component-page {
  min-height: 100vh;
  background: #2a2b2a;
  padding-top: 104px;
}

.product-page {
  min-height: 100vh;
  background: #2a2b2a;
  padding-top: 120px;
  position: relative;
  overflow-x: clip;
}

.product-fwc26-layer {
  position: absolute;
  inset: 0;
  display: none;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.product-page.product-page-fwc26-edition .product-fwc26-layer {
  display: block;
}

.product-fwc26-edition-label,
.product-fwc26-support-line,
.product-fwc26-stats,
.product-fwc26-purchase-marker {
  display: none;
}

.product-page.product-page-fwc26-edition .product-included-box {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(17, 17, 17, 0.72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.product-page.product-page-fwc26-edition .product-included-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--fwc26-red), var(--fwc26-orange), var(--fwc26-yellow), var(--fwc26-green), var(--fwc26-cyan), var(--fwc26-purple));
  pointer-events: none;
}

.product-page.product-page-fwc26-edition .product-included-box::after {
  content: "26";
  position: absolute;
  right: 20px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--fwc26-display-font);
  font-size: 78px;
  font-weight: 900;
  line-height: 0.82;
  pointer-events: none;
  user-select: none;
}

.product-page.product-page-fwc26-edition .product-included-header,
.product-page.product-page-fwc26-edition .product-included-list {
  position: relative;
  z-index: 1;
}

.product-page.product-page-fwc26-edition .product-included-box .product-specifications-eyebrow {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--fwc26-display-font);
  letter-spacing: 0;
}

.product-page.product-page-fwc26-edition .product-included-item {
  border-color: rgba(255, 255, 255, 0.12);
}

.product-page.product-page-fwc26-edition .product-included-question {
  color: var(--fwc26-white);
}

.product-page.product-page-fwc26-edition .product-included-question .faq-icon {
  color: var(--fwc26-yellow);
  font-family: var(--fwc26-display-font);
  font-size: 24px;
  font-weight: 900;
}

.product-page.product-page-fwc26-edition .product-included-answer p {
  color: rgba(255, 255, 255, 0.64);
}

.product-fwc26-edition-label,
.product-fwc26-support-line,
.product-fwc26-stats,
.product-fwc26-purchase-marker {
  display: none;
}

:root {
  --fwc26-red: #c43236;
  --fwc26-orange: #e05034;
  --fwc26-lime: #92be44;
  --fwc26-green: #48ac51;
  --fwc26-blue: #39549b;
  --fwc26-cyan: #7cc2c1;
  --fwc26-yellow: #d2d644;
  --fwc26-purple: #a28ebb;
  --fwc26-light-blue: #97a9ce;
  --fwc26-peach: #dba996;
  --fwc26-white: #ffffff;
  --fwc26-charcoal: #111111;
  --fwc26-display-font: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", Arial, sans-serif;
}

.product-page.product-page-fwc26-edition {
  background: var(--fwc26-charcoal);
}

.product-page.product-page-fwc26-edition::before {
  content: "";
  display: none;
}

.product-fwc26-bg-number,
.product-fwc26-bg-word,
.product-fwc26-shape,
.product-fwc26-band {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.product-fwc26-bg-number,
.product-fwc26-bg-word {
  font-family: var(--fwc26-display-font);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-fwc26-bg-number {
  top: 60px;
  right: -82px;
  color: rgba(57, 84, 155, 0.18);
  font-size: 360px;
}

.product-fwc26-bg-world {
  top: 310px;
  left: max(28px, calc(50% - 710px));
  color: rgba(124, 194, 193, 0.22);
  font-size: 82px;
  transform: rotate(-4deg);
}

.product-fwc26-bg-hosts {
  top: 635px;
  right: max(20px, calc(50% - 720px));
  color: rgba(210, 214, 68, 0.18);
  font-size: 32px;
  transform: rotate(3deg);
}

.product-fwc26-bg-sandisk {
  top: 910px;
  left: max(18px, calc(50% - 820px));
  color: rgba(210, 214, 68, 0.2);
  font-size: 58px;
  transform: rotate(-6deg);
}

.product-fwc26-bg-unites {
  top: 1215px;
  left: max(28px, calc(50% - 790px));
  display: block;
  width: 540px;
  color: rgba(219, 169, 150, 0.22);
  font-size: 54px;
  line-height: 0.88;
  transform: rotate(-3deg);
}

.product-fwc26-bg-ready {
  top: 1180px;
  right: max(18px, calc(50% - 830px));
  color: rgba(72, 172, 81, 0.2);
  font-size: 42px;
}

.product-fwc26-shape {
  width: var(--w);
  height: var(--h);
  border-radius: 28px;
  opacity: 0.82;
  transform: rotate(var(--r));
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.24);
}

.product-fwc26-shape-red {
  --w: 174px;
  --h: 92px;
  --r: -12deg;
  top: 168px;
  left: max(18px, calc(50% - 760px));
  background: var(--fwc26-red);
}

.product-fwc26-shape-orange {
  --w: 138px;
  --h: 64px;
  --r: 10deg;
  top: 236px;
  left: max(170px, calc(50% - 610px));
  background: var(--fwc26-orange);
}

.product-fwc26-shape-yellow {
  --w: 156px;
  --h: 76px;
  --r: -7deg;
  top: 520px;
  right: max(24px, calc(50% - 760px));
  background: var(--fwc26-yellow);
}

.product-fwc26-shape-green {
  --w: 118px;
  --h: 148px;
  --r: 8deg;
  top: 700px;
  left: max(32px, calc(50% - 700px));
  background: var(--fwc26-green);
}

.product-fwc26-shape-blue {
  --w: 196px;
  --h: 86px;
  --r: -10deg;
  top: 820px;
  right: max(12px, calc(50% - 790px));
  background: var(--fwc26-blue);
}

.product-fwc26-shape-cyan {
  --w: 132px;
  --h: 132px;
  --r: 14deg;
  top: 1015px;
  left: max(120px, calc(50% - 590px));
  background: var(--fwc26-cyan);
}

.product-fwc26-shape-purple {
  --w: 150px;
  --h: 78px;
  --r: -5deg;
  top: 1320px;
  right: max(38px, calc(50% - 700px));
  background: var(--fwc26-purple);
}

.product-fwc26-band {
  height: 12px;
  border-radius: 999px;
  opacity: 0.9;
}

.product-fwc26-band-one {
  top: 438px;
  left: max(28px, calc(50% - 830px));
  width: 420px;
  background: linear-gradient(90deg, var(--fwc26-red), var(--fwc26-orange), var(--fwc26-yellow), var(--fwc26-green));
  transform: rotate(-3deg);
}

.product-fwc26-band-two {
  top: 1110px;
  right: max(20px, calc(50% - 840px));
  width: 470px;
  background: linear-gradient(90deg, var(--fwc26-blue), var(--fwc26-cyan), var(--fwc26-purple), var(--fwc26-peach));
  transform: rotate(4deg);
}

.product-fwc26-bg-specs {
  top: 1485px;
  left: max(18px, calc(50% - 835px));
  color: rgba(224, 80, 52, 0.22);
  font-size: 76px;
  transform: rotate(-4deg);
}

.product-fwc26-bg-bottom-number {
  top: 1760px;
  right: -82px;
  color: rgba(162, 142, 187, 0.18);
  font-size: 250px;
}

.product-fwc26-shape-spec-left {
  --w: 190px;
  --h: 86px;
  --r: -8deg;
  top: 1510px;
  left: max(-54px, calc(50% - 920px));
  background: var(--fwc26-cyan);
}

.product-fwc26-shape-spec-right {
  --w: 168px;
  --h: 118px;
  --r: 9deg;
  top: 1585px;
  right: max(-46px, calc(50% - 930px));
  background: var(--fwc26-orange);
}

.product-fwc26-shape-bottom-lime {
  --w: 140px;
  --h: 142px;
  --r: 11deg;
  top: 1840px;
  left: max(42px, calc(50% - 760px));
  background: var(--fwc26-lime);
}

.product-fwc26-shape-bottom-blue {
  --w: 210px;
  --h: 84px;
  --r: -7deg;
  top: 2060px;
  right: max(22px, calc(50% - 790px));
  background: var(--fwc26-blue);
}

.product-fwc26-band-three {
  display: none;
}

.product-fwc26-band-four {
  display: none;
}

.product-page.product-page-fwc26-edition .product-title-block {
  position: relative;
}

.product-page.product-page-fwc26-edition .product-fwc26-edition-label {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 1px solid rgba(151, 169, 206, 0.62);
  border-radius: 999px;
  background: rgba(57, 84, 155, 0.88);
  color: var(--fwc26-white);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-page.product-page-fwc26-edition .product-title-eyebrow {
  color: var(--fwc26-cyan);
}

.product-page.product-page-fwc26-edition .product-title-block h1 {
  max-width: 780px;
  color: var(--fwc26-white);
  font-family: var(--fwc26-display-font);
  font-size: 58px;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.product-page.product-page-fwc26-edition .product-fwc26-support-line {
  display: block;
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.product-page.product-page-fwc26-edition .product-fwc26-stats {
  display: grid;
  max-width: 620px;
  margin-top: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-page.product-page-fwc26-edition .product-fwc26-stats div {
  position: relative;
  overflow: hidden;
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.66);
}

.product-page.product-page-fwc26-edition .product-fwc26-stats div::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 18px;
  border-bottom-left-radius: 12px;
  background: var(--fwc26-stat-color, var(--fwc26-red));
}

.product-page.product-page-fwc26-edition .product-fwc26-stats div:nth-child(2)::before {
  --fwc26-stat-color: var(--fwc26-yellow);
}

.product-page.product-page-fwc26-edition .product-fwc26-stats div:nth-child(3)::before {
  --fwc26-stat-color: var(--fwc26-cyan);
}

.product-page.product-page-fwc26-edition .product-fwc26-stats strong {
  display: block;
  color: var(--fwc26-white);
  font-family: var(--fwc26-display-font);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.product-page.product-page-fwc26-edition .product-fwc26-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-page.product-page-fwc26-edition .product-media-area {
  position: relative;
}

.product-page.product-page-fwc26-edition .product-media-area::after {
  content: "26";
  position: absolute;
  top: 142px;
  right: -18px;
  z-index: 3;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--fwc26-red), var(--fwc26-orange) 42%, var(--fwc26-yellow));
  color: var(--fwc26-charcoal);
  font-family: var(--fwc26-display-font);
  font-size: 36px;
  font-weight: 900;
  line-height: 76px;
  letter-spacing: 0;
  text-align: center;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  transform: rotate(8deg);
}

.product-page.product-page-fwc26-edition .product-carousel-main {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(225, 229, 228, 0.9)),
    var(--fwc26-white);
  box-shadow:
    -12px 12px 0 rgba(72, 172, 81, 0.9),
    12px -12px 0 rgba(57, 84, 155, 0.95),
    0 28px 70px rgba(0, 0, 0, 0.32);
}

.product-page.product-page-fwc26-edition .product-carousel-main::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 5px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(var(--fwc26-white), var(--fwc26-white)) padding-box,
    linear-gradient(135deg, var(--fwc26-red), var(--fwc26-orange), var(--fwc26-yellow), var(--fwc26-green), var(--fwc26-cyan), var(--fwc26-purple)) border-box;
  pointer-events: none;
}

.product-page.product-page-fwc26-edition .product-carousel-main img {
  position: relative;
  z-index: 2;
  object-fit: contain;
}

.product-page.product-page-fwc26-edition .product-carousel-counter {
  background: rgba(17, 17, 17, 0.78);
  color: var(--fwc26-white);
}

.product-page.product-page-fwc26-edition .product-carousel-arrow {
  background: rgba(17, 17, 17, 0.72);
  border-color: rgba(255, 255, 255, 0.28);
}

.product-page.product-page-fwc26-edition .product-carousel-arrow:hover {
  background: var(--fwc26-blue);
  border-color: rgba(255, 255, 255, 0.55);
}

.product-page.product-page-fwc26-edition .product-thumbnail {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(17, 17, 17, 0.6);
}

.product-page.product-page-fwc26-edition .product-thumbnail:hover,
.product-page.product-page-fwc26-edition .product-thumbnail.active {
  border-color: var(--fwc26-yellow);
  box-shadow: 0 0 0 2px rgba(210, 214, 68, 0.2);
}

.product-page.product-page-fwc26-edition .product-purchase-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(17, 17, 17, 0.72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.product-page.product-page-fwc26-edition .product-purchase-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--fwc26-red), var(--fwc26-orange), var(--fwc26-yellow), var(--fwc26-green), var(--fwc26-cyan), var(--fwc26-purple));
}

.product-page.product-page-fwc26-edition .product-fwc26-purchase-marker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.product-page.product-page-fwc26-edition .product-fwc26-purchase-marker span {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--fwc26-yellow);
  color: var(--fwc26-charcoal);
  font-family: var(--fwc26-display-font);
  font-size: 23px;
  font-weight: 900;
  line-height: 42px;
  letter-spacing: 0;
  text-align: center;
}

.product-page.product-page-fwc26-edition .product-fwc26-purchase-marker strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-page.product-page-fwc26-edition .product-price-row strong {
  color: var(--fwc26-white);
}

.product-page.product-page-fwc26-edition .product-button-primary {
  border-color: transparent;
  background: var(--fwc26-red);
  color: var(--fwc26-white);
}

.product-page.product-page-fwc26-edition .product-button-primary:hover {
  background: var(--fwc26-orange);
  color: var(--fwc26-white);
}

.product-page.product-page-fwc26-edition .product-button-secondary:hover {
  border-color: var(--fwc26-cyan);
  color: var(--fwc26-white);
}

.product-page.product-page-fwc26-edition .product-specifications-section {
  position: relative;
  isolation: isolate;
  max-width: none;
  margin: 0;
  padding: 0 max(44px, calc((100vw - 1220px) / 2 + 44px)) 112px;
  border-top: 0;
  overflow: hidden;
}

.product-page.product-page-fwc26-edition .product-specifications-section::before {
  content: "";
  display: none;
}

.product-page.product-page-fwc26-edition .product-specifications-section::after {
  content: "26";
  position: absolute;
  right: max(10px, calc(50% - 760px));
  bottom: 34px;
  z-index: 0;
  color: rgba(146, 190, 68, 0.16);
  font-family: var(--fwc26-display-font);
  font-size: 168px;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
}

.product-page.product-page-fwc26-edition .product-specifications-inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 1220px;
  margin: 0 auto;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(17, 17, 17, 0.84);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.product-page.product-page-fwc26-edition .product-specifications-inner::before {
  content: "";
  display: none;
}

.product-page.product-page-fwc26-edition .product-specifications-inner::after {
  content: "WORLD CUP 2026";
  position: absolute;
  right: 26px;
  bottom: 18px;
  color: rgba(124, 194, 193, 0.14);
  font-family: var(--fwc26-display-font);
  font-size: 74px;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
}

.product-page.product-page-fwc26-edition .product-specifications-left {
  position: relative;
  z-index: 1;
}

.product-page.product-page-fwc26-edition .product-specifications-header h2 {
  color: var(--fwc26-white);
  font-family: var(--fwc26-display-font);
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-page.product-page-fwc26-edition .product-spec-row {
  border-color: rgba(255, 255, 255, 0.11);
}

.product-page.product-page-fwc26-edition .product-spec-row span {
  color: rgba(255, 255, 255, 0.58);
}

.product-page.product-page-fwc26-edition .product-spec-row strong {
  color: rgba(255, 255, 255, 0.94);
}

@media (max-width: 1100px) {
  .product-page.product-page-fwc26-edition .product-specifications-section {
    padding: 0 34px 92px;
  }

  .product-page.product-page-fwc26-edition .product-specifications-inner {
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
  }

  .product-page.product-page-fwc26-edition .product-specifications-section::after {
    font-size: 112px;
  }
}

@media (max-width: 700px) {
  .product-page.product-page-fwc26-edition .product-specifications-section {
    padding: 0 18px 72px;
  }

  .product-page.product-page-fwc26-edition .product-specifications-section::before {
    display: none;
  }

  .product-page.product-page-fwc26-edition .product-specifications-section::after,
  .product-page.product-page-fwc26-edition .product-specifications-inner::after {
    display: none;
  }

  .product-page.product-page-fwc26-edition .product-specifications-inner {
    padding: 24px;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24);
  }
}

.product-detail-layout {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 76px 44px 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.product-specifications-section {
  position: relative;
  z-index: 1;
}

@keyframes productFwc26Drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, 8px, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .product-page.product-page-fwc26-edition .product-fwc26-shape,
  .product-page.product-page-fwc26-edition .product-fwc26-band {
    animation: productFwc26Drift 14s ease-in-out infinite alternate;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-page.product-page-fwc26-edition .product-fwc26-shape,
  .product-page.product-page-fwc26-edition .product-fwc26-band {
    animation: none;
  }
}

.fwc26-cart-loading {
  position: fixed;
  inset: 0;
  z-index: 6900;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  contain: layout paint style;
  display: grid;
  place-items: center;
  color: var(--fwc26-white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0s linear 0.18s;
}

.fwc26-cart-loading.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.18s ease;
}

.fwc26-cart-loading__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 10, 0.34);
}

.fwc26-cart-loading__panel {
  position: absolute;
  border-radius: 999px;
  opacity: 0.88;
  will-change: transform;
  animation: fwc26CartLoadingPanelFloat 1.1s ease-in-out infinite alternate;
}

.fwc26-cart-loading__panel--red {
  width: 42vw;
  height: 9vh;
  left: -12vw;
  top: 24vh;
  background: var(--fwc26-red);
  transform: rotate(-10deg);
}

.fwc26-cart-loading__panel--blue {
  width: 36vw;
  height: 8vh;
  right: -10vw;
  bottom: 25vh;
  background: var(--fwc26-blue);
  transform: rotate(12deg);
  animation-delay: 0.12s;
}

.fwc26-cart-loading__panel--yellow {
  width: 18vw;
  height: 32vh;
  left: 17vw;
  bottom: -16vh;
  background: var(--fwc26-yellow);
  transform: rotate(18deg);
  animation-delay: 0.22s;
}

.fwc26-cart-loading__stage {
  position: relative;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  isolation: isolate;
  animation: fwc26CartLoadingStageLift 0.72s ease-in-out infinite alternate;
}

.fwc26-cart-loading__stage::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 46%),
    rgba(17, 17, 17, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.fwc26-cart-loading__ring {
  position: absolute;
  inset: 14px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--fwc26-yellow);
  border-right-color: var(--fwc26-cyan);
  animation: fwc26CartLoadingRingSpin 0.86s linear infinite;
}

.fwc26-cart-loading__pulse {
  position: absolute;
  inset: 38px;
  border-radius: 999px;
  border: 2px solid rgba(210, 214, 68, 0.42);
  animation: fwc26CartLoadingPulse 1.08s ease-in-out infinite;
}

.fwc26-cart-loading__football {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.42));
  animation: fwc26CartLoadingFootballSpin 0.78s cubic-bezier(0.55, 0.02, 0.28, 1) infinite;
}

.fwc26-cart-loading__label {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 13px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes fwc26CartLoadingFootballSpin {
  from {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.06);
  }

  to {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes fwc26CartLoadingRingSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fwc26CartLoadingPulse {
  0% {
    opacity: 0.2;
    transform: scale(0.82);
  }

  48% {
    opacity: 0.78;
  }

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

@keyframes fwc26CartLoadingStageLift {
  from {
    transform: translate3d(0, 4px, 0);
  }

  to {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes fwc26CartLoadingPanelFloat {
  from {
    translate: 0 0;
  }

  to {
    translate: 18px -8px;
  }
}

@media (max-width: 700px) {
  .fwc26-cart-loading__panel--blue {
    display: none;
  }

  .fwc26-cart-loading__panel--red {
    width: 62vw;
    height: 8vh;
  }

  .fwc26-cart-loading__panel--yellow {
    width: 26vw;
    height: 26vh;
  }

  .fwc26-cart-loading__stage {
    width: 150px;
    height: 150px;
  }

  .fwc26-cart-loading__football {
    width: 68px;
    height: 68px;
  }

  .fwc26-cart-loading__label {
    bottom: 8px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fwc26-cart-loading,
  .fwc26-cart-loading.is-active {
    transition: opacity 0.12s ease;
  }

  .fwc26-cart-loading__panel,
  .fwc26-cart-loading__stage,
  .fwc26-cart-loading__ring,
  .fwc26-cart-loading__pulse,
  .fwc26-cart-loading__football {
    animation: none;
  }
}

.fwc26-cart-celebration {
  position: fixed;
  inset: 0;
  z-index: 7000;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  contain: layout paint style;
  display: grid;
  place-items: center;
  color: var(--fwc26-white);
  font-family: Arial, Helvetica, sans-serif;
}

.fwc26-cart-celebration__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 10, 0.42);
  animation: fwc26CelebrationBackdrop 1.72s ease both;
}

.fwc26-cart-celebration__panel {
  position: absolute;
  border-radius: 999px;
  opacity: 0;
  will-change: transform, opacity;
}

.fwc26-cart-celebration__panel--left {
  left: -58vw;
  top: 12vh;
  width: 64vw;
  height: 15vh;
  background: var(--fwc26-red);
  animation: fwc26SweepFromLeft 1.22s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fwc26-cart-celebration__panel--right {
  right: -56vw;
  top: 34vh;
  width: 62vw;
  height: 13vh;
  background: var(--fwc26-blue);
  animation: fwc26SweepFromRight 1.26s cubic-bezier(0.16, 1, 0.3, 1) 0.04s both;
}

.fwc26-cart-celebration__panel--top {
  left: 18vw;
  top: -28vh;
  width: 18vw;
  height: 58vh;
  background: var(--fwc26-yellow);
  animation: fwc26SweepFromTop 1.18s cubic-bezier(0.16, 1, 0.3, 1) 0.02s both;
}

.fwc26-cart-celebration__panel--bottom {
  right: 16vw;
  bottom: -30vh;
  width: 20vw;
  height: 60vh;
  background: var(--fwc26-green);
  animation: fwc26SweepFromBottom 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both;
}

.fwc26-cart-celebration__panel--accent {
  left: 10vw;
  bottom: 12vh;
  width: 34vw;
  height: 9vh;
  background: var(--fwc26-cyan);
  animation: fwc26AccentSweep 1.36s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

.fwc26-cart-celebration__focus {
  position: relative;
  width: min(680px, calc(100vw - 34px));
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 34px 24px;
  isolation: isolate;
  animation: fwc26FocusReveal 1.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fwc26-cart-celebration__card {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(560px, calc(100vw - 42px));
  height: min(250px, 54vw);
  border-radius: 34px;
  transform: translate(-50%, -50%) rotate(-2deg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 34%),
    rgba(17, 17, 17, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
}

.fwc26-cart-celebration__shape {
  position: absolute;
  border-radius: 999px;
  z-index: -1;
  opacity: 0.96;
}

.fwc26-cart-celebration__shape--one {
  width: 180px;
  height: 76px;
  left: 12%;
  top: 17%;
  background: var(--fwc26-orange);
  transform: rotate(-18deg);
}

.fwc26-cart-celebration__shape--two {
  width: 210px;
  height: 86px;
  right: 8%;
  bottom: 18%;
  background: var(--fwc26-purple);
  transform: rotate(14deg);
}

.fwc26-cart-celebration__shape--three {
  width: 96px;
  height: 96px;
  left: 22%;
  bottom: 12%;
  background: var(--fwc26-lime);
}

.fwc26-cart-celebration__number {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.02em;
  margin-bottom: 12px;
  font-family: var(--fwc26-display-font);
  font-size: clamp(112px, 19vw, 236px);
  line-height: 0.72;
  letter-spacing: 0;
  transform-origin: center;
  animation: fwc26NumberReveal 1.54s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fwc26-cart-celebration__number span:first-child {
  color: var(--fwc26-yellow);
}

.fwc26-cart-celebration__number span:last-child {
  color: var(--fwc26-cyan);
}

.fwc26-cart-celebration__message {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 7px;
  text-align: center;
  animation: fwc26MessageReveal 1.7s ease both;
}

.fwc26-cart-celebration__message strong {
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--fwc26-white);
}

.fwc26-cart-celebration__message span {
  max-width: min(520px, calc(100vw - 58px));
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(11px, 2.4vw, 14px);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.fwc26-cart-celebration__message small {
  color: var(--fwc26-yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.fwc26-cart-celebration__mark {
  position: absolute;
  width: 52px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.fwc26-cart-celebration__mark--one {
  top: 36px;
  left: 48px;
}

.fwc26-cart-celebration__mark--two {
  right: 48px;
  bottom: 38px;
  background: var(--fwc26-yellow);
}

.fwc26-cart-celebration__traveler {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 124px;
  height: 76px;
  transform: translate3d(-50%, -50%, 0);
  transform-origin: center;
  opacity: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  will-change: transform, opacity;
  animation: fwc26TravelerCenter 1.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fwc26-cart-celebration--targeted .fwc26-cart-celebration__traveler {
  animation-name: fwc26TravelerToCart;
}

.fwc26-cart-celebration__traveler span {
  border-radius: 12px;
}

.fwc26-cart-celebration__traveler span:nth-child(1) {
  background: var(--fwc26-red);
}

.fwc26-cart-celebration__traveler span:nth-child(2) {
  background: var(--fwc26-yellow);
}

.fwc26-cart-celebration__traveler span:nth-child(3) {
  background: var(--fwc26-cyan);
}

.fwc26-cart-celebration__traveler span:nth-child(4) {
  background: var(--fwc26-green);
}

.fwc26-cart-celebration__traveler span:nth-child(5) {
  background: var(--fwc26-orange);
}

.fwc26-cart-celebration__traveler span:nth-child(6) {
  background: var(--fwc26-purple);
}

.site-header-cart.site-header-cart-fwc26-pulse::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  border: 2px solid var(--fwc26-yellow);
  opacity: 0;
  pointer-events: none;
  animation: fwc26CartTargetPulse 0.62s ease-out both;
}

@keyframes fwc26CelebrationBackdrop {
  0% {
    opacity: 0;
  }

  12%,
  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fwc26SweepFromLeft {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }

  16% {
    opacity: 0.94;
  }

  42% {
    opacity: 0.94;
    transform: translate3d(62vw, 0, 0) rotate(-8deg);
  }

  100% {
    opacity: 0;
    transform: translate3d(132vw, 0, 0) rotate(-8deg);
  }
}

@keyframes fwc26SweepFromRight {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(8deg);
  }

  16% {
    opacity: 0.94;
  }

  42% {
    opacity: 0.94;
    transform: translate3d(-60vw, 0, 0) rotate(8deg);
  }

  100% {
    opacity: 0;
    transform: translate3d(-132vw, 0, 0) rotate(8deg);
  }
}

@keyframes fwc26SweepFromTop {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(12deg);
  }

  16% {
    opacity: 0.9;
  }

  44% {
    opacity: 0.9;
    transform: translate3d(0, 42vh, 0) rotate(12deg);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 112vh, 0) rotate(12deg);
  }
}

@keyframes fwc26SweepFromBottom {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-12deg);
  }

  16% {
    opacity: 0.9;
  }

  44% {
    opacity: 0.9;
    transform: translate3d(0, -44vh, 0) rotate(-12deg);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -112vh, 0) rotate(-12deg);
  }
}

@keyframes fwc26AccentSweep {
  0% {
    opacity: 0;
    transform: translate3d(-44vw, 0, 0) rotate(5deg);
  }

  30% {
    opacity: 0.88;
    transform: translate3d(14vw, 0, 0) rotate(5deg);
  }

  100% {
    opacity: 0;
    transform: translate3d(90vw, 0, 0) rotate(5deg);
  }
}

@keyframes fwc26FocusReveal {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }

  18%,
  68% {
    opacity: 1;
    transform: scale(1);
  }

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

@keyframes fwc26NumberReveal {
  0% {
    opacity: 0;
    transform: scale(0.85) translate3d(0, 12px, 0);
  }

  18%,
  64% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(0.72) translate3d(0, -8px, 0);
  }
}

@keyframes fwc26MessageReveal {
  0%,
  18% {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }

  30%,
  74% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes fwc26TravelerToCart {
  0%,
  52% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  62% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(0.74);
  }

  88% {
    opacity: 1;
    transform: translate3d(calc(-50% + var(--fwc26-cart-travel-x, 0px)), calc(-50% + var(--fwc26-cart-travel-y, 0px)), 0) scale(0.34);
  }

  100% {
    opacity: 0;
    transform: translate3d(calc(-50% + var(--fwc26-cart-travel-x, 0px)), calc(-50% + var(--fwc26-cart-travel-y, 0px)), 0) scale(0.2);
  }
}

@keyframes fwc26TravelerCenter {
  0%,
  54% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  68% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(0.76);
  }

  100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.16);
  }
}

@keyframes fwc26CartTargetPulse {
  0% {
    opacity: 0;
    transform: scale(0.86);
  }

  42% {
    opacity: 1;
    transform: scale(1.08);
  }

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

@media (max-width: 700px) {
  .fwc26-cart-celebration__panel--top,
  .fwc26-cart-celebration__panel--bottom {
    display: none;
  }

  .fwc26-cart-celebration__panel--left,
  .fwc26-cart-celebration__panel--right {
    width: 76vw;
    height: 12vh;
  }

  .fwc26-cart-celebration__focus {
    min-height: 260px;
    padding: 24px 18px;
  }

  .fwc26-cart-celebration__card {
    height: 216px;
    border-radius: 26px;
  }

  .fwc26-cart-celebration__shape--one {
    width: 126px;
    height: 58px;
    left: 5%;
  }

  .fwc26-cart-celebration__shape--two {
    width: 132px;
    height: 58px;
    right: 4%;
  }

  .fwc26-cart-celebration__shape--three {
    width: 70px;
    height: 70px;
  }

  .fwc26-cart-celebration__number {
    font-size: clamp(92px, 28vw, 142px);
  }

  .fwc26-cart-celebration__traveler {
    width: 88px;
    height: 56px;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fwc26-cart-celebration__panel,
  .fwc26-cart-celebration__shape,
  .fwc26-cart-celebration__number,
  .fwc26-cart-celebration__traveler,
  .fwc26-cart-celebration__mark {
    display: none;
  }

  .fwc26-cart-celebration__backdrop {
    animation: fwc26CelebrationBackdrop 0.9s ease both;
  }

  .fwc26-cart-celebration__focus {
    min-height: 210px;
    animation: fwc26ReducedCard 0.9s ease both;
  }

  .fwc26-cart-celebration__card {
    height: 168px;
    transform: translate(-50%, -50%);
  }

  .fwc26-cart-celebration__message {
    animation: none;
  }
}

@keyframes fwc26ReducedCard {
  0% {
    opacity: 0;
  }

  18%,
  74% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  .product-fwc26-bg-number {
    right: -120px;
    font-size: 280px;
  }

  .product-fwc26-bg-world {
    font-size: 58px;
  }

  .product-fwc26-shape-red,
  .product-fwc26-shape-purple,
  .product-fwc26-shape-spec-right,
  .product-fwc26-bg-bottom-number,
  .product-fwc26-band-two,
  .product-fwc26-band-four {
    display: none;
  }

  .product-fwc26-bg-specs {
    top: 1330px;
    font-size: 52px;
  }

  .product-fwc26-shape-spec-left {
    top: 1390px;
  }

  .product-fwc26-band-three {
    top: 1368px;
    width: 430px;
  }

  .product-page.product-page-fwc26-edition .product-title-block h1 {
    font-size: 44px;
  }

  .product-page.product-page-fwc26-edition .product-media-area::after {
    top: 126px;
    right: 8px;
    width: 62px;
    height: 62px;
    font-size: 30px;
    line-height: 62px;
  }
}

@media (max-width: 700px) {
  .product-page.product-page-fwc26-edition .product-fwc26-layer {
    display: block;
  }

  .product-fwc26-bg-number {
    top: 88px;
    right: -70px;
    font-size: 140px;
  }

  .product-fwc26-bg-word,
  .product-fwc26-band,
  .product-fwc26-shape-red,
  .product-fwc26-shape-orange,
  .product-fwc26-shape-yellow,
  .product-fwc26-shape-blue,
  .product-fwc26-shape-cyan,
  .product-fwc26-shape-purple,
  .product-fwc26-shape-spec-left,
  .product-fwc26-shape-spec-right,
  .product-fwc26-shape-bottom-lime,
  .product-fwc26-shape-bottom-blue {
    display: none;
  }

  .product-fwc26-shape-green {
    --w: 72px;
    --h: 86px;
    top: 360px;
    left: -24px;
    border-radius: 18px;
  }

  .product-page.product-page-fwc26-edition .product-title-block h1 {
    font-size: 34px;
  }

  .product-page.product-page-fwc26-edition .product-fwc26-support-line {
    font-size: 14px;
  }

  .product-page.product-page-fwc26-edition .product-fwc26-stats {
    grid-template-columns: 1fr;
  }

  .product-page.product-page-fwc26-edition .product-media-area::after {
    display: none;
  }

  .product-page.product-page-fwc26-edition .product-carousel-main {
    box-shadow:
      -7px 7px 0 rgba(72, 172, 81, 0.85),
      7px -7px 0 rgba(57, 84, 155, 0.9),
      0 20px 48px rgba(0, 0, 0, 0.28);
  }
}

.product-media-area {
  min-width: 0;
}

.product-carousel-slide-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  will-change: transform;
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-carousel-main.is-sliding #product-main-image {
  opacity: 0;
}

.product-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(24, 25, 24, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: transparent;
  font-family: inherit;
  font-size: 0;
  font-weight: 300;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transition: opacity 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.product-carousel-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.94);
  border-bottom: 2px solid rgba(255, 255, 255, 0.94);
  transform-origin: center;
}

.product-carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(192, 154, 92, 0.78);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(192, 154, 92, 0.18);
  transform: translateY(-50%) scale(1.04);
}

.product-carousel-arrow-left {
  left: 18px;
}

.product-carousel-arrow-left::before {
  transform: translate(-38%, -50%) rotate(135deg);
}

.product-carousel-arrow-right {
  right: 18px;
}

.product-carousel-arrow-right::before {
  transform: translate(-62%, -50%) rotate(-45deg);
}

@media (min-width: 701px) {
  .product-carousel-arrow {
    top: 0;
    width: 104px;
    height: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    transform: none;
  }

  .product-carousel-arrow::before {
    width: 13px;
    height: 13px;
    opacity: 0;
    transition: opacity 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  }

  .product-carousel-arrow-left {
    left: 0;
  }

  .product-carousel-arrow-right {
    right: 0;
  }

  .product-carousel-arrow-left:hover,
  .product-carousel-arrow-left:focus-visible {
    background: linear-gradient(90deg, rgba(24, 25, 24, 0.62), rgba(24, 25, 24, 0));
    transform: none;
  }

  .product-carousel-arrow-right:hover,
  .product-carousel-arrow-right:focus-visible {
    background: linear-gradient(270deg, rgba(24, 25, 24, 0.62), rgba(24, 25, 24, 0));
    transform: none;
  }

  .product-carousel-arrow:hover::before,
  .product-carousel-arrow:focus-visible::before {
    opacity: 1;
    border-color: rgba(192, 154, 92, 0.94);
  }

  .product-carousel-arrow-left:hover::before,
  .product-carousel-arrow-left:focus-visible::before {
    transform: translate(-34%, -50%) rotate(135deg);
  }

  .product-carousel-arrow-right:hover::before,
  .product-carousel-arrow-right:focus-visible::before {
    transform: translate(-66%, -50%) rotate(-45deg);
  }
}

.product-carousel-main {
  position: relative;
  width: 100%;
  aspect-ratio: 2400 / 1792;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  overflow: hidden;
  background: rgba(24, 25, 24, 0.56);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

.product-carousel-main:not(.is-sliding) #product-main-image {
  cursor: zoom-in;
}

.product-carousel-counter {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 7;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(24, 25, 24, 0.72);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.product-carousel-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.product-image-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.product-image-lightbox-open {
  overflow: hidden;
}

.product-image-lightbox img {
  width: auto;
  height: auto;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 96px);
  display: block;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.product-image-lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.72);
  color: white;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.product-image-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
}

.product-thumbnail-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.product-thumbnail-row::-webkit-scrollbar {
  display: none;
}

.product-thumbnail {
  width: 68px;
  height: 52px;
  flex: 0 0 68px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  opacity: 0.58;
  transition:
    opacity 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-thumbnail:hover,
.product-thumbnail.active {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.34);
}

.product-thumbnail:active {
  transform: translateY(1px);
}

.product-image-note {
  max-width: 720px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
}

.product-purchase-area {
  min-height: 520px;
}

.product-specifications-section {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 44px 96px;
  transform: none;
}

.product-specifications-inner {
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(24, 25, 24, 0.56);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.product-specifications-header {
  margin-bottom: 34px;
}

.product-specifications-eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-specifications-header h2 {
  color: white;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.product-specifications-table {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.product-included-box {
  margin-top: 18px;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(24, 25, 24, 0.56);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

.product-included-header {
  margin-bottom: 14px;
}

.product-included-list {
  display: grid;
  gap: 4px;
}

.product-included-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.105);
}

.product-included-item:last-child {
  border-bottom: none;
}

.product-included-question {
  width: 100%;
  padding: 8px 0;
  border: none;
  background: transparent;
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.product-included-question > span:first-child {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.product-included-question > .faq-icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: rgba(192, 154, 92, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  transform-origin: center;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.product-included-question > .faq-icon::before,
.product-included-question > .faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 10px rgba(192, 154, 92, 0.16);
  transform: translate(-50%, -50%);
}

.product-included-question > .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.product-included-item.open .faq-icon {
  color: rgba(192, 154, 92, 0.95);
  transform: rotate(45deg);
}

.product-included-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.32s ease, opacity 0.22s ease;
}

.product-included-item.open .product-included-answer {
  max-height: 300px;
  opacity: 1;
}

.product-included-answer p {
  padding: 2px 36px 10px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.product-spec-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.product-spec-row span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-spec-row strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.product-purchase-panel {
  position: static;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(24, 25, 24, 0.56);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

.product-title-block {
  margin-bottom: 28px;
  padding-left: 0;
}

.product-title-eyebrow,
.product-purchase-eyebrow,
.product-who-toggle {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-title-eyebrow {
  color: rgba(192, 154, 92, 0.84);
}

.product-purchase-eyebrow,
.product-who-toggle {
  color: rgba(255, 255, 255, 0.58);
}

.product-title-eyebrow.product-title-eyebrow-accent {
  color: rgba(192, 154, 92, 0.84);
}

.product-who-toggle {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  text-align: left;
  cursor: default;
}

.product-who-toggle .faq-icon {
  display: none;
}

.product-who-answer {
  overflow: visible;
}

.product-title-block h1 {
  max-width: 820px;
  color: white;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-purchase-subtitle {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.product-price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  padding: 22px 0;
}

.product-price-row span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  font-weight: 400;
}

.product-price-row strong {
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.product-price-note {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}

.product-capacity-selector {
  margin-top: 22px;
  margin-bottom: 28px;
}

.product-capacity-label {
  margin: 18px 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-capacity-label:first-child {
  margin-top: 0;
}

.product-capacity-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-capacity-options + .product-capacity-label {
  margin-top: 24px;
}

.product-capacity-button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: white;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.product-capacity-button:hover {
  opacity: 0.82;
}

.product-capacity-button.active {
  background: white;
  border-color: white;
  color: #111;
}

.product-action-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(132px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.product-quantity-box {
  height: 56px;
  width: 100%;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.quantity-button {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: white;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.quantity-button:hover {
  opacity: 0.68;
}

.quantity-button:active {
  transform: translateY(1px);
}

#product-quantity,
.product-quantity-input {
  width: 38px;
  min-width: 38px;
  border: none;
  background: transparent;
  color: white;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  outline: none;
}

.product-quantity-input::-webkit-outer-spin-button,
.product-quantity-input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.product-quantity-input {
  appearance: textfield;
}

.product-button-full {
  grid-column: 1 / -1;
}

#save-for-later-button {
  grid-column: auto;
}

#add-to-cart-button,
.product-save-message {
  grid-column: 1 / -1;
}

.product-button {
  width: 100%;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    opacity 0.22s ease;
}

.product-button-primary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #d8d7d7;
  color: #111111;
}

.product-button-primary:hover {
  background: #cfcfcf;
}

.product-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.045);
  color: white;
}

.product-button-secondary:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.36);
}

.product-button:active {
  transform: translateY(1px);
}

.product-button:disabled {
  cursor: default;
  opacity: 0.72;
}

.product-save-message {
  grid-column: 1 / -1;
  min-height: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.product-save-message.success {
  color: rgba(185, 255, 202, 0.9);
}

.product-save-message.error {
  color: rgba(255, 156, 156, 0.95);
}

.cart-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.54);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  contain: paint;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    opacity 0.18s ease,
    visibility 0s linear 0.18s;
}

.cart-transition-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.18s ease;
}

.cart-loading-stage {
  position: relative;
  width: 236px;
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(192, 154, 92, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(34, 35, 34, 0.96), rgba(12, 12, 12, 0.96));
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.46);
  overflow: hidden;
  transform: translateY(10px) scale(0.96);
}

.cart-transition-overlay.active .cart-loading-stage {
  animation: cart-loading-stage-in 0.26s ease forwards;
}

.cart-loading-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%);
  pointer-events: none;
}

.cart-loading-stage::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 74px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(192, 154, 92, 0.72), rgba(255, 255, 255, 0.36), transparent);
  opacity: 0.46;
}

.cart-loading-item {
  position: absolute;
  top: 58px;
  left: 34px;
  z-index: 3;
  width: 34px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
  opacity: 0;
}

.cart-loading-item::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 7px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.cart-loading-item::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 13px;
  bottom: 7px;
  height: 3px;
  border-radius: 999px;
  background: rgba(192, 154, 92, 0.9);
}

.cart-transition-overlay.active .cart-loading-item {
  animation: cart-loading-item-fly 1.24s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.cart-loading-trail {
  position: absolute;
  left: 64px;
  right: 76px;
  top: 72px;
  z-index: 2;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(192, 154, 92, 0), rgba(192, 154, 92, 0.92), rgba(255, 255, 255, 0.68));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
}

.cart-transition-overlay.active .cart-loading-trail {
  animation: cart-loading-trail 1.24s ease-in-out infinite;
}

.cart-loading-basket {
  position: absolute;
  top: 47px;
  right: 28px;
  z-index: 4;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.cart-loading-basket::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(192, 154, 92, 0.28);
  border-radius: inherit;
  opacity: 0;
}

.cart-loading-basket img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.94;
}

.cart-transition-overlay.active .cart-loading-basket {
  animation: cart-loading-basket-pop 1.24s ease-in-out infinite;
}

.cart-transition-overlay.active .cart-loading-basket::before {
  animation: cart-loading-basket-ring 1.24s ease-in-out infinite;
}

.cart-loading-check {
  position: absolute;
  top: 40px;
  right: 24px;
  z-index: 5;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #d8d7d7;
  opacity: 0;
  transform: scale(0.72);
}

.cart-loading-check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #111111;
  border-bottom: 2px solid #111111;
  transform: rotate(-45deg);
}

.cart-transition-overlay.active .cart-loading-check {
  animation: cart-loading-check-pop 1.24s ease-in-out infinite;
}

.cart-loading-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

@keyframes cart-loading-stage-in {
  to {
    transform: translateY(0) scale(1);
  }
}

@keyframes cart-loading-item-fly {
  0% {
    opacity: 0;
    transform: translate3d(0, 7px, 0) scale(0.86);
  }

  16% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  58% {
    opacity: 1;
    transform: translate3d(84px, 0, 0) scale(0.82);
  }

  74%, 100% {
    opacity: 0;
    transform: translate3d(102px, -1px, 0) scale(0.5);
  }
}

@keyframes cart-loading-trail {
  0%, 14% {
    opacity: 0;
    transform: scaleX(0);
  }

  36% {
    opacity: 0.9;
    transform: scaleX(0.58);
  }

  64% {
    opacity: 0.62;
    transform: scaleX(1);
  }

  82%, 100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes cart-loading-basket-pop {
  0%, 56%, 100% {
    transform: scale(1);
  }

  68% {
    transform: scale(1.045);
  }
}

@keyframes cart-loading-basket-ring {
  0%, 56% {
    opacity: 0;
    transform: scale(0.82);
  }

  72% {
    opacity: 1;
    transform: scale(1);
  }

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

@keyframes cart-loading-check-pop {
  0%, 62% {
    opacity: 0;
    transform: scale(0.72);
  }

  74%, 88% {
    opacity: 1;
    transform: scale(1);
  }

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

@media (prefers-reduced-motion: reduce) {
  .cart-transition-overlay.active .cart-loading-stage,
  .cart-transition-overlay.active .cart-loading-item,
  .cart-transition-overlay.active .cart-loading-trail,
  .cart-transition-overlay.active .cart-loading-basket,
  .cart-transition-overlay.active .cart-loading-basket::before,
  .cart-transition-overlay.active .cart-loading-check {
    animation: none;
  }

  .cart-loading-item {
    opacity: 1;
    transform: translate3d(84px, 0, 0) scale(0.82);
  }

  .cart-loading-trail {
    opacity: 0.62;
    transform: scaleX(1);
  }

  .cart-loading-check {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1100px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    padding: 60px 60px 90px;
  }

.product-purchase-area {
  min-height: 0;
}

.product-purchase-panel {
  position: static;
}

.product-specifications-section {
  padding: 0 60px 90px;
}

.product-specifications-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
}

.product-included-box {
  padding-top: 0;
}
}

@media (max-width: 700px) {
  .product-page {
    padding-top: 90px;
  }

  .product-detail-layout {
    padding: 38px 25px 70px;
    gap: 38px;
  }

  .product-carousel-main {
    border-radius: 22px;
  }

.product-thumbnail-row {
  gap: 7px;
}

.product-thumbnail {
  width: 56px;
  height: 42px;
  flex-basis: 56px;
  border-radius: 9px;
}

.product-purchase-panel {
  padding-top: 0;
}

.product-title-block {
  margin-bottom: 22px;
  padding-left: 14px;
}

.product-title-block h1 {
  font-size: 32px;
}

.product-specifications-section {
  padding: 0 25px 70px;
}

.product-specifications-header h2 {
  font-size: 30px;
}

.product-spec-row {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 24px 0;
}

.product-spec-row strong {
  font-size: 16px;
}

.product-included-question {
  padding: 8px 0;
}

.product-included-question span:first-child {
  font-size: 15px;
}

.product-included-answer p {
  padding-right: 0;
  font-size: 15px;
}

.product-action-grid {
  grid-template-columns: minmax(124px, 0.72fr) minmax(0, 1fr);
  align-items: center;
}

.product-button-full {
  grid-column: 1 / -1;
}

#save-for-later-button {
  grid-column: auto;
}

#add-to-cart-button,
.product-save-message {
  grid-column: 1 / -1;
}

.product-quantity-box {
  width: 100%;
}
}

.component-hero {
  display: none;
}

.component-hero-bg {
  display: none;
}

.component-hero-overlay {
  display: none;
}

.component-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 70px;
}

.component-hero-eyebrow {
  margin-bottom: 14px;
  color: rgba(192, 154, 92, 0.84);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.component-hero-content h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: white;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.06;
  text-transform: uppercase;
}

.component-hero-content p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}

@media (max-width: 700px) {
  .component-page {
    padding-top: 90px;
  }

  .component-hero {
    min-height: 390px;
    margin: 0 25px;
    border-radius: 0;
  }

  .component-hero-content {
    padding: 46px 28px;
  }

  .component-hero-content h1 {
    font-size: 34px;
  }

  .component-hero-content p:last-child {
    font-size: 17px;
  }
}

.custom-select-dropdown {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: white;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.custom-select-value {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.payment-method-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.custom-select-trigger:hover,
.custom-select-dropdown.open .custom-select-trigger {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.28);
}

.custom-select-dropdown.open .chevron {
  transform: rotate(225deg);
}

.custom-select-dropdown.invalid .custom-select-trigger {
  border-color: rgba(255, 255, 255, 0.52);
}

.custom-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 80;
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #2a2b2a;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    visibility 0.24s ease;
}

.custom-select-dropdown.open .custom-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  position: relative;
  width: 100%;
  margin-bottom: 6px;
  padding: 12px 14px 12px 24px;
  border: none;
  border-radius: 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease;
}

.custom-select-option:last-child {
  margin-bottom: 0;
}

.custom-select-option::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: scaleY(0.35);
  transform-origin: center;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.custom-select-option:hover {
  color: white;
  background: rgba(255, 255, 255, 0.055);
  transform: translateX(2px);
}

.custom-select-option.active {
  color: white;
  background: rgba(255, 255, 255, 0.07);
}

.custom-select-option.active::before,
.custom-select-option:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.consultation-field textarea {
  resize: vertical;
  min-height: 160px;
}

.consultation-field input::placeholder,
.consultation-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.consultation-field input:focus,
.consultation-field textarea:focus,
.custom-select-trigger:focus {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(192, 154, 92, 0.58);
  box-shadow: 0 0 0 4px rgba(192, 154, 92, 0.1);
}

.featured-builds {
  background: #2a2b2a;
  padding: 120px 0 100px;
}

.featured-builds-split {
  min-height: 100vh;
  padding: 120px 60px;
  display: flex;
  align-items: center;
}

.featured-builds-split-layout {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: 70px;
  align-items: center;
}

.featured-builds-main {
  min-width: 0;
}

.featured-builds-split .featured-builds-header,
.featured-builds-split .featured-carousel {
  max-width: none;
  margin: 0;
  padding: 0;
}

.featured-builds-split .featured-builds-header {
  margin-bottom: 30px;
}

.featured-builds-eyebrow {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-builds-header h2 {
  margin-bottom: 0;
  color: white;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.featured-carousel {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.featured-carousel-window {
  position: relative;
  width: min(62%, 760px);
  margin: 0;
  overflow: hidden;
  isolation: isolate;
}

.featured-builds-split .featured-carousel-window {
  width: 100%;
  max-width: none;
  border-radius: 0;
  box-shadow: none;
}

.featured-carousel-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
}

.featured-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  display: block;
}

.featured-image-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.featured-image-empty {
  aspect-ratio: 75 / 56;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-image-placeholder {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-image-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.68),
    rgba(0, 0, 0, 0.24) 52%,
    rgba(0, 0, 0, 0)
  );
  z-index: 2;
}

.featured-image-link {
  display: block;
  text-decoration: none;
}

.featured-slide-info {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 4;
  max-width: 720px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  pointer-events: none;
}

.featured-slide-info h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.featured-slide-specs {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.featured-builds-side {
  padding-top: 72px;
}

.featured-builds-prompt {
  max-width: 520px;
  margin-left: auto;
}

.featured-builds-prompt h3 {
  max-width: 500px;
  margin-bottom: 18px;
  color: white;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.featured-builds-prompt p {
  max-width: 500px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}

.featured-consultation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #d8d7d7;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.featured-consultation-button:hover {
  background: #cfcfcf;
}

.featured-consultation-button:active {
  transform: translateY(1px);
}

@media (max-width: 1100px) {
  .featured-builds-split-layout {
    grid-template-columns: 1fr;
  }

  .featured-builds-split {
    min-height: auto;
    display: block;
    padding: 100px 25px;
  }

  .featured-builds-side {
    padding-top: 24px;
  }
}

@media (max-width: 700px) {
  .featured-builds-split {
    padding: 90px 25px;
  }

  .featured-builds-header h2 {
    font-size: 30px;
  }

  .featured-slide-info h3 {
    font-size: 27px;
  }

  .featured-slide-specs {
    font-size: 15px;
  }

  .featured-builds-prompt h3 {
    font-size: 30px;
  }
}

.featured-components-wall-section {
  min-height: 100vh;
  padding: 120px 60px;
  background: #2a2b2a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
}

.featured-components-wall-inner {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 520px) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.featured-components-copy {
  width: 620px;
  max-width: 620px;
  transform: translateX(-70px);
}

.featured-components-eyebrow {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-components-copy h2 {
  margin-bottom: 28px;
  color: white;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.component-wall-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(230px, 0.45fr);
  grid-template-rows: repeat(3, 160px);
  gap: 22px;
}

.component-wall-card,
.component-wall-card:visited {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  display: block;
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.component-wall-card-large {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.component-wall-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #242624;
}

.component-wall-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.68) 100%);
  pointer-events: none;
}

#featured-component-carousel {
  position: relative;
  overflow: hidden;
}

.featured-component-progress-track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.featured-component-progress-bar {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  transform-origin: left;
  animation: featuredComponentProgress 7s linear infinite;
}

@keyframes featuredComponentProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.component-wall-card-info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.component-wall-card-info h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.component-wall-card-large .component-wall-card-info h3 {
  max-width: 520px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.component-wall-card-info p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.component-wall-card:hover .component-wall-placeholder {
  opacity: 0.78;
}

@media (max-width: 1100px) {
  .featured-components-wall-section {
    min-height: auto;
    padding: 100px 25px;
  }

  .featured-components-wall-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .featured-components-copy {
    max-width: 720px;
    transform: none;
  }

  .component-wall-grid {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.65fr);
    grid-template-rows: repeat(3, 150px);
  }
}

@media (max-width: 800px) {
  .featured-components-wall-inner {
    display: block;
  }

  .featured-components-copy {
    width: 100%;
    max-width: 100%;
    transform: none;
    margin-bottom: 34px;
  }

  .component-wall-grid {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: 300px repeat(3, 150px);
    gap: 18px;
  }

  .component-wall-card-large {
    grid-column: 1;
    grid-row: 1;
  }

  .component-wall-card-large .component-wall-card-info h3 {
    font-size: 24px;
  }
}

@media (max-width: 700px) {
  .featured-components-wall-section {
    min-height: auto;
    padding: 80px 20px;
    display: block;
  }

  .featured-components-copy h2 {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 30px;
    line-height: 1.08;
  }

  .featured-components-copy .featured-consultation-button {
    width: 100%;
    min-height: 52px;
  }

  .component-wall-grid {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: 280px 138px 138px 138px;
    gap: 16px;
  }

  .component-wall-card,
  .component-wall-card:visited {
    border-radius: 20px;
  }

  .component-wall-card-info {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .component-wall-card-info h3,
  .component-wall-card-large .component-wall-card-info h3 {
    font-size: 20px;
    line-height: 1.12;
  }

  .component-wall-card-info p {
    font-size: 14px;
  }
}

.about-section {
  min-height: 100vh;
  background: #2a2b2a;
  padding: 140px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
}

.about-section-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 110px;
  align-items: start;
}

.about-section-header {
  position: sticky;
  top: 140px;
  max-width: 520px;
  order: 2;
  margin-left: auto;
}

.about-section-eyebrow {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-section-header h2 {
  max-width: 500px;
  color: white;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.about-reasons-list {
  display: grid;
  order: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-reason {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.about-reason-number {
  color: rgba(255, 255, 255, 0.34);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.about-reason h3 {
  margin-bottom: 12px;
  color: white;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.025em;
  text-transform: none;
}

.about-reason p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .about-section-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-section-header {
    position: static;
    max-width: 720px;
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  .about-section {
    min-height: auto;
    padding: 90px 25px;
  }

  .about-section-inner {
    gap: 42px;
  }

  .about-section-eyebrow {
    font-size: 13px;
    letter-spacing: 0.16em;
  }

  .about-section-header h2 {
    font-size: 30px;
    line-height: 1.1;
  }

  .about-reason {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .about-reason h3 {
    font-size: 22px;
  }

  .about-reason p {
    font-size: 16px;
  }
}

.nav-cart-link {
  position: fixed;
  top: 38px;
  right: 60px;
  z-index: 1002;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.nav-cart-link img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
}

.nav-cart-link:hover {
  opacity: 0.72;
}

.nav-cart-count {
  position: absolute;
  top: -10px;
  right: -12px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  display: none;
}

.cart-page {
  min-height: 100vh;
  background: #2a2b2a;
  padding-top: 140px;
}

.cart-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  column-gap: 140px;
  row-gap: 0;
  align-items: start;
}

.cart-panel-eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-header h1 {
  margin-bottom: 12px;
  color: white;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.cart-order-note {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

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

.cart-items:empty {
  display: none;
}

.cart-page-loading {
  padding: 48px 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(24, 25, 24, 0.72);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  color: white;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.cart-page-loading[hidden] {
  display: none;
}

.cart-page-loading-spinner {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: white;
  animation: cart-page-loading-spin 0.8s linear infinite;
}

.cart-page-loading strong {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.cart-page-loading p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

@keyframes cart-page-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-page-loading-spinner {
    animation: none;
  }
}

.cart-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 34px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(24, 25, 24, 0.72);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.cart-item.cart-item-is-removing {
  opacity: 0;
  transform: translateX(18px) scale(0.98);
  border-color: rgba(242, 154, 154, 0.24);
  pointer-events: none;
}

.cart-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.105);
}

.cart-item-image-frame {
  width: 118px;
  aspect-ratio: 75 / 56;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  background: rgba(255, 255, 255, 0.045);
}

.cart-item-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.cart-item-title,
.cart-item-title:visited {
  display: inline-block;
  margin-bottom: 12px;
  color: white;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  text-decoration: none;
}

.cart-item-info p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.cart-item-info span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-item-side {
  display: grid;
  gap: 14px;
  justify-items: end;
  text-align: right;
}

.cart-item-side strong {
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.cart-item-remove {
  min-width: 106px;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(242, 154, 154, 0.28);
  border-radius: 999px;
  background: rgba(242, 154, 154, 0.14);
  color: #F29A9A;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}

.cart-item-remove:hover:not(:disabled) {
  color: #FFD0D0;
  background: rgba(242, 154, 154, 0.2);
  border-color: rgba(242, 154, 154, 0.42);
}

.cart-item-remove:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.cart-empty {
  padding: 0;
  border: 0;
  background: transparent;
}

.cart-empty-panel {
  padding: 34px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(24, 25, 24, 0.72);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 26px;
}

.cart-empty-heading-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.cart-empty-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-empty-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.cart-empty-eyebrow,
.cart-empty-option span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-empty h2 {
  margin-bottom: 12px;
  color: white;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.cart-empty p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.cart-empty-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cart-empty-option,
.cart-empty-option:visited {
  min-height: 158px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(255, 255, 255, 0.045);
  color: white;
  text-decoration: none;
  display: grid;
  align-content: start;
  gap: 8px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.cart-empty-option:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.cart-empty-option strong {
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.cart-empty-option p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.cart-empty-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cart-empty-button,
.cart-empty-button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #202220;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease;
}

.cart-empty-button:hover {
  background: #ffffff;
}

.cart-empty-button:active {
  transform: translateY(1px);
}

.cart-empty-link,
.cart-empty-link:visited {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.22s ease, background 0.22s ease;
}

.cart-empty-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.cart-summary {
  margin-top: 0;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(24, 25, 24, 0.72);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  position: relative;
  top: 0;
  box-sizing: border-box;
}

.cart-summary-title {
  margin-bottom: 0;
  color: white;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  white-space: nowrap;
}

.cart-summary-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.105);
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.cart-summary-total-row strong {
  color: white;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.cart-checkout-button {
  width: 100%;
  height: 52px;
  margin-top: 24px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #202220;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.22s ease, transform 0.22s ease;
}

.cart-checkout-button:hover {
  background: #ffffff;
}

.cart-checkout-button:active {
  transform: translateY(1px);
}

.cart-checkout-button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.cart-order-submit-message {
  min-height: 20px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}

.cart-order-submit-message.success {
  color: rgba(185, 255, 202, 0.9);
}

.cart-order-submit-message.error {
  color: rgba(255, 156, 156, 0.95);
}

.checkout-page {
  min-height: 100vh;
  background: #2a2b2a;
  padding-top: 104px;
}

.checkout-section {
  padding: 70px 44px 96px;
}

.checkout-section-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.checkout-header {
  max-width: 760px;
  margin-bottom: 30px;
}

.checkout-eyebrow,
.checkout-panel-eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-header h1 {
  margin-bottom: 14px;
  color: white;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.checkout-header p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.checkout-page-loading {
  min-height: 320px;
  padding: 48px 32px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(24, 25, 24, 0.56);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  color: white;
  text-align: center;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
}

.checkout-page-loading[hidden],
.checkout-layout[hidden] {
  display: none;
}

.checkout-page-loading-spinner {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: white;
  animation: checkout-page-loading-spin 0.8s linear infinite;
}

.checkout-page-loading strong {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.checkout-page-loading p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

@keyframes checkout-page-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-page-loading-spinner {
    animation: none;
  }
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}

.checkout-panel {
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.checkout-summary {
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(24, 25, 24, 0.56);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

.checkout-summary {
  position: sticky;
  top: 120px;
}

.checkout-panel-header,
.checkout-summary-header {
  margin-bottom: 26px;
}

.checkout-panel-header h2,
.checkout-summary-header h2 {
  margin-bottom: 12px;
  color: white;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.checkout-panel-header p,
.checkout-summary-note {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.7;
}

.checkout-form {
  display: grid;
  gap: 18px;
}

.checkout-form-box {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  background: rgba(24, 25, 24, 0.56);
  display: grid;
  gap: 18px;
}

.checkout-form-box-header {
  display: grid;
  gap: 6px;
}

.checkout-form-box-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-form-box-header p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.checkout-saved-address-picker {
  position: relative;
  z-index: 120;
  padding: 0;
  overflow: visible;
}

#checkout-new-address-fields {
  position: relative;
  z-index: 1;
}

.checkout-saved-address-picker[hidden],
#checkout-new-address-fields[hidden],
.checkout-address-field[hidden] {
  display: none;
}

.checkout-saved-address-picker:not([hidden]),
#checkout-new-address-fields:not([hidden]),
.checkout-address-field:not([hidden]) {
  animation: checkout-section-reveal 0.24s ease both;
}

@keyframes checkout-section-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-saved-address-picker:not([hidden]),
  #checkout-new-address-fields:not([hidden]),
  .checkout-address-field:not([hidden]),
  .checkout-payment-info {
    animation: none;
  }

  .checkout-address-type-button,
  .checkout-fulfillment-button {
    transition: none;
  }
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.checkout-field {
  display: grid;
  gap: 9px;
}

.checkout-field-full {
  grid-column: 1 / -1;
}

.checkout-field label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-field input,
.checkout-field textarea,
.checkout-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
  color: white;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.checkout-field textarea {
  padding: 14px 16px;
  resize: vertical;
}

.checkout-field select {
  cursor: pointer;
}

.checkout-province-select,
.account-address-province-select {
  position: relative;
  z-index: 30;
}

.checkout-province-select.open,
.account-address-province-select.open {
  z-index: 90;
}

.checkout-province-select .custom-select-trigger,
.account-address-province-select .custom-select-trigger {
  min-height: 50px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 15px;
  font-weight: 700;
}

.checkout-province-select .custom-select-menu,
.account-address-province-select .custom-select-menu {
  max-height: 260px;
  overflow-y: auto;
  background: rgba(42, 43, 42, 0.99);
  color-scheme: dark;
  scrollbar-color: rgba(255, 255, 255, 0.55) #2a2b2a;
  scrollbar-width: auto;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
  transition: opacity 0.12s ease;
  will-change: opacity;
  contain: paint;
}

.account-address-province-select .custom-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  display: block;
  height: min(260px, 46dvh);
  max-height: min(260px, 46dvh);
  overflow-y: scroll;
  overscroll-behavior: contain;
}

.checkout-province-select.open .custom-select-menu,
.account-address-province-select.open .custom-select-menu {
  transform: none;
}

.checkout-province-select .custom-select-option,
.account-address-province-select .custom-select-option {
  font-family: inherit;
  transition:
    color 0.12s ease,
    background 0.12s ease;
}

.checkout-province-select .custom-select-option:hover,
.account-address-province-select .custom-select-option:hover {
  transform: none;
}

.checkout-field input[readonly] {
  opacity: 0.72;
}

.checkout-payment-info {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  background: rgba(255, 255, 255, 0.045);
  animation: checkout-section-reveal 0.24s ease both;
}

.checkout-payment-info[hidden] {
  display: none;
}

.checkout-payment-barcode-frame {
  width: 112px;
  aspect-ratio: 1 / 1;
  padding: 10px;
  border-radius: 16px;
  background: white;
  box-sizing: border-box;
}

.checkout-payment-barcode-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.checkout-payment-details {
  display: grid;
  gap: 6px;
}

.checkout-payment-details span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-payment-details p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.6;
}

.checkout-payment-details strong {
  color: white;
  font-weight: 700;
}

.checkout-address-type-options,
.checkout-fulfillment-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.checkout-address-type-button,
.checkout-fulfillment-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.checkout-address-type-button.active,
.checkout-address-type-button:hover,
.checkout-fulfillment-button.active,
.checkout-fulfillment-button:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
}

.checkout-address-type-button:hover,
.checkout-fulfillment-button:hover {
  transform: translateY(-1px);
}

.checkout-fulfillment-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.checkout-submit-button {
  min-height: 58px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.checkout-submit-button:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.checkout-message {
  min-height: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.checkout-message.success {
  color: rgba(185, 255, 202, 0.9);
}

.checkout-message.error {
  color: rgba(255, 156, 156, 0.95);
}

.checkout-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 9, 8, 0.66);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.checkout-success-overlay[hidden] {
  display: none;
}

.checkout-success-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.checkout-success-panel {
  width: min(420px, 100%);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(192, 154, 92, 0.28);
  background:
    linear-gradient(135deg, rgba(192, 154, 92, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(24, 25, 24, 0.94);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  text-align: center;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.22s ease;
}

.checkout-success-overlay.visible .checkout-success-panel {
  transform: translateY(0) scale(1);
}

.checkout-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(185, 255, 202, 0.12);
  border: 1px solid rgba(185, 255, 202, 0.34);
  color: rgba(185, 255, 202, 0.96);
  font-size: 28px;
  font-weight: 800;
}

.checkout-success-kicker {
  margin: 0 0 8px;
  color: rgba(192, 154, 92, 0.95);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-success-panel h2 {
  margin: 0;
  color: white;
  font-size: 26px;
  line-height: 1.2;
}

.checkout-success-panel p:last-child {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.7;
}

.checkout-items {
  display: grid;
  gap: 14px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.checkout-item-image-frame {
  width: 74px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
}

.checkout-item-image-frame img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

.checkout-item-info {
  display: grid;
  gap: 5px;
}

.checkout-item-info span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-item-info h3 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.checkout-item-info p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

.checkout-item-info strong {
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.checkout-summary-total {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.checkout-summary-total span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-summary-total strong {
  color: white;
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}

.checkout-summary-note {
  margin-top: 16px;
}

.checkout-empty-cart {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(255, 255, 255, 0.045);
}

.checkout-empty-cart h3 {
  margin-bottom: 8px;
  color: white;
  font-size: 18px;
  text-transform: uppercase;
}

.checkout-empty-cart p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .checkout-layout,
  .checkout-form-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 700px) {
  .nav-cart-link {
    top: 30px;
    right: 25px;
  }

  .cart-page {
    padding-top: 96px;
  }

  .cart-layout {
    padding: 0 20px 56px;
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .cart-summary {
    top: 0;
    width: 100%;
    margin-top: 6px;
    padding: 22px 20px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .cart-summary-title {
    font-size: 32px;
    white-space: normal;
    text-wrap: balance;
  }

  .cart-summary-total-row {
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
  }

  .cart-summary-total-row strong {
    min-width: 0;
    text-align: right;
  }

  .cart-checkout-button {
    height: auto;
    min-height: 52px;
    margin-top: 22px;
    padding: 13px 18px;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
  }

  .checkout-payment-info {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding: 18px;
  }

  .checkout-payment-barcode-frame {
    width: min(100%, 220px);
    max-width: 100%;
  }

  .checkout-payment-details {
    width: 100%;
    min-width: 0;
  }

  .checkout-payment-details p {
    overflow-wrap: anywhere;
  }

  .cart-header h1 {
    font-size: 38px;
  }

  .cart-order-note {
    font-size: 15px;
    line-height: 1.7;
  }

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

  .cart-item-image-frame {
    width: 92px;
  }

  .cart-item-title,
  .cart-item-title:visited {
    font-size: 24px;
    line-height: 1.16;
  }

  .cart-item-side {
    grid-column: 1 / -1;
    justify-items: start;
    text-align: left;
  }
}

/* =========================================================
   MOBILE + TABLET OPTIMIZATION
   Desktop remains unchanged because every rule below is
   inside max-width media queries.
   ========================================================= */

@media (max-width: 1100px) {
  .signature-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 44px 82px;
  }

  .filters-panel {
    position: static;
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 26px;
    background: rgba(24, 25, 24, 0.56);
  }

  .signature-products {
    min-width: 0;
  }

  .signature-builds-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    padding: 58px 44px 88px;
    gap: 46px;
  }

  .product-purchase-panel {
    position: static;
  }

  .product-specifications-section {
    padding: 0 44px 88px;
  }

  .cart-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 44px 76px;
  }

  .cart-summary {
    top: 0;
    max-width: none;
  }
}

@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body.nav-menu-open {
    overflow: hidden;
  }

  .site-header {
    position: fixed;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 1002;
    width: auto;
    min-height: 58px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(24, 25, 24, 0.92);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: none;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 8px;
  }

  .site-header-logo,
  .site-header-logo:visited {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    max-width: 100%;
    overflow: hidden;
    color: white;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
  }

  .site-header-nav {
    display: none;
  }

  .site-header-actions {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    gap: 0;
  }

  .site-header-cart,
  .site-header-cart:visited {
    display: flex;
    width: 38px;
    height: 38px;
  }

  .site-header-cart img,
  .site-header .floating-account-button img {
    width: 23px;
    height: 23px;
  }

  .site-header .floating-account-widget {
    position: relative;
    top: auto;
    right: auto;
  }

  .site-header .floating-account-button {
    width: 38px;
    height: 38px;
  }

  .site-header .hamburger-toggle {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    left: auto;
    top: auto;
    z-index: 1;
    display: flex;
    align-self: center;
    justify-self: start;
    width: 40px;
    height: 40px;
  }

  .site-header .hamburger-toggle span {
    left: 7px;
    width: 30px;
    height: 2px;
  }

  .site-header .hamburger-toggle span:nth-child(1) {
    top: calc(50% - 9px);
  }

  .site-header .hamburger-toggle span:nth-child(2) {
    top: calc(50% - 1px);
  }

  .site-header .hamburger-toggle span:nth-child(3) {
    top: calc(50% + 7px);
  }

  body.nav-menu-open .site-header .hamburger-toggle span:nth-child(1),
  body.nav-menu-open .site-header .hamburger-toggle span:nth-child(3) {
    top: calc(50% - 1px);
  }

  .nav-menu-overlay {
    z-index: 1000;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .nav-menu-panel {
    position: absolute;
    inset: auto;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(330px, 86vw);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    box-sizing: border-box;
    align-items: stretch;
    justify-content: flex-start;
    padding: 86px 14px 18px;
    background: rgba(24, 25, 24, 0.96);
    box-shadow: 24px 0 60px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateX(-100%);
  }

  body.nav-menu-open .nav-menu-panel.active {
    transform: translateX(0);
  }

  .nav-menu-links {
    width: 100%;
    min-height: 0;
    padding: 8px 0 0;
    border: 0;
    background: transparent;
    align-items: stretch;
    gap: 10px;
    text-align: left;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu-link,
  .nav-menu-link:visited,
  .nav-menu-button,
  .nav-menu-back {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.065);
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.15;
    text-align: left;
  }

  .nav-menu-link:hover,
  .nav-menu-button:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .home-page,
  .components-hub-page,
  .signature-page,
  .component-page,
  .product-page,
  .cart-page,
  .consultation-page,
  .about-us-page,
  .faq-page,
  .policies-page {
    padding-top: 92px;
  }

  .home-start-section {
    min-height: auto;
    padding: 46px 22px 64px;
  }

  .home-start-header {
    margin-bottom: 28px;
  }

  .home-start-header h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .home-start-header p {
    font-size: 15px;
    line-height: 1.7;
  }

  .home-start-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-start-card {
    min-height: 152px;
    padding: 22px;
    border-radius: 22px;
  }

  .home-featured-components-carousel {
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .home-featured-components-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-featured-components-arrow {
    display: none;
  }

  .home-featured-component-item img {
    height: 190px;
  }

  .home-signature-preview-grid,
  .home-support-grid {
    grid-template-columns: 1fr;
  }

  .components-page-grid-section {
    padding: 40px 22px 70px;
  }

  .components-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .components-page-grid-card {
    min-height: 142px;
    padding: 0 16px;
    border-radius: 18px;
    font-size: 12px;
    line-height: 1.25;
  }

  .signature-hero {
    min-height: auto;
    margin: 0 22px 38px;
    border-radius: 26px;
  }

  .signature-hero-content {
    padding: 42px 26px;
  }

  .signature-hero-content h1 {
    font-size: 34px;
  }

  .signature-hero-content p:last-child {
    font-size: 16px;
    line-height: 1.7;
  }

  .component-hero {
    display: none;
  }

  .component-hero-bg,
  .component-hero-overlay {
    display: none;
  }

  .signature-layout {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 0 22px 72px;
    box-sizing: border-box;
    overflow-x: clip;
  }

  .signature-products {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .filters-panel {
    position: static;
    max-height: 306px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(24, 25, 24, 0.56);
  }

  .filters-heading {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .filter-item {
    padding: 12px 0;
  }

  .filter-toggle {
    min-height: 44px;
    font-size: 14px;
  }

  .filter-content {
    padding-top: 10px;
  }

  .filter-content label {
    min-height: 44px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 15px;
  }

  .signature-builds-header {
    margin-bottom: 20px;
  }

  .signature-builds-header h2 {
    font-size: 30px;
  }

  .component-search-box input {
    min-height: 50px;
    font-size: 15px;
  }

  .selected-filter-chips {
    gap: 8px;
    margin-bottom: 20px;
  }

  .selected-filter-chip,
  .selected-filter-clear {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .signature-builds-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .signature-build-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-bottom: 18px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .signature-build-image-frame,
  .signature-build-image-placeholder {
    border-radius: 20px;
    aspect-ratio: 16 / 11;
  }

  .signature-build-card h3 {
    margin-top: 16px;
    font-size: 19px;
  }

  .signature-build-card p {
    font-size: 14px;
  }

  .product-detail-layout {
    width: 100%;
    padding: 36px 22px 66px;
    gap: 34px;
  }

  .product-media-area {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    transform: none;
  }

  .product-title-block {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 20px;
    padding-left: 0;
    text-align: left;
  }

  .product-title-block h1 {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 31px;
    line-height: 1.08;
  }

  .product-title-eyebrow,
  .product-purchase-eyebrow,
  .product-specifications-eyebrow {
    font-size: 12px;
  }

  .product-carousel-main {
    border-radius: 22px;
    min-height: 0;
  }

  .product-carousel-main img {
    max-height: 420px;
    object-fit: contain;
  }

  .product-carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

  .product-carousel-arrow-left {
    left: 8px;
  }

  .product-carousel-arrow-right {
    right: 8px;
  }

  .product-carousel-counter {
    top: 12px;
    right: 12px;
    bottom: auto;
    min-width: 50px;
    min-height: 30px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    line-height: 1;
  }

  .product-thumbnail-row {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 8px;
    overflow-x: auto;
    padding: 0 2px 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .product-thumbnail {
    width: 62px;
    height: 46px;
    flex: 0 0 62px;
    scroll-snap-align: start;
  }

  .product-purchase-panel {
    padding-top: 0;
  }

  .product-who-toggle {
    min-height: 48px;
    margin-bottom: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.105);
    cursor: pointer;
  }

  .product-who-toggle .faq-icon {
    display: block;
  }

  .product-purchase-panel.who-open .product-who-toggle .faq-icon {
    color: white;
    transform: rotate(45deg);
  }

  .product-who-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.32s ease, opacity 0.22s ease;
  }

  .product-purchase-panel.who-open .product-who-answer {
    max-height: 320px;
    opacity: 1;
  }

  .product-purchase-subtitle {
    margin-bottom: 24px;
    padding-top: 16px;
    font-size: 15px;
    line-height: 1.7;
  }

  .product-price-row strong {
    font-size: 24px;
  }

  .product-action-grid {
    grid-template-columns: minmax(118px, 0.72fr) minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }

  .product-button-full {
    grid-column: 1 / -1;
  }

  #save-for-later-button {
    grid-column: auto;
  }

  #add-to-cart-button,
  .product-save-message {
    grid-column: 1 / -1;
  }

  .product-quantity-box,
  .product-button {
    width: 100%;
    min-height: 54px;
  }

  .product-variant-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-variant-button {
    width: 100%;
    min-height: 48px;
  }

  .product-specifications-section {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 22px 70px;
    transform: none;
  }

  .product-specifications-inner,
  .product-specifications-table {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .product-specifications-header h2 {
    font-size: 30px;
  }

  .product-spec-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .product-spec-row span {
    font-size: 12px;
  }

  .product-spec-row strong {
    font-size: 16px;
    line-height: 1.55;
  }

  .product-included-box {
    padding-top: 18px;
  }

  .product-included-question {
    min-height: 48px;
  }

  .product-included-question > span:first-child {
    font-size: 15px;
  }

  .product-included-question > .faq-icon {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
    color: rgba(192, 154, 92, 0.95);
  }

  .product-included-answer p {
    padding-right: 0;
    font-size: 15px;
  }

  .consultation-hero {
    padding: 44px 22px 34px;
  }

  .consultation-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .consultation-intro {
    font-size: 16px;
    line-height: 1.7;
  }

  .consultation-form-section {
    padding: 0 22px 66px;
  }

  .consultation-form {
    padding: 20px;
    border-radius: 22px;
  }

  .consultation-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .consultation-field-full {
    grid-column: auto;
  }

  .consultation-field input,
  .consultation-field textarea,
  .custom-select-trigger {
    min-height: 52px;
    font-size: 16px;
    border-radius: 15px;
  }

  .custom-select-menu {
    position: static;
    display: none;
    margin-top: 10px;
    transform: none;
  }

  .custom-select-dropdown.open .custom-select-menu {
    display: block;
    transform: none;
  }

  .about-us-hero,
  .faq-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .about-us-content {
    padding-left: 22px;
    padding-right: 22px;
  }

  .about-us-block {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-footer {
    padding: 38px 22px 24px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer-column h2 {
    font-size: 24px;
  }

  .site-footer-links a,
  .site-footer-links a:visited {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    left: 10px;
    right: 10px;
    height: 52px;
    min-height: 52px;
    padding: 0 8px;
    border-radius: 999px;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 78px;
    grid-template-rows: 1fr;
    column-gap: 0;
  }

  .site-header-logo,
  .site-header-logo:visited {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
    font-size: 14px;
    line-height: 1;
    text-align: center;
  }

  .site-header-actions {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }

  .site-header-cart,
  .site-header-cart:visited,
  .site-header .floating-account-button {
    width: 38px;
    height: 38px;
  }

  .site-header .hamburger-toggle {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    width: 40px;
    height: 40px;
  }

  .site-header .hamburger-toggle span {
    left: 6px;
    width: 30px;
    height: 2px;
  }

  .components-page-grid {
    grid-template-columns: 1fr;
  }

  .home-start-header h1,
  .signature-hero-content h1,
  .component-hero-content h1,
  .consultation-hero h1 {
    font-size: 31px;
  }

  .signature-builds-header h2,
  .product-specifications-header h2 {
    font-size: 28px;
  }

  .signature-build-card h3 {
    font-size: 18px;
  }

  .signature-build-image-frame,
  .signature-build-image-placeholder {
    aspect-ratio: 4 / 3;
  }

  .product-title-block h1 {
    font-size: 29px;
  }

  .product-image-note {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
  }

  .cart-empty-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cart-empty-button,
  .cart-empty-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .site-header {
    left: 10px;
    right: 10px;
    top: 10px;
    height: 50px;
    min-height: 50px;
    padding: 0 8px;
    grid-template-columns: 76px minmax(0, 1fr) 76px;
  }

  .site-header-actions {
    grid-row: 1;
    align-self: center;
    gap: 0;
  }

  .site-header-logo,
  .site-header-logo:visited {
    font-size: 14px;
  }

  .site-header-cart,
  .site-header-cart:visited,
  .site-header .floating-account-button,
  .site-header .hamburger-toggle {
    width: 38px;
    height: 38px;
  }

  .nav-menu-overlay {
    padding: 0;
  }

  .nav-menu-panel {
    width: min(310px, 88vw);
    padding: 76px 10px 12px;
  }

  .nav-menu-links {
    padding: 8px 0 0;
    border-radius: 0;
  }

  .nav-menu-link,
  .nav-menu-link:visited,
  .nav-menu-button,
  .nav-menu-back {
    min-height: 52px;
    padding: 0 16px;
    font-size: 14px;
  }

  .home-page,
  .components-hub-page,
  .signature-page,
  .component-page,
  .product-page,
  .cart-page,
  .consultation-page,
  .about-us-page,
  .faq-page,
  .policies-page {
    padding-top: 82px;
  }

  .signature-layout,
  .product-detail-layout,
  .product-specifications-section,
  .consultation-form-section,
  .cart-layout {
    padding-left: 18px;
    padding-right: 18px;
  }

  .signature-hero,
  .component-hero {
    margin-left: 18px;
    margin-right: 18px;
  }

  .filters-panel {
    padding: 16px;
  }

  .product-carousel-main img {
    max-height: 340px;
  }

  .product-thumbnail {
    width: 56px;
    height: 42px;
    flex-basis: 56px;
  }

  .cart-item {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
  }

  .cart-item-image-frame {
    width: 82px;
  }
}

.floating-account-widget {
  position: fixed;
  top: 28px;
  right: 34px;
  z-index: 1003;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.floating-account-greeting {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.floating-account-button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.floating-account-button img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.floating-account-button img.has-profile-photo {
  border-radius: 999px;
  object-fit: cover;
  filter: none;
}

.floating-account-button:hover {
  opacity: 0.72;
}

.floating-account-button:active {
  transform: translateY(1px);
}

.floating-account-menu {
  position: absolute;
  top: 52px;
  right: 0;
  min-width: 198px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(24, 25, 24, 0.96);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.floating-account-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-account-menu[hidden],
.floating-account-menu-link[hidden] {
  display: none;
}

.floating-account-menu-link,
.floating-account-menu-link:visited {
  width: 100%;
  min-height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.floating-account-menu-link:hover {
  background: rgba(255, 255, 255, 0.095);
  color: white;
}

.floating-account-menu-link:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.floating-account-menu-link.is-loading {
  background: rgba(255, 255, 255, 0.095);
  color: white;
}

.floating-account-menu-link img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
  opacity: 0.62;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.floating-account-menu-link:hover img {
  opacity: 1;
}

.floating-account-logout {
  color: rgba(255, 156, 156, 0.95);
}

.floating-account-logout img {
  opacity: 0.95;
  filter: brightness(0) saturate(100%) invert(82%) sepia(19%) saturate(933%) hue-rotate(306deg) brightness(102%) contrast(101%);
}

.floating-account-logout:hover {
  color: rgb(255, 120, 120);
}

@media (min-width: 901px) and (max-width: 1240px) {
  .site-header {
    padding-right: 74px;
  }

  .floating-account-widget {
    top: 32px;
    right: max(40px, calc((100vw - 1120px) / 2 + 16px));
  }

  .floating-account-greeting {
    display: none;
  }
}

@media (max-width: 900px) {
  .floating-account-widget {
    top: 22px;
    right: 22px;
  }

  .floating-account-greeting {
    display: none;
  }

  .floating-account-button {
    width: 42px;
    height: 42px;
  }

  .floating-account-button img {
    width: 24px;
    height: 24px;
  }
}

.auth-page {
  min-height: 100vh;
  background: #2a2b2a;
  padding-top: 104px;
}

.auth-section {
  min-height: calc(100vh - 104px);
  padding: 92px 44px 104px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-section-inner {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.auth-section-header {
  margin-bottom: 34px;
  text-align: left;
}

.auth-section-eyebrow {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-section-title {
  max-width: 620px;
  margin-bottom: 22px;
  color: white;
  font-size: 52px;
  font-weight: bold;
  line-height: 1.08;
  text-transform: uppercase;
}

.auth-section-intro {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
}

.auth-panel {
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(24, 25, 24, 0.56);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.auth-form {
  display: grid;
  gap: 18px;
}

.auth-google-button {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.auth-google-button:hover {
  background: white;
  opacity: 1;
}

.auth-google-button:active {
  transform: translateY(1px);
}

.auth-google-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.auth-google-icon {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  flex: 0 0 24px;
}

.auth-login-options {
  display: grid;
  gap: 12px;
}

.auth-passwordless-button {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  color: white;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.auth-passwordless-button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.auth-passwordless-button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
}

.auth-field {
  display: grid;
  gap: 10px;
}

.auth-field label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.065);
  color: white;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.auth-password-input-wrap {
  position: relative;
}

.auth-password-input-wrap input {
  padding-right: 54px;
}

.auth-password-visibility-toggle {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}

.auth-password-visibility-toggle:hover {
  opacity: 0.72;
}

.auth-password-visibility-toggle {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}

.auth-password-visibility-toggle:hover {
  opacity: 0.72;
}

.auth-password-visibility-toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

.auth-password-visibility-toggle::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 12px;
  width: 23px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: rotate(-42deg);
  transform-origin: center;
  transition: opacity 0.18s ease;
}

.auth-password-visibility-toggle.password-hidden::after {
  opacity: 0.95;
}

.auth-password-visibility-toggle.password-visible::after {
  opacity: 0;
}

.auth-field input:focus {
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.055);
}

.auth-small-note {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

.auth-button {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #d8d7d7;
  color: #111111;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.auth-button:hover {
  background: #cfcfcf;
  border-color: rgba(255, 255, 255, 0.22);
  opacity: 1;
}

.auth-button:active {
  transform: translateY(1px);
}

.auth-button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.auth-message {
  min-height: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.auth-trust-device-option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}

.auth-trust-device-option input {
  width: 16px;
  height: 16px;
  accent-color: #d8d7d7;
}

.auth-message.success {
  color: rgba(185, 255, 202, 0.9);
}

.auth-message.error {
  color: rgba(255, 156, 156, 0.95);
}

.auth-panel-footer {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.105);
  color: rgba(255, 255, 255, 0.58);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 400;
}

.auth-panel-footer + .auth-panel-footer {
  margin-top: 0;
  padding-top: 12px;
  border-top: 0;
}

.auth-panel-footer a,
.auth-panel-footer a:visited {
  color: white;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
}

.auth-panel-footer a:hover {
  opacity: 0.76;
}

@media (max-width: 900px) {
  .auth-page {
    padding-top: 88px;
  }

  .auth-section {
    min-height: calc(100vh - 88px);
    padding: 54px 20px 72px;
  }

  .auth-section-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .auth-section-header {
    max-width: none;
    text-align: left;
  }

  .auth-section-title {
    margin-left: 0;
    margin-right: 0;
    font-size: 34px;
  }

  .auth-section-intro {
    margin: 0;
    font-size: 15px;
  }

  .auth-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .auth-panel-footer {
    justify-content: center;
    text-align: center;
  }
}

.auth-two-factor-panel {
  position: fixed;
  inset: 0;
  z-index: 3300;
  padding: 24px;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-two-factor-panel[hidden] {
  display: none;
}

.auth-two-factor-card {
  width: min(500px, 100%);
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(24, 25, 24, 0.96);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
}

.auth-two-factor-header {
  margin-bottom: 24px;
}

.auth-two-factor-eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-two-factor-header h2 {
  margin-bottom: 12px;
  color: white;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.auth-two-factor-header p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.75;
}

.auth-two-factor-code-inputs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.auth-field .auth-two-factor-code-input {
  width: 100%;
  min-height: 58px;
  padding: 0;
  border-radius: 16px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}

.auth-field .auth-two-factor-code-input:focus {
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.auth-two-factor-link-button {
  border: 0;
  background: transparent;
  color: white;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  text-align: center;
}

.auth-two-factor-link-button:hover {
  opacity: 0.72;
}

.auth-two-factor-link-button.muted {
  color: rgba(255, 255, 255, 0.52);
}

.auth-two-factor-link-button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.account-page {
  min-height: 100vh;
  background: #2a2b2a;
  padding-top: 104px;
  overflow-x: clip;
}

body:has(:is(
  .home-page,
  .components-hub-page,
  .signature-page,
  .component-page,
  .product-page,
  .cart-page,
  .checkout-page,
  .consultation-page,
  .about-us-page,
  .faq-page,
  .policies-page,
  .auth-page,
  .account-page
)) .site-header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translate3d(-50%, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
}

@media (max-width: 900px) {
  body:has(:is(
    .home-page,
    .components-hub-page,
    .signature-page,
    .component-page,
    .product-page,
    .cart-page,
    .checkout-page,
    .consultation-page,
    .about-us-page,
    .faq-page,
    .policies-page,
    .auth-page,
    .account-page
  )) .site-header {
    transform: none;
  }
}

body:has(:is(
  .home-page,
  .components-hub-page,
  .signature-page,
  .component-page,
  .product-page,
  .cart-page,
  .checkout-page,
  .consultation-page,
  .about-us-page,
  .faq-page,
  .policies-page,
  .auth-page,
  .account-page
)) .site-header .floating-account-menu {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-menu-overlay,
.filters-panel,
.checkout-summary,
.cart-summary,
.product-carousel-main,
.faq-accordion-item,
.product-included-item,
.product-spec-row {
  contain: layout paint style;
}

.nav-menu-overlay {
  transform: translateZ(0);
  will-change: opacity;
  backface-visibility: hidden;
}

.filters-panel,
.checkout-summary {
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.components-hub-card,
.signature-build-card,
.cart-item {
  content-visibility: auto;
}

.components-hub-card {
  contain-intrinsic-size: 300px;
}

.signature-build-card {
  contain-intrinsic-size: 390px;
}

.cart-item {
  contain-intrinsic-size: 190px;
}

.account-section {
  min-height: calc(100vh - 104px);
  padding: 76px 44px 96px;
}

.account-section-inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.account-header {
  max-width: 1220px;
  margin: 0 auto 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.account-header h1 {
  margin: 0;
  color: white;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.account-header p {
  max-width: 380px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: right;
}

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

.account-sidebar {
  position: sticky;
  top: 120px;
  padding: 14px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(24, 25, 24, 0.56);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  display: grid;
  gap: 8px;
  transform: translateZ(0);
  will-change: transform;
  contain: layout paint style;
}

.account-sidebar-link {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.account-sidebar-link img {
  width: 19px;
  height: 19px;
  display: block;
  object-fit: contain;
  opacity: 0.62;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.account-sidebar-link:hover,
.account-sidebar-link.active {
  background: rgba(255, 255, 255, 0.095);
  color: white;
}

.account-sidebar-link:hover img,
.account-sidebar-link.active img {
  opacity: 1;
}

.account-logout-link {
  margin-top: 8px;
  color: rgba(255, 156, 156, 0.95);
}

.account-logout-link img {
  opacity: 0.95;
  filter: brightness(0) saturate(100%) invert(82%) sepia(19%) saturate(933%) hue-rotate(306deg) brightness(102%) contrast(101%);
}

.account-content {
  min-width: 0;
}

.account-loading {
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(24, 25, 24, 0.56);
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 700;
}

.account-panel {
  display: none;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(24, 25, 24, 0.56);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  transform-origin: top center;
}

.account-panel.active {
  display: block;
  animation: accountPanelEnter 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

body.account-security-modal-open .account-panel.active {
  animation: none;
  transform: none;
  filter: none;
}

@keyframes accountPanelEnter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.account-email-modal,
.account-security-modal,
.account-address-modal,
.account-password-modal,
.account-photo-crop-modal,
.account-support-modal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.account-email-modal[hidden],
.account-security-modal[hidden],
.account-password-modal[hidden],
.account-photo-crop-modal[hidden],
.account-support-modal[hidden] {
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.account-address-modal[hidden] {
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.account-email-modal-backdrop,
.account-security-modal-backdrop,
.account-address-modal-backdrop,
.account-password-modal-backdrop,
.account-photo-crop-backdrop,
.account-support-modal-backdrop {
  transition: opacity 0.2s ease;
}

.account-email-modal[hidden] .account-email-modal-backdrop,
.account-security-modal[hidden] .account-security-modal-backdrop,
.account-address-modal[hidden] .account-address-modal-backdrop,
.account-password-modal[hidden] .account-password-modal-backdrop,
.account-photo-crop-modal[hidden] .account-photo-crop-backdrop,
.account-support-modal[hidden] .account-support-modal-backdrop {
  opacity: 0;
}

.account-email-modal-card,
.account-security-modal-card,
.account-address-modal-card,
.account-password-modal-card,
.account-photo-crop-card,
.account-support-modal-card {
  transition:
    opacity 0.24s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.24s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.24s ease;
}

.account-email-modal[hidden] .account-email-modal-card,
.account-security-modal[hidden] .account-security-modal-card,
.account-address-modal[hidden] .account-address-modal-card,
.account-password-modal[hidden] .account-password-modal-card,
.account-photo-crop-modal[hidden] .account-photo-crop-card,
.account-support-modal[hidden] .account-support-modal-card {
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  filter: blur(4px);
}

@starting-style {
  .account-email-modal:not([hidden]) .account-email-modal-card,
  .account-security-modal:not([hidden]) .account-security-modal-card,
  .account-address-modal:not([hidden]) .account-address-modal-card,
  .account-password-modal:not([hidden]) .account-password-modal-card,
  .account-photo-crop-modal:not([hidden]) .account-photo-crop-card,
  .account-support-modal:not([hidden]) .account-support-modal-card {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
    filter: blur(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .account-panel.active {
    animation: none;
  }

  .account-email-modal,
  .account-security-modal,
  .account-address-modal,
  .account-password-modal,
  .account-photo-crop-modal,
  .account-support-modal,
  .account-email-modal-backdrop,
  .account-security-modal-backdrop,
  .account-address-modal-backdrop,
  .account-password-modal-backdrop,
  .account-photo-crop-backdrop,
  .account-support-modal-backdrop,
  .account-email-modal-card,
  .account-security-modal-card,
  .account-address-modal-card,
  .account-password-modal-card,
  .account-photo-crop-card,
  .account-support-modal-card {
    transition: none;
  }
}

.account-loading:not([hidden]) + .account-panel {
  display: none;
}

.account-loading[hidden] {
  display: none;
}

.account-panel-header {
  margin-bottom: 28px;
}

.account-panel-eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-panel-header h2 {
  margin-bottom: 12px;
  color: white;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.account-panel-header p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.account-form {
  display: grid;
  gap: 20px;
}

.account-profile-photo-section {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.045);
  display: flex;
  align-items: center;
  gap: 18px;
}

.account-profile-photo-preview-wrap {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.account-profile-photo-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.account-profile-photo-preview[hidden],
.account-profile-photo-initial[hidden] {
  display: none;
}

.account-profile-photo-initial {
  color: white;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.account-profile-photo-actions {
  display: grid;
  gap: 8px;
}

.account-profile-photo-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-profile-photo-actions h3 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.account-profile-photo-actions p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.account-profile-photo-button,
.account-profile-photo-remove-button {
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  color: white;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.account-profile-photo-button:hover,
.account-profile-photo-remove-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.account-profile-photo-remove-button {
  border-color: rgba(255, 145, 152, 0.42);
  background: rgba(92, 55, 60, 0.58);
  color: #ffc4c9;
}

.account-profile-photo-remove-button:hover {
  background: rgba(110, 63, 69, 0.72);
  border-color: rgba(255, 165, 172, 0.58);
}

.account-profile-photo-remove-button[hidden] {
  display: none;
}

.account-profile-photo-button:disabled,
.account-profile-photo-remove-button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

body.account-photo-crop-modal-open {
  overflow: hidden;
}

.account-photo-crop-modal[hidden] {
  display: none;
}

.account-photo-crop-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  padding: 24px;
  display: grid;
  place-items: center;
}

.account-photo-crop-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.account-photo-crop-card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1c1e1c;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  contain: layout paint;
}

.account-photo-crop-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.account-photo-crop-header {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.account-photo-crop-header h2 {
  color: white;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

.account-photo-crop-header p:last-child {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}

.account-photo-crop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 20px;
  align-items: start;
}

.account-photo-crop-stage {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  cursor: grab;
  touch-action: none;
  contain: layout paint size;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  user-select: none;
}

.account-photo-crop-stage:active,
.account-photo-crop-stage.is-interacting {
  cursor: grabbing;
}

.account-photo-crop-stage img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  max-width: none;
  max-height: none;
  transform-origin: center center;
  user-select: none;
  pointer-events: none;
  touch-action: none;
  will-change: transform;
  backface-visibility: hidden;
  contain: layout paint size;
  transition: none;
}

.account-photo-crop-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(240px, calc(100% - 42px));
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 0 0 999px rgba(0, 0, 0, 0.42);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
  user-select: none;
  touch-action: none;
  contain: layout paint size;
}

.account-photo-crop-control {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.account-photo-crop-control label,
.account-photo-crop-preview-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-photo-crop-control input {
  width: 100%;
  accent-color: white;
}

.account-photo-crop-preview-panel {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
}

.account-photo-crop-preview {
  position: relative;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
  contain: layout paint size;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.account-photo-crop-preview img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: initial;
  transform-origin: center center;
  user-select: none;
  pointer-events: none;
  touch-action: none;
  will-change: transform;
  backface-visibility: hidden;
  contain: layout paint size;
  transition: none;
}

.account-photo-crop-note {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

.account-photo-crop-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.account-photo-crop-cancel,
.account-photo-crop-use {
  min-height: 52px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.account-photo-crop-cancel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.065);
  color: white;
}

.account-photo-crop-use {
  border: 1px solid white;
  background: white;
  color: #111;
}

.account-photo-crop-cancel:hover,
.account-photo-crop-use:hover {
  opacity: 0.86;
}

.account-photo-crop-use:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

@media (max-width: 680px) {
  .account-photo-crop-card {
    padding: 24px 18px;
  }

  .account-photo-crop-layout {
    grid-template-columns: 1fr;
  }

  .account-photo-crop-stage {
    height: 280px;
  }

  .account-photo-crop-actions {
    grid-template-columns: 1fr;
  }
}

.account-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.account-field {
  display: grid;
  gap: 9px;
}

.account-field-full {
  grid-column: 1 / -1;
}

.account-field label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.account-field input,
.account-field select,
.account-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.065);
  color: white;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.account-field textarea {
  min-height: 118px;
  padding: 15px 16px;
  border-radius: 22px;
  resize: vertical;
  line-height: 1.6;
}

.account-field select {
  appearance: none;
  cursor: pointer;
}

.account-phone-row {
  display: grid;
  grid-template-columns: minmax(150px, 170px) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.account-phone-row input {
  min-width: 0;
}

.account-phone-country-dropdown {
  position: relative;
  z-index: 30;
  width: min(170px, 100%);
}

.account-phone-country-dropdown.open {
  z-index: 90;
}

.account-phone-country-dropdown .custom-select-trigger {
  min-height: 50px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  gap: 10px;
}

.account-phone-country-dropdown .custom-select-value {
  justify-content: center;
  white-space: nowrap;
}

.account-phone-country-flag {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  object-fit: cover;
  flex: 0 0 auto;
  display: block;
}

.account-phone-country-dropdown .custom-select-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: min(310px, calc(100vw - 48px));
  max-height: 260px;
  padding: 10px;
  overflow-y: auto;
  background: rgba(42, 43, 42, 0.99);
  color-scheme: dark;
  scrollbar-color: rgba(255, 255, 255, 0.55) #2a2b2a;
  scrollbar-width: auto;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
  transition: opacity 0.12s ease;
  will-change: opacity;
  contain: paint;
}

.account-phone-country-search-wrap {
  position: sticky;
  top: 0;
  z-index: 2;
  padding-bottom: 8px;
  background: rgba(42, 43, 42, 0.99);
}

.account-phone-country-search {
  width: 100%;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
  color: white;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  outline: none;
}

.account-phone-country-search::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.account-phone-country-options {
  display: grid;
  gap: 2px;
}

.account-phone-country-dropdown.open .custom-select-menu {
  transform: none;
}

.account-phone-country-dropdown .custom-select-option {
  font-family: inherit;
  transition:
    color 0.12s ease,
    background 0.12s ease;
}

.account-phone-country-dropdown .custom-select-option span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-phone-country-dropdown .custom-select-option:hover {
  transform: none;
}

@media (max-width: 620px) {
  .account-phone-row {
    grid-template-columns: minmax(124px, 136px) minmax(0, 1fr);
    gap: 10px;
    align-items: stretch;
  }

  .account-phone-country-dropdown {
    width: 100%;
  }

  .account-phone-country-dropdown .custom-select-trigger {
    min-height: 50px;
    padding: 0 10px;
    font-size: 13px;
  }

  .account-phone-country-dropdown .custom-select-menu {
    width: min(290px, calc(100vw - 40px));
  }
}

.address-field[hidden] {
  display: none;
}

.account-address-type-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.account-address-type-button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: white;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.account-address-type-button:hover {
  opacity: 0.82;
}

.account-address-type-button.active {
  background: white;
  border-color: white;
  color: #111;
}

.account-address-location-field {
  gap: 12px;
}

.account-address-map-preview {
  width: 100%;
  min-height: 220px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.account-address-map-preview[hidden] {
  display: none;
}

.account-address-map-preview iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
  pointer-events: none;
}

.account-address-location-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.account-address-location-button,
.account-address-location-clear,
.account-address-location-link {
  flex: 1 1 0;
  min-width: 0;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
  cursor: pointer;
}

.account-address-location-clear {
  border-color: rgba(255, 156, 156, 0.28);
  background: rgba(255, 156, 156, 0.12);
  color: rgba(255, 190, 190, 0.95);
}

.account-address-location-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.account-field input:focus,
.account-field select:focus,
.account-field textarea:focus {
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.055);
}

.account-field input[readonly] {
  opacity: 0.58;
  cursor: not-allowed;
}

.account-username-field input[readonly] {
  opacity: 1;
  cursor: default;
}

.account-username-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 50px;
  gap: 10px;
  align-items: start;
}

.account-username-input-wrap {
  position: relative;
}

.account-username-input-wrap input {
  padding-right: 54px;
}

.account-username-info-button {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  transform: translateY(-50%);
}

.account-username-info-button img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.account-username-tooltip {
  position: absolute;
  right: -12px;
  bottom: calc(100% + 12px);
  width: 230px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(24, 25, 24, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
  transform: translateY(4px);
}

.account-username-info-button:hover .account-username-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-username-edit-button {
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: #d8d7d7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.account-username-edit-button img {
  width: 23px;
  height: 23px;
  display: block;
  object-fit: contain;
}

.account-username-edit-button:hover {
  background: #cfcfcf;
  opacity: 1;
}

.account-username-edit-button:active {
  transform: translateY(1px);
}

.account-username-edit-button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.account-username-note {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.account-email-field input[readonly] {
  opacity: 1;
  cursor: default;
}

.account-email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 50px;
  gap: 10px;
  align-items: start;
}

.account-email-input-wrap {
  position: relative;
}

.account-email-input-wrap input {
  padding-right: 54px;
}

.account-email-info-button {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  transform: translateY(-50%);
}

.account-email-info-button img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.account-email-tooltip {
  position: absolute;
  right: -12px;
  bottom: calc(100% + 12px);
  width: 250px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(24, 25, 24, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
  transform: translateY(4px);
}

.account-email-info-button:hover .account-email-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-email-edit-button {
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: #d8d7d7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.account-email-edit-button img {
  width: 23px;
  height: 23px;
  display: block;
  object-fit: contain;
}

.account-email-edit-button:hover {
  background: #cfcfcf;
  opacity: 1;
}

.account-email-edit-button:active {
  transform: translateY(1px);
}

.account-email-edit-button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.account-email-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.account-email-modal[hidden],
#phone-number-field[hidden],
#phone-password-field[hidden],
#phone-code-field[hidden] {
  display: none;
}

.account-email-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.account-email-modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 32px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #1f2022;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  contain: layout paint;
}

.account-email-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.account-email-modal-close:hover {
  color: white;
}

.account-email-modal-header {
  margin-bottom: 24px;
}

.account-email-modal-header h2 {
  margin-bottom: 18px;
  padding-right: 34px;
  color: white;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
}

.account-email-modal-header p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}

.account-email-modal-actions {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.account-email-modal-cancel {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.11);
  color: white;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    background 0.2s ease;
}

.account-email-modal-cancel:hover {
  background: rgba(255, 255, 255, 0.16);
}

.account-email-modal-submit {
  margin-top: 0;
  border-radius: 14px;
}

body.account-email-modal-open,
body.account-security-modal-open {
  overflow: hidden;
}

.account-security-modal {
  position: fixed;
  inset: 0;
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.account-security-modal[hidden] {
  display: none;
}

.account-security-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.account-security-modal-card {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 36px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #181918;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
  contain: layout paint;
}

.account-security-gate-card {
  width: min(590px, 100%);
}

.account-security-code-card {
  width: min(660px, 100%);
  padding: 42px;
}

.account-security-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-family: inherit;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.account-security-modal-close:hover {
  color: white;
}

.account-security-modal-header {
  margin-bottom: 28px;
  padding-right: 34px;
}

.account-security-modal-eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-security-modal-header h2 {
  margin-bottom: 12px;
  color: white;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-security-modal-header p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.account-security-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.account-security-modal-cancel,
.account-security-modal-continue,
.account-security-code-submit,
.account-security-code-cancel {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.account-security-modal-cancel,
.account-security-code-cancel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.11);
  color: white;
}

.account-security-modal-continue,
.account-security-code-submit {
  background: white;
  color: #181918;
}

.account-security-modal-danger {
  background: rgba(255, 156, 156, 0.18);
  color: #ffc4c9;
  box-shadow: inset 0 0 0 1px rgba(255, 156, 156, 0.42);
}

.account-security-modal-cancel:hover,
.account-security-code-cancel:hover {
  background: rgba(255, 255, 255, 0.16);
}

.account-security-modal-continue:hover,
.account-security-code-submit:hover {
  opacity: 0.84;
}

.account-security-modal-cancel:active,
.account-security-modal-continue:active,
.account-security-code-submit:active,
.account-security-code-cancel:active {
  transform: translateY(1px);
}

.account-security-modal-continue:disabled,
.account-security-code-submit:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.account-security-code-form {
  display: grid;
  gap: 20px;
}

.account-security-code-inputs {
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.account-security-code-input {
  width: 58px;
  height: 66px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  outline: 0;
  background: rgba(255, 255, 255, 0.065);
  color: white;
  font-family: inherit;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.account-security-code-input:focus {
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.055);
}

.account-security-code-submit,
.account-security-code-cancel {
  width: 100%;
}

@media (max-width: 700px) {
  .account-email-modal-card,
  .account-security-modal-card,
  .account-security-code-card {
    padding: 26px 20px;
  }

  .account-email-modal-actions,
  .account-security-modal-actions {
    grid-template-columns: 1fr;
  }

  .account-security-modal-header h2 {
    font-size: 27px;
  }

  .account-security-modal-header p {
    font-size: 15px;
  }

  .account-security-code-inputs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
  }

  .account-security-code-input {
    width: 100%;
    min-width: 0;
    height: 56px;
    border-radius: 15px;
    font-size: 22px;
  }
}

.account-divider {
  height: 1px;
  margin: 12px 0;
  background: rgba(255, 255, 255, 0.105);
}

.account-panel-subheader {
  display: grid;
  gap: 8px;
}

.account-order-modal-card .account-panel-subheader {
  margin-bottom: 14px;
}

.account-panel-subheader h3 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.account-panel-subheader p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.account-addresses-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.account-addresses-header > div {
  min-width: 0;
}

.account-address-add-button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: white;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.account-addresses-list {
  display: grid;
  gap: 14px;
}

.account-addresses-list:empty {
  display: none;
}

.account-addresses-empty {
  padding: 24px;
}

.account-address-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(255, 255, 255, 0.045);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  content-visibility: auto;
  contain-intrinsic-size: 92px;
}

.account-address-card.default {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.account-address-card-text {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.account-address-card-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.account-address-card-text span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-address-default-badge {
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #191a19;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.account-address-card-text h3 {
  color: white;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.account-address-card-text p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.account-address-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.account-address-card-button {
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.account-address-card-button.default {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.92);
  color: #191a19;
}

.account-address-card-button.danger {
  border-color: rgba(255, 156, 156, 0.28);
  background: rgba(255, 156, 156, 0.12);
  color: rgba(255, 176, 176, 0.96);
}

.account-address-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  width: 100vw;
  min-height: 100dvh;
  padding: 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.account-address-modal[hidden] {
  display: none;
}

.account-address-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.account-address-modal-card {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 48px));
  max-height: min(820px, calc(100dvh - 48px));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 36px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #2a2b2a;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  color-scheme: dark;
  scrollbar-color: rgba(255, 255, 255, 0.55) #2a2b2a;
  scrollbar-width: auto;
  contain: layout paint;
}

.account-address-modal-card .account-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-address-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-family: inherit;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.account-address-modal-header {
  margin-bottom: 24px;
  padding-right: 34px;
}

.account-address-modal-header h2 {
  margin-bottom: 12px;
  color: white;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.account-address-modal-header p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.75;
}

.account-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.account-status-card {
  min-height: 92px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(255, 255, 255, 0.045);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  content-visibility: auto;
  contain-intrinsic-size: 92px;
}

.account-status-card span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-status-card strong {
  color: white;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.account-connected-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.account-connected-account-card {
  min-height: 118px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(255, 255, 255, 0.045);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: 18px;
  content-visibility: auto;
  contain-intrinsic-size: 118px;
}

.account-connected-account-main {
  display: grid;
  gap: 8px;
}

.account-connected-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.account-connected-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

#connected-github-card .account-connected-icon {
  filter: invert(1);
}

.account-connected-account-main span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-connected-account-main strong {
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.account-connected-account-main p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.account-connected-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.account-connected-badge {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-connected-badge.is-connected {
  border: 1px solid rgba(185, 255, 202, 0.34);
  background: rgba(185, 255, 202, 0.1);
  color: rgba(185, 255, 202, 0.95);
}

.account-connected-badge.is-not-connected {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.58);
}

.account-connected-action-button {
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.account-connected-action-button:hover {
  transform: translateY(-1px);
}

.account-connected-action-button:disabled {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
}

.account-connected-action-button.is-connect {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.94);
  color: #202220;
}

.account-connected-action-button.is-connect:hover {
  background: #ffffff;
}

.account-connected-action-button.is-disconnect {
  min-height: 30px;
  padding: 0 8px;
  border: 1px solid rgba(255, 145, 152, 0.42);
  background: rgba(255, 156, 156, 0.12);
  color: rgba(255, 176, 176, 0.96);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.account-connected-action-button.is-disconnect:hover {
  background: rgba(255, 156, 156, 0.18);
  border-color: rgba(255, 156, 156, 0.58);
}

@media (max-width: 900px) {
  .account-connected-grid {
    grid-template-columns: 1fr;
  }

  .account-connected-account-card {
    grid-template-columns: 1fr;
  }

  .account-connected-actions {
    justify-items: start;
  }

  .account-connected-badge {
    width: fit-content;
  }
}

.account-status-button {
  width: fit-content;
  min-height: 34px;
  margin-top: 12px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #d8d7d7;
  color: #111111;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.account-status-button:hover {
  background: #cfcfcf;
}

.account-status-button:active {
  transform: translateY(1px);
}

.account-status-button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.account-status-button[hidden] {
  display: none;
}

.account-primary-button {
  width: fit-content;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: white;
  color: #181918;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.account-primary-button:hover {
  opacity: 0.84;
}

.account-primary-button:active {
  transform: translateY(1px);
}

.account-primary-button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.account-message {
  min-height: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.account-message.success {
  color: rgba(185, 255, 202, 0.9);
}

.account-message.error {
  color: rgba(255, 156, 156, 0.95);
}

.account-empty-state {
  padding: 36px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.045);
}

.account-support-empty-state {
  padding: 26px 0 0;
  border: 0;
  background: transparent;
}

.account-empty-state h3 {
  margin-bottom: 10px;
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.account-empty-state p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.75;
}

#account-panel-saved .account-panel-subheader {
  margin-bottom: 16px;
}

#account-panel-saved .account-empty-state + .account-panel-subheader {
  margin-top: 34px;
}

.account-saved-loading {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-saved-loading[hidden] {
  display: none;
}

.account-saved-list {
  display: grid;
  gap: 14px;
}

.account-saved-list:empty {
  display: none;
}

.account-saved-item {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(255, 255, 255, 0.045);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  content-visibility: auto;
  contain-intrinsic-size: 156px;
}

.account-saved-item-main,
.account-saved-item-main:visited {
  min-width: 0;
  color: white;
  text-decoration: none;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.account-saved-item-image-frame {
  width: 118px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-saved-item-image-frame img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 18px;
}

.account-saved-item-info {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.account-saved-item-info span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-saved-item-info h3 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.account-saved-item-info p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.account-saved-item-info strong {
  color: white;
  font-size: 15px;
  font-weight: 700;
}

.account-saved-remove-button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 156, 156, 0.28);
  border-radius: 999px;
  background: rgba(255, 156, 156, 0.12);
  color: rgba(255, 176, 176, 0.96);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.account-saved-remove-button:hover {
  background: rgba(255, 156, 156, 0.18);
  border-color: rgba(255, 156, 156, 0.42);
}

.account-saved-remove-button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.account-support-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.account-support-panel-header > div {
  max-width: 690px;
}

.account-support-new-button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: white;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.account-support-new-button:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.account-support-filters {
  margin-top: 4px;
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account-support-filters[hidden] {
  display: none;
}

.account-support-filter {
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.account-support-filter.active,
.account-support-filter:hover {
  background: rgba(255, 255, 255, 0.085);
  color: white;
}

.account-support-loading {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-support-loading[hidden] {
  display: none;
}

.account-support-list {
  display: grid;
  gap: 14px;
}

.account-support-list:empty {
  display: none;
}

.account-support-ticket-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(255, 255, 255, 0.045);
  display: grid;
  gap: 14px;
  cursor: pointer;
  content-visibility: auto;
  contain-intrinsic-size: 156px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.account-support-ticket-card.admin-card-saved {
  animation: adminCardSavedPulse 1.2s ease both;
}

@keyframes adminCardSavedPulse {
  0% {
    background: rgba(139, 211, 166, 0.16);
    border-color: rgba(139, 211, 166, 0.64);
    box-shadow: 0 0 0 0 rgba(139, 211, 166, 0.28);
  }

  55% {
    background: rgba(139, 211, 166, 0.09);
    border-color: rgba(139, 211, 166, 0.38);
    box-shadow: 0 0 0 8px rgba(139, 211, 166, 0);
  }

  100% {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.105);
    box-shadow: none;
  }
}

.account-support-ticket-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.account-support-ticket-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.account-support-ticket-category {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.42);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-support-ticket-card h3 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.account-support-ticket-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.account-support-ticket-status {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-support-ticket-status.open {
  background: rgba(255, 214, 140, 0.12);
  color: rgba(255, 218, 150, 0.96);
}

.account-support-ticket-status.pending {
  background: rgba(145, 190, 255, 0.12);
  color: rgba(170, 205, 255, 0.96);
}

.account-support-ticket-status.answered {
  background: rgba(185, 255, 202, 0.12);
  color: rgba(185, 255, 202, 0.92);
}

.account-support-ticket-status.resolved,
.account-support-ticket-status.closed {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
}

.account-support-ticket-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 700;
}

.account-support-ticket-button {
  width: fit-content;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.account-support-ticket-button:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
}

.admin-dashboard-page .account-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 12px 24px;
  align-items: end;
}

.admin-dashboard-page .account-eyebrow {
  width: fit-content;
  margin: 0;
  padding: 6px 11px;
  border: 1px solid rgba(192, 154, 92, 0.36);
  border-radius: 999px;
  background: rgba(192, 154, 92, 0.1);
  color: rgba(192, 154, 92, 0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.admin-dashboard-page .account-header h1 {
  color: #f4efe4;
  text-shadow: 0 0 24px rgba(192, 154, 92, 0.16);
}

.admin-dashboard-page #admin-support-header-text {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  justify-self: end;
}

.admin-dashboard-page .account-panel.active {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(24, 25, 24, 0.56);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

.admin-dashboard-panel {
  display: grid;
  gap: 18px;
}

.admin-dashboard-panel[hidden] {
  display: none;
}

#admin-dashboard-tabs {
  margin-top: 0;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(192, 154, 92, 0.24);
  gap: 10px;
}

#admin-order-filters,
#admin-support-filters {
  margin-top: 0;
  gap: 10px;
}

#admin-dashboard-tabs .account-support-filter.active,
#admin-dashboard-tabs .account-support-filter:hover,
#admin-order-filters .account-support-filter.active,
#admin-order-filters .account-support-filter:hover,
#admin-support-filters .account-support-filter.active,
#admin-support-filters .account-support-filter:hover,
#admin-product-stock-filters .account-support-filter.active,
#admin-product-stock-filters .account-support-filter:hover {
  border-color: rgba(192, 154, 92, 0.4);
  background: rgba(192, 154, 92, 0.12);
  color: #d8bc86;
}

.admin-dashboard-panel .account-support-list {
  gap: 18px;
}

.admin-dashboard-panel .account-support-ticket-card {
  padding: 24px 26px;
  border-radius: 20px;
  border-color: rgba(255, 255, 255, 0.105);
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-dashboard-panel .account-support-ticket-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.admin-dashboard-panel .account-support-ticket-top {
  gap: 18px;
  align-items: center;
}

.admin-dashboard-panel .account-support-ticket-category {
  margin-bottom: 10px;
  color: rgba(192, 154, 92, 0.78);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.admin-dashboard-panel .account-support-ticket-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.admin-dashboard-panel .account-support-ticket-card p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

.admin-dashboard-panel .account-support-ticket-meta {
  gap: 8px 22px;
  color: rgba(255, 255, 255, 0.48);
  font-weight: 600;
  line-height: 1.5;
}

.admin-dashboard-panel .account-support-ticket-button {
  margin-top: 4px;
  border-color: rgba(192, 154, 92, 0.28);
  background: rgba(192, 154, 92, 0.1);
  color: #d8bc86;
}

.admin-dashboard-panel .account-support-ticket-button:hover {
  border-color: rgba(192, 154, 92, 0.42);
  background: rgba(192, 154, 92, 0.16);
}

#admin-order-modal .account-support-modal-card,
#admin-ticket-modal .account-support-modal-card {
  border-color: rgba(192, 154, 92, 0.22);
  background:
    linear-gradient(135deg, rgba(192, 154, 92, 0.08), rgba(255, 255, 255, 0.025) 34%),
    #181918;
}

#admin-order-modal .account-security-modal-eyebrow,
#admin-ticket-modal .account-security-modal-eyebrow {
  color: rgba(192, 154, 92, 0.82);
}

@media (max-width: 900px) {
  .admin-dashboard-page .account-header {
    display: block;
  }

  .admin-dashboard-page .account-eyebrow {
    margin-bottom: 14px;
  }

  .admin-dashboard-page #admin-support-header-text {
    max-width: none;
    margin-top: 10px;
    text-align: left;
  }
}

.account-support-ticket-status.submitted {
  background: rgba(241, 200, 122, 0.16);
  color: #F1C87A;
  box-shadow: inset 0 0 0 1px rgba(241, 200, 122, 0.28);
}

.account-support-ticket-status.reviewing {
  background: rgba(217, 179, 111, 0.16);
  color: #D9B36F;
  box-shadow: inset 0 0 0 1px rgba(217, 179, 111, 0.28);
}

.account-support-ticket-status.quoted {
  background: rgba(159, 195, 255, 0.16);
  color: #9FC3FF;
  box-shadow: inset 0 0 0 1px rgba(159, 195, 255, 0.28);
}

.account-support-ticket-status.awaiting_payment {
  background: rgba(255, 184, 107, 0.16);
  color: #FFB86B;
  box-shadow: inset 0 0 0 1px rgba(255, 184, 107, 0.28);
}

.account-support-ticket-status.preparing_order {
  background: rgba(255, 255, 255, 0.12);
  color: #CFCFCF;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.account-support-ticket-status.ready_for_delivery_pickup {
  background: rgba(126, 224, 161, 0.16);
  color: #7EE0A1;
  box-shadow: inset 0 0 0 1px rgba(126, 224, 161, 0.28);
}

.account-support-ticket-status.out_for_delivery {
  background: rgba(111, 211, 255, 0.16);
  color: #6FD3FF;
  box-shadow: inset 0 0 0 1px rgba(111, 211, 255, 0.28);
}

.account-support-ticket-status.completed,
.account-support-ticket-status.fulfilled {
  background: rgba(139, 226, 139, 0.16);
  color: #8BE28B;
  box-shadow: inset 0 0 0 1px rgba(139, 226, 139, 0.28);
}

.account-support-ticket-status.canceled {
  background: rgba(242, 154, 154, 0.16);
  color: #F29A9A;
  box-shadow: inset 0 0 0 1px rgba(242, 154, 154, 0.28);
}

@media (max-width: 760px) {
  #admin-dashboard-tabs {
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  .admin-dashboard-panel .account-support-ticket-card {
    padding: 20px;
  }

  .admin-dashboard-panel .account-support-ticket-top {
    grid-template-columns: 1fr;
  }

  .admin-dashboard-panel .account-support-ticket-status {
    justify-self: start;
  }
}

.account-support-modal {
  position: fixed;
  inset: 0;
  z-index: 3400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.account-support-modal[hidden] {
  display: none;
}

.account-support-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.account-support-modal-card {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 34px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #181918;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
  scrollbar-color: rgba(255, 255, 255, 0.55) #2a2b2a;
  scrollbar-width: auto;
  contain: layout paint;
}

.account-support-detail-card {
  width: min(820px, 100%);
}

#admin-ticket-modal .account-form-grid {
  margin-bottom: 20px;
}

.admin-order-status-grid {
  margin-bottom: 18px;
  overflow: visible;
}

.admin-order-status-grid .account-field {
  overflow: visible;
}

.admin-order-select {
  position: relative;
  z-index: 30;
}

.admin-order-select.open {
  z-index: 80;
}

.admin-order-select .custom-select-trigger {
  min-height: 50px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 15px;
  font-weight: 700;
}

.admin-order-select .custom-select-menu {
  z-index: 3600;
  max-height: 260px;
  overflow-y: auto;
  background: rgba(42, 43, 42, 0.99);
  color-scheme: dark;
  scrollbar-color: rgba(255, 255, 255, 0.55) #2a2b2a;
  scrollbar-width: auto;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
  transition: opacity 0.12s ease;
  will-change: opacity;
  contain: paint;
}

.admin-order-select.open .custom-select-menu {
  transform: none;
}

.admin-order-select .custom-select-option {
  font-family: inherit;
  transition:
    color 0.12s ease,
    background 0.12s ease;
}

.admin-order-select .custom-select-option:hover {
  transform: none;
}

.admin-order-info-grid {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-order-info-card {
  min-width: 0;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  background: rgba(255, 255, 255, 0.045);
}

.admin-order-info-card-full {
  grid-column: 1 / -1;
}

.admin-order-info-card span,
.admin-order-section h3 {
  margin-bottom: 8px;
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-order-info-card strong {
  color: white;
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.admin-order-info-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.admin-order-map-link {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.admin-order-section {
  margin-bottom: 22px;
}

.admin-order-section .account-support-thread {
  margin-bottom: 0;
  gap: 10px;
}

.admin-order-item {
  padding: 16px 18px;
  border-radius: 18px;
}

.admin-order-item-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.admin-order-item-content.has-image {
  grid-template-columns: 88px minmax(0, 1fr);
}

.admin-order-item-image {
  display: block;
  width: 88px;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: contain;
}

.admin-order-item-details {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.admin-order-item .account-support-message-head {
  align-items: flex-start;
  gap: 12px;
}

.admin-order-item .account-support-message-head strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-order-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.admin-order-item-row strong {
  color: white;
  font-weight: 700;
  white-space: nowrap;
}

.admin-order-actions {
  margin-top: 8px;
  margin-bottom: 12px;
  align-items: center;
}

@media (max-width: 760px) {
  .account-support-modal-card {
    padding: 28px 20px;
  }

  .admin-order-info-grid {
    grid-template-columns: 1fr;
  }

  .admin-order-item-content.has-image {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
  }

  .admin-order-item-image {
    width: 72px;
    border-radius: 14px;
  }

  .admin-order-item-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .admin-order-item-row strong {
    white-space: normal;
  }
}

.account-support-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-family: inherit;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.account-support-modal-header {
  margin-bottom: 24px;
  padding-right: 52px;
  min-width: 0;
}

.account-support-modal-header h2 {
  max-width: 100%;
  margin-bottom: 12px;
  color: white;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.account-support-modal-header p {
  max-width: 100%;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.account-support-thread {
  margin-bottom: 24px;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.account-support-message {
  min-width: 0;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  gap: 10px;
}

.account-support-message.admin {
  background: rgba(185, 255, 202, 0.07);
  border-color: rgba(185, 255, 202, 0.12);
}

.account-support-message-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  min-width: 0;
}

.account-support-message-head strong {
  min-width: 0;
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.account-support-message-head span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.account-support-message p {
  max-width: 100%;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.account-support-detail-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}

#account-order-detail-actions {
  margin-top: 18px;
}

.account-orders-loading {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-orders-loading[hidden] {
  display: none;
}

.account-orders-list {
  display: grid;
  gap: 14px;
}

.account-orders-list:empty {
  display: none;
}

.account-order-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(255, 255, 255, 0.045);
  display: grid;
  gap: 18px;
  cursor: pointer;
  content-visibility: auto;
  contain-intrinsic-size: 230px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.account-order-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.account-order-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.account-order-number {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.42);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-order-card h3 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.account-order-status {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(241, 200, 122, 0.16);
  color: #F1C87A;
  box-shadow: inset 0 0 0 1px rgba(241, 200, 122, 0.28);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-order-status.submitted {
  background: rgba(241, 200, 122, 0.16);
  color: #F1C87A;
  box-shadow: inset 0 0 0 1px rgba(241, 200, 122, 0.28);
}

.account-order-status.reviewing {
  background: rgba(217, 179, 111, 0.16);
  color: #D9B36F;
  box-shadow: inset 0 0 0 1px rgba(217, 179, 111, 0.28);
}

.account-order-status.quoted {
  background: rgba(159, 195, 255, 0.16);
  color: #9FC3FF;
  box-shadow: inset 0 0 0 1px rgba(159, 195, 255, 0.28);
}

.account-order-status.awaiting_payment {
  background: rgba(255, 184, 107, 0.16);
  color: #FFB86B;
  box-shadow: inset 0 0 0 1px rgba(255, 184, 107, 0.28);
}

.account-order-status.preparing_order {
  background: rgba(255, 255, 255, 0.12);
  color: #CFCFCF;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.account-order-status.ready_for_delivery_pickup {
  background: rgba(126, 224, 161, 0.16);
  color: #7EE0A1;
  box-shadow: inset 0 0 0 1px rgba(126, 224, 161, 0.28);
}

.account-order-status.out_for_delivery {
  background: rgba(111, 211, 255, 0.16);
  color: #6FD3FF;
  box-shadow: inset 0 0 0 1px rgba(111, 211, 255, 0.28);
}

.account-order-status.completed,
.account-order-status.fulfilled {
  background: rgba(139, 226, 139, 0.16);
  color: #8BE28B;
  box-shadow: inset 0 0 0 1px rgba(139, 226, 139, 0.28);
}

.account-order-status.canceled,
.account-order-status.cancelled {
  background: rgba(242, 154, 154, 0.16);
  color: #F29A9A;
  box-shadow: inset 0 0 0 1px rgba(242, 154, 154, 0.28);
}

.account-order-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 700;
}

html.translated-rtl .account-order-card-meta,
body.translated-rtl .account-order-card-meta {
  font-size: 13px;
  line-height: 1.6;
}

.account-order-progress {
  --order-progress-gap: 32px;
  position: relative;
  display: block;
  min-height: 112px;
  padding: 18px 4px 2px;
}

.account-order-progress-track {
  position: absolute;
  left: calc(100% / 12);
  right: calc(100% / 12);
  top: 40px;
  height: 7px;
  pointer-events: none;
}

.account-order-progress-line,
.account-order-progress-line-fill,
.account-order-progress-line-pulse {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  border-radius: 999px;
}

.account-order-progress-line,
.account-order-progress-line-fill {
  -webkit-mask-image: linear-gradient(90deg, transparent 0 var(--order-progress-gap), #000 var(--order-progress-gap) calc(20% - var(--order-progress-gap)), transparent calc(20% - var(--order-progress-gap)) calc(20% + var(--order-progress-gap)), #000 calc(20% + var(--order-progress-gap)) calc(40% - var(--order-progress-gap)), transparent calc(40% - var(--order-progress-gap)) calc(40% + var(--order-progress-gap)), #000 calc(40% + var(--order-progress-gap)) calc(60% - var(--order-progress-gap)), transparent calc(60% - var(--order-progress-gap)) calc(60% + var(--order-progress-gap)), #000 calc(60% + var(--order-progress-gap)) calc(80% - var(--order-progress-gap)), transparent calc(80% - var(--order-progress-gap)) calc(80% + var(--order-progress-gap)), #000 calc(80% + var(--order-progress-gap)) calc(100% - var(--order-progress-gap)), transparent calc(100% - var(--order-progress-gap)) 100%);
  mask-image: linear-gradient(90deg, transparent 0 var(--order-progress-gap), #000 var(--order-progress-gap) calc(20% - var(--order-progress-gap)), transparent calc(20% - var(--order-progress-gap)) calc(20% + var(--order-progress-gap)), #000 calc(20% + var(--order-progress-gap)) calc(40% - var(--order-progress-gap)), transparent calc(40% - var(--order-progress-gap)) calc(40% + var(--order-progress-gap)), #000 calc(40% + var(--order-progress-gap)) calc(60% - var(--order-progress-gap)), transparent calc(60% - var(--order-progress-gap)) calc(60% + var(--order-progress-gap)), #000 calc(60% + var(--order-progress-gap)) calc(80% - var(--order-progress-gap)), transparent calc(80% - var(--order-progress-gap)) calc(80% + var(--order-progress-gap)), #000 calc(80% + var(--order-progress-gap)) calc(100% - var(--order-progress-gap)), transparent calc(100% - var(--order-progress-gap)) 100%);
}

.account-order-progress-line {
  left: 0;
  right: 0;
  background: #3A3C3A;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.account-order-progress-line-fill {
  left: 0;
  right: 0;
  width: auto;
  background: linear-gradient(90deg, #74D985 0 var(--order-progress, 0%), transparent var(--order-progress, 0%) 100%);
  box-shadow: 0 0 18px rgba(116, 217, 133, 0.16);
  transform-origin: left center;
  animation: account-order-progress-fill 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.account-order-progress-line-pulse {
  left: var(--order-progress, 0%);
  width: var(--order-progress-segment, 0%);
  overflow: hidden;
  background: rgba(139, 226, 139, 0.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0 var(--order-progress-gap), #000 var(--order-progress-gap) calc(100% - var(--order-progress-gap)), transparent calc(100% - var(--order-progress-gap)) 100%);
  mask-image: linear-gradient(90deg, transparent 0 var(--order-progress-gap), #000 var(--order-progress-gap) calc(100% - var(--order-progress-gap)), transparent calc(100% - var(--order-progress-gap)) 100%);
}

.account-order-progress-line-pulse::before {
  content: "";
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: 0;
  width: 70px;
  background: linear-gradient(90deg, transparent, rgba(139, 226, 139, 0.95), transparent);
  animation: account-order-progress-travel 1.45s ease-in-out infinite;
}

.account-order-progress-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.account-order-progress-step {
  display: grid;
  justify-items: center;
  gap: 11px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.account-order-progress-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #202220;
  background-clip: padding-box;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.account-order-progress-icon {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  opacity: 0.48;
  filter: invert(1) grayscale(1) brightness(1.45);
}

.account-order-progress-step:last-child .account-order-progress-icon {
  width: 34px;
  height: 34px;
}

.account-order-progress-step.done {
  color: rgba(255, 255, 255, 0.86);
}

.account-order-progress-step.done .account-order-progress-dot {
  background: #74D985;
  border-color: #74D985;
  box-shadow: 0 0 18px rgba(116, 217, 133, 0.22);
}

.account-order-progress-step.next {
  color: rgba(255, 255, 255, 0.58);
}

.account-order-progress-step.next .account-order-progress-dot {
  border-color: rgba(139, 226, 139, 0.45);
  box-shadow: 0 0 16px rgba(139, 226, 139, 0.12);
}

.account-order-progress-step.done .account-order-progress-icon,
.account-order-progress-step.current .account-order-progress-icon {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.account-order-progress-step.next .account-order-progress-icon {
  opacity: 0.66;
}

.account-order-progress-step.current .account-order-progress-dot {
  background: #8BE28B;
  border-color: #8BE28B;
  box-shadow: 0 0 0 10px rgba(139, 226, 139, 0.12), 0 0 24px rgba(139, 226, 139, 0.32);
  animation: account-order-progress-pulse 1.7s ease-out infinite;
}

.account-order-progress-label {
  display: block;
  max-width: 112px;
  overflow-wrap: anywhere;
}

.account-order-progress.complete .account-order-progress-line-pulse,
.account-order-progress.canceled .account-order-progress-line-fill,
.account-order-progress.canceled .account-order-progress-line-pulse {
  display: none;
}

.account-order-progress.canceled .account-order-progress-line {
  background: rgba(242, 154, 154, 0.14);
}

.account-order-progress.canceled .account-order-progress-step {
  color: rgba(255, 255, 255, 0.32);
}

@keyframes account-order-progress-fill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes account-order-progress-travel {
  from {
    transform: translateX(-90%);
  }

  to {
    transform: translateX(calc(100% + 70px));
  }
}

@keyframes account-order-progress-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 10px rgba(139, 226, 139, 0.12), 0 0 24px rgba(139, 226, 139, 0.32);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(139, 226, 139, 0), 0 0 30px rgba(139, 226, 139, 0.42);
  }
}

@media (max-width: 620px) {
  .account-order-card {
    padding: 18px;
    gap: 16px;
  }

  .account-order-card-top {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .account-order-status {
    justify-self: start;
  }

  .account-order-card-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    font-size: 11px;
    line-height: 1.35;
  }

  .account-order-progress {
    min-height: auto;
    padding: 2px 0 0;
  }

  .account-order-progress-track {
    display: none;
  }

  .account-order-progress-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .account-order-progress-step {
    grid-template-columns: 34px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    gap: 9px;
    min-width: 0;
    font-size: 9px;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-align: left;
  }

  .account-order-progress-dot {
    width: 34px;
    height: 34px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
  }

  .account-order-progress-icon {
    width: 21px;
    height: 21px;
  }

  .account-order-progress-step:last-child .account-order-progress-icon {
    width: 24px;
    height: 24px;
  }

  .account-order-progress-step.current .account-order-progress-dot {
    box-shadow: 0 0 0 7px rgba(139, 226, 139, 0.12), 0 0 20px rgba(139, 226, 139, 0.32);
  }

  .account-order-progress-label {
    max-width: none;
    overflow-wrap: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .account-order-progress-line-fill,
  .account-order-progress-line-pulse::before,
  .account-order-progress-step.current .account-order-progress-dot {
    animation: none;
  }
}

.account-order-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.account-order-card-bottom strong {
  color: white;
  font-size: 15px;
  font-weight: 700;
}

.account-order-view-button {
  width: fit-content;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.account-order-modal {
  position: fixed;
  inset: 0;
  z-index: 3400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.account-order-modal[hidden] {
  display: none;
}

.account-order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.account-order-modal-card {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #161716;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
  contain: layout paint;
}

.account-order-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-family: inherit;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.account-order-modal-header {
  margin-bottom: 24px;
  padding-right: 34px;
}

.account-order-modal-header h2 {
  margin-bottom: 12px;
  color: white;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.account-order-modal-header p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.75;
}

.account-order-detail-status-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.account-order-detail-status-row div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  gap: 8px;
}

.account-order-detail-status-row span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-order-detail-status-row strong {
  color: white;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.account-order-detail-items {
  display: grid;
  gap: 14px;
}

.account-order-detail-item {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.account-order-detail-image-frame {
  width: 96px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
}

.account-order-detail-image-frame img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

.account-order-detail-item-info {
  display: grid;
  gap: 7px;
}

.account-order-detail-item-info span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-order-detail-item-info h3 {
  color: white;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.account-order-detail-item-info p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.account-order-detail-item-info strong {
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.account-order-detail-info {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.account-order-detail-info-card {
  min-width: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.account-order-detail-info-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.account-order-detail-info-card span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-order-detail-info-card strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.account-order-detail-info-card-full {
  grid-column: 1 / -1;
}

.account-order-detail-info-card-full:nth-last-child(-n + 2) {
  border-bottom: 0;
}

@media (max-width: 720px) {
  .account-order-detail-info {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .account-order-detail-info-card {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .account-order-detail-info-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  }

  .account-order-detail-info-card:last-child {
    border-bottom: 0;
  }
}

.account-order-inline-empty {
  padding: 22px;
}

@media (max-width: 900px) {
  .account-page {
    padding-top: 88px;
  }

  .account-section {
    min-height: calc(100vh - 88px);
    padding: 54px 20px 72px;
  }

  .account-header {
    display: block;
    margin-bottom: 30px;
    text-align: left;
  }

  .account-header h1 {
    font-size: 34px;
  }

  .account-header p {
    max-width: none;
    margin-top: 10px;
    text-align: left;
  }

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

  .account-sidebar {
    position: static;
  }

  .account-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .account-panel-header h2 {
    font-size: 27px;
  }

  .account-form-grid,
  .account-address-modal-card .account-form-grid,
  .account-status-grid,
  .account-saved-item,
  .account-saved-item-main {
    grid-template-columns: 1fr;
  }

  .account-addresses-header,
  .account-address-card {
    display: grid;
  }

  .account-saved-item-image-frame {
    width: 100%;
  }

  .account-primary-button {
    width: 100%;
  }
}

.account-change-password-section,
.account-login-sessions-section,
.account-sign-out-everywhere-section,
.account-delete-account-section,
.account-two-factor-section {
  display: grid;
  gap: 18px;
  align-items: start;
  contain: layout style;
}

.account-two-factor-methods {
  display: grid;
  gap: 14px;
}

.account-login-sessions-list {
  display: grid;
  gap: 14px;
}

.account-login-sessions-list:empty {
  display: none;
}

.account-login-session-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(255, 255, 255, 0.045);
  content-visibility: auto;
  contain-intrinsic-size: 112px;
}

.account-login-session-card.current {
  border-color: rgba(126, 224, 161, 0.28);
  background: rgba(126, 224, 161, 0.08);
}

.account-login-session-main {
  display: grid;
  gap: 8px;
}

.account-login-session-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.account-login-session-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.account-login-session-browser-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.account-login-session-title h4 {
  min-width: 0;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.account-login-session-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.account-login-session-current {
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(126, 224, 161, 0.28);
  background: rgba(126, 224, 161, 0.16);
  color: #7EE0A1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-login-session-sign-out {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 156, 156, 0.28);
  border-radius: 999px;
  background: rgba(255, 156, 156, 0.12);
  color: rgba(255, 176, 176, 0.96);
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.account-login-session-sign-out:hover {
  background: rgba(255, 156, 156, 0.18);
  border-color: rgba(255, 156, 156, 0.42);
}

.account-login-session-sign-out:active {
  transform: translateY(1px);
}

.account-login-session-sign-out:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.account-login-session-main p,
.account-login-sessions-empty {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.account-login-session-meta {
  display: flex;
  gap: 10px 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-trusted-devices-section {
  display: grid;
  gap: 18px;
  align-items: start;
  contain: layout style;
}

.account-trusted-devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
}

.account-trusted-devices-grid:empty {
  display: none;
}

.account-trusted-devices-empty {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.account-trusted-device-tile {
  min-height: 258px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  content-visibility: auto;
  contain-intrinsic-size: 258px;
}

.account-trusted-device-tile.current {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.04));
}

.account-trusted-device-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-trusted-device-tile.current .account-trusted-device-mark {
  color: rgba(255, 255, 255, 0.86);
}

.account-trusted-device-platform-icon {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.account-trusted-device-platform-icon-apple {
  filter: invert(1);
}

.account-trusted-device-mark span {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.account-trusted-device-body {
  display: grid;
  gap: 9px;
  align-content: start;
}

.account-trusted-device-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-trusted-device-current {
  flex-shrink: 0;
  padding: 5px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-trusted-device-body h4 {
  color: white;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
}

.account-trusted-device-body p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.account-trusted-device-dates {
  display: grid;
  gap: 7px;
  margin-top: 4px;
}

.account-trusted-device-dates span {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.16);
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.account-trusted-device-dates strong {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-trusted-device-remove {
  width: 100%;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 156, 156, 0.28);
  border-radius: 12px;
  background: rgba(255, 156, 156, 0.1);
  color: rgba(255, 176, 176, 0.96);
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.account-trusted-device-remove:hover {
  background: rgba(255, 156, 156, 0.16);
  border-color: rgba(255, 156, 156, 0.44);
}

.account-trusted-device-remove:active {
  transform: translateY(1px);
}

.account-trusted-device-remove:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.account-two-factor-card {
  min-height: 118px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: rgba(255, 255, 255, 0.045);
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  content-visibility: auto;
  contain-intrinsic-size: 118px;
}

.account-two-factor-icon {
  width: 30px;
  height: 30px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-two-factor-icon img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.account-two-factor-text {
  display: grid;
  gap: 8px;
}

.account-two-factor-text h4 {
  color: white;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.account-two-factor-text p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.account-two-factor-status {
  margin-left: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 156, 156, 0.13);
  color: rgba(255, 176, 176, 0.96);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-two-factor-status.enabled {
  background: rgba(185, 255, 202, 0.12);
  color: rgba(185, 255, 202, 0.92);
}

.account-two-factor-button {
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: white;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.account-two-factor-button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.account-two-factor-button.danger {
  border-color: rgba(255, 145, 152, 0.42);
  background: rgba(92, 55, 60, 0.58);
  color: #ffc4c9;
}

.account-two-factor-button.danger:hover {
  background: rgba(110, 63, 69, 0.72);
  border-color: rgba(255, 165, 172, 0.58);
}

.account-two-factor-button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.account-change-password-details {
  display: grid;
  gap: 10px;
  align-items: start;
}

.account-change-password-open-button {
  width: fit-content;
  min-width: 210px;
}

.account-password-last-changed-details {
  display: grid;
  gap: 4px;
}

.account-password-last-changed,
.account-password-session-note {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.account-password-last-changed {
  font-weight: 700;
}

.account-password-session-note {
  font-weight: 400;
}

.account-danger-button {
  width: fit-content;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 156, 156, 0.28);
  border-radius: 999px;
  background: rgba(255, 156, 156, 0.12);
  color: rgba(255, 176, 176, 0.96);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.account-danger-button:hover {
  background: rgba(255, 156, 156, 0.18);
  border-color: rgba(255, 156, 156, 0.42);
}

.account-danger-button:active {
  transform: translateY(1px);
}

.account-danger-button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.account-authenticator-modal {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.account-authenticator-modal[hidden] {
  display: none;
}

.account-authenticator-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.account-authenticator-modal-card {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 36px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #181918;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
  contain: layout paint;
}

.account-authenticator-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-family: inherit;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.account-authenticator-modal-header {
  margin-bottom: 24px;
  padding-right: 34px;
}

.account-authenticator-modal-header h2 {
  margin-bottom: 12px;
  color: white;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.account-authenticator-modal-header p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.75;
}

.account-authenticator-setup-grid {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.account-authenticator-qr-wrap {
  width: 220px;
  height: 220px;
  padding: 12px;
  border-radius: 22px;
  background: white;
}

.account-authenticator-qr-wrap img {
  width: 100%;
  height: 100%;
  display: block;
}

.account-authenticator-manual {
  display: grid;
  gap: 10px;
}

.account-authenticator-manual span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-authenticator-manual strong {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.065);
  color: white;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
}

@media (max-width: 700px) {
  .account-two-factor-card {
    grid-template-columns: 1fr;
  }

  .account-authenticator-setup-grid {
    grid-template-columns: 1fr;
  }

  .account-authenticator-qr-wrap {
    width: 100%;
    height: auto;
  }

  .account-order-modal {
    z-index: 10000;
    padding: 14px;
  }

  .account-order-modal-card {
    width: 100%;
    max-height: calc(100dvh - 28px);
    padding: 28px 18px;
    border-radius: 22px;
  }

  .account-order-modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .account-order-modal-header {
    margin-bottom: 20px;
    padding-right: 40px;
  }

  .account-order-modal-header h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .account-order-modal-header p {
    font-size: 14px;
    line-height: 1.55;
  }

  .account-order-detail-status-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .account-order-detail-status-row div {
    min-height: 68px;
    padding: 14px 16px;
    border-radius: 18px;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 12px;
  }

  .account-order-detail-status-row span {
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: 0.1em;
  }

  .account-order-detail-status-row strong {
    font-size: 15px;
    line-height: 1.3;
    text-align: right;
    overflow-wrap: anywhere;
  }

  .account-order-detail-item {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .account-order-detail-image-frame {
    width: 82px;
    border-radius: 15px;
  }

  .account-order-detail-image-frame img {
    border-radius: 15px;
  }

  .account-order-detail-item-info {
    gap: 6px;
  }

  .account-order-detail-item-info span {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .account-order-detail-item-info h3 {
    font-size: 16px;
    line-height: 1.22;
  }

  .account-order-detail-item-info p,
  .account-order-detail-item-info strong {
    font-size: 13px;
    line-height: 1.4;
  }
}

.account-password-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.account-password-modal[hidden] {
  display: none;
}

.account-password-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.account-password-modal-card {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 36px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #181918;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
  contain: layout paint;
}

.account-password-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

.account-password-modal-close:hover {
  color: #ffffff;
}

.account-password-modal-header {
  margin-bottom: 22px;
  padding-right: 32px;
}

.account-password-modal-header h2 {
  margin: 0 0 12px;
  color: white;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-password-modal-header p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.75;
}

.account-password-modal-card .account-form {
  display: grid;
  gap: 18px;
}

.account-password-field {
  display: grid;
  gap: 10px;
}

.account-password-input-wrap {
  position: relative;
}

.account-password-input-wrap input {
  padding-right: 64px;
}

.account-password-visibility-toggle {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  padding: 0;
}

.account-password-visibility-toggle {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  padding: 0;
}

.account-password-visibility-toggle svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  opacity: 0.95;
}

.account-password-visibility-toggle::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 13px;
  width: 25px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: rotate(-42deg);
  transform-origin: center;
  transition: opacity 0.18s ease;
}

.account-password-visibility-toggle.password-hidden::after {
  opacity: 0.95;
}

.account-password-visibility-toggle.password-visible::after {
  opacity: 0;
}

.account-password-rules {
  margin-top: 8px;
  padding: 22px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
}

.account-password-rules strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.account-password-rules ul {
  margin: 0;
  padding-left: 24px;
}

.account-password-rules li {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.45;
}

.account-password-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.account-password-modal-cancel {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.11);
  color: white;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
}

.account-password-modal-cancel:hover {
  background: rgba(255, 255, 255, 0.16);
}

.account-password-confirm-button {
  min-height: 52px;
  border-radius: 999px;
}

.account-password-confirm-button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

@media (max-width: 700px) {
  .account-password-modal {
    padding: 14px;
  }

  .account-password-modal-card {
    width: 100%;
    max-height: calc(100dvh - 28px);
    padding: 28px 18px;
    border-radius: 22px;
  }

  .account-password-modal-close {
    top: 12px;
    right: 12px;
  }

  .account-password-modal-header {
    margin-bottom: 20px;
    padding-right: 40px;
  }

  .account-password-modal-header h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .account-password-modal-header p {
    font-size: 14px;
    line-height: 1.55;
  }

  .account-password-modal-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
