.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: 0.22s ease;
  cursor: pointer;
  border: 0;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: white;
  background: linear-gradient(135deg, #d49a43, #b8792b);
  box-shadow: 0 14px 30px rgba(183, 121, 43, 0.28);
}
.btn-primary:hover {
  box-shadow: 0 20px 36px rgba(183, 121, 43, 0.34);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.24),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

.card p,
.card li,
.contact-list {
  color: var(--muted);
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.product-card {
  position: relative;
  min-height: 420px;
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 28px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(20, 23, 27, 0.18);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 12, 14, 0.65) 0%,
    rgba(10, 12, 14, 0.25) 45%,
    rgba(10, 12, 14, 0.05) 100%
  );
  z-index: 1;
}

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  right: auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 3;
}
