/* Store dialogs and a softer navbar-to-hero transition. */

.kv2-site .kv2-navbar#navbar {
  border-bottom-color: transparent;
}

.kv2-site .kv2-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.kv2-site .kv2-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: 118px;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 248, 1) 0%,
    rgba(255, 252, 248, .96) 22%,
    rgba(255, 252, 248, .68) 58%,
    rgba(255, 252, 248, 0) 100%
  );
  content: "";
  pointer-events: none;
}

.kv2-site .kv2-hero-layout,
.kv2-site .kv2-proof-grid {
  position: relative;
  z-index: 1;
}

.kv2-site .kv2-store-badge {
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.kv2-site .kv2-store-badge:hover {
  border-color: rgba(255, 122, 24, .42);
  box-shadow: 0 12px 26px rgba(45, 34, 24, .1);
  transform: translateY(-2px);
}

.kv2-site .kv2-store-badge:focus-visible {
  outline: 3px solid rgba(255, 122, 24, .24);
  outline-offset: 3px;
}

.mobile-store-modal {
  z-index: 5000;
  font-family: "Nunito", Arial, sans-serif;
}

.mobile-store-modal-backdrop {
  background: rgba(19, 29, 44, .46);
  backdrop-filter: blur(9px) saturate(.85);
}

.mobile-store-modal-card {
  width: min(440px, 100%);
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(235, 207, 179, .92);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 191, 116, .23), transparent 37%),
    linear-gradient(145deg, #fffdfa 0%, #fff8ef 100%);
  box-shadow: 0 32px 90px rgba(19, 29, 44, .3);
}

.mobile-store-modal-card::before {
  position: absolute;
  top: 0;
  left: 30px;
  width: 72px;
  height: 4px;
  border-radius: 0 0 8px 8px;
  background: #ff7a18;
  content: "";
}

.mobile-store-modal-close {
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 122, 24, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  color: #ff7a18;
  transition: background .18s ease, transform .18s ease;
}

.mobile-store-modal-close:hover {
  background: #fff;
  transform: rotate(5deg) scale(1.04);
}

.mobile-store-modal-close:focus-visible {
  outline: 3px solid rgba(255, 122, 24, .24);
  outline-offset: 2px;
}

.mobile-store-modal-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 122, 24, .12);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(19, 29, 44, .08);
}

.mobile-store-modal-title {
  margin: 0 0 10px;
  color: #13243a;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.025em;
}

.mobile-store-modal-text {
  margin: 0;
  color: #56647a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.58;
}

.mobile-store-modal-contact.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  border: 0;
  border-radius: 12px;
  background: #ff7a18;
  box-shadow: 0 12px 26px rgba(255, 122, 24, .24);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.mobile-store-modal-contact.btn[hidden] {
  display: none;
}

.mobile-store-modal-contact.btn:hover {
  background: #ed6810;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .kv2-site .kv2-hero::before {
    height: 82px;
  }

  .mobile-store-modal {
    padding: 16px;
  }

  .mobile-store-modal-card {
    padding: 26px 22px 22px;
    border-radius: 21px;
  }

  .mobile-store-modal-card::before {
    left: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kv2-site .kv2-store-badge,
  .mobile-store-modal-close,
  .mobile-store-modal-contact.btn {
    transition: none;
  }
}
