* {
  box-sizing: border-box;
}

body.landing-icons-page {
  margin: 0;
  min-height: 100vh;
  background: #f4f7f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-icons-shell {
  width: min(900px, calc(100vw - 40px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 6vw, 72px);
  flex-wrap: wrap;
}

.icon-link {
  width: clamp(180px, 26vw, 280px);
  height: clamp(180px, 26vw, 280px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.icon-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(47, 58, 52, 0.14);
}

.module-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.shop-logo-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(52px, 8vw, 70px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(47, 58, 52, 0.18));
}
