﻿:root {
  --blue: #269bd6;
  --blue-dark: #0f628d;
  --blue-soft: #e8f7ff;
  --blue-wash: #f4fbff;
  --cyan: #19bfd1;
  --cyan-soft: #dff8fb;
  --mint: #e7fbf3;
  --green: #36a878;
  --ink: #17222c;
  --text: #344352;
  --muted: #71808e;
  --line: #d7ebf5;
  --shadow: 0 18px 42px rgba(32, 67, 89, 0.09);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(38, 155, 214, 0.18), transparent 30%),
    linear-gradient(180deg, var(--blue-wash), #fff 420px);
  font-family: "Heebo", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(226, 235, 241, 0.78);
  background: rgba(246, 252, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0;
  font-weight: 900;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 34px;
  border-radius: 0;
  color: transparent;
  background: url("emlakpass-icon.png?v=3") center / contain no-repeat;
  font-size: 0;
  box-shadow: none;
}

.brand > span:last-child:not(.brand-mark) {
  display: block;
  width: 184px;
  height: 34px;
  overflow: hidden;
  color: transparent;
  background: url("emlakpass-wordmark.png?v=3") center / contain no-repeat;
  font-size: 0;
}

.brand span:last-child span {
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue-dark);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-button {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.text-button:hover {
  color: var(--blue-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
}

.btn-primary {
  color: #fff;
  background: var(--blue);
  border-color: transparent;
  box-shadow: 0 14px 24px rgba(38, 155, 214, 0.25);
}

.btn-secondary {
  color: var(--blue-dark);
  background: #fff;
  border-color: var(--line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.page-hero {
  padding: 8px 0 38px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  opacity: 0.72;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 600;
}

h1 {
  max-width: 820px;
  margin: 0 auto 18px;
  font-size: clamp(36px, 4.1vw, 54px);
  line-height: 1.08;
}

.lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text);
  font-size: 19px;
  line-height: 1.68;
}

.section {
  padding: 54px 0;
}

.section.soft {
  background: var(--blue-wash);
}

.section-head {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.12;
}

.section-head p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.two-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
}

.content-card,
.step-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.package-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.content-card h3,
.step-card h3,
.package-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.content-card p,
.step-card p,
.package-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 22px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 900;
}

.package-card:nth-child(2) .badge {
  color: #227959;
  background: var(--mint);
}

.package-card .badge {
  justify-content: center;
  align-self: stretch;
  width: auto;
  min-width: 0;
  min-height: 38px;
  padding: 0 14px;
  font-size: 16px;
}

.step-no {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.benefit-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  padding-top: 24px;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 11px;
  color: var(--text);
  font-weight: 800;
}

.benefit-list li::before {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.package-card:nth-child(2) .benefit-list li::before {
  background: var(--green, #2e9b73);
}

.package-card .benefit-list li.benefit-plus {
  position: relative;
  display: flex;
  min-height: 74px;
  margin: -3px 0 -2px;
  align-items: center;
  justify-content: center;
}

.package-card .benefit-list li.benefit-plus::before,
.package-card .benefit-list li.benefit-plus::after {
  position: absolute;
  border-radius: 999px;
  background: var(--blue) !important;
  content: "";
}

.package-card .benefit-list li.benefit-plus::before {
  width: 34px;
  height: 4px;
}

.package-card .benefit-list li.benefit-plus::after {
  width: 4px;
  height: 34px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.legal-copy {
  display: grid;
  gap: 18px;
  width: min(100%, 1040px);
  margin-inline: auto;
}

.legal-copy .content-card {
  padding: 30px;
}

.legal-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.18;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.legal-copy ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.legal-aside {
  display: none;
}

.legal-aside .footer-links {
  gap: 8px;
}

.detail-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin: 36px auto 0;
  padding: 26px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 20px 46px rgba(15, 98, 141, 0.2);
}

.detail-cta h2 {
  margin-bottom: 6px;
  font-size: 28px;
}

.detail-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 48px 0 22px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 12%, rgba(38, 155, 214, 0.14), transparent 30%),
    #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.18fr) repeat(3, minmax(170px, 1fr));
  column-gap: clamp(34px, 5vw, 86px);
  row-gap: 24px;
  align-items: start;
}

.footer-grid p {
  display: none;
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.footer-links a {
  width: fit-content;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--blue-dark);
  transform: translateX(4px);
}

.footer-col h3,
.follow-title {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.footer-col h3 {
  margin: 2px 0 10px;
}

.follow-title {
  margin: 40px 0 0;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.social-link {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-dark);
  background: #fff;
  font-size: 0;
  font-weight: 800;
  line-height: 0;
  box-shadow: 0 8px 18px rgba(32, 67, 89, 0.06);
        transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
        will-change: transform;
}

.social-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
        height: 20px;
  background: currentColor;
  transform: translate(-50%, -50%);
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
        transition: transform 0.2s ease;
}

.social-link:nth-child(1)::before {
        width: 21px;
        height: 21px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' stroke='black' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4.2' stroke='black' stroke-width='2'/%3E%3Ccircle cx='17.2' cy='6.8' r='1.3' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' stroke='black' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4.2' stroke='black' stroke-width='2'/%3E%3Ccircle cx='17.2' cy='6.8' r='1.3' fill='black'/%3E%3C/svg%3E");
}

.social-link:nth-child(2)::before {
        width: 20px;
        height: 20px;
        transform: translate(-50%, -50%);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.7 9.3H3.9V20h2.8V9.3ZM5.3 4C4.4 4 3.8 4.6 3.8 5.4s.6 1.5 1.5 1.5 1.5-.6 1.5-1.5S6.2 4 5.3 4ZM20.2 13.9c0-3.2-1.7-4.8-4-4.8-1.8 0-2.7 1-3.1 1.7V9.3h-2.8V20h2.8v-6c0-1.6.9-2.5 2.1-2.5s2.1.8 2.1 2.5v6h2.8v-6.1Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.7 9.3H3.9V20h2.8V9.3ZM5.3 4C4.4 4 3.8 4.6 3.8 5.4s.6 1.5 1.5 1.5 1.5-.6 1.5-1.5S6.2 4 5.3 4ZM20.2 13.9c0-3.2-1.7-4.8-4-4.8-1.8 0-2.7 1-3.1 1.7V9.3h-2.8V20h2.8v-6c0-1.6.9-2.5 2.1-2.5s2.1.8 2.1 2.5v6h2.8v-6.1Z'/%3E%3C/svg%3E");
}

.social-link:nth-child(3)::before {
        width: 20px;
        height: 22px;
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.5 8.2H16V4.9c-.7-.1-1.6-.2-2.8-.2-2.8 0-4.8 1.7-4.8 4.9V12H5.6v3.7h2.8V22h3.8v-6.3h3l.6-3.7h-3.6V10c0-1.1.3-1.8 2.3-1.8Z'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.5 8.2H16V4.9c-.7-.1-1.6-.2-2.8-.2-2.8 0-4.8 1.7-4.8 4.9V12H5.6v3.7h2.8V22h3.8v-6.3h3l.6-3.7h-3.6V10c0-1.1.3-1.8 2.3-1.8Z'/%3E%3C/svg%3E");
        transform: translate(-50%, -50%);
      }

.social-link:nth-child(4)::before {
        width: 20px;
        height: 20px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h4.6l4.1 5.7L17.6 4H20l-6.1 7.1L20.5 20h-4.6l-4.5-6.2L6.1 20H3.6l6.6-7.7L4 4Zm3.4 1.8 9.4 12.4h1L8.4 5.8h-1Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h4.6l4.1 5.7L17.6 4H20l-6.1 7.1L20.5 20h-4.6l-4.5-6.2L6.1 20H3.6l6.6-7.7L4 4Zm3.4 1.8 9.4 12.4h1L8.4 5.8h-1Z'/%3E%3C/svg%3E");
}

.social-link:hover,
.social-link:focus-visible {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 26px rgba(38, 155, 214, 0.18);
  transform: translateY(-2px) scale(1.04);
}

.language-row {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.language-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.language-row span.active {
  color: #fff;
  background: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 42px;
  min-height: 42px;
  box-sizing: border-box;
  gap: 8px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #111;
  background: #fff;
  font-size: 13px;
  font-weight: 400;
  box-shadow: 0 8px 18px rgba(32, 67, 89, 0.06);
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
        will-change: transform;
}

.store-badge svg {
  width: 20px;
  height: 22px;
  flex: 0 0 auto;
  color: currentColor;
}

.store-badge span {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.store-badge small {
  color: currentColor;
  opacity: 0.68;
  font-size: 10.5px;
  font-weight: 800;
}

.store-badge strong {
  color: currentColor;
  font-size: 14px;
  font-weight: 900;
}

.store-badge:hover {
  color: var(--blue);
  border-color: rgba(38, 155, 214, 0.38);
  box-shadow: 0 10px 24px rgba(38, 155, 214, 0.12);
        transform: translateY(-2px) scale(1.015);
}

      .store-badge[data-coming-soon] {
        position: relative;
        cursor: default;
      }

      .store-badge[data-coming-soon]::before,
      .store-badge[data-coming-soon]::after {
        position: absolute;
        left: 50%;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.18s ease, transform 0.18s ease;
        z-index: 4;
      }

      .store-badge[data-coming-soon]::before {
        content: "";
        bottom: calc(100% + 4px);
        width: 10px;
        height: 10px;
        border-right: 1px solid rgba(38, 155, 214, 0.18);
        border-bottom: 1px solid rgba(38, 155, 214, 0.18);
        background: #fff;
        transform: translate(-50%, 5px) rotate(45deg);
      }

      .store-badge[data-coming-soon]::after {
        content: attr(data-coming-soon);
        bottom: calc(100% + 9px);
        min-width: max-content;
        padding: 7px 11px;
        border: 1px solid rgba(38, 155, 214, 0.18);
        border-radius: 999px;
        color: var(--blue);
        background: #fff;
        box-shadow: 0 14px 28px rgba(32, 67, 89, 0.12);
        font-size: 12px;
        font-weight: 900;
        line-height: 1;
        letter-spacing: 0;
        transform: translate(-50%, 5px) scale(0.96);
        white-space: nowrap;
      }

      .store-badge[data-coming-soon]:hover::before,
      .store-badge[data-coming-soon]:hover::after,
      .store-badge[data-coming-soon]:focus-visible::before,
      .store-badge[data-coming-soon]:focus-visible::after {
        opacity: 1;
      }

      .store-badge[data-coming-soon].show-soon::before,
      .store-badge[data-coming-soon].show-soon::after {
        opacity: 1;
      }

      .store-badge[data-coming-soon]:hover::before,
      .store-badge[data-coming-soon]:focus-visible::before {
        transform: translate(-50%, 0) rotate(45deg);
      }

      .store-badge[data-coming-soon].show-soon::before {
        transform: translate(-50%, 0) rotate(45deg);
      }

      .store-badge[data-coming-soon]:hover::after,
      .store-badge[data-coming-soon]:focus-visible::after {
        transform: translate(-50%, 0) scale(1);
      }
@media (max-width: 1120px) {
  .nav {
    min-height: 68px;
    align-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 68px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  html.mobile-menu-open,
  body.mobile-menu-open {
    width: 100%;
    max-width: 100vw;
    overflow: hidden !important;
  }

  .nav-links:not(.open) {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .nav-links.open {
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .nav-actions .btn,
  .nav-actions .text-button {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 1201;
    display: flex;
    width: 46px;
    height: 46px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 12px 28px rgba(38, 155, 214, 0.11);
    padding: 0;
    transform: none;
    transition: none;
    animation: none;
  }

  .menu-toggle span,
  .menu-toggle::before,
  .menu-toggle::after {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0;
    border-radius: 99px;
    background: currentColor;
    flex: 0 0 auto;
    transform: none;
    transition: none;
    animation: none;
  }

  .card-grid,
  .two-grid,
  .legal-layout,
  .detail-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 32px, 1280px);
  }

  .site-header .brand {
    gap: 14px;
    width: 242px;
    height: 34px;
    max-width: 242px;
    flex: 0 0 242px;
    flex-shrink: 0;
  }

  .site-header .brand-mark {
    width: 44px;
    height: 34px;
    max-width: 44px;
    flex: 0 0 44px;
    flex-shrink: 0;
  }

  .site-header .brand > span:last-child:not(.brand-mark) {
    width: 184px;
    height: 34px;
    max-width: 184px;
    flex: 0 0 184px;
    flex-shrink: 0;
  }

  .page-hero {
    padding: 8px 0 30px;
  }

  h1 {
    font-size: 34px;
  }

  .lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .site-footer {
    padding: 38px 0 24px;
  }

  .footer-grid p {
    display: block;
    max-width: 310px;
    margin: 14px 0 0;
    font-size: 14px;
    line-height: 1.55;
  }

  .follow-title {
    margin-top: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 24px;
  }

  .store-badges {
    gap: 8px;
  }

  .store-badge {
    width: 128px;
    height: 41px;
    min-height: 41px;
    gap: 8px;
  }

  .store-badge svg {
    width: 19px;
    height: 21px;
  }

  .store-badge strong {
    font-size: 13.5px;
  }
}

