:root {
  --bg: #fffaf3;
  --surface: #ffffff;
  --surface-2: #f7efe4;
  --text: #191511;
  --muted: #766b60;
  --line: #ecdcca;
  --green: #22c55e;
  --green-dark: #16a34a;
  --orange: #f59e0b;
  --brown: #8a4b25;
  --dark: #15110e;
  --radius: 24px;
  --shadow: 0 18px 48px rgba(85, 49, 20, .12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(245,158,11,.18), transparent 28%),
    radial-gradient(circle at 95% 10%, rgba(34,197,94,.14), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.top-banner {
  background: var(--dark);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  padding: 10px 16px;
}

.top-banner span { color: #a7f3d0; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,250,243,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(236,220,202,.75);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.5px;
}

.mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--green), #77dd8c);
  display: grid;
  place-items: center;
  color: #052413;
  box-shadow: 0 12px 25px rgba(34,197,94,.22);
}

.links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 850;
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 15px;
  padding: 0 18px;
  border: 0;
  cursor: pointer;
  font-weight: 950;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--green);
  color: #052413;
  box-shadow: 0 12px 25px rgba(34,197,94,.22);
}

.btn-primary:hover { background: #33db70; }

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-soft {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero { padding: 68px 0 58px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brown);
  font-weight: 950;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(85,49,20,.06);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -2.3px;
  margin-bottom: 20px;
}

h1 span { color: var(--green-dark); }

.lead {
  color: var(--muted);
  font-size: 19px;
  max-width: 660px;
  margin-bottom: 28px;
}

.hero-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 15px;
  max-width: 640px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.prefix {
  color: var(--muted);
  font-weight: 900;
  padding-left: 4px;
  font-size: 14px;
}

.slug {
  height: 48px;
  border: 1px solid #eadbcb;
  border-radius: 15px;
  outline: none;
  padding: 0 14px;
  font-weight: 900;
  color: var(--text);
  background: #fffaf6;
}

.slug::placeholder { color: #b8aa9d; }

.slug-result {
  max-width: 640px;
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 12px;
  font-weight: 850;
  border: 1px solid var(--line);
  background: #fff;
}

.slug-result.ok {
  border-color: rgba(34,197,94,.35);
  background: #ecfdf3;
  color: #14532d;
}

.slug-result.bad {
  border-color: rgba(239,68,68,.28);
  background: #fff1f2;
  color: #7f1d1d;
}

.small-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  margin-bottom: 28px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 680px;
}

.trust-card {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(85,49,20,.06);
}

.trust-card b {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

.trust-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
}

.blob {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245,158,11,.24), rgba(34,197,94,.18));
  filter: blur(18px);
  opacity: .8;
}

.mockup-card {
  position: absolute;
  left: 0;
  top: 92px;
  width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 3;
}

.mockup-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.mockup-card p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.mini-bars {
  display: grid;
  gap: 8px;
}

.bar {
  height: 10px;
  border-radius: 999px;
  background: #f0e2d3;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--green);
}

.phone {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 652px;
  background: #111;
  border-radius: 44px;
  padding: 11px;
  box-shadow: 0 30px 70px rgba(85,49,20,.24);
  transform: rotate(-2deg);
}

.screen {
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #fffaf3;
  position: relative;
}

.store-cover {
  height: 186px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.72)),
    url('https://images.unsplash.com/photo-1615634260167-c8cdede054de?auto=format&fit=crop&w=700&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.store-logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-weight: 950;
  margin-bottom: 10px;
}

.store-cover h3 {
  font-size: 24px;
  line-height: 1.05;
}

.store-cover p {
  color: rgba(255,255,255,.82);
  font-size: 12px;
  margin-top: 4px;
}

.store-body { padding: 14px; }

.coupon {
  background: #15110e;
  color: #fff;
  border-radius: 18px;
  padding: 13px;
  margin-bottom: 12px;
}

.coupon b {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.coupon span {
  color: #f6c28b;
  font-size: 12px;
  font-weight: 800;
}

.categories {
  display: flex;
  gap: 7px;
  overflow: hidden;
  margin-bottom: 12px;
}

.cat {
  background: #fff;
  border: 1px solid #eadbcb;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.cat.active {
  background: var(--green);
  color: #052413;
  border-color: var(--green);
}

.products {
  display: grid;
  gap: 10px;
}

.product {
  background: #fff;
  border: 1px solid #eadbcb;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px;
  box-shadow: 0 8px 18px rgba(85,49,20,.06);
}

.p-img {
  width: 68px;
  height: 68px;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
}

.p-mid b {
  display: block;
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.p-mid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.p-price {
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid #eadbcb;
  padding: 12px 14px 16px;
  border-radius: 24px 24px 0 0;
}

.bottom-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 9px;
}

.wa {
  height: 44px;
  border-radius: 15px;
  background: var(--green);
  display: grid;
  place-items: center;
  color: #052413;
  font-weight: 950;
  font-size: 14px;
}

.floating-panel {
  position: absolute;
  right: 0;
  bottom: 98px;
  width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 3;
}

.floating-panel b {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
}

.floating-panel p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.panel-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 900;
  padding: 9px 0;
  border-top: 1px solid #f0e1d1;
}

section { padding: 74px 0; }

.section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -1.6px;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.problem-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 20px;
  align-items: stretch;
}

.problem-card, .solution-card {
  border-radius: 30px;
  padding: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.problem-card { background: #fff; }

.solution-card {
  background: var(--dark);
  color: #fff;
}

.problem-card h3, .solution-card h3 {
  font-size: 26px;
  margin-bottom: 18px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-weight: 750;
}

.solution-card .check-list { color: rgba(255,255,255,.74); }

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.x, .ok {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 14px;
}

.x { background: #fff0ee; color: #ef4444; }
.ok { background: rgba(34,197,94,.16); color: #86efac; }

.use-cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 13px 30px rgba(85,49,20,.07);
  min-height: 150px;
}

.case-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.case h3 {
  font-size: 18px;
  margin-bottom: 7px;
}

.case p {
  color: var(--muted);
  font-size: 14px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.plan.popular {
  background: linear-gradient(180deg, #fff, #eefcf3);
  border-color: rgba(34,197,94,.36);
  transform: translateY(-8px);
}

.plan-label {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff3dd;
  color: #9a5a17;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 15px;
}

.plan h3 {
  font-size: 25px;
  margin-bottom: 8px;
}

.plan-desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}

.plan-price {
  font-size: 42px;
  font-weight: 1000;
  letter-spacing: -1.6px;
  margin-bottom: 5px;
}

.plan-price small {
  font-size: 15px;
  color: var(--muted);
  font-weight: 850;
  letter-spacing: 0;
}

.plan ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
}

.plan li::before {
  content: '✓';
  color: var(--green-dark);
  font-weight: 1000;
  margin-right: 8px;
}

.final-cta {
  background: var(--dark);
  color: #fff;
  border-radius: 36px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 10px;
}

.final-cta p {
  color: rgba(255,255,255,.72);
  font-size: 17px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.placeholder-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.placeholder-box {
  width: min(680px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 30px;
  padding: 40px;
}

.placeholder-box h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
}

.placeholder-box p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 22px;
}

@media (max-width: 980px) {
  .hero-grid,
  .problem-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .visual { min-height: 620px; }
  .use-cases { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .plan.popular { transform: none; }
}

@media (max-width: 740px) {
  .top-banner { font-size: 12px; }
  .links { display: none; }
  .actions .btn-soft { display: none; }
  .nav { height: 66px; }
  .brand { font-size: 18px; }
  .mark { width: 38px; height: 38px; }
  .hero { padding: 44px 0 38px; }
  .hero-form { grid-template-columns: 1fr; }
  .trust-list { grid-template-columns: 1fr; }
  .visual { min-height: 550px; }
  .mockup-card, .floating-panel { display: none; }
  .phone { width: 292px; height: 594px; }
  .use-cases { grid-template-columns: 1fr; }
  section { padding: 54px 0; }
  .final-cta { padding: 30px; }
}


.auth-page {
  min-height: 100vh;
  padding: 42px 16px;
  display: grid;
  place-items: start center;
}

.auth-card {
  width: min(720px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.auth-card-wide {
  width: min(980px, 100%);
}

.brand-auth {
  display: inline-flex;
  margin-bottom: 22px;
}

.auth-head {
  margin-bottom: 24px;
}

.auth-head h1 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 10px;
}

.auth-head p {
  color: var(--muted);
  font-size: 16px;
}

.alert {
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-weight: 850;
}

.alert-error {
  background: #fff1f2;
  color: #7f1d1d;
  border: 1px solid rgba(239,68,68,.25);
}

.alert-ok {
  background: #ecfdf3;
  color: #14532d;
  border: 1px solid rgba(34,197,94,.28);
}

.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-section {
  background: #fffaf6;
  border: 1px solid #eadbcb;
  border-radius: 24px;
  padding: 22px;
}

.form-section-full {
  grid-column: 1 / -1;
}

.form-section h2 {
  font-size: 20px;
  margin-bottom: 16px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select {
  width: 100%;
  height: 48px;
  border: 1px solid #eadbcb;
  border-radius: 15px;
  background: #fff;
  color: var(--text);
  padding: 0 14px;
  outline: none;
  font-weight: 800;
}

.slug-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
}

.slug-field strong {
  color: var(--muted);
  font-size: 14px;
}

.register-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.register-plan {
  display: grid;
  gap: 7px;
  background: #fff;
  border: 1px solid #eadbcb;
  border-radius: 20px;
  padding: 16px;
  cursor: pointer;
}

.register-plan input {
  width: 18px;
  height: 18px;
}

.register-plan strong {
  font-size: 18px;
}

.register-plan span {
  font-weight: 950;
  color: var(--green-dark);
}

.register-plan small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
}

.register-plan.selected,
.register-plan:has(input:checked) {
  border-color: rgba(34,197,94,.45);
  background: #effdf4;
}

.info-box {
  background: #15110e;
  color: rgba(255,255,255,.78);
  border-radius: 18px;
  padding: 14px;
  font-weight: 750;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  background: transparent;
  border: 0;
  padding: 0;
}

.summary-box {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.summary-box > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #eadbcb;
  background: #fffaf6;
  border-radius: 17px;
  padding: 14px;
}

.summary-box span {
  color: var(--muted);
  font-weight: 850;
}

.summary-box strong {
  text-align: right;
}

.summary-total {
  background: #15110e !important;
  color: #fff;
  border-color: #15110e !important;
}

.summary-total span {
  color: rgba(255,255,255,.74);
}

.summary-total strong {
  font-size: 20px;
}

.btn-full {
  width: 100%;
}

.auth-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  font-weight: 750;
}

@media (max-width: 820px) {
  .register-grid {
    grid-template-columns: 1fr;
  }

  .register-plans {
    grid-template-columns: 1fr;
  }

  .slug-field {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .auth-card {
    padding: 22px;
  }
}


/* v1.1.1 - Slug kontrol sonucu hizalama düzeltmesi */
.slug-result {
  max-width: 640px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  border-radius: 18px;
  padding: 14px;
  margin: 0 0 24px;
  font-weight: 850;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
  z-index: 1;
}

.slug-result[hidden] {
  display: none !important;
}

.slug-result-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 1000;
  font-size: 18px;
  flex: 0 0 auto;
}

.slug-result-content {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.slug-result-content strong {
  font-size: 15px;
  line-height: 1.25;
}

.slug-result-content span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  word-break: break-word;
}

.slug-result-content b {
  color: var(--text);
}

.slug-result.ok {
  border-color: rgba(34,197,94,.35);
  background: #ecfdf3;
  color: #14532d;
}

.slug-result.ok .slug-result-icon {
  background: var(--green);
  color: #052413;
}

.slug-result.bad {
  border-color: rgba(239,68,68,.28);
  background: #fff1f2;
  color: #7f1d1d;
}

.slug-result.bad .slug-result-icon {
  background: #ef4444;
  color: #fff;
}

.slug-result.is-loading {
  border-color: #eadbcb;
  background: #fff;
  color: var(--text);
}

.slug-result.is-loading .slug-result-icon {
  background: #fff3dd;
  color: #9a5a17;
}

.slug-result-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0 16px;
  background: var(--green);
  color: #052413;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(34,197,94,.18);
}

@media (max-width: 740px) {
  .slug-result {
    grid-template-columns: 38px 1fr;
  }

  .slug-result-btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}


/* v1.1.2 - Slug kontrol sonucu final hizalama */
.slug-result {
  width: 100% !important;
  max-width: 640px !important;
  min-height: 74px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  border-radius: 22px !important;
  padding: 14px 16px !important;
  margin: 14px 0 26px 0 !important;
  border: 1px solid #eadbcb !important;
  background: #fff !important;
  box-shadow: 0 12px 26px rgba(85,49,20,.08) !important;
  position: relative !important;
  z-index: 5 !important;
  overflow: visible !important;
  clear: both !important;
}

.slug-result[hidden] {
  display: none !important;
}

.slug-result-icon {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  border-radius: 15px !important;
  display: grid !important;
  place-items: center !important;
  font-weight: 1000 !important;
  font-size: 19px !important;
}

.slug-result-content {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: block !important;
}

.slug-result-content strong {
  display: block !important;
  font-size: 16px !important;
  line-height: 1.25 !important;
  margin: 0 0 3px 0 !important;
  white-space: normal !important;
}

.slug-result-content span {
  display: block !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

.slug-result.ok {
  border-color: rgba(34,197,94,.35) !important;
  background: #ecfdf3 !important;
  color: #14532d !important;
}

.slug-result.ok .slug-result-icon {
  background: var(--green) !important;
  color: #052413 !important;
}

.slug-result.bad {
  border-color: rgba(239,68,68,.28) !important;
  background: #fff1f2 !important;
  color: #7f1d1d !important;
}

.slug-result.bad .slug-result-icon {
  background: #ef4444 !important;
  color: #fff !important;
}

.slug-result.is-loading {
  border-color: #eadbcb !important;
  background: #fff !important;
  color: var(--text) !important;
}

.slug-result.is-loading .slug-result-icon {
  background: #fff3dd !important;
  color: #9a5a17 !important;
}

.slug-result-btn {
  height: 44px !important;
  min-width: 112px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 15px !important;
  padding: 0 18px !important;
  background: var(--green) !important;
  color: #052413 !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
  box-shadow: 0 10px 22px rgba(34,197,94,.18) !important;
  flex: 0 0 auto !important;
}

@media (max-width: 740px) {
  .slug-result {
    flex-wrap: wrap !important;
    align-items: flex-start !important;
  }

  .slug-result-content {
    width: calc(100% - 56px) !important;
  }

  .slug-result-btn {
    width: 100% !important;
    margin-left: 56px !important;
  }
}
