:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-footer-link: #a6a6a6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "Gravity";
  src: url("Fonts/Gravity-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gravity";
  src: url("Fonts/Gravity-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Gravity";
  src: url("Fonts/Gravity-Book.otf") format("opentype");
  font-weight: 350;
  font-style: normal;
}

@font-face {
  font-family: "Gravity";
  src: url("Fonts/Gravity-BookItalic.otf") format("opentype");
  font-weight: 350;
  font-style: italic;
}

@font-face {
  font-family: "Gravity";
  src: url("Fonts/Gravity-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Gravity";
  src: url("Fonts/Gravity-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Gravity";
  src: url("Fonts/Gravity-UltraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Gravity";
  src: url("Fonts/Gravity-UltraLightItalic.otf") format("opentype");
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: "Gravity";
  src: url("Fonts/Gravity-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Gravity";
  src: url("Fonts/Gravity-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

html {
  scrollbar-gutter: stable;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  background-color: var(--color-white);
  color: #111111;
  font-family: "Gravity", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-y: visible;
  overflow-x: hidden;
}

input,
button,
select,
textarea {
  font: inherit;
}

.site-header {
  width: 100%;
  flex-shrink: 0;
}

.top-bar {
  width: 100%;
  height: 62px;
  background-color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 16px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.logo {
  height: 46px;
  max-height: 46px;
  width: auto;
  display: block;
}

.top-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 0;
  margin-left: auto;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 100%;
}

.nav-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 100%;
  padding: 0 14px;
  border: none;
  background-color: transparent;
  color: var(--color-white);
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
}

.nav-box:hover,
.nav-box:focus-visible {
  background-color: #262626;
}

.nav-item:hover > .nav-box,
.nav-item:focus-within > .nav-box {
  background-color: #262626;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  display: flex;
}

.nav-box-active {
  background-color: #262626;
}

.nav-box-active:hover,
.nav-box-active:focus-visible {
  background-color: #d2d2d2;
}

.nav-account {
  background-color: #262626;
  color: var(--color-white);
  gap: 8px;
}

.nav-account:hover,
.nav-account:focus-visible {
  background-color: #4d4d4d;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  min-width: 200px;
  background-color: #000000;
  border: 1px solid #535353;
  border-top: none;
  z-index: 20;
}

.nav-dropdown a {
  display: block;
  padding: 11px 14px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
  background-color: #111111;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background-color: #262626;
}

.nav-dropdown-products {
  min-width: 180px;
}

.nav-dropdown-products a:nth-child(n+2) {
  color: #a6a6a6;
  background-color: #111111;
  pointer-events: none;
  cursor: default;
}

.nav-dropdown-products a:nth-child(n+2):hover,
.nav-dropdown-products a:nth-child(n+2):focus-visible {
  background-color: #262626;
  color: #a6a6a6;
}

.nav-dropdown-info {
  min-width: 180px;
}

.profile-circle {
  width: 38px;
  height: 38px;
  margin-left: 20px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  background-color: transparent;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.profile-circle::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-white);
  transform: translateX(-50%);
}

.profile-circle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 20px;
  height: 12px;
  border-radius: 8px 8px 4px 4px;
  background-color: var(--color-white);
  transform: translateX(-50%);
}

.home-main {
  flex: 1;
  width: 100%;
  background-color: var(--color-white);
  padding: 20px 20px 62px;
}

.products-page {
  flex: 1;
  width: 100%;
  background-color: var(--color-white);
  padding: 20px 20px 62px;
}

.contact-page {
  flex: 1;
  width: 100%;
  background-color: var(--color-white);
  padding: 20px 20px 62px;
}

.faq-page {
  flex: 1;
  width: 100%;
  background-color: var(--color-white);
  padding: 20px 20px 62px;
}

.create-account-page {
  flex: 1;
  width: 100%;
  background-color: var(--color-white);
  padding: 20px 20px 62px;
}

.account-page {
  flex: 1;
  width: 100%;
  background-color: var(--color-white);
  padding: 20px 20px 62px;
}

.products-shell {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid transparent;
  background:
    linear-gradient(#fafafa, #fafafa) padding-box,
    linear-gradient(90deg, #ebcf0b 0%, #f55880 33.33%, #2098f5 66.66%, #00f78e 100%) border-box;
  border-radius: 10px;
  padding: 20px;
}

.contact-shell {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid transparent;
  background:
    linear-gradient(#fafafa, #fafafa) padding-box,
    linear-gradient(90deg, #ebcf0b 0%, #f55880 33.33%, #2098f5 66.66%, #00f78e 100%) border-box;
  border-radius: 10px;
  padding: 20px;
}

.faq-shell {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid transparent;
  background:
    linear-gradient(#fafafa, #fafafa) padding-box,
    linear-gradient(90deg, #ebcf0b 0%, #f55880 33.33%, #2098f5 66.66%, #00f78e 100%) border-box;
  border-radius: 10px;
  padding: 20px;
}

.create-account-shell {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid transparent;
  background:
    linear-gradient(#fafafa, #fafafa) padding-box,
    linear-gradient(90deg, #ebcf0b 0%, #f55880 33.33%, #2098f5 66.66%, #00f78e 100%) border-box;
  border-radius: 10px;
  padding: 20px;
}

.account-shell {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid transparent;
  background:
    linear-gradient(#fafafa, #fafafa) padding-box,
    linear-gradient(90deg, #ebcf0b 0%, #f55880 33.33%, #2098f5 66.66%, #00f78e 100%) border-box;
  border-radius: 10px;
  padding: 20px;
}

.products-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.contact-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.faq-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.create-account-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.account-software-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.subtitle {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.account-software-empty {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.6;
}

.account-software-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  line-height: 1.6;
}

.products-description {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.6;
  max-width: 100%;
}

.contact-description {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.6;
  max-width: 100%;
}

.faq-search-form {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-search-input {
  width: 100%;
  flex: 1;
  height: 34px;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  padding: 0 10px;
  background-color: #ffffff;
}

.faq-search-input::placeholder {
  color: #a6a6a6;
}

.faq-search-actions {
  margin-top: 0;
  display: flex;
  justify-content: flex-end;
}

.faq-search-button {
  border: none;
  background-color: #000000;
  color: #ffffff;
  font-size: 12px;
  height: 30px;
  width: 150px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.faq-search-button:hover,
.faq-search-button:focus-visible {
  background-color: #535353;
}

.faq-helper-text {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.6;
}

.faq-helper-link {
  color: #33bdb4;
  text-decoration: underline;
}

.faq-spacer {
  margin-top: 18px;
  border-top: 1px solid #d2d2d2;
}

.faq-section-title {
  margin-top: 12px;
}

.faq-spacer-tight {
  margin-top: 12px;
}

.recruitment-description-wrap {
  margin-top: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
}

.recruitment-description-wrap .faq-helper-text {
  margin: 0;
}

.contact-form {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  column-gap: 7px;
}

.contact-form-row label {
  font-size: 12px;
}

.contact-form-row input,
.contact-form-row textarea {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  display: block;
  box-sizing: border-box;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  padding: 8px;
  background-color: #ffffff;
  font: inherit;
}

.contact-form-row input {
  height: 28px;
}

.contact-form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-row-textarea {
  align-items: start;
}

.contact-form-spacer {
  display: block;
  width: 100%;
  min-height: 1px;
}

.contact-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.contact-send-button {
  border: none;
  background-color: #000000;
  color: #ffffff;
  font-size: 12px;
  height: 30px;
  width: 180px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.contact-send-button:hover,
.contact-send-button:focus-visible {
  background-color: #535353;
}

.contact-details {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #d2d2d2;
  font-size: 12px;
  line-height: 1.7;
}

.contact-details p {
  margin: 0 0 10px;
}

.contact-email-link {
  color: #111111;
}

.product-entry {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
}

.product-art {
  width: 120px;
  height: 120px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.product-entry-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-entry-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-entry-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.product-entry-online {
  color: #33bdb4;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}

.product-entry-description {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.product-store-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-store-links .product-store-text {
  margin: 0;
  text-decoration: none;
}

.product-store-separator {
  color: #111111;
}

.product-store-note {
  margin: 0;
  color: #33bdb4;
  font-size: 12px;
  font-weight: 700;
}

.product-store-link {
  color: #6f6f6f;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.product-store-link:hover,
.product-store-link:focus-visible {
  color: #4a4a4a;
  text-decoration: underline;
}

.product-entry-disabled .product-entry-online,
.product-entry-disabled .product-store-link {
  color: #8e8e8e;
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}

.home-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.618fr) minmax(0, 0.382fr);
  gap: 20px;
}

.left-column,
.right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-card {
  border: 1px solid transparent;
  background:
    linear-gradient(#fafafa, #fafafa) padding-box,
    linear-gradient(90deg, #ebcf0b 0%, #f55880 33.33%, #2098f5 66.66%, #00f78e 100%) border-box;
  border-radius: 10px;
  padding: 16px;
}

.card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.card-copy {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.card-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.twilight-card {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  min-height: 110px;
}

.applications-card {
  position: relative;
  overflow: hidden;
  color: #000000;
  min-height: 110px;
}

.applications-card-link-cover {
  display: block;
  min-height: 110px;
  margin: -16px;
  padding: 16px;
  border-radius: 9px;
  color: inherit;
  text-decoration: none;
}

.applications-card-link-cover:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.45);
}

.applications-empty-text {
  color: #111111;
}

.applications-loaded {
  display: flex;
  align-items: center;
  gap: 14px;
}

.applications-loaded[hidden] {
  display: none !important;
}

.applications-loaded-image {
  width: 96px;
  height: 96px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.applications-loaded-description {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.applications-card-loaded::before,
.applications-card-loaded::after {
  display: none;
}

.applications-card-loaded .applications-empty-text {
  display: none;
}

.applications-card:not(.applications-card-loaded) .applications-loaded {
  display: none;
}

.twilight-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 9px;
  background-image: url("Graphics/Twilight advertising box.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.twilight-card > * {
  position: relative;
  z-index: 1;
}

.applications-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 9px;
  background-image: url("Graphics/Applications advertising box.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.applications-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 9px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 0;
}

.applications-card > * {
  position: relative;
  z-index: 1;
}

.news-card {
  min-height: 0;
}

.news-card-header {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d2d2d2;
}

.news-entry {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d2d2d2;
}

.news-entry + .news-entry {
  border-top: 1px solid #d2d2d2;
  margin-top: 12px;
  padding-top: 12px;
}

.news-entry-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.news-entry-title-compact {
  font-size: 12px;
  font-weight: 700;
}

.news-entry-date {
  color: var(--color-footer-link);
  font-size: 10px;
}

.news-entry .card-copy {
  margin-top: 0;
}

.create-account-link {
  color: #33bdb4;
  text-decoration: underline;
  font-size: 12px;
  font-weight: 700;
}

.sign-in-form {
  margin-top: 14px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  width: 100%;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  column-gap: 7px;
}

.form-row label {
  font-size: 12px;
}

.form-row input {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  display: block;
  height: 28px;
  box-sizing: border-box;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  padding: 0 16px 0 8px;
  background-color: #ffffff;
}

.form-actions-row {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.forgot-password-link {
  color: var(--color-footer-link);
  text-decoration: underline;
  font-size: 10px;
}

.sign-in-button {
  border: none;
  background-color: #000000;
  color: #ffffff;
  font-size: 12px;
  height: 30px;
  width: 150px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.sign-in-button:hover,
.sign-in-button:focus-visible {
  background-color: #535353;
}

.sign-in-button:active {
  background-color: #535353;
}

.create-account-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-profile-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
}

.account-photo {
  width: 150px;
  height: 150px;
  border: 1px solid #d2d2d2;
  border-radius: 50%;
  background-color: #ffffff;
}

.account-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.account-detail-line {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.account-spacer {
  margin: 16px 0;
  border-top: 1px solid #d2d2d2;
}

.account-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
}

.account-reset-email-label {
  font-size: 12px;
  line-height: 1;
}

.create-account-row {
  width: 100%;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  column-gap: 7px;
}

.create-account-password-field {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.create-account-email-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.create-account-password-field > input {
  padding-right: 36px;
}

.password-visibility-toggle {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 22px;
  height: 22px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.12s ease;
}

.password-visibility-toggle::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 5px;
  width: 18px;
  height: 10px;
  border: 1.5px solid #535353;
  border-radius: 10px / 6px;
}

.password-visibility-toggle::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #535353;
}

.create-account-password-field > input:hover + .password-visibility-toggle,
.create-account-password-field > input:focus + .password-visibility-toggle,
.create-account-row:hover .password-visibility-toggle,
.create-account-password-field:hover .password-visibility-toggle,
.create-account-password-field:focus-within .password-visibility-toggle,
.password-visibility-toggle:focus-visible {
  visibility: visible;
  opacity: 1;
}

.password-visibility-toggle.is-visible::before {
  border-color: #000000;
}

.password-visibility-toggle.is-visible::after {
  background-color: #000000;
}

.create-account-password-error {
  margin: 0;
  display: none;
  font-size: 12px;
  line-height: 1.6;
}
.create-account-email-error {
  margin: 0;
  display: none;
  font-size: 12px;
  line-height: 1.6;
}

.create-account-password-error.is-visible {
  display: block;
}
#create-user-email[data-email-attempted="true"]:not(:focus):invalid + .create-account-email-error {
  display: block;
}

.create-account-row label,
.create-account-sex-label {
  font-size: 12px;
}

.create-account-row input,
.create-account-row select {
  width: 100%;
  min-width: 0;
  height: 28px;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  padding: 0 8px;
  background-color: #ffffff;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
}

/* Prevent native reveal controls from overlapping custom password-eye toggles. */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

.password-visibility-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
}

.create-account-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.donation-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.donation-method-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.donation-method-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  background-color: #ffffff;
}

.donation-method-panel[hidden] {
  display: none;
}

.donation-status {
  margin: 2px 0 0;
  color: #006a3a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.form-status {
  margin: 6px 0 0;
  min-height: 16px;
  font-size: 10px;
  line-height: 1.4;
}

#sign-in-status:empty {
  display: none;
}

.form-status-error {
  color: #8c0000;
}

.create-account-password-error,
.create-account-email-error,
.create-account-warning,
.create-account-transvestite-note,
.create-account-inline-error,
.form-status-error {
  color: #8c0000;
  font-family: "Gravity", sans-serif;
  font-weight: 700;
}

.form-status-success {
  color: #006a3a;
}

.faq-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  padding: 10px;
  background-color: #ffffff;
}

.faq-item-question {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.faq-item-answer {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.create-account-spacer {
  margin: 4px 0;
  border-top: 1px solid #d2d2d2;
}

.create-account-warning {
  margin: 2px 0;
  font-size: 12px;
  line-height: 1.6;
}

.create-account-sex-options {
  margin-top: 2px;
  margin-bottom: 2px;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.create-account-sex-option-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.create-account-sex-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.create-account-sex-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #d2d2d2;
}

.create-account-sex-option:hover,
.create-account-sex-option:focus-visible {
  background-color: #fafafa;
}

.create-account-sex-input:checked + .create-account-sex-option {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.create-account-transvestite-note {
  display: none;
  font-size: 12px;
  line-height: 1.4;
}

#sex-transvestite:checked + .create-account-sex-option + .create-account-transvestite-note {
  display: inline;
}

.create-account-page .sign-in-button:active {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.create-account-page .create-account-sex-option:active {
  background-color: #000000;
  color: #ffffff;
}

.create-account-referral-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.create-account-referral-controls input {
  flex: 1;
}

.create-account-redeem-button {
  width: 150px;
  padding: 0 20px;
}

.create-account-actions {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.create-account-actions .sign-in-button {
  margin-left: auto;
}

.create-account-inline-error {
  margin: 0;
  flex: 1;
  text-align: left;
  font-size: 10px;
  line-height: 1.4;
}

.create-account-field-error {
  border-color: #8c0000 !important;
  box-shadow: 0 0 0 2px rgba(140, 0, 0, 0.2) !important;
}

#create-user-email[data-email-attempted="true"]:not(:focus):invalid {
  border-color: #8c0000 !important;
  box-shadow: 0 0 0 1px rgba(140, 0, 0, 0.25) !important;
}

#create-password[data-password-invalid="true"] {
  border-color: #8c0000 !important;
  box-shadow: 0 0 0 1px rgba(140, 0, 0, 0.25) !important;
}

#create-password-retype[data-password2-invalid="true"] {
  border-color: #8c0000 !important;
  box-shadow: 0 0 0 1px rgba(140, 0, 0, 0.25) !important;
}

.create-account-sex-options-error {
  border: 1px solid #8c0000;
  border-radius: 6px;
  padding: 8px;
}

.create-account-note {
  margin: 14px 0 0;
  padding-top: 8px;
  border-top: 1px solid #d2d2d2;
  color: #535353;
  font-size: 10px;
  line-height: 1.5;
}

.site-footer {
  height: 15px;
  width: 100%;
  background-color: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8px;
  gap: 6px;
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-brand {
  color: var(--color-white);
}

.footer-link {
  color: var(--color-footer-link);
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus-visible {
  text-decoration: underline;
}

.footer-separator {
  color: var(--color-footer-link);
}

@media (max-width: 720px) {
  .top-bar {
    padding: 0 0 0 10px;
  }

  .logo {
    height: 40px;
    max-height: 40px;
  }

  .top-nav {
    gap: 0;
  }

  .nav-box {
    min-width: 68px;
    padding: 0 8px;
    font-size: 12px;
  }

  .nav-dropdown {
    min-width: 160px;
  }

  .site-footer {
    justify-content: flex-start;
    padding: 0 8px;
  }

  .home-main {
    padding: 12px 12px 62px;
  }

  .products-page {
    padding: 12px 12px 62px;
  }

  .contact-page {
    padding: 12px 12px 62px;
  }

  .faq-page {
    padding: 12px 12px 62px;
  }

  .create-account-page {
    padding: 12px 12px 62px;
  }

  .account-page {
    padding: 12px 12px 62px;
  }

  .products-shell {
    padding: 16px;
  }

  .contact-shell {
    padding: 16px;
  }

  .faq-shell {
    padding: 16px;
  }

  .create-account-shell {
    padding: 16px;
  }

  .account-shell {
    padding: 16px;
  }

  .products-title {
    font-size: 20px;
  }

  .contact-title {
    font-size: 20px;
  }

  .faq-title {
    font-size: 20px;
  }

  .create-account-title {
    font-size: 20px;
  }

  .account-software-title {
    font-size: 20px;
  }

  .product-entry {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
  }

  .product-art {
    width: 96px;
    height: 96px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-form-actions {
    justify-content: flex-start;
  }

  .contact-send-button {
    width: 100%;
  }

  .faq-search-button {
    width: 150px;
  }

  .create-account-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .create-account-password-error {
    margin-top: -2px;
  }

  .account-profile-row {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .create-account-sex-options {
    margin-left: 0;
  }

  .create-account-referral-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .create-account-redeem-button {
    width: 150px;
    align-self: flex-end;
  }

  .create-account-actions {
    justify-content: space-between;
  }

  .home-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .left-column,
  .right-column {
    gap: 12px;
  }

  .card-header-row {
    align-items: flex-start;
  }
}
