.btn-x {
  display: inline-block;
  min-width: 200px;
  text-align: center;
  padding: 14px 28px;
  margin: 5px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 132, 255, 0.85);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent 30%),
    linear-gradient(180deg, #f26bf7 0%, #c22bc7 35%, #8b1085 100%);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 16px rgba(212, 55, 212, 0.45),
    0 5px 0 rgba(39, 0, 55, 0.95),
    0 8px 18px rgba(0, 0, 0, 0.35);
  transition: all 0.28s ease;
}

.btn-x::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-25deg);
  transition: 0.55s ease;
}

.btn-x:hover::before {
  left: 130%;
}

.btn-x:hover {
  color: #fff8d6;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(180deg, #ffa8ff 0%, #d437cc 38%, #5c074a 100%);
  border-color: #ffa8ff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 0 24px rgba(245, 110, 227, 0.7),
    0 7px 0 rgba(102, 3, 94, 0.95),
    0 12px 24px rgba(0, 0, 0, 0.45);
}

.btn-x:active {
  transform: translateY(3px);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.45),
    0 2px 0 rgba(55, 0, 12, 0.95);
}

.right-rail:empty,
.sidebar:empty,
.product__aside:empty {
  display: none !important;
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (max-width: 480px) {
  .btn-x {
    min-width: 150px;
    padding: 12px 18px;
    font-size: 13px;
    border-radius: 12px;
  }
}