/**
 * Информационные страницы витрины: Контакты, Доставка.
 */

.shop-info-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shop-nav--info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.shop-nav--info a {
  color: var(--color-text-secondary, #475569);
  text-decoration: none;
  font-weight: 500;
}

.shop-nav--info a:hover,
.shop-nav--info a.is-active {
  color: var(--color-primary, #0f766e);
}

.shop-info-main {
  flex: 1;
  width: min(44rem, 100%);
  margin: 0 auto;
  padding: 1.5rem 1rem 2.5rem;
}

.shop-info-main h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.shop-info-lead {
  margin: 0 0 1.5rem;
  color: var(--color-text-muted, #64748b);
  font-size: 1.05rem;
  line-height: 1.5;
}

.shop-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.shop-info-card {
  margin: 0 0 1rem;
  padding: 1.25rem 1.35rem;
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-outline, #e2e8f0);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.shop-info-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.shop-info-card p {
  margin: 0;
  line-height: 1.55;
  color: var(--color-text-secondary, #334155);
}

.shop-info-card--note {
  background: var(--color-surface-container-low, #f8fafc);
}

.shop-info-dl {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.shop-info-dl div {
  display: grid;
  gap: 0.2rem;
}

.shop-info-dl dt {
  font-size: 0.85rem;
  color: var(--color-text-muted, #64748b);
}

.shop-info-dl dd {
  margin: 0;
  font-weight: 500;
}

.shop-info-dl a {
  color: var(--color-primary, #0f766e);
  text-decoration: none;
}

.shop-info-dl a:hover {
  text-decoration: underline;
}

.shop-info-bullets {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.6;
  color: var(--color-text-secondary, #334155);
}

.shop-info-bullets li + li {
  margin-top: 0.45rem;
}

.shop-info-muted {
  color: var(--color-text-muted, #64748b);
}

.shop-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  margin: 1.5rem 0 0;
}

.shop-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border-radius: 10px;
  background: var(--color-primary, #0f766e);
  color: var(--color-on-primary, #fff);
  text-decoration: none;
  font-weight: 600;
}

.shop-info-btn:hover {
  filter: brightness(1.05);
}

.shop-info-link {
  color: var(--color-primary, #0f766e);
  text-decoration: none;
  font-weight: 500;
}

.shop-info-link:hover {
  text-decoration: underline;
}

.shop-info-footer {
  margin-top: auto;
  border-top: 1px solid var(--color-outline, #e2e8f0);
  background: var(--color-surface-container-low, #f8fafc);
}

.shop-info-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  width: min(44rem, 100%);
  margin: 0 auto;
  padding: 1rem;
}

.shop-info-footer a {
  color: var(--color-text-secondary, #475569);
  text-decoration: none;
}

.shop-info-footer a:hover {
  color: var(--color-primary, #0f766e);
}

@media (max-width: 720px) {
  .shop-info-page .shop-header-content {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .shop-nav--info {
    width: 100%;
  }
}
