:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #f0f5ff;
  --text: #111827;
  --muted: #667085;
  --line: #e4e7ec;

  --primary: #2563eb;
  --primary-dark: #1748ba;
  --primary-soft: #eaf1ff;

  --success: #067647;
  --success-soft: #ecfdf3;

  --shadow:
    0 20px 50px
    rgba(16, 24, 40, 0.08);

  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid
    rgba(228, 231, 236, 0.88);
  background:
    rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: white;
  background:
    linear-gradient(
      145deg,
      #2563eb,
      #5b8cff
    );
  font-size: 20px;
  font-weight: 900;
  box-shadow:
    0 9px 20px
    rgba(37, 99, 235, 0.25);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 23px;
}

.desktop-nav a {
  color: #475467;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover,
.desktop-nav .active-link {
  color: var(--primary);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 12px;
  color: white;
  background: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.hero {
  overflow: hidden;
  padding: 85px 0 78px;
  background:
    radial-gradient(
      circle at 75% 30%,
      rgba(37, 99, 235, 0.12),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #ffffff,
      #f5f8ff
    );
}

.hero-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(340px, 0.72fr);
  align-items: center;
  gap: 75px;
}

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: 760px;
  margin: 16px 0 20px;
  font-size: clamp(
    42px,
    6vw,
    72px
  );
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 850;
}

.button-primary {
  color: white;
  background: var(--primary);
  box-shadow:
    0 12px 28px
    rgba(37, 99, 235, 0.24);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  border: 1px solid var(--line);
  background: white;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  margin-top: 39px;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 14px;
}

.trust-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.hero-card {
  padding: 24px;
  border: 1px solid
    rgba(228, 231, 236, 0.8);
  border-radius: 28px;
  background:
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.status-dot {
  color: var(--success);
}

.social-preview {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 29px 0;
}

.preview-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  background:
    linear-gradient(
      145deg,
      #111827,
      #344054
    );
  font-size: 29px;
}

.social-preview small {
  color: var(--muted);
  font-weight: 700;
}

.social-preview h2 {
  margin: 3px 0 0;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.preview-features {
  display: grid;
  gap: 9px;
  padding: 17px;
  border-radius: 16px;
  background: #f8fafc;
  color: #475467;
  font-size: 13px;
  font-weight: 650;
}

.preview-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}

.preview-price small,
.preview-price strong {
  display: block;
}

.preview-price small {
  color: var(--muted);
  font-size: 11px;
}

.preview-price strong {
  margin-top: 2px;
  font-size: 29px;
}

.mini-button {
  padding: 11px 17px;
  border-radius: 11px;
  color: white;
  background: var(--primary);
  font-size: 12px;
  font-weight: 850;
}

.section {
  padding: 78px 0;
}

.section-soft {
  background: white;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 680px;
  margin: 10px 0 0;
  font-size: clamp(
    30px,
    4vw,
    46px
  );
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.section-heading.centered {
  justify-content: center;
  text-align: center;
}

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

.platform-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.platform-card:hover {
  transform: translateY(-3px);
  border-color: #bdd0ff;
  box-shadow:
    0 14px 32px
    rgba(16, 24, 40, 0.07);
}

.platform-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 22px;
  font-weight: 900;
}

.platform-card h3 {
  margin: 0;
  font-size: 16px;
}

.platform-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.arrow {
  margin-left: auto;
  color: #98a2b3;
  font-size: 22px;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: white;
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.category-pill,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
}

.category-pill {
  color: var(--primary);
  background: var(--primary-soft);
}

.badge {
  color: var(--success);
  background: var(--success-soft);
}

.product-card h3 {
  margin: 24px 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.product-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.product-details {
  display: grid;
  gap: 7px;
  margin: 18px 0 25px;
  color: #475467;
  font-size: 12px;
}

.product-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.product-footer small,
.product-footer strong {
  display: block;
}

.product-footer small {
  color: var(--muted);
  font-size: 10px;
}

.product-footer strong {
  margin-top: 3px;
  font-size: 22px;
}

.product-button {
  padding: 11px 14px;
  border-radius: 11px;
  color: white;
  background: var(--text);
  font-size: 11px;
  font-weight: 850;
}

.how-section {
  padding: 80px 0;
  color: white;
  background: #101828;
}

.how-section .eyebrow {
  color: #8fb1ff;
}

.steps-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 17px;
  margin-top: 35px;
}

.steps-grid article {
  padding: 25px;
  border: 1px solid
    rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    rgba(255, 255, 255, 0.045);
}

.steps-grid article > span {
  color: #8fb1ff;
  font-size: 12px;
  font-weight: 900;
}

.steps-grid h3 {
  margin: 25px 0 9px;
  font-size: 18px;
}

.steps-grid p {
  margin: 0;
  color: #98a2b3;
  font-size: 13px;
  line-height: 1.65;
}

.platform-hero {
  padding: 68px 0 52px;
  text-align: center;
  background:
    linear-gradient(
      180deg,
      #ffffff,
      #f4f7ff
    );
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.large-platform-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 22px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 31px;
  font-weight: 900;
}

.platform-hero h1 {
  margin: 10px 0;
  font-size: clamp(
    38px,
    5vw,
    57px
  );
  letter-spacing: -0.05em;
}

.platform-hero p {
  margin: 0;
  color: var(--muted);
}

.product-page {
  min-height: 75vh;
  padding: 55px 0 80px;
}

.product-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(380px, 0.78fr);
  gap: 70px;
  align-items: start;
}

.product-icon-large {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 24px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 35px;
}

.product-information h1 {
  max-width: 670px;
  margin: 18px 0 18px;
  font-size: clamp(
    39px,
    5vw,
    62px
  );
  line-height: 1;
  letter-spacing: -0.055em;
}

.product-description {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.feature-list > div {
  display: flex;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.feature-check {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--success);
  background: var(--success-soft);
  font-size: 12px;
  font-weight: 900;
}

.feature-list strong {
  display: block;
  font-size: 14px;
}

.feature-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.order-card {
  position: sticky;
  top: 102px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.order-card-heading h2 {
  margin: 8px 0 22px;
  font-size: 26px;
  letter-spacing: -0.035em;
}

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

.package-option {
  display: grid;
  gap: 5px;
  min-height: 78px;
  padding: 13px;
  text-align: left;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: #fafbfc;
  transition: 0.15s ease;
}

.package-option span {
  color: #475467;
  font-size: 11px;
  font-weight: 700;
}

.package-option strong {
  font-size: 17px;
}

.package-option:hover {
  border-color: #9ab5f4;
}

.package-option.selected {
  border-color: var(--primary);
  background: var(--primary-soft);
  box-shadow:
    inset 0 0 0 1px
    var(--primary);
}

.target-field {
  margin-top: 22px;
}

.target-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 850;
}

.target-field input {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: #f8fafc;
}

.target-field small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.order-summary {
  display: grid;
  gap: 13px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 15px;
  background: #f8fafc;
}

.order-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.order-summary span {
  color: var(--muted);
  font-size: 11px;
}

.order-summary strong {
  text-align: right;
  font-size: 13px;
}

.order-summary .total-price {
  font-size: 22px;
}

.checkout-button {
  width: 100%;
  min-height: 52px;
  margin-top: 15px;
  border: 0;
  border-radius: 13px;
  color: white;
  background: #98a2b3;
  font-size: 13px;
  font-weight: 850;
  cursor: not-allowed;
}

.development-note {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 9px;
  line-height: 1.5;
}

.site-footer {
  padding: 37px 0;
  border-top: 1px solid var(--line);
  background: white;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.site-footer strong {
  font-size: 14px;
}

.site-footer p,
.footer-note {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.empty-state {
  padding: 30px;
  border: 1px dashed #cfd6e2;
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
  background: white;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}

.error-card {
  max-width: 520px;
  text-align: center;
}

.error-code {
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.error-card h1 {
  margin: 12px 0;
  font-size: 43px;
  letter-spacing: -0.045em;
}

.error-card p {
  margin-bottom: 25px;
  color: var(--muted);
}

@media (max-width: 900px) {

  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-card {
    max-width: 600px;
  }

  .platform-grid,
  .product-grid,
  .steps-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .order-card {
    position: static;
  }

}

@media (max-width: 640px) {

  .shell {
    width: min(
      100% - 24px,
      1180px
    );
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand small {
    display: none;
  }

  .nav-button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 11px;
  }

  .hero {
    padding: 57px 0;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .trust-row {
    gap: 21px;
  }

  .section {
    padding: 57px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 15px;
  }

  .platform-grid,
  .product-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .platform-hero {
    padding: 50px 0 40px;
  }

  .product-page {
    padding-top: 34px;
  }

  .product-information h1 {
    font-size: 41px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-option {
    min-height: 64px;
  }

  .footer-grid {
    display: block;
  }

  .footer-note {
    margin-top: 17px;
  }

}

/* =========================================================
   PUBLIC CHECKOUT V1
   ========================================================= */

.public-checkout-error {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  padding: 13px 15px;
  border: 1px solid #fecdca;
  border-radius: 12px;
  background: #fef3f2;
}

.public-checkout-error strong {
  color: #b42318;
  font-size: 13px;
}

.public-checkout-error span {
  color: #912018;
  font-size: 12px;
  line-height: 1.45;
}

.public-order-form {
  display: block;
}

.public-customer-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 17px;
}

.public-customer-grid label {
  display: block;
  color: #344054;
  font-size: 12px;
  font-weight: 800;
}

.public-customer-grid input {
  width: 100%;
  height: 48px;
  margin-top: 7px;
  padding: 0 13px;
  border: 1px solid #d0d5dd;
  border-radius: 11px;
  background: #fff;
  color: #101828;
  outline: none;
  box-sizing: border-box;
}

.public-customer-grid input:focus,
.target-field input:focus {
  border-color: #2f6bea;
  box-shadow:
    0 0 0 3px
    rgba(47, 107, 234, .10);
}

.public-checkout-note {
  margin: 12px 0 0;
  color: #667085;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
}

.checkout-button:disabled {
  opacity: .65;
  cursor: wait;
}

/* =========================================================
   PUBLIC ORDER CREATED
   ========================================================= */

.public-order-created-page {
  width: min(
    calc(100% - 32px),
    620px
  );
  margin: 0 auto;
  padding: 45px 0 70px;
}

.public-order-store-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: #2f6bea;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.public-order-created-card {
  padding: 30px;
  border: 1px solid #e4e7ec;
  border-radius: 22px;
  background: #fff;
  box-shadow:
    0 18px 50px
    rgba(16, 24, 40, .07);
}

.public-order-success-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  color: #067647;
  background: #ecfdf3;
  font-size: 25px;
  font-weight: 900;
}

.public-order-created-card h1 {
  margin: 7px 0 5px;
  color: #101828;
  font-size: 34px;
}

.public-order-number {
  margin: 0 0 25px;
  color: #667085;
  font-size: 14px;
}

.public-created-details {
  display: grid;
  border-top: 1px solid #eaecf0;
}

.public-created-details > div {
  min-height: 57px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #eaecf0;
}

.public-created-details span {
  color: #667085;
  font-size: 12px;
}

.public-created-details strong {
  max-width: 65%;
  color: #101828;
  text-align: right;
  font-size: 13px;
}

.public-payment-pending {
  color: #b54708 !important;
}

.public-order-safe-note {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  padding: 15px;
  border: 1px solid #fedf89;
  border-radius: 13px;
  background: #fffaeb;
}

.public-order-safe-note strong {
  color: #93370d;
  font-size: 12px;
}

.public-order-safe-note span {
  color: #7a2e0e;
  font-size: 11px;
  line-height: 1.5;
}

.public-order-continue-button {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  border-radius: 12px;
  color: #fff !important;
  background: #2f6bea;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none !important;
}

@media (max-width: 600px) {

  .public-customer-grid {
    grid-template-columns: 1fr;
  }

  .public-customer-grid input,
  .target-field input {
    font-size: 16px;
  }

  .public-order-created-page {
    width: calc(100% - 24px);
    padding-top: 25px;
  }

  .public-order-created-card {
    padding: 21px;
    border-radius: 18px;
  }

  .public-order-created-card h1 {
    font-size: 29px;
  }

}


/* =========================================================
   CUSTOMER ACCOUNT DASHBOARD
   ========================================================= */

.customer-account-page {
  min-height: calc(100vh - 90px);
  padding: 55px 0 80px;
}

.customer-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.customer-nav-actions form {
  margin: 0;
}

.customer-nav-link,
.customer-logout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 11px;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.customer-nav-link {
  color: inherit;
}

.customer-logout-button {
  border:
    1px solid rgba(255,255,255,.1);
  background:
    rgba(255,255,255,.04);
  color: inherit;
}

.customer-account-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 25px;
  margin-bottom: 30px;
}

.customer-account-hero h1 {
  margin: 10px 0 8px;
  font-size:
    clamp(32px, 5vw, 48px);
}

.customer-account-hero p {
  margin: 0;
  opacity: .65;
}

.customer-account-email {
  display: grid;
  gap: 4px;
  text-align: right;
}

.customer-account-email span {
  font-size: 12px;
  opacity: .55;
}

.customer-account-email strong {
  font-size: 14px;
}

.customer-account-summary {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-bottom: 45px;
}

.customer-summary-card {
  padding: 22px;
  border:
    1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background:
    rgba(255,255,255,.035);
}

.customer-summary-card span {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  opacity: .6;
}

.customer-summary-card strong {
  font-size: 28px;
}

.customer-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.customer-section-heading h2 {
  margin: 7px 0 0;
  font-size: 30px;
}

.customer-shop-button,
.customer-primary-button,
.customer-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
}

.customer-shop-button,
.customer-primary-button {
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #3b82f6
    );
  color: white;
}

.customer-secondary-button {
  border:
    1px solid rgba(255,255,255,.1);
  background:
    rgba(255,255,255,.04);
  color: inherit;
}

.customer-empty-orders {
  padding: 55px 25px;
  border:
    1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  text-align: center;
  background:
    rgba(255,255,255,.025);
}

.customer-empty-icon {
  margin-bottom: 12px;
  font-size: 38px;
}

.customer-empty-orders h3 {
  margin: 0 0 8px;
  font-size: 23px;
}

.customer-empty-orders p {
  max-width: 460px;
  margin: 0 auto 22px;
  opacity: .6;
  line-height: 1.6;
}

.customer-order-list {
  display: grid;
  gap: 12px;
}

.customer-order-card {
  padding: 19px 20px 15px;
  border:
    1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background:
    rgba(255,255,255,.03);
}

.customer-order-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom:
    1px solid rgba(255,255,255,.07);
}

.customer-order-card-top > div {
  min-width: 0;
}

.customer-order-number {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  opacity: .55;
}

.customer-order-card h3 {
  margin: 0 0 3px;
  font-size: 18px;
  line-height: 1.25;
}

.customer-order-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  opacity: .6;
}

.customer-order-price {
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}

.customer-order-status-row {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px 0 12px;
}

.customer-order-status-row > div {
  display: grid;
  align-content: start;
  gap: 5px;
}

.customer-order-status-row span,
.customer-order-detail-grid span,
.customer-order-progress span,
.customer-order-target > span {
  font-size: 12px;
  opacity: .55;
}

.customer-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: capitalize;
}

.customer-status-paid,
.customer-status-completed {
  background:
    rgba(46, 204, 113, .12);
  color: #72e5a2;
}

.customer-status-processing,
.customer-status-in-progress {
  background:
    rgba(59, 130, 246, .13);
  color: #8bb8ff;
}

.customer-status-pending {
  background:
    rgba(245, 158, 11, .13);
  color: #ffc766;
}

.customer-status-canceled,
.customer-status-cancelled,
.customer-status-failed {
  background:
    rgba(239, 68, 68, .12);
  color: #ff8b8b;
}

.customer-status-partial {
  background:
    rgba(168, 85, 247, .14);
  color: #cba0ff;
}

.customer-view-order-button {
  display: flex;
  width: fit-content;
  min-height: 36px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  border-radius: 10px;
  border:
    1px solid rgba(255,255,255,.09);
  background:
    rgba(255,255,255,.04);
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.customer-view-order-button::after {
  content: "→";
  font-size: 15px;
}

.customer-order-shell {
  max-width: 900px;
}

.customer-back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  opacity: .7;
}

.customer-order-detail-card {
  padding: 32px;
  border:
    1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background:
    rgba(255,255,255,.03);
}

.customer-order-detail-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom:
    1px solid rgba(255,255,255,.07);
}

.customer-order-detail-heading h1 {
  margin: 8px 0 6px;
  font-size:
    clamp(28px, 5vw, 40px);
}

.customer-order-detail-heading p {
  margin: 0;
  opacity: .6;
}

.customer-order-progress {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px 0;
}

.customer-order-progress > div {
  display: grid;
  gap: 8px;
}

.customer-order-detail-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.customer-order-detail-grid > div {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 17px;
  border-radius: 14px;
  background:
    rgba(255,255,255,.035);
}

.customer-order-detail-grid strong {
  overflow-wrap: anywhere;
}

.customer-order-target {
  margin-top: 14px;
  padding: 17px;
  border-radius: 14px;
  background:
    rgba(255,255,255,.035);
}

.customer-order-target > span {
  display: block;
  margin-bottom: 7px;
}

.customer-order-target div {
  overflow-wrap: anywhere;
  line-height: 1.5;
}

.customer-payment-notice {
  display: grid;
  gap: 5px;
  margin-top: 20px;
  padding: 17px;
  border-radius: 14px;
  border:
    1px solid rgba(245,158,11,.18);
  background:
    rgba(245,158,11,.07);
}

.customer-payment-notice span {
  font-size: 13px;
  opacity: .7;
}

.customer-order-detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

@media (max-width: 700px) {

  .customer-account-page {
    padding: 34px 0 60px;
  }

  .customer-account-hero {
    display: grid;
    align-items: start;
  }

  .customer-account-email {
    text-align: left;
  }

  .customer-account-summary {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .customer-summary-card {
    padding: 15px 12px;
  }

  .customer-summary-card span {
    font-size: 11px;
  }

  .customer-summary-card strong {
    font-size: 23px;
  }

  .customer-order-status-row {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .customer-order-detail-card {
    padding: 22px 17px;
  }

  .customer-order-detail-grid {
    grid-template-columns: 1fr;
  }

  .customer-order-detail-actions {
    display: grid;
  }

}

@media (max-width: 430px) {

  .customer-nav-actions {
    gap: 5px;
  }

  .customer-nav-link,
  .customer-logout-button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

  .customer-section-heading {
    align-items: center;
  }

  .customer-section-heading h2 {
    font-size: 25px;
  }

  .customer-shop-button {
    min-height: 42px;
    padding: 0 13px;
    font-size: 13px;
  }

  .customer-order-list {
    gap: 10px;
  }

  .customer-order-card {
    padding: 15px 14px 12px;
    border-radius: 16px;
  }

  .customer-order-card-top {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 12px;
  }

  .customer-order-card h3 {
    font-size: 17px;
  }

  .customer-order-card p {
    font-size: 12px;
  }

  .customer-order-price {
    font-size: 18px;
  }

  .customer-order-status-row {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    column-gap: 14px;
    row-gap: 11px;
    padding: 12px 0 10px;
  }

  .customer-order-status-row > div {
    gap: 4px;
  }

  .customer-order-status-row span {
    font-size: 11px;
  }

  .customer-order-status-row > div > strong:not(.customer-status) {
    font-size: 15px;
  }

  .customer-status {
    padding: 5px 8px;
    font-size: 11px;
  }

  .customer-view-order-button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .customer-order-progress {
    grid-template-columns: 1fr 1fr;
  }

}


/* =========================================================
   PUBLIC CUSTOMER HEADER ACTIONS
   ========================================================= */

.public-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.public-login-link,
.public-account-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 15px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.public-login-link {
  color: inherit;
  border:
    1px solid rgba(255,255,255,.09);
  background:
    rgba(255,255,255,.025);
}

.public-account-button {
  color: white;
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #3b82f6
    );
}

.public-order-created-actions {
  display: grid;
  gap: 11px;
  margin-top: 20px;
}

.public-order-created-actions
.public-order-continue-button {
  margin-top: 0;
}

.public-order-account-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 13px;
  border:
    1px solid rgba(37,99,235,.2);
  background:
    rgba(37,99,235,.08);
  color: #2563eb;
  font-weight: 800;
  text-decoration: none;
}

.customer-account-page,
.public-order-created-page {
  padding-bottom:
    calc(
      80px +
      env(safe-area-inset-bottom)
    );
}

@media (max-width: 760px) {

  .public-header-actions {
    gap: 7px;
  }

  .public-header-actions
  .public-shop-action {
    display: none;
  }

  .public-login-link,
  .public-account-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

}

@media (max-width: 430px) {

  .public-create-account {
    display: none;
  }

  .public-login-link,
  .public-account-button {
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
  }

}

/* =========================================================
   PUBLIC MOBILE POLISH V4
   ========================================================= */

@media (max-width: 760px) {

  .how-section {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .how-section .section-heading {
    margin-bottom: 24px !important;
  }

  .steps-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .steps-grid article {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: auto !important;

    padding: 24px 22px !important;

    display: block !important;

    border-radius: 20px !important;
  }

  .steps-grid article > span {
    display: block;
    margin-bottom: 18px !important;

    font-size: 14px !important;
    font-weight: 800;
  }

  .steps-grid article h3 {
    margin: 0 0 8px !important;
    font-size: 22px !important;
    line-height: 1.25 !important;
  }

  .steps-grid article p {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .site-footer {
    padding-top: 35px !important;
    padding-bottom:
      calc(
        35px +
        env(safe-area-inset-bottom)
      ) !important;
  }

  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .footer-grid p {
    margin-bottom: 0 !important;
  }

  .footer-note {
    font-size: 13px !important;
    opacity: .6;
  }

}

/* =========================================================
   ALL SERVICES PAGE
   ========================================================= */

.all-services-page {
  min-height: 70vh;
}

.services-page-hero {
  padding: 75px 0 55px;
  text-align: center;
}

.services-page-hero .shell {
  max-width: 850px;
}

.services-page-hero h1 {
  margin: 14px auto 18px;
  max-width: 780px;
  font-size:
    clamp(38px, 6vw, 66px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.services-page-hero p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.65;
  opacity: .65;
}

.services-catalog {
  padding-bottom: 90px;
}

.services-category-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;

  margin-bottom: 55px;
  padding: 5px 2px 12px;

  scrollbar-width: none;
}

.services-category-tabs::-webkit-scrollbar {
  display: none;
}

.services-category-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;

  min-height: 44px;
  padding: 0 16px;

  border:
    1px solid rgba(255,255,255,.08);

  border-radius: 999px;

  background:
    rgba(255,255,255,.04);

  color: inherit;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.services-category-section {
  scroll-margin-top: 110px;
  margin-bottom: 75px;
}

.services-category-section:last-child {
  margin-bottom: 0;
}

.services-category-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;

  margin-bottom: 22px;
}

.services-category-heading > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.services-category-icon {
  display: grid;
  place-items: center;

  width: 52px;
  height: 52px;

  border-radius: 16px;

  background:
    rgba(59,130,246,.1);

  font-size: 25px;
}

.services-category-heading h2 {
  margin: 5px 0 0;
  font-size: 30px;
}

.services-count {
  padding-bottom: 5px;
  font-size: 13px;
  opacity: .55;
}

@media (max-width: 700px) {

  .services-page-hero {
    padding: 50px 0 38px;
    text-align: left;
  }

  .services-page-hero h1 {
    margin-left: 0;
    font-size: 42px;
  }

  .services-page-hero p {
    margin-left: 0;
    font-size: 16px;
  }

  .services-category-tabs {
    margin-bottom: 40px;
  }

  .services-category-section {
    margin-bottom: 55px;
  }

  .services-category-heading {
    align-items: center;
  }

  .services-category-heading h2 {
    font-size: 25px;
  }

  .services-category-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .services-count {
    display: none;
  }

}

/* =========================================================
   LANDING PAGE V1
   ========================================================= */

.landing-body {
  overflow-x: hidden;
}

.landing-announcement {
  min-height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  padding: 8px 20px;

  background:
    linear-gradient(
      90deg,
      #2563eb,
      #3b82f6
    );

  color: white;

  font-size: 13px;
  font-weight: 750;

  text-align: center;
}

.landing-announcement a {
  color: white;
  font-weight: 850;
  text-decoration: none;
}

.landing-header {
  position: relative;
  z-index: 20;
}

.landing-desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.landing-desktop-nav a {
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  opacity: .72;
}

.landing-desktop-nav a:hover {
  opacity: 1;
}


/* HERO */

.landing-hero {
  position: relative;

  padding:
    100px 0
    95px;

  overflow: hidden;
}

.landing-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 72% 38%,
      rgba(59,130,246,.16),
      transparent 32%
    );
}

.landing-hero-grid {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(350px, .95fr);

  align-items: center;

  gap: 80px;
}

.landing-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  min-height: 38px;

  padding: 0 14px;

  border:
    1px solid rgba(59,130,246,.18);

  border-radius: 999px;

  background:
    rgba(59,130,246,.07);

  font-size: 13px;
  font-weight: 750;
}

.landing-status-pill > span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #34d399;

  box-shadow:
    0 0 0 5px
    rgba(52,211,153,.12);
}

.landing-hero-copy h1 {
  max-width: 720px;

  margin:
    22px 0
    22px;

  font-size:
    clamp(52px, 7vw, 86px);

  line-height: .96;

  letter-spacing: -.055em;
}

.landing-hero-copy h1 span {
  display: block;
  color: #3478f6;
}

.landing-hero-copy > p {
  max-width: 650px;

  margin: 0;

  font-size: 19px;
  line-height: 1.65;

  opacity: .65;
}

.landing-benefits {
  display: flex;
  flex-wrap: wrap;

  gap: 11px 22px;

  margin-top: 28px;
}

.landing-benefits span {
  font-size: 14px;
  font-weight: 700;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 34px;
}

.landing-primary-button,
.landing-secondary-button {
  min-height: 55px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 13px;

  padding: 0 23px;

  border-radius: 14px;

  font-weight: 850;
  text-decoration: none;
}

.landing-primary-button {
  color: white;

  background:
    linear-gradient(
      135deg,
      #2563eb,
      #3b82f6
    );

  box-shadow:
    0 16px 35px
    rgba(37,99,235,.18);
}

.landing-primary-button span {
  font-size: 20px;
}

.landing-secondary-button {
  color: inherit;

  border:
    1px solid rgba(16,24,40,.10);

  background:
    rgba(255,255,255,.78);
}


/* HERO CARD */

.landing-hero-visual {
  display: flex;
  justify-content: center;
}

.landing-order-preview {
  width: 100%;
  max-width: 470px;

  padding: 26px;

  border:
    1px solid rgba(16,24,40,.09);

  border-radius: 28px;

  background:
    rgba(255,255,255,.90);

  box-shadow:
    0 30px 90px
    rgba(16,24,40,.12);

  backdrop-filter:
    blur(18px);
}

.landing-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 20px;

  border-bottom:
    1px solid rgba(16,24,40,.07);

  font-size: 12px;
  font-weight: 750;
}

.landing-preview-top > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-preview-top > span {
  color: #16865c;
}

.landing-preview-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #34d399;
}

.landing-preview-platform {
  display: flex;
  align-items: center;

  gap: 15px;

  padding: 25px 0;
}

.landing-platform-logo {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  border-radius: 17px;

  background: #111827;
  color: white;

  font-size: 30px;
}

.landing-preview-platform small {
  display: block;
  margin-bottom: 3px;
  color: #667085;
}

.landing-preview-platform strong {
  font-size: 20px;
}

.landing-preview-package {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 10px;
}

.landing-preview-package > div {
  display: grid;
  gap: 6px;

  padding: 16px;

  border-radius: 15px;

  background: #f7f9fc;
}

.landing-preview-package span {
  color: #667085;
  font-size: 11px;
}

.landing-preview-package strong {
  font-size: 16px;
}

.landing-preview-progress {
  display: flex;
  align-items: center;

  margin: 27px 0;
}

.landing-preview-step {
  display: grid;
  justify-items: center;

  gap: 6px;

  flex: 0 0 auto;

  color: #98a2b3;

  font-size: 10px;
  font-weight: 750;
}

.landing-preview-step > span {
  width: 29px;
  height: 29px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #eef2f7;
}

.landing-preview-step.active {
  color: #2563eb;
}

.landing-preview-step.active > span {
  background: #2563eb;
  color: white;
}

.landing-preview-line {
  flex: 1;

  height: 2px;

  margin:
    0 8px
    16px;

  background: #eef2f7;
}

.landing-preview-button {
  min-height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: #111827;
  color: white;

  font-weight: 800;
  text-decoration: none;
}


/* TRUST */

.landing-trust-strip {
  border-top:
    1px solid rgba(16,24,40,.06);

  border-bottom:
    1px solid rgba(16,24,40,.06);

  background:
    rgba(255,255,255,.62);
}

.landing-trust-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);
}

.landing-trust-grid > div {
  padding: 29px;

  text-align: center;

  border-right:
    1px solid rgba(16,24,40,.06);
}

.landing-trust-grid > div:last-child {
  border-right: 0;
}

.landing-trust-grid strong {
  display: block;

  margin-bottom: 4px;

  font-size: 19px;
}

.landing-trust-grid span {
  font-size: 13px;
  opacity: .55;
}


/* SECTIONS */

.landing-section {
  padding: 95px 0;
}

.landing-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 35px;
}

.landing-section-heading h2,
.landing-centered-heading h2 {
  margin:
    9px 0
    0;

  font-size:
    clamp(34px, 5vw, 52px);

  line-height: 1.05;

  letter-spacing: -.035em;
}

.landing-section-heading > a {
  color: #2563eb;

  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}


/* PLATFORM GRID */

.landing-platform-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 14px;
}

.landing-platform-card {
  display: flex;
  align-items: center;

  gap: 14px;

  min-width: 0;

  padding: 19px;

  border:
    1px solid rgba(16,24,40,.08);

  border-radius: 18px;

  background: white;

  color: inherit;

  text-decoration: none;
}

.landing-platform-card-icon {
  width: 48px;
  height: 48px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border-radius: 14px;

  background: #f3f6fb;

  font-size: 23px;
}

.landing-platform-card > div {
  display: grid;
  gap: 3px;

  min-width: 0;
}

.landing-platform-card strong {
  font-size: 16px;
}

.landing-platform-card div span {
  font-size: 12px;
  opacity: .55;
}

.landing-platform-arrow {
  margin-left: auto;

  color: #2563eb;

  font-size: 20px;
}


/* DARK HOW IT WORKS */

.landing-section-dark {
  background: #101828;
  color: white;
}

.landing-centered-heading {
  max-width: 720px;

  margin:
    0 auto
    45px;

  text-align: center;
}

.landing-centered-heading p {
  margin:
    14px 0
    0;

  opacity: .55;
}

.landing-steps {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 15px;
}

.landing-steps article {
  min-height: 245px;

  padding: 27px;

  border:
    1px solid rgba(255,255,255,.10);

  border-radius: 20px;

  background:
    rgba(255,255,255,.045);
}

.landing-step-number {
  display: block;

  margin-bottom: 45px;

  color: #83aaff;

  font-size: 14px;
  font-weight: 900;
}

.landing-steps h3 {
  margin:
    0 0
    10px;

  font-size: 21px;
}

.landing-steps p {
  margin: 0;

  line-height: 1.6;

  opacity: .57;
}


/* FEATURES */

.landing-feature-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 15px;
}

.landing-feature-grid article {
  padding: 27px;

  border:
    1px solid rgba(16,24,40,.08);

  border-radius: 20px;

  background: white;
}

.landing-feature-grid article > span {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  margin-bottom: 23px;

  border-radius: 13px;

  background:
    rgba(59,130,246,.09);

  font-size: 20px;
}

.landing-feature-grid h3 {
  margin:
    0 0
    9px;

  font-size: 20px;
}

.landing-feature-grid p {
  margin: 0;

  line-height: 1.6;

  opacity: .58;
}


/* CTA */

.landing-cta-section {
  padding:
    20px 0
    95px;
}

.landing-cta-card {
  padding:
    65px
    30px;

  border-radius: 30px;

  background:
    linear-gradient(
      135deg,
      #101828,
      #172554
    );

  color: white;

  text-align: center;
}

.landing-cta-card h2 {
  max-width: 650px;

  margin:
    10px auto
    14px;

  font-size:
    clamp(36px, 6vw, 58px);

  line-height: 1.02;
}

.landing-cta-card p {
  margin:
    0 auto
    25px;

  opacity: .6;
}

.landing-cta-card
.landing-primary-button {
  margin: 0 auto;
}


/* FAQ */

.landing-faq-shell {
  max-width: 850px;
}

.landing-faq-list {
  display: grid;
  gap: 10px;
}

.landing-faq-list details {
  padding: 20px 22px;

  border:
    1px solid rgba(16,24,40,.08);

  border-radius: 16px;

  background: white;
}

.landing-faq-list summary {
  cursor: pointer;

  font-weight: 800;
}

.landing-faq-list p {
  margin:
    14px 0
    0;

  line-height: 1.6;

  opacity: .6;
}


/* FOOTER */

.landing-footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 20px;

  font-size: 13px;
}

.landing-footer-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.landing-footer-links span {
  opacity: .55;
}


/* TABLET + MOBILE */

@media (max-width: 900px) {

  .landing-desktop-nav {
    display: none;
  }

  .landing-hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .landing-hero-copy {
    text-align: center;
  }

  .landing-status-pill {
    margin: 0 auto;
  }

  .landing-hero-copy h1,
  .landing-hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-benefits,
  .landing-hero-actions {
    justify-content: center;
  }

  .landing-platform-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 700px) {

  .landing-announcement {
    justify-content: center;
    min-height: 38px;
    font-size: 11px;
  }

  .landing-announcement a {
    display: none;
  }

  .landing-hero {
    padding:
      65px 0
      60px;
  }

  .landing-hero-grid {
    gap: 42px;
  }

  .landing-hero-copy {
    text-align: center;
  }

  .landing-hero-copy h1 {
    margin-top: 19px;

    font-size:
      clamp(48px, 13vw, 64px);

    line-height: .97;
  }

  .landing-hero-copy > p {
    font-size: 16px;
  }

  .landing-benefits {
    gap: 10px 15px;

    font-size: 13px;
  }

  .landing-hero-actions {
    display: grid;
  }

  .landing-primary-button,
  .landing-secondary-button {
    width: 100%;
    box-sizing: border-box;
  }

  .landing-order-preview {
    max-width: none;

    padding: 21px;

    border-radius: 23px;
  }

  .landing-trust-grid > div {
    padding:
      22px 8px;
  }

  .landing-trust-grid strong {
    font-size: 16px;
  }

  .landing-trust-grid span {
    font-size: 11px;
  }

  .landing-section {
    padding: 65px 0;
  }

  .landing-section-heading {
    display: grid;
    gap: 12px;

    margin-bottom: 25px;
  }

  .landing-section-heading h2,
  .landing-centered-heading h2 {
    font-size: 36px;
  }

  .landing-platform-grid {
    grid-template-columns: 1fr;
  }

  .landing-centered-heading {
    margin-bottom: 28px;
  }

  .landing-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .landing-steps article {
    min-height: 0;

    padding: 23px 21px;
  }

  .landing-step-number {
    margin-bottom: 20px;
  }

  .landing-feature-grid {
    grid-template-columns: 1fr;
  }

  .landing-cta-section {
    padding:
      5px 0
      65px;
  }

  .landing-cta-card {
    padding:
      48px 22px;

    border-radius: 24px;
  }

  .landing-footer-links {
    align-items: flex-start;
    justify-content: flex-start;

    flex-wrap: wrap;
  }

}


@media (max-width: 430px) {

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

  .landing-status-pill {
    min-height: 34px;

    font-size: 11px;
  }

  .landing-benefits span {
    font-size: 12px;
  }

}

/* =========================================================
   HOW IT WORKS V2
   ========================================================= */

.landing-how-v2 {
  position: relative;
  overflow: hidden;
}

.landing-how-v2::before {
  content: "";

  position: absolute;
  width: 520px;
  height: 520px;

  top: -230px;
  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(59,130,246,.15),
      transparent 68%
    );

  pointer-events: none;
}

.landing-how-v2 .shell {
  position: relative;
  z-index: 1;
}

.landing-how-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1.3fr)
    minmax(260px, .7fr);

  align-items: end;

  gap: 50px;

  margin-bottom: 44px;
}

.landing-how-heading h2 {
  max-width: 670px;

  margin: 10px 0 0;

  font-size:
    clamp(40px, 5vw, 58px);

  line-height: 1;

  letter-spacing: -.045em;
}

.landing-how-heading h2 span {
  color: #7da7ff;
}

.landing-how-heading > p {
  margin: 0;

  max-width: 430px;

  line-height: 1.65;

  color:
    rgba(255,255,255,.55);
}


/* GRID */

.landing-how-steps {
  display: grid;

  grid-template-columns:
    minmax(0,1fr)
    46px
    minmax(0,1fr)
    46px
    minmax(0,1fr);

  align-items: stretch;

  gap: 0;
}


/* CARD */

.landing-how-card {
  position: relative;

  min-width: 0;

  padding: 28px;

  border:
    1px solid
    rgba(255,255,255,.10);

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.075),
      rgba(255,255,255,.025)
    );

  box-shadow:
    inset 0 1px 0
    rgba(255,255,255,.04);
}

.landing-how-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 34px;
}

.landing-how-number {
  color: #8eb1ff;

  font-size: 15px;
  font-weight: 900;

  letter-spacing: .05em;
}

.landing-how-icon {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border:
    1px solid
    rgba(125,167,255,.18);

  border-radius: 14px;

  background:
    rgba(59,130,246,.11);

  color: #a8c2ff;

  font-size: 19px;
  font-weight: 900;
}

.landing-how-label {
  display: block;

  margin-bottom: 8px;

  color: #709cff;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .16em;
}

.landing-how-card h3 {
  margin:
    0 0
    12px;

  font-size: 24px;

  line-height: 1.15;
}

.landing-how-card p {
  min-height: 76px;

  margin: 0;

  line-height: 1.65;

  color:
    rgba(255,255,255,.56);
}


/* TAGS */

.landing-how-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 6px;

  margin-top: 24px;
}

.landing-how-tags span,
.landing-how-feature {
  display: inline-flex;
  align-items: center;

  min-height: 31px;

  padding: 0 10px;

  border:
    1px solid
    rgba(255,255,255,.07);

  border-radius: 999px;

  background:
    rgba(255,255,255,.045);

  color:
    rgba(255,255,255,.72);

  font-size: 11px;
  font-weight: 700;
}

.landing-how-feature {
  margin-top: 24px;
}


/* CONNECTOR */

.landing-how-connector {
  display: grid;
  place-items: center;

  position: relative;
}

.landing-how-connector::before {
  content: "";

  position: absolute;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(125,167,255,.12),
      rgba(125,167,255,.5),
      rgba(125,167,255,.12)
    );
}

.landing-how-connector span {
  position: relative;
  z-index: 2;

  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #17233a;
  color: #8eb1ff;

  font-size: 14px;
}


/* BOTTOM CTA */

.landing-how-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  margin-top: 30px;

  padding: 23px 25px;

  border:
    1px solid
    rgba(255,255,255,.08);

  border-radius: 20px;

  background:
    rgba(255,255,255,.035);
}

.landing-how-bottom > div {
  display: grid;
  gap: 4px;
}

.landing-how-bottom strong {
  font-size: 16px;
}

.landing-how-bottom > div span {
  color:
    rgba(255,255,255,.5);

  font-size: 13px;
}


/* MOBILE */

@media (max-width: 760px) {

  .landing-how-v2 {
    padding:
      70px 0 !important;
  }

  .landing-how-heading {
    display: block;

    margin-bottom: 30px;

    text-align: left;
  }

  .landing-how-heading h2 {
    max-width: 500px;

    font-size: 40px;

    line-height: 1.02;
  }

  .landing-how-heading > p {
    margin-top: 17px;

    font-size: 15px;
  }

  .landing-how-steps {
    display: grid;

    grid-template-columns: 1fr;

    gap: 0;
  }

  .landing-how-card {
    min-height: 0;

    padding: 24px 22px;

    border-radius: 22px;
  }

  .landing-how-card-top {
    margin-bottom: 22px;
  }

  .landing-how-card h3 {
    font-size: 24px;
  }

  .landing-how-card p {
    min-height: 0;

    font-size: 15px;
  }

  .landing-how-connector {
    width: 40px;
    height: 36px;

    margin-left: 27px;
  }

  .landing-how-connector::before {
    width: 1px;
    height: 100%;
  }

  .landing-how-connector span {
    width: 24px;
    height: 24px;

    transform: rotate(90deg);

    font-size: 12px;
  }

  .landing-how-tags,
  .landing-how-feature {
    margin-top: 20px;
  }

  .landing-how-bottom {
    display: grid;

    margin-top: 28px;

    padding: 21px;

    text-align: left;
  }

  .landing-how-bottom
  .landing-primary-button {
    width: 100%;
  }

}

/* =========================================================
   LANGUAGE SWITCHER
   ========================================================= */

.language-switcher {
  min-height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 6px;

  padding: 0 10px;

  border:
    1px solid rgba(16,24,40,.09);

  border-radius: 999px;

  background:
    rgba(255,255,255,.72);

  font-size: 11px;
  font-weight: 800;
}

.language-switcher a {
  color: inherit;
  text-decoration: none;
  opacity: .4;
}

.language-switcher a.active {
  color: #2563eb;
  opacity: 1;
}

.language-switcher > span {
  opacity: .25;
}

@media (max-width: 430px) {

  .language-switcher {
    min-height: 36px;
    padding: 0 9px;
  }

}


/* =========================================================
   CUSTOMER SUPPORT / HELEKET MODERATION
   ========================================================= */

.public-support-footer {
  padding:
    28px
    20px;

  background:
    #08111f;

  color:
    #fff;
}

.public-support-footer-inner {
  width:
    min(
      1180px,
      calc(100% - 10px)
    );

  margin:
    0 auto;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    24px;
}

.public-support-footer-inner > div:first-child {
  display:
    grid;

  gap:
    5px;
}

.public-support-footer strong {
  font-size:
    16px;

  font-weight:
    800;
}

.public-support-footer span {
  color:
    rgba(255,255,255,.68);

  font-size:
    14px;
}

.public-support-footer-actions {
  display:
    flex;

  align-items:
    center;

  gap:
    10px;

  flex-wrap:
    wrap;
}

.public-support-footer-actions a {
  min-height:
    42px;

  padding:
    0 16px;

  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  border:
    1px solid rgba(255,255,255,.15);

  border-radius:
    12px;

  color:
    #fff;

  text-decoration:
    none;

  font-size:
    13px;

  font-weight:
    800;
}

.public-support-footer-actions a:last-child {
  background:
    #2874f0;

  border-color:
    #2874f0;
}

@media (max-width: 700px) {

  .public-support-footer-inner {
    display:
      grid;
  }

  .public-support-footer-actions {
    display:
      grid;

    grid-template-columns:
      1fr;

    width:
      100%;
  }

  .public-support-footer-actions a {
    width:
      100%;
  }


}

/* =========================================================
   PUBLIC HEADER MOBILE FIX
   ========================================================= */

@media (max-width: 700px) {

  .public-header {
    width: 100%;
    overflow: hidden;
  }

  .public-header-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 14px 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;
    box-sizing: border-box;
  }

  .public-brand {
    min-width: 0;
    flex: 1;

    display: flex;
    align-items: center;

    gap: 10px;
  }

  .public-brand-mark {
    flex: 0 0 auto;
  }

  .public-brand strong {
    display: block;

    max-width: 120px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .public-header-actions {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 8px;
  }

  .public-header-link {
    white-space: nowrap;
  }

  .language-switcher {
    flex: 0 0 auto;
  }

}

@media (max-width: 430px) {

  .public-header-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .public-brand strong {
    max-width: 105px;
  }

  .public-header-actions {
    gap: 6px;
  }

}


/* =========================================================
   CUSTOMER REVIEWS
   ========================================================= */

.landing-reviews-section {
  overflow: hidden;

  padding:
    96px 0;

  background:
    #f7f9fc;
}

.landing-reviews-heading {
  margin-bottom:
    42px;

  display:
    grid;

  grid-template-columns:
    1.3fr .7fr;

  align-items:
    end;

  gap:
    40px;
}

.landing-reviews-heading h2 {
  max-width:
    650px;

  margin:
    10px 0 0;

  color:
    #0b1424;

  font-size:
    clamp(
      40px,
      6vw,
      68px
    );

  line-height:
    .98;

  letter-spacing:
    -.045em;
}

.landing-reviews-heading > p {
  max-width:
    420px;

  margin:
    0;

  color:
    #687386;

  font-size:
    16px;

  line-height:
    1.7;
}

.landing-reviews-track {
  display:
    grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap:
    18px;
}

.landing-review-card {
  min-height:
    310px;

  padding:
    30px;

  display:
    flex;

  flex-direction:
    column;

  border:
    1px solid #dfe5ed;

  border-radius:
    26px;

  background:
    #fff;

  box-shadow:
    0 18px 50px
    rgba(15,23,42,.06);

  position:
    relative;

  overflow:
    hidden;
}

.landing-review-card::before {
  content:
    "";

  position:
    absolute;

  top:
    0;

  left:
    0;

  right:
    0;

  height:
    5px;

  background:
    linear-gradient(
      90deg,
      #2563eb,
      #60a5fa
    );
}

.landing-review-placeholder-icon {
  width:
    46px;

  height:
    46px;

  display:
    grid;

  place-items:
    center;

  border-radius:
    14px;

  background:
    #edf5ff;

  color:
    #2874f0;

  font-size:
    22px;
}

.landing-review-card > p {
  margin:
    28px 0 36px;

  color:
    #263244;

  font-size:
    19px;

  line-height:
    1.65;

  flex:
    1;
}

.landing-review-author {
  padding-top:
    20px;

  display:
    flex;

  align-items:
    center;

  gap:
    13px;

  border-top:
    1px solid #e5e9ef;
}

.landing-review-avatar {
  width:
    48px;

  height:
    48px;

  display:
    grid;

  place-items:
    center;

  flex:
    0 0 auto;

  border-radius:
    50%;

  background:
    #0b1424;

  color:
    #fff;

  font-size:
    12px;

  font-weight:
    900;
}

.landing-review-author > div:last-child {
  display:
    grid;

  gap:
    3px;
}

.landing-review-author strong {
  color:
    #111827;

  font-size:
    15px;
}

.landing-review-author span {
  color:
    #8993a3;

  font-size:
    13px;
}

.landing-reviews-swipe-hint {
  display:
    none;
}


/* MOBILE REVIEW CAROUSEL */

@media (max-width: 760px) {

  .landing-reviews-section {
    padding:
      72px 0;
  }

  .landing-reviews-heading {
    margin-bottom:
      30px;

    display:
      block;
  }

  .landing-reviews-heading h2 {
    max-width:
      360px;

    font-size:
      46px;
  }

  .landing-reviews-heading > p {
    margin-top:
      18px;
  }

  .landing-reviews-track {
    width:
      calc(100% + 20px);

    display:
      flex;

    gap:
      14px;

    overflow-x:
      auto;

    scroll-snap-type:
      x mandatory;

    overscroll-behavior-x:
      contain;

    scrollbar-width:
      none;

    padding:
      4px 42px 20px 0;
  }

  .landing-reviews-track::-webkit-scrollbar {
    display:
      none;
  }

  .landing-review-card {
    min-width:
      min(
        86vw,
        390px
      );

    min-height:
      300px;

    padding:
      26px;

    scroll-snap-align:
      start;
  }

  .landing-reviews-swipe-hint {
    margin-top:
      4px;

    display:
      flex;

    align-items:
      center;

    justify-content:
      center;

    gap:
      10px;

    color:
      #8b95a5;

    font-size:
      12px;

    font-weight:
      700;
  }

  .landing-reviews-swipe-hint span {
    color:
      #2874f0;
  }

}


@media (max-width: 430px) {

  .landing-reviews-heading h2 {
    font-size:
      41px;
  }

  .landing-review-card {
    min-width:
      84vw;

    border-radius:
      22px;
  }

}

/* REAL CUSTOMER REVIEWS */

.landing-review-stars {
  color: #f5b301;

  font-size: 24px;

  letter-spacing: 2px;
}

.landing-review-avatar {
  overflow: hidden;
}

.landing-review-avatar img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.landing-review-avatar > span {
  color: #fff;
  font-weight: 900;
}



/* =========================================================
   PLATFORM STORE GRID V2
   ========================================================= */

.fp-platform-shop {
  min-height: 100vh;
  background: #f6f8fc;
}


/* HEADER */

.fp-platform-shop-header {
  padding: 34px 0 22px;
  background: #fff;
  border-bottom: 1px solid #e7ebf2;
}

.fp-platform-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-bottom: 26px;

  color: #667085;

  font-size: 13px;
  font-weight: 750;

  text-decoration: none;
}

.fp-platform-back:hover {
  color: #2563eb;
}


.fp-platform-title-row {
  display: grid;

  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 20px;
}


.fp-platform-title-icon {
  width: 76px;
  height: 76px;

  display: grid;
  place-items: center;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #2563eb,
      #0f172a
    );

  color: #fff;

  font-size: 28px;
  font-weight: 900;

  box-shadow:
    0 15px 35px
    rgba(37, 99, 235, .18);
}


.fp-platform-label {
  display: block;

  margin-bottom: 5px;

  color: #2563eb;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .13em;
}


.fp-platform-title-copy h1 {
  margin: 0;

  color: #101828;

  font-size: clamp(
    30px,
    5vw,
    48px
  );

  line-height: 1;
}


.fp-platform-title-copy p {
  max-width: 620px;

  margin: 10px 0 0;

  color: #667085;

  font-size: 14px;
  line-height: 1.6;
}


.fp-platform-service-count {
  min-width: 95px;

  padding: 13px 17px;

  display: grid;

  text-align: center;

  border: 1px solid #e4e7ec;
  border-radius: 16px;

  background: #f8fafc;
}


.fp-platform-service-count strong {
  color: #101828;

  font-size: 22px;
}


.fp-platform-service-count span {
  margin-top: 2px;

  color: #667085;

  font-size: 9px;
  font-weight: 750;
}


/* PLATFORM SWITCHER */

.fp-platform-switcher {
  margin-top: 28px;

  display: flex;
  gap: 9px;

  overflow-x: auto;

  padding-bottom: 4px;

  scrollbar-width: none;
}

.fp-platform-switcher::-webkit-scrollbar {
  display: none;
}


.fp-platform-switch {
  min-width: max-content;

  padding: 8px 13px;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  border: 1px solid #e4e7ec;
  border-radius: 999px;

  background: #fff;

  color: #475467;

  text-decoration: none;

  font-size: 11px;
  font-weight: 750;
}


.fp-platform-switch > span {
  width: 25px;
  height: 25px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #f2f4f7;

  font-size: 11px;
}


.fp-platform-switch.active {
  border-color: #bfd5ff;

  background: #eff6ff;

  color: #175cd3;
}


.fp-platform-switch.active > span {
  background: #dbeafe;
}


/* PRODUCTS */

.fp-platform-products {
  padding: 30px 0 56px;
}


.fp-platform-product-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 20px;
}


.fp-service-card {
  min-width: 0;
}


.fp-service-card-link {
  height: 100%;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border: 1px solid #e2e8f0;
  border-radius: 24px;

  background: #fff;

  color: inherit;

  text-decoration: none;

  box-shadow:
    0 12px 30px
    rgba(15, 23, 42, .05);

  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}


a.fp-service-card-link:hover {
  transform: translateY(-3px);

  border-color: #bfd0ee;

  box-shadow:
    0 18px 42px
    rgba(15, 23, 42, .09);
}


/* VISUAL TILE */

.fp-service-visual {
  position: relative;

  aspect-ratio: 1.18 / 1;

  margin: 13px 13px 0;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  border-radius: 19px;

  color: #fff;

  background:
    linear-gradient(
      145deg,
      #2563eb 0%,
      #3b82f6 45%,
      #111827 120%
    );
}


.fp-service-visual-followers {
  background:
    linear-gradient(
      145deg,
      #2563eb,
      #7c3aed
    );
}


.fp-service-visual-likes {
  background:
    linear-gradient(
      145deg,
      #2563eb,
      #db2777
    );
}


.fp-service-visual-views {
  background:
    linear-gradient(
      145deg,
      #0f172a,
      #2563eb
    );
}


.fp-service-visual-comments {
  background:
    linear-gradient(
      145deg,
      #2563eb,
      #0891b2
    );
}


.fp-service-visual-shares {
  background:
    linear-gradient(
      145deg,
      #1d4ed8,
      #475569
    );
}


.fp-service-platform-name {
  padding: 13px;

  display: flex;
  align-items: center;

  gap: 7px;

  font-size: 10px;
}


.fp-service-platform-name span {
  width: 27px;
  height: 27px;

  display: grid;
  place-items: center;

  border-radius: 9px;

  background:
    rgba(255,255,255,.16);

  backdrop-filter:
    blur(10px);
}


.fp-service-main-icon {
  margin: auto;

  width: 94px;
  height: 94px;

  display: grid;
  place-items: center;

  border-radius: 28px;

  background:
    rgba(255,255,255,.16);

  border:
    1px solid
    rgba(255,255,255,.18);

  backdrop-filter:
    blur(8px);

  font-size: 42px;
  font-weight: 900;
}


.fp-service-badge {
  position: absolute;

  top: 10px;
  right: 10px;

  z-index: 2;

  max-width: 50%;

  padding: 6px 9px;

  overflow: hidden;

  border-radius: 999px;

  background: #fff;

  color: #1d4ed8;

  font-size: 9px;
  font-weight: 900;

  text-overflow: ellipsis;
  white-space: nowrap;

  box-shadow:
    0 6px 20px
    rgba(15,23,42,.12);
}


/* CARD CONTENT */

.fp-service-content {
  padding: 16px;

  display: flex;
  flex: 1;
  flex-direction: column;
}


.fp-service-content h2 {
  margin: 0;

  color: #101828;

  font-size: 19px;
  line-height: 1.25;
}


.fp-service-content p {
  margin: 8px 0 16px;

  color: #667085;

  font-size: 12px;
  line-height: 1.55;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
}


.fp-service-card-bottom {
  margin-top: auto;

  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 12px;
}


.fp-service-price {
  min-width: 0;

  display: grid;
  gap: 3px;
}


.fp-service-price span {
  color: #667085;

  font-size: 9px;
  font-weight: 700;
}


.fp-service-price strong {
  color: #101828;

  font-size: 22px;
  line-height: 1;
}


.fp-service-arrow {
  width: 38px;
  height: 38px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: #101828;

  color: #fff;

  font-size: 17px;
}


.fp-coming-soon {
  color: #98a2b3 !important;

  font-size: 13px !important;
}


.fp-service-card.is-unavailable
.fp-service-card-link {
  opacity: .72;
}


.fp-service-card.is-unavailable
.fp-service-visual {
  filter: grayscale(.25);
}


/* EMPTY */

.fp-platform-empty {
  padding: 48px 24px;

  display: grid;
  justify-items: center;

  border: 1px solid #e4e7ec;
  border-radius: 22px;

  background: #fff;

  text-align: center;
}


.fp-platform-empty > div {
  width: 64px;
  height: 64px;

  display: grid;
  place-items: center;

  border-radius: 18px;

  background: #eff6ff;

  color: #2563eb;

  font-size: 25px;
}


.fp-platform-empty h2 {
  margin: 16px 0 5px;

  color: #101828;
}


.fp-platform-empty p {
  margin: 0;

  color: #667085;
}


/* TABLET */

@media (max-width: 950px) {

  .fp-platform-product-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* MOBILE */

@media (max-width: 720px) {

  /* HEADER */

  .fp-platform-shop-header {
    padding: 18px 0 14px;
  }


  .fp-platform-back {
    margin-bottom: 14px;
    font-size: 10px;
  }


  .fp-platform-title-row {
    grid-template-columns:
      56px
      minmax(0, 1fr);

    align-items: center;

    gap: 12px;
  }


  .fp-platform-title-icon {
    width: 54px;
    height: 54px;

    border-radius: 16px;

    font-size: 20px;
  }


  .fp-platform-title-copy h1 {
    font-size: 25px;
    line-height: 1;
  }


  .fp-platform-title-copy p {
    margin-top: 5px;

    font-size: 10px;
    line-height: 1.4;
  }


  /* KEEP SERVICE COUNT VISIBLE */

  .fp-platform-service-count {
    display: inline-flex;

    grid-column: 2;

    justify-self: start;

    width: fit-content;

    margin-top: 6px;

    padding: 5px 8px;

    border-radius: 999px;

    font-size: 7px;
  }


  .fp-platform-service-count strong {
    font-size: 9px;
  }


  .fp-platform-service-count span {
    font-size: 7px;
  }


  /* PLATFORM TABS */

  .fp-platform-switcher {
    margin-top: 15px;

    padding: 0;

    border: 0;

    background: transparent;

    box-shadow: none;
  }


  /* PRODUCTS */

  .fp-platform-products {
    padding: 20px 0 45px;

    background: transparent;
  }


  .fp-platform-product-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    align-items: start;

    gap:
      18px 12px;
  }


  /* REMOVE LARGE WHITE PRODUCT CARD */

  .fp-service-card {
    min-width: 0;

    height: auto;

    align-self: start;
  }


  .fp-service-card-link {
    display: block;

    height: auto;
    min-height: 0;

    overflow: visible;

    padding: 0;

    border: 0;
    border-radius: 0;

    background: transparent;

    box-shadow: none;
  }


  a.fp-service-card-link:hover {
    transform: none;

    border-color: transparent;

    box-shadow: none;
  }


  /* SMALL VISUAL */

  .fp-service-visual {
    width: 100%;
    max-width: 124px;

    height: auto;

    aspect-ratio: 1 / 1;

    margin:
      0 auto 8px;

    border-radius: 15px;
  }


  .fp-service-platform-name {
    display: none;
  }


  .fp-service-main-icon {
    width: 44px;
    height: 44px;

    border-radius: 13px;

    font-size: 22px;
  }


  .fp-service-badge {
    top: 7px;
    right: 7px;

    max-width: 66px;

    padding: 4px 6px;

    font-size: 6px;

    line-height: 1;
  }


  /* TEXT */

  .fp-service-content {
    display: block;

    min-width: 0;

    padding: 0;
  }


  .fp-service-content h2 {
    display: -webkit-box;

    margin: 0 0 4px;

    overflow: hidden;

    color: #321323;

    font-size: 11px;
    font-weight: 800;

    line-height: 1.18;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }


  .fp-service-content p {
    display: -webkit-box;

    margin: 0 0 7px;

    overflow: hidden;

    color: #806d78;

    font-size: 7.5px;

    line-height: 1.3;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }


  /* PRICE, NO LARGE BOX */

  .fp-service-card-bottom {
    display: block;

    width: 100%;

    margin: 0;

    padding: 0;

    background: transparent;

    border: 0;

    box-shadow: none;
  }


  .fp-service-price {
    display: grid;

    grid-template-columns: 1fr;

    gap: 2px;

    width: 100%;

    margin: 0;

    padding: 0;
  }


  .fp-service-price span {
    color: #a18391;

    font-size: 6px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: .08em;

    text-transform: uppercase;
  }


  .fp-service-price strong {
    color: #321323;

    font-size: 12px;
    font-weight: 850;

    line-height: 1.05;

    white-space: nowrap;
  }


  .fp-coming-soon {
    max-width: 100%;

    overflow: hidden;

    color: #6d5964 !important;

    font-size: 9px !important;
    font-weight: 800;

    line-height: 1.1;

    white-space: nowrap;

    text-overflow: ellipsis;
  }


  /* NO LARGE ARROW */

  .fp-service-arrow {
    display: none;
  }

}


/* VERY SMALL PHONES */

@media (max-width: 360px) {

  .fp-platform-product-grid {
    gap:
      16px 10px;
  }


  .fp-service-visual {
    max-width: 112px;
  }


  .fp-service-content h2 {
    font-size: 10px;
  }


  .fp-service-content p {
    font-size: 7px;
  }


  .fp-service-price strong {
    font-size: 11px;
  }


  .fp-coming-soon {
    font-size: 8.5px !important;
  }

}


/* =========================================================
   SERVICES PLATFORM PICKER
   ========================================================= */

.fp-services-hub {
  min-height: 100vh;
  background: #f6f8fc;
}


/* HERO */

.fp-services-hub-hero {
  padding: 45px 0 32px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8faff 100%
    );

  border-bottom:
    1px solid #e7ebf2;
}


.fp-services-hub-eyebrow {
  display: block;

  margin-bottom: 10px;

  color: #2563eb;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: .15em;
}


.fp-services-hub-hero h1 {
  max-width: 760px;

  margin: 0;

  color: #101828;

  font-size: clamp(
    34px,
    7vw,
    58px
  );

  line-height: 1.02;

  letter-spacing: -.035em;
}


.fp-services-hub-hero > .shell > p {
  max-width: 680px;

  margin: 15px 0 0;

  color: #667085;

  font-size: 16px;
  line-height: 1.65;
}


.fp-services-hub-summary {
  margin-top: 25px;

  display: flex;

  gap: 10px;
}


.fp-services-hub-summary > div {
  min-width: 105px;

  padding: 11px 15px;

  display: grid;

  border: 1px solid #e4e7ec;
  border-radius: 14px;

  background: #fff;
}


.fp-services-hub-summary strong {
  color: #101828;

  font-size: 19px;
}


.fp-services-hub-summary span {
  margin-top: 2px;

  color: #667085;

  font-size: 9px;
  font-weight: 750;
}


/* GRID */

.fp-platform-picker {
  padding: 28px 0 60px;
}


.fp-platform-picker-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 20px;
}


.fp-platform-picker-card {
  min-width: 0;
}


.fp-platform-picker-link {
  height: 100%;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border:
    1px solid #e2e8f0;

  border-radius: 25px;

  background: #fff;

  color: inherit;

  text-decoration: none;

  box-shadow:
    0 12px 32px
    rgba(15, 23, 42, .05);

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}


.fp-platform-picker-link:hover {
  transform:
    translateY(-4px);

  border-color:
    #bfd0ee;

  box-shadow:
    0 20px 48px
    rgba(15, 23, 42, .09);
}


/* COLORFUL TOP */

.fp-platform-picker-visual {
  position: relative;

  min-height: 245px;

  margin: 13px 13px 0;

  padding: 15px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border-radius: 20px;

  color: #fff;

  background:
    linear-gradient(
      145deg,
      #2563eb,
      #4f46e5
    );
}


/* INSTAGRAM */

.fp-platform-picker-instagram
.fp-platform-picker-visual {
  background:
    linear-gradient(
      145deg,
      #315df4 0%,
      #7c3aed 52%,
      #db5d92 115%
    );
}


/* TIKTOK */

.fp-platform-picker-tiktok
.fp-platform-picker-visual {
  background:
    linear-gradient(
      145deg,
      #0f172a 0%,
      #172554 55%,
      #0891b2 130%
    );
}


/* YOUTUBE */

.fp-platform-picker-youtube
.fp-platform-picker-visual {
  background:
    linear-gradient(
      145deg,
      #dc2626 0%,
      #ef4444 45%,
      #991b1b 110%
    );
}


/* DISCORD */

.fp-platform-picker-discord
.fp-platform-picker-visual {
  background:
    linear-gradient(
      145deg,
      #5865f2 0%,
      #4338ca 55%,
      #312e81 120%
    );
}


.fp-platform-picker-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;
}


.fp-platform-picker-mini-icon {
  width: 35px;
  height: 35px;

  display: grid;
  place-items: center;

  border-radius: 11px;

  background:
    rgba(255,255,255,.16);

  border:
    1px solid
    rgba(255,255,255,.13);

  backdrop-filter:
    blur(8px);

  font-size: 13px;
  font-weight: 900;
}


.fp-platform-picker-count {
  padding:
    7px 10px;

  border-radius:
    999px;

  background: #fff;

  color: #1d4ed8;

  font-size: 9px;
  font-weight: 900;
}


.fp-platform-picker-main-icon {
  flex: 1;

  display: grid;
  place-items: center;
}


.fp-platform-picker-main-icon > span {
  width: 105px;
  height: 105px;

  display: grid;
  place-items: center;

  border:
    1px solid
    rgba(255,255,255,.19);

  border-radius: 30px;

  background:
    rgba(255,255,255,.16);

  backdrop-filter:
    blur(8px);

  box-shadow:
    inset 0 1px
    rgba(255,255,255,.12);

  font-size: 45px;
  font-weight: 900;
}


.fp-platform-picker-name {
  display: grid;
  gap: 2px;
}


.fp-platform-picker-name strong {
  font-size: 17px;
}


.fp-platform-picker-name span {
  color:
    rgba(255,255,255,.8);

  font-size: 9px;
  font-weight: 650;
}


/* CARD CONTENT */

.fp-platform-picker-content {
  padding: 17px;

  display: flex;
  flex: 1;
  flex-direction: column;
}


.fp-platform-picker-content h2 {
  margin: 0;

  color: #101828;

  font-size: 21px;
  line-height: 1.2;
}


.fp-platform-picker-content > p {
  margin: 8px 0 13px;

  color: #667085;

  font-size: 12px;
  line-height: 1.55;
}


.fp-platform-preview-services {
  display: flex;
  flex-wrap: wrap;

  gap: 6px;

  margin-bottom: 17px;
}


.fp-platform-preview-services span {
  max-width: 100%;

  padding: 6px 8px;

  overflow: hidden;

  border-radius: 999px;

  background: #f2f4f7;

  color: #475467;

  font-size: 8px;
  font-weight: 750;

  text-overflow: ellipsis;
  white-space: nowrap;
}


.fp-platform-picker-footer {
  margin-top: auto;

  padding-top: 14px;

  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 10px;

  border-top:
    1px solid #eaecf0;
}


.fp-platform-picker-footer > div {
  display: grid;
  gap: 2px;
}


.fp-platform-picker-footer span {
  color: #667085;

  font-size: 8px;
}


.fp-platform-picker-footer strong {
  color: #101828;

  font-size: 12px;
}


.fp-platform-picker-arrow {
  width: 38px;
  height: 38px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: #101828;

  color: #fff !important;

  font-size: 16px !important;
}


.fp-platform-picker-empty {
  padding: 30px;

  border:
    1px solid #e4e7ec;

  border-radius: 18px;

  background: #fff;

  color: #667085;

  text-align: center;
}


/* TABLET */

@media (max-width: 950px) {

  .fp-platform-picker-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* MOBILE */

@media (max-width: 720px) {

  .fp-services-hub-hero {
    padding:
      25px 0 20px;
  }


  .fp-services-hub-eyebrow {
    margin-bottom: 7px;

    font-size: 9px;
  }


  .fp-services-hub-hero h1 {
    font-size: 30px;
  }


  .fp-services-hub-hero
  > .shell > p {
    margin-top: 9px;

    font-size: 12px;
    line-height: 1.5;
  }


  .fp-services-hub-summary {
    margin-top: 17px;
  }


  .fp-services-hub-summary
  > div {
    min-width: 90px;

    padding: 9px 12px;
  }


  .fp-services-hub-summary strong {
    font-size: 17px;
  }


  .fp-platform-picker {
    padding:
      17px 0 45px;
  }


  /*
   * Two platforms per row on mobile.
   */

  .fp-platform-picker-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 11px;
  }


  .fp-platform-picker-link {
    border-radius: 18px;
  }


  .fp-platform-picker-visual {
    min-height: 176px;

    margin: 8px 8px 0;

    padding: 9px;

    border-radius: 14px;
  }


  .fp-platform-picker-mini-icon {
    width: 26px;
    height: 26px;

    border-radius: 8px;

    font-size: 9px;
  }


  .fp-platform-picker-count {
    max-width: 78px;

    padding: 5px 7px;

    overflow: hidden;

    font-size: 7px;

    text-overflow: ellipsis;
    white-space: nowrap;
  }


  .fp-platform-picker-main-icon
  > span {
    width: 72px;
    height: 72px;

    border-radius: 21px;

    font-size: 31px;
  }


  .fp-platform-picker-name strong {
    font-size: 13px;
  }


  .fp-platform-picker-name span {
    font-size: 7px;
  }


  .fp-platform-picker-content {
    padding: 11px;
  }


  .fp-platform-picker-content h2 {
    font-size: 15px;
  }


  .fp-platform-picker-content > p {
    margin: 6px 0 10px;

    font-size: 9px;
    line-height: 1.45;
  }


  .fp-platform-preview-services {
    display: none;
  }


  .fp-platform-picker-footer {
    padding-top: 10px;
  }


  .fp-platform-picker-footer span {
    font-size: 7px;
  }


  .fp-platform-picker-footer strong {
    font-size: 9px;
  }


  .fp-platform-picker-arrow {
    width: 30px;
    height: 30px;

    border-radius: 9px;

    font-size: 12px !important;
  }

}


/* SMALL PHONES */

@media (max-width: 360px) {

  .fp-platform-picker-grid {
    gap: 8px;
  }


  .fp-platform-picker-visual {
    min-height: 160px;
  }


  .fp-platform-picker-main-icon
  > span {
    width: 63px;
    height: 63px;

    font-size: 27px;
  }


  .fp-platform-picker-content {
    padding: 9px;
  }

}



/* =========================================================
   REAL PLATFORM BRAND ICONS
   ========================================================= */

.platform-brand-icon {
  width: 1em;
  height: 1em;

  display: block;

  object-fit: contain;
}


/* Large platform heading */

.fp-platform-title-icon
.platform-brand-icon {
  width: 38px;
  height: 38px;
}


/* Platform navigation pills */

.fp-platform-switch
.platform-brand-icon {
  width: 15px;
  height: 15px;
}


/* Services platform picker */

.fp-platform-picker-mini-icon
.platform-brand-icon {
  width: 18px;
  height: 18px;
}


.fp-platform-picker-main-icon
.platform-brand-icon {
  width: 58px;
  height: 58px;
}


/* Service cards */

.fp-service-platform-name
.platform-brand-icon {
  width: 16px;
  height: 16px;
}


/*
 * Give brand logos a clean light surface
 * when sitting over dark/colored cards.
 */

.fp-platform-title-icon,
.fp-platform-picker-mini-icon,
.fp-platform-picker-main-icon > span,
.fp-service-platform-name > span {
  overflow: hidden;
}


.fp-platform-picker-main-icon
> span:has(.platform-brand-icon),
.fp-service-main-icon:has(.platform-brand-icon) {
  background:
    rgba(255,255,255,.94);
}


@media (max-width: 720px) {

  .fp-platform-title-icon
  .platform-brand-icon {
    width: 29px;
    height: 29px;
  }


  .fp-platform-picker-main-icon
  .platform-brand-icon {
    width: 43px;
    height: 43px;
  }

}



/* =========================================================
   COMPACT PLATFORM CARDS V3
   ========================================================= */

@media (max-width: 720px) {

  .fp-platform-picker-grid {
    gap: 10px;
  }

  .fp-platform-picker-link {
    border-radius: 16px;
  }

  .fp-platform-picker-visual {
    min-height: 122px;
    margin: 7px 7px 0;
    padding: 8px;
    border-radius: 13px;
  }

  .fp-platform-picker-top {
    gap: 5px;
  }

  .fp-platform-picker-mini-icon {
    width: 24px;
    height: 24px;
    border-radius: 7px;
  }

  .fp-platform-picker-mini-icon
  .platform-brand-icon {
    width: 14px !important;
    height: 14px !important;
  }

  .fp-platform-picker-count {
    padding: 4px 6px;
    font-size: 6.5px;
  }

  .fp-platform-picker-main-icon {
    min-height: 55px;
  }

  .fp-platform-picker-main-icon > span {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .fp-platform-picker-main-icon
  .platform-brand-icon {
    width: 31px !important;
    height: 31px !important;
    max-width: 31px !important;
    max-height: 31px !important;
  }

  .fp-platform-picker-name strong {
    font-size: 12px;
  }

  .fp-platform-picker-name span {
    font-size: 6.5px;
  }

  .fp-platform-picker-content {
    padding: 9px 10px 10px;
  }

  .fp-platform-picker-content h2 {
    font-size: 14px;
  }

  .fp-platform-picker-content > p {
    margin: 4px 0 8px;
    font-size: 8px;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
  }

  .fp-platform-picker-footer {
    padding-top: 7px;
  }

  .fp-platform-picker-footer > div > span {
    display: none;
  }

  .fp-platform-picker-footer strong {
    font-size: 8px;
  }

  .fp-platform-picker-arrow {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    font-size: 11px !important;
  }

}


@media (max-width: 390px) {

  .fp-platform-picker-grid {
    gap: 8px;
  }

  .fp-platform-picker-visual {
    min-height: 112px;
  }

  .fp-platform-picker-main-icon > span {
    width: 46px;
    height: 46px;
  }

  .fp-platform-picker-main-icon
  .platform-brand-icon {
    width: 27px !important;
    height: 27px !important;
  }

}



/* =========================================================
   HELEKET PAYMENT UI V2
   ========================================================= */

.public-heleket-payment-box {
  margin: 22px 0;
  padding: 18px;

  display: grid;
  gap: 15px;

  border: 1px solid #dbe6ff;
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      #f8fbff,
      #eef5ff
    );
}

.public-heleket-payment-copy {
  display: grid;
  gap: 4px;
}

.public-crypto-label {
  color: #2563eb;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .13em;
}

.public-heleket-payment-copy strong {
  color: #101828;

  font-size: 17px;
}

.public-heleket-payment-copy small {
  color: #667085;

  font-size: 11px;
  line-height: 1.5;
}

.public-heleket-pay-button {
  width: 100%;
  min-height: 48px;

  padding: 0 18px;

  border: 0;
  border-radius: 13px;

  background: #2563eb;
  color: #fff;

  font: inherit;
  font-size: 13px;
  font-weight: 850;

  cursor: pointer;
}

.public-heleket-pay-button:hover {
  background: #1d4ed8;
}


/* ERROR */

.public-payment-error {
  margin: 18px 0;
  padding: 14px;

  display: grid;
  gap: 4px;

  border: 1px solid #fecaca;
  border-radius: 13px;

  background: #fff1f2;
  color: #991b1b;
}

.public-payment-error span {
  font-size: 11px;
}


/* CONFIRMED */

.public-payment-confirmed-box {
  margin: 18px 0;
  padding: 15px;

  display: grid;
  gap: 3px;

  border: 1px solid #bbf7d0;
  border-radius: 14px;

  background: #f0fdf4;
  color: #166534;
}


/* =========================================================
   PAYMENT RETURN PAGE
   ========================================================= */

.public-payment-return-page {
  min-height: 100vh;

  padding: 35px 16px;

  display: grid;
  place-items: center;

  background: #f5f7fb;
}

.public-payment-return-card {
  width: min(
    100%,
    520px
  );

  padding: 28px;

  border: 1px solid #e4e7ec;
  border-radius: 24px;

  background: #fff;

  box-shadow:
    0 20px 60px
    rgba(15, 23, 42, .08);
}

.public-payment-return-icon {
  width: 58px;
  height: 58px;

  margin-bottom: 18px;

  display: grid;
  place-items: center;

  border-radius: 18px;

  background: #f2f4f7;
  color: #475467;

  font-size: 24px;
  font-weight: 900;
}

.public-payment-return-icon.success {
  background: #dcfce7;
  color: #15803d;
}

.public-payment-return-icon.pending {
  background: #eff6ff;
  color: #2563eb;
}

.public-payment-return-card h1 {
  margin: 7px 0 8px;

  color: #101828;

  font-size: 30px;
}

.public-payment-return-card > p {
  margin: 0;

  color: #667085;

  font-size: 13px;
  line-height: 1.6;
}


/* DETAILS */

.public-payment-return-details {
  margin-top: 22px;

  display: grid;

  overflow: hidden;

  border: 1px solid #eaecf0;
  border-radius: 15px;
}

.public-payment-return-details > div {
  padding: 12px 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  border-bottom: 1px solid #eaecf0;
}

.public-payment-return-details > div:last-child {
  border-bottom: 0;
}

.public-payment-return-details span {
  color: #667085;

  font-size: 10px;
}

.public-payment-return-details strong {
  color: #101828;

  font-size: 11px;

  text-align: right;
}


/* ACTIONS */

.public-payment-return-actions {
  margin-top: 20px;

  display: grid;
  gap: 9px;
}

.public-payment-return-actions a {
  min-height: 44px;

  padding: 0 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  font-size: 12px;
  font-weight: 800;

  text-decoration: none;
}

.public-payment-refresh-button {
  background: #2563eb;
  color: #fff;
}

.public-payment-back-button,
.public-payment-account-button {
  border: 1px solid #d0d5dd;

  background: #fff;
  color: #344054;
}

.public-payment-store-button {
  background: #101828;
  color: #fff;
}

.public-payment-security-note {
  margin-top: 17px;

  display: block;

  color: #98a2b3;

  font-size: 9px;
  line-height: 1.5;

  text-align: center;
}


/* MOBILE */

@media (max-width: 520px) {

  .public-payment-return-card {
    padding: 21px;

    border-radius: 20px;
  }

  .public-payment-return-card h1 {
    font-size: 25px;
  }

  .public-heleket-payment-box {
    padding: 15px;

    border-radius: 15px;
  }

}



/* =========================================================
   HELEKET SECURE HANDOFF
   ========================================================= */

.public-crypto-handoff-page {
  min-height: 100vh;

  padding: 30px 16px;

  display: grid;
  place-items: center;

  background: #f5f7fb;
}


.public-crypto-handoff-card {
  width: min(100%, 460px);

  padding: 28px;

  border: 1px solid #e4e7ec;
  border-radius: 24px;

  background: #fff;

  text-align: center;

  box-shadow:
    0 20px 60px
    rgba(15,23,42,.08);
}


.public-crypto-handoff-icon {
  width: 62px;
  height: 62px;

  margin: 0 auto 18px;

  display: grid;
  place-items: center;

  border-radius: 18px;

  background: #eff6ff;
  color: #2563eb;

  font-size: 27px;
  font-weight: 900;
}


.public-crypto-handoff-card h1 {
  margin: 7px 0 9px;

  color: #101828;

  font-size: 27px;
}


.public-crypto-handoff-card > p {
  margin: 0;

  color: #667085;

  font-size: 12px;
  line-height: 1.6;
}


.public-crypto-handoff-total {
  margin: 20px 0;

  padding: 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 1px solid #e4e7ec;
  border-radius: 13px;

  background: #f8fafc;
}


.public-crypto-handoff-total span {
  color: #667085;

  font-size: 11px;
}


.public-crypto-handoff-total strong {
  color: #101828;

  font-size: 20px;
}


.public-crypto-continue-button {
  min-height: 49px;

  padding: 0 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: #2563eb;
  color: #fff;

  font-size: 13px;
  font-weight: 850;

  text-decoration: none;
}


.public-crypto-handoff-card > small {
  margin-top: 13px;

  display: block;

  color: #98a2b3;

  font-size: 9px;
  line-height: 1.5;
}



/* =========================================================
   CUSTOMER ORDERS - FLAT LIST DESIGN
   ========================================================= */

.customer-order-list {
  display: block;

  overflow: hidden;

  border:
    1px solid rgba(15, 23, 42, .08);

  border-radius: 18px;

  background: #fff;
}


.customer-order-card {
  position: relative;

  margin: 0;

  padding: 22px 20px 18px;

  border: 0;

  border-radius: 0;

  background: transparent;
}


.customer-order-card +
.customer-order-card {
  border-top:
    1px solid rgba(15, 23, 42, .08);
}


.customer-order-card-top {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 16px;

  padding: 0;

  border: 0;
}


.customer-order-card-top > div {
  min-width: 0;
}


.customer-order-number {
  display: block;

  margin: 0 0 5px;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: .02em;

  opacity: .5;
}


.customer-order-card h3 {
  margin: 0 0 3px;

  font-size: 18px;

  line-height: 1.25;
}


.customer-order-card p {
  margin: 0;

  font-size: 13px;

  opacity: .55;
}


.customer-order-price {
  flex: 0 0 auto;

  font-size: 20px;

  line-height: 1.1;

  white-space: nowrap;
}


.customer-order-status-row {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 12px;

  margin-top: 18px;

  padding: 0;
}


.customer-order-status-row > div {
  display: grid;

  align-content: start;

  gap: 5px;

  min-width: 0;
}


.customer-order-status-row span {
  font-size: 11px;

  opacity: .5;
}


.customer-order-status-row
> div
> strong:not(.customer-status) {
  font-size: 14px;
}


.customer-status {
  padding: 5px 8px;

  font-size: 11px;
}


.customer-view-order-button {
  display: flex;

  width: fit-content;

  min-height: auto;

  margin:
    16px
    0
    0
    auto;

  padding: 0;

  border: 0;

  border-radius: 0;

  background: transparent;

  font-size: 13px;

  font-weight: 800;

  text-decoration: none;
}


.customer-view-order-button::after {
  content: "→";

  margin-left: 7px;

  font-size: 15px;
}


/* MOBILE */

@media (max-width: 640px) {

  .customer-order-list {
    border-radius: 0;

    border-left: 0;

    border-right: 0;
  }


  .customer-order-card {
    padding:
      20px
      6px
      17px;
  }


  .customer-order-card-top {
    display: flex;

    gap: 12px;
  }


  .customer-order-card h3 {
    font-size: 17px;
  }


  .customer-order-price {
    font-size: 18px;
  }


  .customer-order-status-row {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    column-gap: 18px;

    row-gap: 12px;

    margin-top: 16px;
  }


  .customer-view-order-button {
    margin-top: 14px;
  }

}


/* =========================================================
   CUSTOMER ORDERS - OUTLINED LIST ROWS
   ========================================================= */

.customer-order-list {
  border: 0;
  background: transparent;
  overflow: visible;
}

.customer-order-card {
  margin-bottom: 12px;

  border:
    1px solid
    rgba(15, 23, 42, .12);

  border-radius: 14px;

  background: #fff;
}

.customer-order-card +
.customer-order-card {
  border-top:
    1px solid
    rgba(15, 23, 42, .12);
}


/* Slight definition around each order */

.customer-order-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 4px;
  height: 100%;

  border-radius:
    14px 0 0 14px;

  background:
    rgba(47, 111, 237, .9);
}


/* Give content room for accent border */

@media (max-width: 640px) {

  .customer-order-card {
    padding:
      19px
      16px
      16px
      18px;

    border-radius: 13px;
  }

  .customer-order-card::before {
    border-radius:
      13px 0 0 13px;
  }

}


/* =========================================================
   PUBLIC LEGAL PAGES
   ========================================================= */

.legal-page {
  padding:
    56px 0 80px;
}


.legal-shell {
  max-width:
    1040px;
}


.legal-hero {
  max-width:
    760px;

  margin-bottom:
    40px;
}


.legal-hero h1 {
  margin:
    8px 0 12px;

  font-size:
    clamp(
      38px,
      7vw,
      64px
    );

  line-height:
    1;

  letter-spacing:
    -.045em;
}


.legal-hero p {
  max-width:
    650px;

  margin:
    0;

  font-size:
    17px;

  line-height:
    1.6;

  opacity:
    .65;
}


.legal-effective-date {
  width:
    fit-content;

  margin-top:
    18px;

  padding:
    7px 11px;

  border:
    1px solid
    rgba(
      15,
      23,
      42,
      .1
    );

  border-radius:
    999px;

  background:
    rgba(
      47,
      111,
      237,
      .05
    );

  font-size:
    12px;

  font-weight:
    700;
}


.legal-layout {
  display:
    grid;

  grid-template-columns:
    260px
    minmax(
      0,
      1fr
    );

  gap:
    38px;

  align-items:
    start;
}


.legal-summary {
  position:
    sticky;

  top:
    100px;

  padding:
    20px;

  border:
    1px solid
    rgba(
      15,
      23,
      42,
      .1
    );

  border-radius:
    16px;

  background:
    #fff;
}


.legal-summary strong {
  display:
    block;

  margin-bottom:
    10px;

  font-size:
    16px;
}


.legal-summary p {
  margin:
    0 0 12px;

  font-size:
    13px;

  line-height:
    1.55;

  opacity:
    .62;
}


.legal-summary p:last-child {
  margin-bottom:
    0;
}


.legal-content {
  overflow:
    hidden;

  border:
    1px solid
    rgba(
      15,
      23,
      42,
      .1
    );

  border-radius:
    18px;

  background:
    #fff;
}


.legal-content section {
  position:
    relative;

  padding:
    30px;
}


.legal-content section +
section {
  border-top:
    1px solid
    rgba(
      15,
      23,
      42,
      .08
    );
}


.legal-number {
  display:
    inline-block;

  margin-bottom:
    8px;

  color:
    #2f6fed;

  font-size:
    11px;

  font-weight:
    900;

  letter-spacing:
    .08em;
}


.legal-content h2 {
  margin:
    0 0 13px;

  font-size:
    22px;

  letter-spacing:
    -.025em;
}


.legal-content p {
  margin:
    0 0 13px;

  font-size:
    14px;

  line-height:
    1.7;

  opacity:
    .7;
}


.legal-content p:last-child {
  margin-bottom:
    0;
}


.legal-actions {
  display:
    flex;

  flex-wrap:
    wrap;

  gap:
    10px;

  margin-top:
    20px;
}


@media (
  max-width: 760px
) {

  .legal-page {
    padding:
      34px 0 60px;
  }


  .legal-layout {
    grid-template-columns:
      1fr;

    gap:
      18px;
  }


  .legal-summary {
    position:
      static;
  }


  .legal-content section {
    padding:
      22px 18px;
  }


  .legal-content h2 {
    font-size:
      20px;
  }


  .legal-hero {
    margin-bottom:
      28px;
  }


  .legal-hero p {
    font-size:
      15px;
  }


  .legal-actions {
    display:
      grid;
  }

}


/* =========================================================
   PUBLIC SUPPORT FOOTER V2
   Canonical storefront support footer
   ========================================================= */

.public-support-footer-v2 {
  position: relative;

  padding:
    46px 24px
    calc(
      40px +
      env(safe-area-inset-bottom)
    );

  overflow: hidden;

  color: #fff;

  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(47, 111, 237, .10),
      transparent 31%
    ),
    linear-gradient(
      145deg,
      #07111f 0%,
      #08172a 52%,
      #06101e 100%
    );
}


.public-support-footer-v2
.public-support-footer-inner {
  width:
    min(
      1080px,
      calc(100% - 16px)
    );

  max-width: 1080px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr;

  gap: 24px;

  align-items: start;
}


/* HEADING */

.public-support-footer-v2
.public-support-heading {
  display: flex;

  align-items: center;

  gap: 16px;

  width: 100%;

  max-width: 470px;

  margin: 0;
}


.public-support-footer-v2
.public-support-icon {
  display: grid;

  place-items: center;

  flex:
    0 0 58px;

  width: 58px;
  height: 58px;

  border:
    1px solid
    rgba(120, 160, 220, .22);

  border-radius: 50%;

  background:
    rgba(47, 111, 237, .08);
}


.public-support-footer-v2
.public-support-icon svg {
  width: 28px;
  height: 28px;

  fill: none;

  stroke: #4388ff;

  stroke-width: 1.8;

  stroke-linecap: round;

  stroke-linejoin: round;
}


.public-support-footer-v2
.public-support-heading > div:last-child {
  min-width: 0;
}


.public-support-footer-v2
.public-support-heading strong {
  display: block;

  margin:
    0 0 4px;

  color: #fff;

  font-size: 23px;

  line-height: 1.1;

  letter-spacing: -.025em;
}


.public-support-footer-v2
.public-support-heading span {
  display: block;

  margin: 0;

  color:
    rgba(203, 213, 225, .68);

  font-size: 13px;

  line-height: 1.45;
}


/* SUPPORT ACTIONS */

.public-support-footer-v2
.public-support-footer-actions {
  width: 100%;

  max-width: none;

  margin: 0;

  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );

  gap: 10px;

  align-items: stretch;
}


.public-support-footer-v2
.support-action {
  width: 100%;

  min-width: 0;

  min-height: 64px;

  box-sizing: border-box;

  padding:
    10px 14px;

  display: grid;

  grid-template-columns:
    36px
    minmax(0, 1fr)
    20px;

  align-items: center;

  gap: 11px;

  border-radius: 14px;

  color: #fff;

  font-size: 13px;

  font-weight: 800;

  line-height: 1.25;

  text-decoration: none;

  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease;
}


.public-support-footer-v2
.support-action:active {
  transform:
    scale(.985);
}


.public-support-footer-v2
.support-action-secondary {
  border:
    1px solid
    rgba(148, 163, 184, .24);

  background:
    rgba(15, 31, 52, .48);
}


.public-support-footer-v2
.support-action-secondary:hover {
  border-color:
    rgba(96, 165, 250, .5);

  background:
    rgba(24, 45, 72, .68);
}


.public-support-footer-v2
.support-action-primary {
  border:
    1px solid
    rgba(96, 165, 250, .35);

  background:
    linear-gradient(
      135deg,
      #2467e8,
      #3288ff
    );

  box-shadow:
    0 13px 28px
    rgba(22, 95, 220, .18);
}


.public-support-footer-v2
.support-action-primary:hover {
  background:
    linear-gradient(
      135deg,
      #1f5ed9,
      #2d7ff2
    );
}


/* ACTION ICONS */

.public-support-footer-v2
.support-action-icon {
  display: grid;

  place-items: center;

  width: 36px;
  height: 36px;

  border-radius: 10px;

  background:
    rgba(59, 130, 246, .09);
}


.public-support-footer-v2
.support-action-icon svg {
  width: 20px;
  height: 20px;

  fill: none;

  stroke: #4388ff;

  stroke-width: 1.8;

  stroke-linecap: round;

  stroke-linejoin: round;
}


.public-support-footer-v2
.support-action-primary
.support-action-icon {
  background:
    rgba(255, 255, 255, .13);
}


.public-support-footer-v2
.support-action-primary
.support-action-icon svg {
  fill: #fff;

  stroke: #fff;
}


.public-support-footer-v2
.support-action-arrow {
  justify-self: end;

  color:
    rgba(255, 255, 255, .76);

  font-size: 23px;

  font-weight: 400;

  line-height: 1;
}


/* FAST RESPONSE */

.public-support-footer-v2
.public-support-fast-note {
  display: flex;

  align-items: center;

  justify-content: flex-start;

  gap: 7px;

  width: 100%;

  margin: -3px 0 0;

  color:
    rgba(203, 213, 225, .58);

  font-size: 11px;

  font-weight: 600;

  text-align: left;
}


.public-support-footer-v2
.public-support-fast-note svg {
  flex: 0 0 auto;

  width: 14px;
  height: 14px;

  fill: none;

  stroke: #3b82f6;

  stroke-width: 2;

  stroke-linejoin: round;
}


/* MOBILE */

@media (max-width: 640px) {

  .public-support-footer-v2 {
    padding:
      28px 0
      calc(
        28px +
        env(safe-area-inset-bottom)
      );
  }


  .public-support-footer-v2
  .public-support-footer-inner {
    width:
      min(
        calc(100% - 32px),
        520px
      );

    gap: 17px;
  }


  .public-support-footer-v2
  .public-support-heading {
    display: grid;

    grid-template-columns:
      44px
      minmax(0, 1fr);

    align-items: center;

    gap: 12px;

    max-width: none;
  }


  .public-support-footer-v2
  .public-support-icon {
    width: 44px;
    height: 44px;

    flex-basis: 44px;
  }


  .public-support-footer-v2
  .public-support-icon svg {
    width: 23px;
    height: 23px;
  }


  .public-support-footer-v2
  .public-support-heading strong {
    font-size: 20px;
  }


  .public-support-footer-v2
  .public-support-heading span {
    font-size: 12px;
  }


  .public-support-footer-v2
  .public-support-footer-actions {
    grid-template-columns: 1fr;

    gap: 8px;
  }


  .public-support-footer-v2
  .support-action {
    min-height: 56px;

    padding:
      9px 12px;

    grid-template-columns:
      34px
      minmax(0, 1fr)
      18px;

    border-radius: 13px;

    font-size: 12px;
  }


  .public-support-footer-v2
  .support-action-icon {
    width: 34px;
    height: 34px;
  }


  .public-support-footer-v2
  .support-action-icon svg {
    width: 19px;
    height: 19px;
  }


  .public-support-footer-v2
  .support-action-arrow {
    font-size: 21px;
  }


  .public-support-footer-v2
  .public-support-fast-note {
    justify-content: center;

    margin-top: -1px;

    font-size: 10px;

    text-align: center;
  }

}



/* =========================================================
   SUPPORT V2 - MOBILE POLISH
   ========================================================= */

@media (max-width: 640px) {

  .public-support-footer-v2 {
    padding:
      32px 22px
      calc(34px + env(safe-area-inset-bottom));
  }


  /* Keep icon + title together */

  .public-support-footer-v2
  .public-support-heading {
    display: grid !important;

    grid-template-columns:
      48px
      minmax(0, 1fr);

    align-items: center;

    column-gap: 14px;

    margin-bottom: 22px;
  }


  .public-support-footer-v2
  .public-support-icon {
    width: 48px;
    height: 48px;

    margin: 0;

    flex: none;
  }


  .public-support-footer-v2
  .public-support-icon svg {
    width: 25px;
    height: 25px;
  }


  .public-support-footer-v2
  .public-support-heading > div:last-child {
    min-width: 0;
  }


  .public-support-footer-v2
  .public-support-heading strong {
    margin: 0 0 3px;

    font-size: 22px;

    line-height: 1.15;
  }


  .public-support-footer-v2
  .public-support-heading span {
    margin: 0;

    font-size: 13px;

    line-height: 1.4;
  }


  /* Compact support buttons */

  .public-support-footer-v2
  .public-support-footer-actions {
    gap: 9px;
  }


  .public-support-footer-v2
  .support-action {
    grid-template-columns:
      34px
      minmax(0, 1fr)
      18px;

    min-height: 58px;

    padding:
      9px 13px;

    border-radius: 13px;

    font-size: 13px;
  }


  .public-support-footer-v2
  .support-action-icon {
    width: 34px;
    height: 34px;

    border-radius: 9px;
  }


  .public-support-footer-v2
  .support-action-icon svg {
    width: 20px;
    height: 20px;
  }


  .public-support-footer-v2
  .support-action-arrow {
    font-size: 23px;
  }


  .public-support-footer-v2
  .public-support-fast-note {
    margin-top: 15px;

    font-size: 11px;
  }

}


/* =========================================================
   LANDING FOOTER V2
   Compact storefront footer
   ========================================================= */

.site-footer.landing-footer {
  margin: 0 !important;

  padding:
    34px 24px !important;

  min-height: 0 !important;

  background: #fff;

  border-top:
    1px solid
    rgba(15, 23, 42, .08);
}


.site-footer.landing-footer
.footer-grid {
  width: 100%;

  max-width: 1080px;

  margin: 0 auto;

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 28px;
}


/* BRAND */

.site-footer.landing-footer
.footer-grid > div:first-child {
  min-width: 0;
}


.site-footer.landing-footer
.footer-grid > div:first-child strong {
  display: block;

  margin: 0 0 5px;

  color: #101827;

  font-size: 20px;

  font-weight: 850;

  line-height: 1.2;

  letter-spacing: -.02em;
}


.site-footer.landing-footer
.footer-grid > div:first-child p {
  margin: 0;

  color:
    rgba(71, 85, 105, .78);

  font-size: 13px;

  line-height: 1.4;
}


/* LINKS */

.site-footer.landing-footer
.landing-footer-links {
  display: flex;

  align-items: center;

  justify-content: flex-end;

  flex-wrap: wrap;

  gap: 8px 18px;

  margin: 0;
}


.site-footer.landing-footer
.landing-footer-links a {
  position: relative;

  color: #111827;

  font-size: 13px;

  font-weight: 800;

  line-height: 1.2;

  text-decoration: none;
}


.site-footer.landing-footer
.landing-footer-links a:hover {
  color: #2f6fed;
}


.site-footer.landing-footer
.landing-footer-links span {
  color:
    rgba(71, 85, 105, .62);

  font-size: 12px;

  font-weight: 500;

  white-space: nowrap;
}


/* MOBILE */

@media (max-width: 640px) {

  .site-footer.landing-footer {
    padding:
      24px 22px !important;
  }


  .site-footer.landing-footer
  .footer-grid {
    display: grid;

    grid-template-columns: 1fr;

    align-items: start;

    gap: 17px;
  }


  .site-footer.landing-footer
  .footer-grid > div:first-child strong {
    margin-bottom: 4px;

    font-size: 18px;
  }


  .site-footer.landing-footer
  .footer-grid > div:first-child p {
    font-size: 12px;
  }


  .site-footer.landing-footer
  .landing-footer-links {
    justify-content: flex-start;

    gap: 8px 16px;

    padding-top: 15px;

    border-top:
      1px solid
      rgba(15, 23, 42, .07);
  }


  .site-footer.landing-footer
  .landing-footer-links a {
    font-size: 12px;
  }


  .site-footer.landing-footer
  .landing-footer-links span {
    width: 100%;

    margin-top: 3px;

    font-size: 11px;
  }

}

/* =========================================================
   PUBLIC FLOATING NAVIGATION MENU
   ========================================================= */

.fp-public-menu-trigger {
  display: none;

  align-items: center;

  justify-content: center;

  gap: 7px;

  min-height: 42px;

  padding:
    0 13px;

  border:
    1px solid
    rgba(15, 23, 42, .1);

  border-radius: 12px;

  background: #fff;

  color: #111827;

  font: inherit;

  font-size: 12px;

  font-weight: 800;

  cursor: pointer;

  box-shadow:
    0 5px 18px
    rgba(15, 23, 42, .06);
}


.fp-menu-trigger-lines {
  display: grid;

  gap: 3px;

  width: 16px;
}


.fp-menu-trigger-lines i {
  display: block;

  width: 100%;
  height: 2px;

  border-radius: 999px;

  background: currentColor;
}


.fp-menu-trigger-lines i:nth-child(2) {
  width: 11px;
}


.fp-public-menu-overlay {
  position: fixed;

  inset: 0;

  z-index: 99999;

  display: flex;

  align-items: flex-start;

  justify-content: center;

  padding:
    calc(
      env(safe-area-inset-top) +
      76px
    )
    14px
    calc(
      env(safe-area-inset-bottom) +
      20px
    );

  background:
    rgba(3, 10, 22, .5);

  backdrop-filter:
    blur(8px);

  -webkit-backdrop-filter:
    blur(8px);

  opacity: 0;

  transition:
    opacity .18s ease;
}


.fp-public-menu-overlay[hidden] {
  display: none !important;
}


.fp-public-menu-overlay.is-open {
  opacity: 1;
}


.fp-public-menu-panel {
  width: min(
    100%,
    500px
  );

  max-height:
    calc(
      100dvh -
      110px
    );

  overflow-y: auto;

  overscroll-behavior: contain;

  padding:
    20px;

  border:
    1px solid
    rgba(15, 23, 42, .1);

  border-radius: 24px;

  background:
    rgba(
      255,
      255,
      255,
      .98
    );

  box-shadow:
    0 28px 80px
    rgba(2, 8, 20, .25);

  transform:
    translateY(-14px)
    scale(.985);

  transition:
    transform .2s ease;

  -webkit-overflow-scrolling:
    touch;
}


.fp-public-menu-overlay.is-open
.fp-public-menu-panel {
  transform:
    translateY(0)
    scale(1);
}


.fp-public-menu-open {
  overflow: hidden;
}


/* MENU TOP */

.fp-public-menu-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

  margin-bottom: 18px;
}


.fp-public-menu-eyebrow {
  display: block;

  margin-bottom: 3px;

  color: #718096;

  font-size: 9px;

  font-weight: 900;

  letter-spacing: .11em;
}


.fp-public-menu-top strong {
  display: block;

  color: #111827;

  font-size: 24px;

  line-height: 1.1;

  letter-spacing: -.03em;
}


.fp-public-menu-close {
  display: grid;

  place-items: center;

  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  padding: 0;

  border:
    1px solid
    rgba(15, 23, 42, .09);

  border-radius: 50%;

  background: #f5f7fa;

  color: #111827;

  font-size: 25px;

  font-weight: 400;

  line-height: 1;

  cursor: pointer;
}


/* SHORTCUTS */

.fp-public-menu-shortcuts {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 9px;

  margin-bottom: 21px;
}


.fp-public-menu-shortcuts a {
  display: flex;

  align-items: center;

  gap: 10px;

  min-height: 58px;

  padding:
    10px 12px;

  border:
    1px solid
    rgba(15, 23, 42, .09);

  border-radius: 14px;

  background: #f8fafc;

  color: #111827;

  font-size: 13px;

  font-weight: 800;

  text-decoration: none;
}


.fp-menu-shortcut-icon {
  display: grid;

  place-items: center;

  flex: 0 0 34px;

  width: 34px;
  height: 34px;

  border-radius: 10px;

  background:
    rgba(47, 111, 237, .1);
}


.fp-menu-shortcut-icon svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: #2f6fed;

  stroke-width: 1.8;

  stroke-linecap: round;

  stroke-linejoin: round;
}


/* MENU GROUPS */

.fp-public-menu-group {
  margin-top: 17px;
}


.fp-public-menu-label {
  display: block;

  margin:
    0 4px 7px;

  color: #8a94a4;

  font-size: 9px;

  font-weight: 900;

  letter-spacing: .11em;
}


.fp-public-menu-row {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  min-height: 45px;

  padding:
    0 6px;

  border-bottom:
    1px solid
    rgba(15, 23, 42, .065);

  color: #172033;

  font-size: 13px;

  font-weight: 700;

  text-decoration: none;
}


.fp-public-menu-row b {
  color: #9aa4b2;

  font-size: 21px;

  font-weight: 400;

  line-height: 1;
}


/* LANGUAGE */

.fp-public-menu-language {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  margin-top: 21px;

  padding:
    13px 14px;

  border-radius: 13px;

  background: #f6f8fb;

  color: #5f6b7c;

  font-size: 11px;

  font-weight: 800;
}


.fp-public-menu-language > div {
  display: flex;

  gap: 5px;
}


.fp-public-menu-language a {
  display: grid;

  place-items: center;

  width: 38px;
  height: 30px;

  border-radius: 8px;

  color: #596579;

  font-size: 11px;

  font-weight: 900;

  text-decoration: none;
}


.fp-public-menu-language a.active {
  background: #111827;

  color: #fff;
}


/* CTA */

.fp-public-menu-cta {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  min-height: 54px;

  margin-top: 13px;

  padding:
    0 17px;

  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      #2467e8,
      #3288ff
    );

  color: #fff;

  font-size: 13px;

  font-weight: 850;

  text-decoration: none;

  box-shadow:
    0 12px 28px
    rgba(36, 103, 232, .2);
}


/* MOBILE / TABLET */

@media (max-width: 900px) {

  .fp-public-menu-trigger {
    display: inline-flex;
  }


  /*
   * The menu contains the language selector,
   * so hide the old one on smaller phones.
   */

  @media (max-width: 560px) {

    .public-header-actions
    .language-switcher {
      display: none;
    }

  }

}


@media (max-width: 430px) {

  .fp-public-menu-overlay {
    padding-left: 10px;
    padding-right: 10px;
  }


  .fp-public-menu-panel {
    padding: 17px;

    border-radius: 21px;
  }


  .fp-public-menu-trigger {
    min-width: 42px;

    width: 42px;

    padding: 0;
  }


  .fp-menu-trigger-text {
    display: none;
  }


  .fp-public-menu-top strong {
    font-size: 22px;
  }

}


/* =========================================================
   MOBILE HEADER - BRAND + MENU ONLY
   ========================================================= */

@media (max-width: 900px) {

  /*
   * Account/login controls already exist
   * inside the floating navigation menu.
   */

  .public-header-actions
  > .public-login-link,

  .public-header-actions
  > .public-account-button,

  .public-header-actions
  > .public-create-account,

  .public-header-actions
  > .language-switcher {
    display: none !important;
  }


  .site-header .nav-shell,
  .landing-header .nav-shell {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;
  }


  .public-header-actions {
    display: flex !important;

    align-items: center;

    justify-content: flex-end;

    flex: 0 0 auto;

    margin-left: auto;
  }


  .fp-public-menu-trigger {
    display: inline-flex !important;

    flex: 0 0 auto;
  }


  /*
   * Prevent Followers Store
   * from wrapping onto two lines.
   */

  .site-header .brand,
  .landing-header .brand {
    min-width: 0;

    flex: 1 1 auto;
  }


  .site-header .brand strong,
  .landing-header .brand strong {
    white-space: nowrap;
  }

}


/* Smaller phones */

@media (max-width: 560px) {

  .site-header .brand small,
  .landing-header .brand small {
    display: none;
  }


  .site-header .brand strong,
  .landing-header .brand strong {
    font-size: 18px;
  }


  .site-header .brand-mark,
  .landing-header .brand-mark {
    width: 46px;
    height: 46px;

    flex-basis: 46px;

    border-radius: 14px;

    font-size: 22px;
  }


  .fp-public-menu-trigger {
    width: 44px;

    min-width: 44px;

    height: 44px;

    min-height: 44px;

    padding: 0;

    border-radius: 12px;
  }


  .fp-menu-trigger-text {
    display: none;
  }

}


/* =========================================================
   CONTACT PAGE HEADER FIX
   ========================================================= */

.contact-header .brand {
  min-width: 0;
}

.contact-header .brand-copy {
  min-width: 0;
}

.contact-header .brand strong {
  display: block;
}


@media (max-width: 900px) {

  .contact-header .contact-home-link {
    display: none !important;
  }

  .contact-header .nav-shell {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;
  }

  .contact-header .brand {
    flex: 1 1 auto;

    min-width: 0;
  }

  .contact-header .brand strong {
    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
  }

  .contact-header .public-header-actions {
    flex: 0 0 auto;

    margin-left: auto;
  }

}


@media (max-width: 560px) {

  .contact-header .brand small {
    display: none;
  }

  .contact-header .brand strong {
    font-size: 18px;
  }

  .contact-header .brand-mark {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    border-radius: 14px;

    font-size: 22px;
  }

}


/* FEMININE PUBLIC MENU V1 */


/* =========================================================
   MENU TRIGGER
   ========================================================= */

body .fp-public-menu-trigger {
  border:
    1px solid
    rgba(116,65,91,.12) !important;

  color:
    #482536 !important;

  background:
    rgba(255,251,253,.97) !important;

  box-shadow:
    0 8px 24px
    rgba(92,43,67,.06) !important;
}


body
.fp-menu-trigger-lines i {
  background:
    #58223f !important;
}


/* =========================================================
   OVERLAY
   ========================================================= */

body .fp-public-menu-overlay {
  background:
    rgba(53,27,43,.48) !important;

  backdrop-filter:
    blur(10px) !important;

  -webkit-backdrop-filter:
    blur(10px) !important;
}


/* =========================================================
   PANEL
   ========================================================= */

body .fp-public-menu-panel {
  border:
    1px solid
    rgba(116,65,91,.11) !important;

  background:
    linear-gradient(
      180deg,
      #fffdfd 0%,
      #fff9fb 48%,
      #faf4f9 100%
    ) !important;

  box-shadow:
    0 30px 90px
    rgba(58,27,43,.22) !important;
}


/* =========================================================
   MENU TITLE
   ========================================================= */

body .fp-public-menu-eyebrow {
  color:
    #c34878 !important;
}


body .fp-public-menu-top strong {
  color:
    #321323 !important;

  font-family:
    Georgia,
    "Times New Roman",
    serif !important;

  letter-spacing:
    -.035em !important;
}


/* =========================================================
   CLOSE BUTTON
   ========================================================= */

body .fp-public-menu-close {
  border:
    1px solid
    rgba(116,65,91,.10) !important;

  color:
    #58223f !important;

  background:
    linear-gradient(
      145deg,
      #fff,
      #fff4f8
    ) !important;

  box-shadow:
    0 8px 22px
    rgba(88,34,63,.06) !important;
}


/* =========================================================
   HOME + SERVICES SHORTCUTS
   ========================================================= */

body .fp-public-menu-shortcuts a {
  border:
    1px solid
    rgba(116,65,91,.10) !important;

  color:
    #3f2432 !important;

  background:
    linear-gradient(
      145deg,
      #fff,
      #fff6f9
    ) !important;

  box-shadow:
    0 9px 25px
    rgba(88,34,63,.045) !important;
}


body .fp-public-menu-shortcuts a:hover {
  border-color:
    rgba(211,77,129,.22) !important;

  background:
    #fff2f7 !important;
}


/* Shortcut icon containers */

body .fp-menu-shortcut-icon {
  color:
    #c34878 !important;

  border-color:
    rgba(211,77,129,.10) !important;

  background:
    linear-gradient(
      145deg,
      #fff0f5,
      #f5edf9
    ) !important;
}


/* SVG icon lines */

body
.fp-menu-shortcut-icon svg {
  stroke:
    #c34878 !important;
}


/* =========================================================
   GROUP LABELS
   ========================================================= */

body .fp-public-menu-label {
  color:
    #ac758d !important;
}


/* =========================================================
   MENU ROWS
   ========================================================= */

body .fp-public-menu-row {
  border-bottom-color:
    rgba(116,65,91,.075) !important;

  color:
    #3d2632 !important;
}


body .fp-public-menu-row:hover {
  color:
    #b63d6d !important;

  background:
    rgba(216,79,133,.035) !important;
}


body .fp-public-menu-row b {
  color:
    #c17798 !important;
}


/* =========================================================
   LANGUAGE
   ========================================================= */

body .fp-public-menu-language {
  border:
    1px solid
    rgba(116,65,91,.07) !important;

  color:
    #806d78 !important;

  background:
    linear-gradient(
      145deg,
      #fff5f9,
      #f7f1fa
    ) !important;
}


body .fp-public-menu-language a {
  color:
    #8f6f80 !important;
}


body
.fp-public-menu-language a.active {
  color:
    #fff !important;

  background:
    linear-gradient(
      135deg,
      #a93666,
      #d75888
    ) !important;

  box-shadow:
    0 7px 18px
    rgba(184,62,112,.18) !important;
}


/* =========================================================
   MAIN CTA
   ========================================================= */

body .fp-public-menu-cta {
  color:
    #fff !important;

  background:
    linear-gradient(
      135deg,
      #a93666 0%,
      #cf4d80 55%,
      #c06ab5 100%
    ) !important;

  box-shadow:
    0 15px 34px
    rgba(183,61,111,.22) !important;
}


body .fp-public-menu-cta:hover {
  background:
    linear-gradient(
      135deg,
      #992f5d,
      #c74677 55%,
      #b65fac
    ) !important;
}


/* =========================================================
   MOBILE POLISH
   ========================================================= */

@media screen and (max-width: 430px) {

  body .fp-public-menu-panel {
    border-radius:
      23px !important;
  }


  body .fp-public-menu-shortcuts a {
    border-radius:
      15px !important;
  }


  body .fp-public-menu-language {
    border-radius:
      14px !important;
  }


  body .fp-public-menu-cta {
    border-radius:
      15px !important;
  }

}

/* END FEMININE PUBLIC MENU V1 */


/* =========================================================
   CUSTOMER WALLET CHECKOUT V1
   ========================================================= */

.public-wallet-payment-box {
  margin-top: 16px;

  padding: 18px;

  border:
    1px solid
    rgba(194,65,116,.13);

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      #fffafd,
      #fff2f7 58%,
      #f6effa
    );

  box-shadow:
    0 15px 38px
    rgba(91,42,66,.07);
}


.public-wallet-payment-head {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 14px;

  margin-bottom: 16px;
}


.public-wallet-payment-head > div:first-child {
  display: grid;

  gap: 4px;
}


.public-wallet-label {
  color: #c34878;

  font-size: 8px;

  font-weight: 900;

  letter-spacing: .1em;
}


.public-wallet-payment-head strong {
  color: #321323;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 19px;

  line-height: 1.15;
}


.public-wallet-payment-head small {
  max-width: 330px;

  color: #806d78;

  font-size: 10px;

  line-height: 1.45;
}


.public-wallet-icon {
  display: grid;

  place-items: center;

  flex:
    0 0 43px;

  width: 43px;
  height: 43px;

  border-radius: 14px;

  color: #fff;

  background:
    linear-gradient(
      145deg,
      #b83e70,
      #dc6393
    );

  box-shadow:
    0 10px 24px
    rgba(184,62,112,.2);

  font-size: 18px;

  font-weight: 900;
}


/* BALANCE SUMMARY */

.public-wallet-balance-grid {
  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0,1fr)
    );

  gap: 7px;

  margin-bottom: 12px;
}


.public-wallet-balance-grid > div {
  display: grid;

  gap: 5px;

  min-width: 0;

  padding: 11px;

  border:
    1px solid
    rgba(116,65,91,.08);

  border-radius: 12px;

  background:
    rgba(255,255,255,.77);
}


.public-wallet-balance-grid span {
  color: #917985;

  font-size: 8px;

  font-weight: 750;
}


.public-wallet-balance-grid strong {
  color: #482536;

  font-size: 15px;

  line-height: 1.1;
}


/* PAY BUTTON */

.public-wallet-payment-form {
  margin: 0;
}


.public-wallet-pay-button {
  display: flex;

  width: 100%;

  min-height: 50px;

  align-items: center;

  justify-content: center;

  gap: 7px;

  padding:
    0 16px;

  border: 0;

  border-radius: 13px;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      #a93666,
      #d65385 58%,
      #bb67b5
    );

  box-shadow:
    0 13px 29px
    rgba(183,61,111,.20);

  font: inherit;

  font-size: 11px;

  font-weight: 900;

  cursor: pointer;
}


.public-wallet-pay-button:disabled {
  opacity: .7;

  cursor: wait;
}


/* INSUFFICIENT */

.public-wallet-insufficient {
  display: grid;

  gap: 3px;

  padding: 11px 12px;

  border:
    1px solid
    rgba(217,119,6,.13);

  border-radius: 11px;

  background: #fff8eb;
}


.public-wallet-insufficient strong {
  color: #965c20;

  font-size: 10px;
}


.public-wallet-insufficient span {
  color: #9b754e;

  font-size: 9px;

  line-height: 1.45;
}


/* OR DIVIDER */

.public-payment-divider {
  display: flex;

  align-items: center;

  gap: 12px;

  margin:
    14px 0;
}


.public-payment-divider::before,
.public-payment-divider::after {
  content: "";

  flex: 1;

  height: 1px;

  background:
    rgba(116,65,91,.10);
}


.public-payment-divider span {
  color: #a08391;

  font-size: 9px;

  font-weight: 850;
}


/* SUCCESS */

.public-wallet-success {
  display: flex;

  align-items: center;

  gap: 11px;

  margin-top: 15px;

  padding: 13px;

  border:
    1px solid
    rgba(16,185,129,.14);

  border-radius: 13px;

  background: #edf9f4;
}


.public-wallet-success-icon {
  display: grid;

  place-items: center;

  flex:
    0 0 35px;

  width: 35px;
  height: 35px;

  border-radius: 50%;

  color: #fff;

  background: #14966c;

  font-weight: 900;
}


.public-wallet-success > div:last-child {
  display: grid;

  gap: 3px;
}


.public-wallet-success strong {
  color: #147452;

  font-size: 11px;
}


.public-wallet-success span {
  color: #537a6d;

  font-size: 9px;

  line-height: 1.4;
}


/* ERROR */

.public-wallet-error {
  display: grid;

  gap: 4px;

  margin-top: 15px;

  padding: 12px;

  border:
    1px solid
    rgba(210,55,80,.13);

  border-radius: 12px;

  background: #fff1f4;
}


.public-wallet-error strong {
  color: #a8324d;

  font-size: 10px;
}


.public-wallet-error span {
  color: #996071;

  font-size: 9px;
}


/* PAID STATUS */

.public-payment-paid {
  color: #16815d !important;
}


/* MOBILE */

@media screen and (max-width: 520px) {

  .public-wallet-payment-box {
    padding: 15px;

    border-radius: 16px;
  }


  .public-wallet-balance-grid {
    gap: 5px;
  }


  .public-wallet-balance-grid > div {
    padding:
      9px 8px;
  }


  .public-wallet-balance-grid span {
    font-size: 7px;
  }


  .public-wallet-balance-grid strong {
    font-size: 13px;
  }


  .public-wallet-pay-button {
    min-height: 48px;
  }

}

/* END CUSTOMER WALLET CHECKOUT V1 */


/* =========================================================
   ORDER CREATED - FEMININE COLOR POLISH V2
   ========================================================= */

body
.public-order-created-page {
  background:
    radial-gradient(
      circle at 90% 7%,
      rgba(222,105,153,.14),
      transparent 28%
    ),
    radial-gradient(
      circle at 5% 75%,
      rgba(190,170,224,.14),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #fffafd,
      #faf4f9
    ) !important;
}


/* BACK TO STORE */

body
.public-order-store-link {
  color:
    #b63d6d !important;
}

body
.public-order-store-link:hover {
  color:
    #d84f85 !important;
}


/* MAIN CARD */

body
.public-order-created-card {
  border-color:
    rgba(116,65,91,.10) !important;

  background:
    rgba(255,255,255,.98) !important;

  box-shadow:
    0 24px 70px
    rgba(89,42,65,.08) !important;
}


/* SUCCESS ICON */

body
.public-order-success-icon {
  color:
    #16815d !important;

  background:
    #edf9f4 !important;
}


/* EYEBROW */

body
.public-order-created-card
.eyebrow {
  color:
    #c34878 !important;
}


/* TITLE */

body
.public-order-created-card h1 {
  color:
    #321323 !important;

  font-family:
    Georgia,
    "Times New Roman",
    serif !important;
}


/* ORDER NUMBER */

body
.public-order-number {
  color:
    #806d78 !important;
}


/* ORDER DETAILS */

body
.public-created-details {
  border-color:
    rgba(116,65,91,.08) !important;
}

body
.public-created-details > div {
  border-color:
    rgba(116,65,91,.08) !important;
}

body
.public-created-details span {
  color:
    #8f7884 !important;
}

body
.public-created-details strong {
  color:
    #321323 !important;
}


/* PAYMENT REQUIRED NOTE */

body
.public-order-safe-note {
  border-color:
    rgba(202,75,126,.12) !important;

  background:
    linear-gradient(
      145deg,
      #fff5f9,
      #faf1f8
    ) !important;
}

body
.public-order-safe-note strong {
  color:
    #a93666 !important;
}

body
.public-order-safe-note span {
  color:
    #806d78 !important;
}


/* CRYPTO PAYMENT BOX */

body
.public-heleket-payment-box {
  border-color:
    rgba(116,65,91,.10) !important;

  background:
    linear-gradient(
      145deg,
      #fffafd,
      #fff3f8 60%,
      #f6effa
    ) !important;
}

body
.public-crypto-label {
  color:
    #c34878 !important;
}

body
.public-heleket-payment-copy strong {
  color:
    #321323 !important;
}

body
.public-heleket-payment-copy small {
  color:
    #806d78 !important;
}


/* CRYPTO BUTTON */

body
.public-heleket-pay-button {
  border: 0 !important;

  color:
    #fff !important;

  background:
    linear-gradient(
      135deg,
      #a93666 0%,
      #d65385 58%,
      #bb67b5 100%
    ) !important;

  box-shadow:
    0 13px 29px
    rgba(183,61,111,.20) !important;
}


/* ACCOUNT BUTTON */

body
.public-order-account-button {
  border:
    1px solid
    rgba(190,61,111,.15) !important;

  color:
    #a93666 !important;

  background:
    #fff4f8 !important;

  box-shadow:
    none !important;
}


/* CONTINUE SHOPPING */

body
.public-order-continue-button {
  border: 0 !important;

  color:
    #fff !important;

  background:
    linear-gradient(
      135deg,
      #a93666,
      #d65385 58%,
      #bb67b5
    ) !important;

  box-shadow:
    0 13px 29px
    rgba(183,61,111,.18) !important;
}


/* PAYMENT CONFIRMED
   Keep semantic success green */

body
.public-payment-confirmed-box {
  border-color:
    rgba(16,185,129,.17) !important;

  color:
    #287356 !important;

  background:
    #eefaf4 !important;
}


/* WALLET SUCCESS
   Also remains green intentionally */

body
.public-wallet-success {
  border-color:
    rgba(16,185,129,.17) !important;

  background:
    #eefaf4 !important;
}


/* MOBILE */

@media screen and (max-width: 520px) {

  body
  .public-order-created-card {
    border-radius:
      20px !important;
  }

}

/* END ORDER CREATED - FEMININE COLOR POLISH V2 */


/* =========================================================
   ORDER CREATED - FEMININE COLOR POLISH V2
   ========================================================= */

body
.public-order-created-page {
  background:
    radial-gradient(
      circle at 90% 7%,
      rgba(222,105,153,.14),
      transparent 28%
    ),
    radial-gradient(
      circle at 5% 75%,
      rgba(190,170,224,.14),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #fffafd,
      #faf4f9
    ) !important;
}


/* BACK TO STORE */

body
.public-order-store-link {
  color:
    #b63d6d !important;
}

body
.public-order-store-link:hover {
  color:
    #d84f85 !important;
}


/* MAIN CARD */

body
.public-order-created-card {
  border-color:
    rgba(116,65,91,.10) !important;

  background:
    rgba(255,255,255,.98) !important;

  box-shadow:
    0 24px 70px
    rgba(89,42,65,.08) !important;
}


/* SUCCESS ICON */

body
.public-order-success-icon {
  color:
    #16815d !important;

  background:
    #edf9f4 !important;
}


/* EYEBROW */

body
.public-order-created-card
.eyebrow {
  color:
    #c34878 !important;
}


/* TITLE */

body
.public-order-created-card h1 {
  color:
    #321323 !important;

  font-family:
    Georgia,
    "Times New Roman",
    serif !important;
}


/* ORDER NUMBER */

body
.public-order-number {
  color:
    #806d78 !important;
}


/* ORDER DETAILS */

body
.public-created-details {
  border-color:
    rgba(116,65,91,.08) !important;
}

body
.public-created-details > div {
  border-color:
    rgba(116,65,91,.08) !important;
}

body
.public-created-details span {
  color:
    #8f7884 !important;
}

body
.public-created-details strong {
  color:
    #321323 !important;
}


/* PAYMENT REQUIRED NOTE */

body
.public-order-safe-note {
  border-color:
    rgba(202,75,126,.12) !important;

  background:
    linear-gradient(
      145deg,
      #fff5f9,
      #faf1f8
    ) !important;
}

body
.public-order-safe-note strong {
  color:
    #a93666 !important;
}

body
.public-order-safe-note span {
  color:
    #806d78 !important;
}


/* CRYPTO PAYMENT BOX */

body
.public-heleket-payment-box {
  border-color:
    rgba(116,65,91,.10) !important;

  background:
    linear-gradient(
      145deg,
      #fffafd,
      #fff3f8 60%,
      #f6effa
    ) !important;
}

body
.public-crypto-label {
  color:
    #c34878 !important;
}

body
.public-heleket-payment-copy strong {
  color:
    #321323 !important;
}

body
.public-heleket-payment-copy small {
  color:
    #806d78 !important;
}


/* CRYPTO BUTTON */

body
.public-heleket-pay-button {
  border: 0 !important;

  color:
    #fff !important;

  background:
    linear-gradient(
      135deg,
      #a93666 0%,
      #d65385 58%,
      #bb67b5 100%
    ) !important;

  box-shadow:
    0 13px 29px
    rgba(183,61,111,.20) !important;
}


/* ACCOUNT BUTTON */

body
.public-order-account-button {
  border:
    1px solid
    rgba(190,61,111,.15) !important;

  color:
    #a93666 !important;

  background:
    #fff4f8 !important;

  box-shadow:
    none !important;
}


/* CONTINUE SHOPPING */

body
.public-order-continue-button {
  border: 0 !important;

  color:
    #fff !important;

  background:
    linear-gradient(
      135deg,
      #a93666,
      #d65385 58%,
      #bb67b5
    ) !important;

  box-shadow:
    0 13px 29px
    rgba(183,61,111,.18) !important;
}


/* PAYMENT CONFIRMED
   Keep semantic success green */

body
.public-payment-confirmed-box {
  border-color:
    rgba(16,185,129,.17) !important;

  color:
    #287356 !important;

  background:
    #eefaf4 !important;
}


/* WALLET SUCCESS
   Also remains green intentionally */

body
.public-wallet-success {
  border-color:
    rgba(16,185,129,.17) !important;

  background:
    #eefaf4 !important;
}


/* MOBILE */

@media screen and (max-width: 520px) {

  body
  .public-order-created-card {
    border-radius:
      20px !important;
  }

}

/* END ORDER CREATED - FEMININE COLOR POLISH V2 */


/* =========================================================
   PAYMENT RETURN - UNDERPAID / EXPIRED V1
   ========================================================= */

.public-underpaid-alert {
  display: grid;

  gap: 14px;

  margin-top: 18px;

  padding: 16px;

  border:
    1px solid
    rgba(217,119,6,.18);

  border-radius: 15px;

  background:
    linear-gradient(
      145deg,
      #fff8ea,
      #fff3e3
    );
}


.public-underpaid-alert
> div:first-child {
  display: grid;

  gap: 5px;
}


.public-underpaid-alert
> div:first-child strong {
  color: #925516;

  font-size: 11px;
}


.public-underpaid-alert
> div:first-child span {
  color: #896b4c;

  font-size: 10px;

  line-height: 1.5;
}


.public-underpaid-money {
  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0,1fr)
    );

  gap: 7px;
}


.public-underpaid-money > div {
  display: grid;

  gap: 4px;

  padding: 10px;

  border:
    1px solid
    rgba(170,100,25,.10);

  border-radius: 11px;

  background:
    rgba(255,255,255,.72);
}


.public-underpaid-money span {
  color: #937656;

  font-size: 8px;
}


.public-underpaid-money strong {
  color: #663f19;

  font-size: 14px;
}


.public-underpaid-support {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 12px;

  padding-top: 2px;
}


.public-underpaid-support span {
  color: #87694a;

  font-size: 9px;
}


.public-underpaid-support a,
.public-expired-alert a,
.public-payment-support-button {
  color: #fff !important;

  background:
    linear-gradient(
      135deg,
      #a93666,
      #d65385
    );

  border-radius: 10px;

  padding:
    9px 12px;

  font-size: 9px;

  font-weight: 850;

  text-decoration: none;
}


/* COUNTDOWN */

.public-payment-countdown {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  margin-top: 14px;

  padding:
    13px 14px;

  border:
    1px solid
    rgba(202,75,126,.12);

  border-radius: 13px;

  background:
    linear-gradient(
      145deg,
      #fff5f9,
      #f8f1fa
    );
}


.public-payment-countdown span {
  color: #806d78;

  font-size: 9px;

  font-weight: 750;
}


.public-payment-countdown strong {
  color: #b63d6d;

  font-size: 21px;

  font-variant-numeric:
    tabular-nums;

  letter-spacing: .02em;
}


/* EXPIRED */

.public-expired-alert {
  display: grid;

  gap: 7px;

  margin-top: 18px;

  padding: 15px;

  border:
    1px solid
    rgba(190,55,80,.15);

  border-radius: 14px;

  background: #fff1f4;
}


.public-expired-alert strong {
  color: #a6324c;

  font-size: 11px;
}


.public-expired-alert span {
  color: #8b6570;

  font-size: 10px;

  line-height: 1.5;
}


.public-expired-alert a {
  width: fit-content;

  margin-top: 3px;
}


.public-payment-return-icon.underpaid {
  color: #a76418 !important;

  background: #fff1d7 !important;
}


.public-payment-return-icon.expired,
.public-payment-return-icon.failed {
  color: #b3324c !important;

  background: #fff0f3 !important;
}


.eyebrow.underpaid {
  color: #ae6a20 !important;
}


.eyebrow.expired,
.eyebrow.failed {
  color: #b63d5c !important;
}


/* MOBILE */

@media screen and (max-width: 520px) {

  .public-underpaid-money {
    grid-template-columns:
      repeat(
        3,
        minmax(0,1fr)
      );
  }


  .public-underpaid-support {
    display: grid;
  }


  .public-underpaid-support a {
    width: 100%;

    text-align: center;
  }


  .public-payment-countdown strong {
    font-size: 19px;
  }

}

/* END PAYMENT RETURN - UNDERPAID / EXPIRED V1 */


/* =========================================================
   ORDER CHECKOUT COUNTDOWN V1
   ========================================================= */

.public-order-countdown-box {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

  margin:
    16px 0;

  padding:
    15px 17px;

  border:
    1px solid
    rgba(198,66,119,.15);

  border-radius:
    15px;

  background:
    linear-gradient(
      145deg,
      #fff5f9,
      #faf0f7
    );

  box-shadow:
    0 12px 30px
    rgba(101,43,72,.05);
}


.public-order-countdown-copy {
  display: grid;

  gap: 4px;
}


.public-order-countdown-copy span {
  color:
    #c34878;

  font-size:
    8px;

  font-weight:
    900;

  letter-spacing:
    .09em;
}


.public-order-countdown-copy strong {
  color:
    #58223f;

  font-size:
    10px;

  line-height:
    1.35;
}


.public-order-countdown-time {
  flex:
    0 0 auto;

  min-width:
    78px;

  color:
    #b63d6d;

  font-size:
    25px;

  font-weight:
    900;

  line-height:
    1;

  text-align:
    right;

  font-variant-numeric:
    tabular-nums;

  letter-spacing:
    .02em;
}


/* FINAL FIVE MINUTES */

.public-order-countdown-box.is-ending {
  border-color:
    rgba(203,69,82,.22);

  background:
    linear-gradient(
      145deg,
      #fff1f4,
      #ffe8ee
    );
}


.public-order-countdown-box.is-ending
.public-order-countdown-time {
  color:
    #ba344d;
}


/* UNDERPAID */

.public-order-underpaid-alert {
  display:
    grid;

  gap:
    6px;

  margin:
    15px 0;

  padding:
    14px;

  border:
    1px solid
    rgba(210,132,30,.18);

  border-radius:
    14px;

  background:
    #fff8eb;
}


.public-order-underpaid-alert strong {
  color:
    #96601d;

  font-size:
    11px;
}


.public-order-underpaid-alert span {
  color:
    #8d7250;

  font-size:
    10px;

  line-height:
    1.5;
}


.public-order-underpaid-alert a {
  width:
    fit-content;

  margin-top:
    3px;

  color:
    #b63d6d;

  font-size:
    9px;

  font-weight:
    850;

  text-decoration:
    none;
}


/* EXPIRED */

.public-order-expired-alert {
  display:
    flex;

  gap:
    12px;

  margin:
    16px 0;

  padding:
    15px;

  border:
    1px solid
    rgba(190,54,78,.15);

  border-radius:
    15px;

  background:
    #fff1f4;
}


.public-order-expired-icon {
  display:
    grid;

  place-items:
    center;

  flex:
    0 0 38px;

  width:
    38px;

  height:
    38px;

  border-radius:
    50%;

  color:
    #fff;

  background:
    #b63d5c;

  font-size:
    22px;

  font-weight:
    800;
}


.public-order-expired-alert
> div:last-child {
  display:
    grid;

  gap:
    4px;
}


.public-order-expired-alert strong {
  color:
    #a6324c;

  font-size:
    11px;
}


.public-order-expired-alert span {
  color:
    #8b6570;

  font-size:
    10px;

  line-height:
    1.5;
}


.public-order-expired-alert a {
  margin-top:
    3px;

  color:
    #b63d6d;

  font-size:
    9px;

  font-weight:
    850;

  text-decoration:
    none;
}


.public-payment-expired {
  color:
    #b63d5c !important;
}


.public-payment-underpaid {
  color:
    #a7651b !important;
}


@media screen and (max-width: 520px) {

  .public-order-countdown-box {
    padding:
      13px 14px;

    gap:
      10px;
  }


  .public-order-countdown-time {
    min-width:
      68px;

    font-size:
      22px;
  }

}

/* END ORDER CHECKOUT COUNTDOWN V1 */
