.phone-mockup {
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  filter: drop-shadow(0 1.25rem 2.5rem rgba(51, 154, 150, 0.22));
}

.phone-mockup__frame {
  border-radius: 2.25rem;
  padding: 0.65rem;
  background: linear-gradient(145deg, #2d2d35 0%, #1a1a1f 100%);
  border: 2px solid #3a3a44;
}

.phone-mockup__notch {
  width: 38%;
  height: 0.45rem;
  margin: 0  auto 0.5rem;
  border-radius: 999px;
  background: #0f0f12;
}

.phone-mockup__screen {
  border-radius: 1.6rem;
  overflow: hidden;
  background: #f4f7f7;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.phone-mockup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: var(--primary-color);
  color: #fff;
}

.phone-mockup__brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.phone-mockup__brand img {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.25rem;
  background: #fff;
  padding: 0.1rem;
}

.phone-mockup__badge {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.phone-mockup__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.75rem 0.65rem 0.35rem;
}

.phone-mockup__stat {
  background: #fff;
  border-radius: 0.65rem;
  padding: 0.5rem 0.35rem;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.phone-mockup__stat strong {
  display: block;
  font-size: 1rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.phone-mockup__stat span {
  display: block;
  font-size: 0.58rem;
  color: #666;
  margin-top: 0.15rem;
  line-height: 1.25;
}

.phone-mockup__map {
  margin: 0.35rem 0.65rem;
  padding: 0.55rem;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #dceeed 0%, #c5e4e2 100%);
  flex: 1;
  min-height: 7.5rem;
  position: relative;
  overflow: hidden;
}

.phone-mockup__map-title {
  font-size: 0.62rem;
  font-weight: 600;
  color: #2a6f6c;
  margin-bottom: 0.35rem;
}

.phone-mockup__map svg {
  width: 100%;
  height: auto;
  display: block;
}

.phone-mockup__orders {
  padding: 0 0.65rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.phone-mockup__order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: #fff;
  border-radius: 0.55rem;
  padding: 0.45rem 0.55rem;
  font-size: 0.68rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.phone-mockup__order-id {
  font-weight: 600;
  color: #333;
}

.phone-mockup__pill {
  font-size: 0.58rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(51, 154, 150, 0.15);
  color: var(--primary-color);
  white-space: nowrap;
}

.phone-mockup__pill--warn {
  background: rgba(240, 116, 52, 0.15);
  color: var(--fourth-color);
}

.phone-mockup__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  padding: 0.5rem 0.35rem 0.65rem;
  background: #fff;
  border-top: 1px solid #e8ecec;
  margin-top: auto;
}

.phone-mockup__nav span {
  text-align: center;
  font-size: 0.55rem;
  color: #888;
}

.phone-mockup__nav span.is-active {
  color: var(--primary-color);
  font-weight: 600;
}

.phone-mockup__nav-dot {
  display: block;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #ccc;
  margin: 0 auto 0.2rem;
}

.phone-mockup__nav span.is-active .phone-mockup__nav-dot {
  background: var(--primary-color);
}

@media (min-width: 992px) {
  .phone-mockup {
    max-width: 320px;
  }
}

@media (max-width: 991.98px) {
  .phone-mockup__screen {
    min-height: 380px;
  }

  .phone-mockup__stat span {
    font-size: 0.52rem;
  }
}
