/* CONTACT OFFICIAL PURCHASE RECEIPT PAGE - FULL RESPONSIVE & PRINT CSS */

.ReceiptPageMainContainer {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 8rem 1.25rem 7rem 1.25rem;
  z-index: 2;
  box-sizing: border-box;
}

.ReceiptPageMainContainer::before {
  content: "";
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 92vw);
  height: 520px;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(255, 255, 255, 0.07), transparent 58%),
    radial-gradient(ellipse at 18% 55%, rgba(139, 92, 246, 0.05), transparent 55%),
    radial-gradient(ellipse at 82% 45%, rgba(34, 211, 238, 0.045), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

.ReceiptPageLoadingView {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem;
  gap: 1.25rem;
}

.ReceiptLoadingSpinner {
  width: 32px;
  height: 32px;
  border: 2.5px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: ReceiptSpinAnimation 0.7s linear infinite;
}

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

.ReceiptLoadingLabel {
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.ReceiptPageErrorView {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 1.5rem;
  gap: 1rem;
  max-width: 500px;
}

.ReceiptErrorIconCircle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ReceiptErrorTitle {
  font-family: var(--PrimaryHeadingFontFamily);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.ReceiptErrorMessage {
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}

.ReceiptReturnButton {
  font-family: var(--PrimaryBodyFontFamily);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.ReceiptReturnButton:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.ReceiptPageContentView {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  animation: FadeInAndSlideUpAnimation 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ReceiptHeaderRow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 1.9rem;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0.04) 100%),
    rgba(6, 6, 10, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    0 24px 60px -16px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 1px 0 rgba(255, 255, 255, 0.14) inset;
  overflow: hidden;
}

.ReceiptHeaderRow::after {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12), transparent 65%);
  pointer-events: none;
}

.ReceiptHeaderMedallion {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 22px rgba(255, 255, 255, 0.07), 0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

.ReceiptHeaderMedallion svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
}

.ReceiptHeaderInfoWrapper {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  flex: 1;
  min-width: 0;
}

.ReceiptBrandTag {
  font-family: var(--PrimaryHeadingFontFamily);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ReceiptMainTitle {
  font-family: var(--PrimaryHeadingFontFamily);
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 800;
  color: var(--PureWhiteColor);
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.ReceiptInvoiceCode {
  font-family: var(--PrimaryCodeFontFamily);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.03em;
  word-break: break-all;
}

.ReceiptStatusChip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.05rem;
  border-radius: 10px;
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.09);
  border: 1px solid rgba(16, 185, 129, 0.36);
  color: #34d399;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.14), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.ReceiptStatusChip.PendingVariant {
  background: rgba(251, 191, 36, 0.09);
  border-color: rgba(251, 191, 36, 0.36);
  color: #fbbf24;
  box-shadow: 0 0 24px rgba(251, 191, 36, 0.14), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.ReceiptStatusChip.PendingVariant .ReceiptStatusDot {
  background: #fbbf24;
  box-shadow: 0 0 8px #fbbf24;
  animation: StatusDotPulseAnimation 1.6s ease-in-out infinite alternate;
}

.ReceiptStatusDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: StatusDotPulseAnimation 1.6s ease-in-out infinite alternate;
}

.ReceiptInfoCardsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.ReceiptInfoCard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.015) 50%, rgba(255, 255, 255, 0.035) 100%),
    rgba(6, 6, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow:
    0 20px 48px -14px rgba(0, 0, 0, 0.85),
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.ReceiptInfoCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.4rem;
  right: 1.4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.ReceiptInfoCard:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 28px 56px -14px rgba(0, 0, 0, 0.95),
    0 0 26px rgba(255, 255, 255, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.16) inset;
}

.ReceiptInfoCardLabel {
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.66rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.34);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.ReceiptInfoCardValue {
  font-family: var(--PrimaryHeadingFontFamily);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--PureWhiteColor);
  letter-spacing: -0.01em;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.ReceiptInfoCardSub {
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.45;
}

.ReceiptAccessKeyCard {
  position: relative;
  background:
    radial-gradient(circle at 0% 0%, rgba(16, 185, 129, 0.12), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(16, 185, 129, 0.06), transparent 50%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(5, 10, 8, 0.62);
  border: 1px solid rgba(16, 185, 129, 0.32);
  border-radius: 10px;
  padding: 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow:
    0 24px 56px -14px rgba(0, 0, 0, 0.9),
    0 0 36px rgba(16, 185, 129, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  overflow: hidden;
}

.ReceiptAccessKeyCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.65), transparent);
}

.ReceiptAccessKeyCard::after {
  content: "";
  position: absolute;
  bottom: -70%;
  right: -8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent 65%);
  pointer-events: none;
}

.ReceiptKeyCardHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ReceiptKeyLabel {
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.78rem;
  font-weight: 700;
  color: #34d399;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ReceiptKeyReadyTag {
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.24rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
}

.ReceiptKeyMonoBox {
  font-family: var(--PrimaryCodeFontFamily);
  font-size: clamp(0.95rem, 2.6vw, 1.25rem);
  font-weight: 600;
  color: #6ee7b7;
  letter-spacing: 0.05em;
  word-break: break-all;
  user-select: all;
  -webkit-user-select: all;
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.35)),
    rgba(0, 0, 0, 0.3);
  padding: 1.05rem 1.15rem;
  border-radius: 10px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  text-shadow: 0 0 18px rgba(110, 231, 183, 0.45);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3), 0 4px 18px rgba(0, 0, 0, 0.4) inset;
  position: relative;
  z-index: 1;
}

.ReceiptKeyCopyBtn {
  font-family: var(--PrimaryBodyFontFamily);
  background: rgba(16, 185, 129, 0.14);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.42);
  border-radius: 9999px;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.ReceiptKeyCopyBtn:hover {
  background: rgba(16, 185, 129, 0.26);
  border-color: rgba(16, 185, 129, 0.65);
  box-shadow: 0 0 22px rgba(16, 185, 129, 0.3);
  transform: translateY(-1px);
}

.ReceiptKeyCopyBtn:active {
  transform: translateY(0);
}

.ReceiptFinancialCard {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.015) 55%, rgba(255, 255, 255, 0.035) 100%),
    rgba(6, 6, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  padding: 1.35rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow:
    0 20px 48px -14px rgba(0, 0, 0, 0.85),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.ReceiptFinancialRow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.65rem 0;
}

.ReceiptFinancialItemRow {
  padding: 0.75rem 0;
}

.ReceiptFinancialItemInfo {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  flex: 1;
  margin-right: 1rem;
}

.ReceiptFinancialItemName {
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--PureWhiteColor);
}

.ReceiptFinancialItemDesc {
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.44);
  line-height: 1.5;
}

.ReceiptFinancialItemPrice {
  font-family: var(--PrimaryCodeFontFamily);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--PureWhiteColor);
  white-space: nowrap;
}

.ReceiptFinancialDivider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  margin: 0;
}

.ReceiptFinancialSubRow {
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.44);
  padding: 0.5rem 0;
}

.ReceiptFinancialTotalRow {
  font-family: var(--PrimaryHeadingFontFamily);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--PureWhiteColor);
  margin: 0.65rem -0.6rem 0 -0.6rem;
  padding: 0.95rem 1.2rem;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.04)),
    rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(16, 185, 129, 0.22);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.08), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.ReceiptRetentionNotice {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.7);
}

.ReceiptRetentionNotice p {
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.44);
  line-height: 1.6;
  margin: 0;
}

.ReceiptRetentionNotice strong {
  color: rgba(255, 255, 255, 0.7);
}

.ReceiptActionsGrid {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding-top: 0.35rem;
}

.ReceiptActionBtn {
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.72rem 1.45rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.ReceiptActionBtn:hover {
  transform: translateY(-2px);
}

.ReceiptActionPrimary {
  background: rgba(255, 255, 255, 0.09);
  color: var(--PureWhiteColor);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.ReceiptActionPrimary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.14);
}

.ReceiptActionSecondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.13);
}

.ReceiptActionSecondary:hover {
  color: var(--PureWhiteColor);
  border-color: rgba(255, 255, 255, 0.32);
}

.ReceiptActionGhost {
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  border-color: transparent;
}

.ReceiptActionGhost:hover {
  color: rgba(255, 255, 255, 0.75);
}

.ReceiptSupportNote {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(6, 6, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.7);
}

.ReceiptSupportNote p {
  font-family: var(--PrimaryBodyFontFamily);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

.ReceiptSupportNote strong {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 600px) {
  .ReceiptInfoCardsGrid { grid-template-columns: 1fr; }
  .ReceiptHeaderRow { flex-direction: column; align-items: flex-start; }
  .ReceiptActionsGrid { flex-direction: column; }
  .ReceiptActionBtn { width: 100%; }
  .ReceiptPageMainContainer { padding: 6.5rem 1rem 6rem 1rem; }
  .ReceiptFinancialTotalRow { margin-left: 0; margin-right: 0; }
}


/* PERFECT DARK CYBER PDF & PRINT EXPORT STYLES */
@media print {
  @page {
    size: A4 portrait;
    margin: 0;
  }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
  }

  html, body {
    background: #09090f !important;
    color: #ffffff !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .NavigationBarHeaderContainer,
  .SocialNavigationFixedFooterContainer,
  .FooterBottomLinksNavigationGroup,
  .SiteHeartDedicationContainer,
  .ReceiptActionsGrid,
  .ReceiptKeyCopyBtn,
  .CosmicGalaxyCanvasContainer {
    display: none !important;
  }

  .ReceiptPageMainContainer {
    padding: 2.5rem 3rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    background: radial-gradient(circle at 50% 20%, #151525 0%, #09090f 70%) !important;
  }

  .ReceiptPageContentView {
    max-width: 100% !important;
    width: 100% !important;
    gap: 1.25rem !important;
  }

  .ReceiptHeaderRow {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding-bottom: 1.25rem !important;
  }

  .ReceiptBrandTag {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.8rem !important;
  }

  .ReceiptMainTitle {
    color: #ffffff !important;
    font-size: 1.8rem !important;
  }

  .ReceiptInvoiceCode {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem !important;
  }

  .ReceiptStatusChip {
    background: rgba(16, 185, 129, 0.12) !important;
    border: 1px solid rgba(16, 185, 129, 0.45) !important;
    color: #34d399 !important;
  }

  .ReceiptStatusDot {
    background: #34d399 !important;
  }

  .ReceiptInfoCard {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 1.1rem 1.3rem !important;
  }

  .ReceiptInfoCardLabel {
    color: rgba(255, 255, 255, 0.4) !important;
  }

  .ReceiptInfoCardValue {
    color: #ffffff !important;
    font-size: 1.05rem !important;
  }

  .ReceiptInfoCardSub {
    color: rgba(255, 255, 255, 0.65) !important;
  }

  .ReceiptAccessKeyCard {
    background: rgba(16, 185, 129, 0.06) !important;
    border: 1px solid rgba(16, 185, 129, 0.35) !important;
    border-radius: 12px !important;
    padding: 1.25rem 1.4rem !important;
  }

  .ReceiptKeyLabel {
    color: #34d399 !important;
    font-size: 0.85rem !important;
  }

  .ReceiptKeyReadyTag {
    color: rgba(255, 255, 255, 0.45) !important;
  }

  .ReceiptKeyMonoBox {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(16, 185, 129, 0.25) !important;
    color: #6ee7b7 !important;
    font-size: 1.15rem !important;
    padding: 0.85rem 1.1rem !important;
  }

  .ReceiptFinancialCard {
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 1.25rem 1.4rem !important;
  }

  .ReceiptFinancialItemName {
    color: #ffffff !important;
    font-size: 0.95rem !important;
  }

  .ReceiptFinancialItemDesc {
    color: rgba(255, 255, 255, 0.5) !important;
  }

  .ReceiptFinancialItemPrice {
    color: #ffffff !important;
  }

  .ReceiptFinancialDivider {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .ReceiptFinancialSubRow {
    color: rgba(255, 255, 255, 0.55) !important;
  }

  .ReceiptFinancialTotalRow {
    color: #ffffff !important;
    font-size: 1.15rem !important;
  }

  .ReceiptRetentionNotice {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .ReceiptRetentionNotice p {
    color: rgba(255, 255, 255, 0.5) !important;
  }

  .ReceiptRetentionNotice strong {
    color: rgba(255, 255, 255, 0.8) !important;
  }
}
