.tlc-app {
  --tlc-primary: #0f9f8f;
  --tlc-primary-dark: #075f57;
  --tlc-primary-soft: #e9f8f5;
  --tlc-primary-pale: #f4fbfa;
  --tlc-ink: #102a2a;
  --tlc-ink-soft: #405b59;
  --tlc-muted: #728683;
  --tlc-line: #dce9e7;
  --tlc-paper: #fff;
  --tlc-canvas: #f5f9f8;
  --tlc-danger: #bf4855;
  --tlc-warning: #a96f11;
  --tlc-radius: 20px;
  --tlc-shadow: 0 18px 45px rgba(16, 70, 65, 0.1);
  width: min(100%, 1240px);
  margin: 0 auto;
  color: var(--tlc-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.tlc-app *,
.tlc-app *::before,
.tlc-app *::after {
  box-sizing: border-box;
}

.tlc-app a {
  color: inherit;
  text-decoration: none;
}

.tlc-app button,
.tlc-app input,
.tlc-app select,
.tlc-app textarea {
  font: inherit;
}

.tlc-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.tlc-kicker {
  color: var(--tlc-primary-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.tlc-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  gap: 7px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.tlc-button-primary {
  background: linear-gradient(135deg, #11a996, #078274);
  box-shadow: 0 11px 24px rgba(15, 159, 143, 0.21);
  color: #fff !important;
}

.tlc-button-secondary {
  border-color: var(--tlc-line);
  background: #fff;
  color: var(--tlc-ink) !important;
}

.tlc-button-large {
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 15px;
  font-size: 14px;
}

.tlc-button-small {
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 9px;
  font-size: 11px;
}

.tlc-button-block {
  width: 100%;
}

.tlc-app-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 230px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 35px 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 15%, rgba(105, 236, 220, 0.35), transparent 25%),
    linear-gradient(135deg, #075f57, #0b998b);
  box-shadow: 0 24px 55px rgba(7, 95, 87, 0.18);
  color: #fff;
}

.tlc-app-hero::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255, 255, 255, 0.035), 0 0 0 68px rgba(255, 255, 255, 0.02);
  content: "";
}

.tlc-app-hero > div:first-child {
  position: relative;
  z-index: 2;
}

.tlc-app-hero .tlc-kicker {
  color: #a9f2e8;
}

.tlc-app-hero h1 {
  max-width: 720px;
  margin: 9px 0 10px;
  color: #fff;
  font-size: clamp(29px, 7.5vw, 48px);
  font-weight: 870;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.tlc-app-hero p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.tlc-hero-icon {
  position: relative;
  z-index: 2;
  display: none;
  width: 120px;
  height: 120px;
  flex: 0 0 120px;
  place-items: center;
  transform: rotate(-6deg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
}

.tlc-hero-icon .tlc-icon {
  width: 54px;
  height: 54px;
}

.tlc-catalog-filter {
  display: grid;
  margin-bottom: 24px;
  padding: 13px;
  border: 1px solid var(--tlc-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(14, 73, 68, 0.06);
  gap: 9px;
}

.tlc-app input[type="text"],
.tlc-app input[type="email"],
.tlc-app input[type="password"],
.tlc-app input[type="tel"],
.tlc-app input[type="search"],
.tlc-app input[type="url"],
.tlc-app input[type="number"],
.tlc-app select,
.tlc-app textarea {
  width: 100%;
  min-height: 47px;
  padding: 10px 13px;
  border: 1px solid #cfdedc;
  border-radius: 12px;
  outline: 0;
  background: #fff;
  color: var(--tlc-ink);
  box-shadow: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.tlc-app input:focus,
.tlc-app select:focus,
.tlc-app textarea:focus {
  border-color: var(--tlc-primary);
  box-shadow: 0 0 0 4px rgba(15, 159, 143, 0.11);
}

.tlc-app input[readonly] {
  background: #f3f7f6;
  color: #617573;
}

.tlc-product-grid {
  display: grid;
  gap: 18px;
}

.tlc-product-card {
  overflow: hidden;
  border: 1px solid var(--tlc-line);
  border-radius: var(--tlc-radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(13, 68, 63, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tlc-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tlc-shadow);
}

.tlc-product-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--tlc-primary-pale);
}

.tlc-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.tlc-product-card:hover .tlc-product-image img {
  transform: scale(1.035);
}

.tlc-product-image > span {
  display: grid;
  height: 100%;
  place-content: center;
  background: radial-gradient(circle at 76% 18%, rgba(69, 224, 205, 0.55), transparent 28%), linear-gradient(145deg, #082e2b, #0b8f82);
  color: #fff;
  text-align: center;
}

.tlc-product-image > span b {
  font-size: 67px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.tlc-product-image > span small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tlc-product-image em {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 6px 17px rgba(6, 56, 52, 0.12);
  color: var(--tlc-primary-dark);
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.tlc-product-body {
  padding: 19px;
}

.tlc-product-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--tlc-primary-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tlc-product-type span:last-child {
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--tlc-primary-soft);
}

.tlc-product-body h2 {
  margin: 10px 0 7px;
  font-size: 20px;
  font-weight: 830;
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.tlc-product-body > p {
  min-height: 44px;
  margin: 0;
  color: var(--tlc-muted);
  font-size: 12px;
}

.tlc-product-body ul {
  display: grid;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  gap: 6px;
}

.tlc-product-body li {
  display: flex;
  align-items: flex-start;
  color: var(--tlc-ink-soft);
  font-size: 11px;
  gap: 6px;
}

.tlc-product-body li .tlc-icon {
  width: 16px;
  height: 16px;
  padding: 3px;
  border-radius: 50%;
  background: var(--tlc-primary-soft);
  color: var(--tlc-primary-dark);
}

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

.tlc-product-buy > div {
  display: flex;
  flex-direction: column;
}

.tlc-product-buy small {
  color: var(--tlc-muted);
  font-size: 9px;
}

.tlc-product-buy strong {
  font-size: 20px;
  letter-spacing: -0.035em;
}

.tlc-pagination ul {
  display: flex;
  justify-content: center;
  margin: 28px 0 0;
  padding: 0;
  flex-wrap: wrap;
  list-style: none;
  gap: 6px;
}

.tlc-pagination a,
.tlc-pagination span {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--tlc-line);
  border-radius: 10px;
  background: #fff;
  font-size: 11px;
  font-weight: 750;
}

.tlc-pagination .current {
  border-color: var(--tlc-primary);
  background: var(--tlc-primary);
  color: #fff;
}

.tlc-empty {
  padding: 48px 20px;
  border: 1px dashed #b7d9d5;
  border-radius: var(--tlc-radius);
  background: var(--tlc-primary-pale);
  text-align: center;
}

.tlc-empty > span {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 19px;
  background: var(--tlc-primary-soft);
  color: var(--tlc-primary-dark);
}

.tlc-empty > span .tlc-icon {
  width: 28px;
  height: 28px;
}

.tlc-empty h2 {
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.tlc-empty p {
  margin: 0 auto 19px;
  color: var(--tlc-muted);
}

.tlc-compact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--tlc-muted);
  font-size: 11px;
  font-weight: 700;
}

.tlc-compact-header span {
  display: flex;
  align-items: center;
  color: var(--tlc-primary-dark);
  gap: 5px;
}

.tlc-compact-header .tlc-icon {
  width: 16px;
  height: 16px;
}

.tlc-checkout-grid {
  display: grid;
  gap: 20px;
}

.tlc-checkout-form {
  display: grid;
  gap: 14px;
}

.tlc-panel,
.tlc-order-summary {
  padding: 21px;
  border: 1px solid var(--tlc-line);
  border-radius: var(--tlc-radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(14, 73, 68, 0.055);
}

.tlc-panel-heading {
  display: flex;
  align-items: flex-start;
  margin-bottom: 19px;
  gap: 11px;
}

.tlc-panel-heading > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 9px;
  background: var(--tlc-primary-soft);
  color: var(--tlc-primary-dark);
  font-size: 11px;
  font-weight: 850;
}

.tlc-panel-heading h2,
.tlc-order-summary h2 {
  margin: 0 0 3px;
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -0.025em;
}

.tlc-panel-heading p {
  margin: 0;
  color: var(--tlc-muted);
  font-size: 11px;
}

.tlc-form-grid,
.tlc-panel > label {
  display: grid;
  gap: 13px;
}

.tlc-form-grid label,
.tlc-panel > label {
  display: flex;
  flex-direction: column;
  color: var(--tlc-ink-soft);
  font-size: 11px;
  font-weight: 750;
  gap: 5px;
}

.tlc-form-grid small,
.tlc-panel label small {
  color: var(--tlc-muted);
  font-size: 9px;
  font-weight: 500;
}

.tlc-payment-options {
  display: grid;
  gap: 9px;
}

.tlc-payment-options > label {
  position: relative;
  cursor: pointer;
}

.tlc-payment-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tlc-payment-card {
  display: grid;
  min-height: 78px;
  padding: 13px;
  grid-template-columns: auto 1fr;
  align-items: center;
  border: 1px solid var(--tlc-line);
  border-radius: 14px;
  column-gap: 11px;
}

.tlc-payment-card .tlc-icon {
  width: 40px;
  height: 40px;
  padding: 10px;
  grid-row: 1 / 3;
  border-radius: 12px;
  background: var(--tlc-primary-soft);
  color: var(--tlc-primary-dark);
}

.tlc-payment-card b {
  align-self: end;
  font-size: 12px;
}

.tlc-payment-card small {
  align-self: start;
  color: var(--tlc-muted);
  font-size: 9px;
}

.tlc-payment-options input:checked + .tlc-payment-card {
  border-color: var(--tlc-primary);
  background: var(--tlc-primary-pale);
  box-shadow: 0 0 0 3px rgba(15, 159, 143, 0.08);
}

.tlc-consent {
  display: flex;
  align-items: flex-start;
  padding: 4px 2px;
  color: var(--tlc-muted);
  font-size: 10px;
  gap: 8px;
}

.tlc-consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  accent-color: var(--tlc-primary);
}

.tlc-order-summary {
  height: fit-content;
}

.tlc-summary-product {
  display: flex;
  align-items: center;
  margin: 16px 0;
  padding: 13px;
  border-radius: 14px;
  background: var(--tlc-canvas);
  gap: 11px;
}

.tlc-summary-product img,
.tlc-summary-product > span {
  display: grid;
  width: 58px;
  height: 48px;
  flex: 0 0 58px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, #08322f, #0b8c7e);
  color: #fff;
  object-fit: cover;
  font-size: 23px;
  font-weight: 900;
}

.tlc-summary-product > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.tlc-summary-product strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tlc-summary-product small {
  color: var(--tlc-muted);
  font-size: 9px;
}

.tlc-order-summary dl,
.tlc-bank-instruction dl {
  margin: 0;
}

.tlc-order-summary dl > div,
.tlc-bank-instruction dl > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--tlc-line);
  gap: 15px;
}

.tlc-order-summary dt,
.tlc-bank-instruction dt {
  color: var(--tlc-muted);
  font-size: 10px;
}

.tlc-order-summary dd,
.tlc-bank-instruction dd {
  margin: 0;
  font-size: 11px;
  font-weight: 750;
  text-align: right;
}

.tlc-order-summary .tlc-summary-total {
  margin-top: 4px;
  padding: 15px 0 8px;
  border-bottom: 0;
}

.tlc-summary-total dt {
  color: var(--tlc-ink);
  font-size: 13px;
  font-weight: 800;
}

.tlc-summary-total dd {
  font-size: 24px;
  letter-spacing: -0.035em;
}

.tlc-order-summary > p {
  display: flex;
  margin: 15px 0 0;
  padding: 11px;
  border-radius: 11px;
  background: var(--tlc-primary-pale);
  color: var(--tlc-muted);
  font-size: 9px;
  gap: 7px;
}

.tlc-order-summary > p .tlc-icon {
  width: 16px;
  color: var(--tlc-primary-dark);
}

.tlc-notice {
  margin-bottom: 17px;
  padding: 12px 15px;
  border: 1px solid;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 650;
}

.tlc-notice-error {
  border-color: #efcdd1;
  background: #fff4f5;
  color: #9f3541;
}

.tlc-notice-success {
  border-color: #c5e9df;
  background: #effaf6;
  color: #16715d;
}

.tlc-result-app {
  max-width: 800px;
}

.tlc-result-card {
  padding: 35px 20px;
  border: 1px solid var(--tlc-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--tlc-shadow);
  text-align: center;
}

.tlc-result-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 23px;
  background: #fff4dc;
  color: #a96f11;
}

.tlc-result-icon.is-paid {
  background: var(--tlc-primary-soft);
  color: var(--tlc-primary-dark);
}

.tlc-result-icon .tlc-icon {
  width: 34px;
  height: 34px;
}

.tlc-result-card h1 {
  margin: 8px 0;
  font-size: clamp(29px, 7vw, 42px);
  font-weight: 860;
  letter-spacing: -0.05em;
}

.tlc-result-card > p {
  max-width: 570px;
  margin: 0 auto 22px;
  color: var(--tlc-muted);
}

.tlc-result-summary {
  display: grid;
  margin: 20px 0;
  padding: 4px 16px;
  border: 1px solid var(--tlc-line);
  border-radius: 16px;
  background: var(--tlc-canvas);
}

.tlc-result-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--tlc-line);
  gap: 15px;
  text-align: left;
}

.tlc-result-summary > div:last-child {
  border-bottom: 0;
}

.tlc-result-summary span {
  color: var(--tlc-muted);
  font-size: 10px;
}

.tlc-result-summary strong {
  font-size: 11px;
  text-align: right;
}

.tlc-bank-instruction {
  margin: 18px 0;
  padding: 20px;
  border: 1px solid #cce7e3;
  border-radius: 17px;
  background: var(--tlc-primary-pale);
  text-align: left;
}

.tlc-bank-instruction h2 {
  margin: 0 0 10px;
  font-size: 16px;
}

.tlc-bank-instruction p {
  margin: 12px 0 0;
  color: var(--tlc-muted);
  font-size: 10px;
}

.tlc-result-actions {
  display: grid;
  margin-top: 18px;
  gap: 9px;
}

.tlc-login-app {
  display: grid;
  min-height: 570px;
  place-items: center;
}

.tlc-login-card {
  width: min(100%, 440px);
  padding: 31px 23px;
  border: 1px solid var(--tlc-line);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--tlc-shadow);
  text-align: center;
}

.tlc-login-card > span {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 17px;
  place-items: center;
  border-radius: 21px;
  background: var(--tlc-primary-soft);
  color: var(--tlc-primary-dark);
}

.tlc-login-card > span .tlc-icon {
  width: 31px;
  height: 31px;
}

.tlc-login-card h1 {
  margin: 0 0 6px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.tlc-login-card > p {
  margin: 0 0 20px;
  color: var(--tlc-muted);
  font-size: 12px;
}

.tlc-login-card form {
  display: grid;
  text-align: left;
  gap: 11px;
}

.tlc-login-card form p {
  margin: 0;
}

.tlc-login-card label {
  display: block;
  margin-bottom: 5px;
  color: var(--tlc-ink-soft);
  font-size: 10px;
  font-weight: 750;
}

.tlc-login-card .login-remember label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tlc-login-card .button-primary {
  width: 100%;
  min-height: 49px;
  border: 0;
  border-radius: 13px;
  background: var(--tlc-primary);
  color: #fff;
  font-weight: 800;
}

.tlc-login-card > a {
  display: inline-block;
  margin-top: 14px;
  color: var(--tlc-primary-dark);
  font-size: 11px;
  font-weight: 750;
}

.tlc-login-card > small {
  display: block;
  margin-top: 10px;
  color: var(--tlc-muted);
  font-size: 9px;
}

.tlc-account-header {
  position: relative;
  display: grid;
  padding: 23px;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #075f57, #0b998b);
  box-shadow: 0 20px 42px rgba(7, 95, 87, 0.18);
  color: #fff;
  gap: 12px;
}

.tlc-user-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 22px;
  font-weight: 900;
}

.tlc-account-header > div:nth-child(2) {
  min-width: 0;
}

.tlc-account-header span,
.tlc-account-header p {
  color: rgba(255, 255, 255, 0.67);
  font-size: 9px;
}

.tlc-account-header h1 {
  overflow: hidden;
  margin: 0;
  color: #fff;
  font-size: 21px;
  letter-spacing: -0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tlc-account-header p {
  overflow: hidden;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tlc-account-header > .tlc-button {
  grid-column: 1 / 3;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

.tlc-account-nav {
  display: grid;
  margin: 14px 0;
  padding: 6px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--tlc-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(14, 73, 68, 0.055);
}

.tlc-account-nav a {
  display: flex;
  min-width: 0;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 11px;
  color: var(--tlc-muted);
  font-size: 8px;
  font-weight: 750;
  gap: 2px;
}

.tlc-account-nav a.is-active {
  background: var(--tlc-primary-soft);
  color: var(--tlc-primary-dark);
}

.tlc-account-nav .tlc-icon {
  width: 18px;
  height: 18px;
}

.tlc-account-content {
  padding: 16px 0 10px;
}

.tlc-dashboard-title {
  display: flex;
  margin-bottom: 20px;
  flex-direction: column;
  gap: 13px;
}

.tlc-dashboard-title h2 {
  margin: 6px 0 0;
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

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

.tlc-stat-grid article {
  display: flex;
  min-width: 0;
  padding: 16px 12px;
  align-items: center;
  border: 1px solid var(--tlc-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(14, 73, 68, 0.05);
  gap: 9px;
}

.tlc-stat-grid article > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--tlc-primary-soft);
  color: var(--tlc-primary-dark);
}

.tlc-stat-grid .tlc-icon {
  width: 17px;
  height: 17px;
}

.tlc-stat-grid article > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.tlc-stat-grid strong {
  font-size: 20px;
  letter-spacing: -0.04em;
}

.tlc-stat-grid small {
  overflow: hidden;
  color: var(--tlc-muted);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tlc-dashboard-section {
  margin-top: 26px;
}

.tlc-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tlc-section-title h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.tlc-section-title a {
  color: var(--tlc-primary-dark);
  font-size: 10px;
  font-weight: 800;
}

.tlc-license-list {
  display: grid;
  gap: 14px;
}

.tlc-license-card {
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--tlc-line);
  border-radius: var(--tlc-radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(14, 73, 68, 0.06);
}

.tlc-license-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}

.tlc-license-product {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.tlc-license-product > span,
.tlc-download-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #0eb09e, #08766c);
  color: #fff;
  font-size: 19px;
  font-weight: 900;
}

.tlc-license-product > div {
  min-width: 0;
}

.tlc-license-product small,
.tlc-license-meta small {
  display: block;
  color: var(--tlc-muted);
  font-size: 8px;
}

.tlc-license-product h2 {
  overflow: hidden;
  margin: 1px 0 0;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tlc-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: #edf2f1;
  color: #617573;
  font-size: 8px;
  font-weight: 850;
  white-space: nowrap;
}

.tlc-status-active,
.tlc-status-paid,
.tlc-status-completed {
  background: #e7f8f2;
  color: #15745f;
}

.tlc-status-pending {
  background: #fff4dc;
  color: #9b6711;
}

.tlc-status-failed,
.tlc-status-cancelled,
.tlc-status-refunded,
.tlc-status-suspended,
.tlc-status-expired {
  background: #fff0f2;
  color: #a83c48;
}

.tlc-key-box {
  display: flex;
  align-items: center;
  margin: 15px 0;
  padding: 11px;
  border: 1px solid #cce7e3;
  border-radius: 13px;
  background: var(--tlc-primary-pale);
  gap: 7px;
}

.tlc-key-box > div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.tlc-key-box small {
  color: var(--tlc-muted);
  font-size: 7px;
}

.tlc-key-box code {
  overflow: hidden;
  padding: 0;
  background: transparent;
  color: var(--tlc-primary-dark);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tlc-key-box button {
  display: grid;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: #fff;
  color: var(--tlc-primary-dark);
  cursor: pointer;
  font-size: 8px;
  font-weight: 800;
}

.tlc-key-box button .tlc-icon {
  width: 15px;
  height: 15px;
}

.tlc-license-meta {
  display: grid;
  padding: 11px 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--tlc-line);
}

.tlc-license-meta > span {
  min-width: 0;
  padding: 0 8px;
  border-right: 1px solid var(--tlc-line);
  text-align: center;
}

.tlc-license-meta > span:first-child {
  padding-left: 0;
}

.tlc-license-meta > span:last-child {
  padding-right: 0;
  border-right: 0;
}

.tlc-license-meta strong {
  display: block;
  overflow: hidden;
  margin-top: 2px;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tlc-domain-list {
  display: grid;
  margin-top: 13px;
  gap: 6px;
}

.tlc-domain-list > div {
  display: flex;
  align-items: center;
  padding: 9px 10px;
  border-radius: 11px;
  background: var(--tlc-canvas);
  gap: 8px;
}

.tlc-domain-list > div > .tlc-icon {
  width: 18px;
  height: 18px;
  color: var(--tlc-primary-dark);
}

.tlc-domain-list > div > span {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.tlc-domain-list strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tlc-domain-list small {
  color: var(--tlc-muted);
  font-size: 7px;
}

.tlc-domain-list form {
  margin: 0;
}

.tlc-domain-list button {
  padding: 4px 7px;
  border: 0;
  background: transparent;
  color: var(--tlc-danger);
  cursor: pointer;
  font-size: 8px;
  font-weight: 800;
}

.tlc-domain-form {
  display: grid;
  margin-top: 12px;
  gap: 7px;
}

.tlc-domain-form input {
  min-height: 42px !important;
  font-size: 11px !important;
}

.tlc-table-card {
  overflow: hidden;
  border: 1px solid var(--tlc-line);
  border-radius: var(--tlc-radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(14, 73, 68, 0.06);
}

.tlc-table-scroll {
  overflow-x: auto;
}

.tlc-data-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.tlc-data-table th,
.tlc-data-table td {
  padding: 14px 15px;
  border-bottom: 1px solid var(--tlc-line);
  text-align: left;
  vertical-align: middle;
}

.tlc-data-table th {
  background: #f7faf9;
  color: var(--tlc-muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tlc-data-table td {
  font-size: 10px;
}

.tlc-data-table td > strong,
.tlc-data-table td > small {
  display: block;
}

.tlc-data-table td > small {
  margin-top: 3px;
  color: var(--tlc-muted);
  font-size: 8px;
}

.tlc-proof-form {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tlc-file-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid var(--tlc-line);
  border-radius: 9px;
  cursor: pointer;
  font-size: 8px;
  font-weight: 750;
}

.tlc-file-button input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tlc-download-grid {
  display: grid;
  gap: 11px;
}

.tlc-download-grid article {
  display: grid;
  padding: 16px;
  grid-template-columns: auto 1fr;
  align-items: center;
  border: 1px solid var(--tlc-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(14, 73, 68, 0.05);
  gap: 11px;
}

.tlc-download-grid article > div:nth-child(2) {
  min-width: 0;
}

.tlc-download-grid h2 {
  overflow: hidden;
  margin: 1px 0;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tlc-download-grid small,
.tlc-download-grid p {
  margin: 0;
  color: var(--tlc-muted);
  font-size: 8px;
}

.tlc-download-grid .tlc-button,
.tlc-download-grid > article > .tlc-status {
  grid-column: 1 / 3;
}

@media (min-width: 560px) {
  .tlc-catalog-filter {
    grid-template-columns: minmax(0, 1.6fr) minmax(170px, 0.7fr) auto;
  }

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

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

  .tlc-field-wide {
    grid-column: 1 / 3;
  }

  .tlc-payment-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlc-result-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tlc-result-summary > div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    border-right: 1px solid var(--tlc-line);
    border-bottom: 0;
    gap: 2px;
  }

  .tlc-result-summary > div:last-child {
    border-right: 0;
  }

  .tlc-result-summary strong {
    text-align: left;
  }

  .tlc-result-actions {
    display: flex;
    justify-content: center;
  }

  .tlc-account-header {
    grid-template-columns: auto 1fr auto;
  }

  .tlc-account-header > .tlc-button {
    grid-column: auto;
  }

  .tlc-account-nav a {
    min-height: 48px;
    flex-direction: row;
    font-size: 10px;
    gap: 6px;
  }

  .tlc-dashboard-title {
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
  }

  .tlc-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tlc-stat-grid article {
    padding: 17px 13px;
  }

  .tlc-stat-grid article > span {
    display: none;
  }

  .tlc-license-card {
    padding: 21px;
  }

  .tlc-key-box code {
    font-size: 11px;
  }

  .tlc-domain-form {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .tlc-download-grid article {
    grid-template-columns: auto 1fr auto;
  }

  .tlc-download-grid .tlc-button,
  .tlc-download-grid > article > .tlc-status {
    grid-column: auto;
  }
}

@media (min-width: 800px) {
  .tlc-app-hero {
    min-height: 270px;
    padding: 44px;
  }

  .tlc-hero-icon {
    display: grid;
  }

  .tlc-checkout-grid {
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 25px;
  }

  .tlc-order-summary {
    position: sticky;
    top: 105px;
  }

  .tlc-panel,
  .tlc-order-summary {
    padding: 25px;
  }

  .tlc-account-nav {
    margin: 18px 0;
  }

  .tlc-stat-grid article > span {
    display: grid;
  }

  .tlc-license-list:not(.is-compact) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 1050px) {
  .tlc-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tlc-account-app {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
  }

  .tlc-account-app > .tlc-notice,
  .tlc-account-header {
    grid-column: 1 / 3;
  }

  .tlc-account-nav {
    position: sticky;
    top: 100px;
    display: grid;
    margin: 0;
    padding: 9px;
    grid-template-columns: 1fr;
  }

  .tlc-account-nav a {
    min-height: 48px;
    justify-content: flex-start;
    padding: 9px 12px;
  }

  .tlc-account-content {
    padding-top: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tlc-app *,
  .tlc-app *::before,
  .tlc-app *::after {
    transition-duration: 0.01ms !important;
  }
}

