/* ── Header ─────────────────────────────────────────────────────── */
.site-header {
  text-align: center;
  padding: 1.5rem 0 1rem;
  border-bottom: 1px solid var(--pico-muted-border-color);
}

.site-logo {
  width: 200px;
  height: auto;
  display: inline-block;
}

/* ── Cards ───────────────────────────────────────────────────────── */
.card header img {
  width: 100%;
  padding: 0;
  margin: 0;
  display: block;
  border-radius: var(--pico-border-radius) var(--pico-border-radius) 0 0;
}

/* ── Footer ─────────────────────────────────────────────────────── */
footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--pico-muted-border-color);
}

#address div {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

#address svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--pico-primary);
  margin-top: 2px;
}

#address p {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

/* ── Copyright / action bar ─────────────────────────────────────── */
.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-top: 1px solid var(--pico-muted-border-color);
  margin-top: 1.5rem;
  color: var(--pico-muted-color);
  font-size: 0.85rem;
}

.footer-actions {
  display: flex;
  gap: 0.75rem;
}

.footer-actions [role="button"] {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
}

.footer-actions svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Green pulse dot for System Status */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2d9c4a;
  box-shadow: 0 0 0 0 rgba(45, 156, 74, 0.4);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(45, 156, 74, 0.4); }
  70%  { box-shadow: 0 0 0 6px rgba(45, 156, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 156, 74, 0); }
}

/* ── Contact form status ─────────────────────────────────────────── */
#form-status { font-size: 0.9rem; margin-top: 0.5rem; }
#form-status.success { color: #2d9c4a; }
#form-status.error   { color: var(--pico-del-color); }

/* ── Honeypot ────────────────────────────────────────────────────── */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

/* ── Mobile ──────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .copyright {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ── Datacenter ──────────────────────────────────────────────────── */
.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.location-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--pico-muted-border-color);
  border-radius: var(--pico-border-radius);
  text-decoration: none;
  color: var(--pico-color);
  font-size: 0.95rem;
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
}

.location-card small {
  font-size: 0.75rem;
  color: var(--pico-muted-color);
}

.location-card:hover,
.location-card.active {
  border-color: var(--pico-primary);
  background: var(--pico-primary-background);
  color: var(--pico-primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.product-card h4 {
  margin: 0 0 0.75rem;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--pico-muted-color);
  flex: 1;
}

.product-card ul li::before {
  content: "✓ ";
  color: var(--pico-primary);
}

.product-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: none;
  border: none;
  margin-top: auto;
}

.price {
  font-size: 1.1rem;
  color: var(--pico-primary);
}
