.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: #35d0ff;
  color: #06121a;
  box-shadow: 0 12px 34px rgba(53, 208, 255, 0.24);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}
.btn-accent {
  background: #8eff6d;
  color: #071018;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 84px;
}
.product-grid.featured { padding-bottom: 72px; }
.product-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  color: #10202c;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}
.shoe-visual {
  min-height: 210px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(circle at 78% 10%, var(--shoe-accent), transparent 32%),
    #0e1a25;
}
.shoe-shape {
  width: 300px;
  height: 128px;
  transform: rotate(-11deg);
}
.shoe-shape::before {
  inset: 24px 16px 28px;
  border-bottom-width: 12px;
}
.shoe-shape::after {
  bottom: 24px;
  height: 16px;
  background: linear-gradient(90deg, var(--shoe-accent), #ffffff);
}
.shoe-shape span {
  width: 78px;
  height: 12px;
  top: 44px;
}
.product-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}
.product-tag {
  color: #526473;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.product-card h2 {
  margin: 0 0 8px;
  line-height: 1.15;
}
.product-card p { color: #526473; }
.product-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 18px;
}
.product-meta span {
  background: #edf3f7;
  color: #273946;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 750;
}
.product-meta strong { font-size: 1.45rem; }
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.product-actions .btn-secondary {
  color: #10202c;
  border-color: #d8e3ea;
  background: #fff;
}
.shop-toolbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
  padding: 24px;
  margin-top: 10px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
label {
  display: block;
  margin-bottom: 7px;
  font-weight: 750;
}
select, input, textarea {
  width: 100%;
  border: 1px solid #cfdae2;
  border-radius: 8px;
  background: #fff;
  color: #10202c;
  padding: 12px 13px;
}
textarea { resize: vertical; }
.contact-form {
  background: #fff;
  color: #10202c;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}
.contact-form .btn { margin-top: 14px; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal:target { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 13, 0.78);
}
.modal-panel {
  position: relative;
  width: min(520px, 100%);
  border-radius: 8px;
  padding: 30px;
  background: #fff;
  color: #10202c;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}
.modal-panel p { color: #526473; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #edf3f7;
  font-size: 1.5rem;
}
.legal-content {
  margin-top: 28px;
  margin-bottom: 80px;
}
.legal-content h2 {
  margin: 28px 0 8px;
  line-height: 1.2;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content a, .contact-card a { color: #007aa0; font-weight: 800; }
