.smartdating-booking {
  --sdw-color: #dc7eac;
  display: grid;
  gap: 18px;
  font-family: inherit;
}

.smartdating-booking.sdw-calendar {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.sdw-card {
  border: 1px solid #eadfe4;
  border-radius: 14px;
  padding: clamp(20px, 4vw, 28px);
  background: #fff;
  box-shadow: 0 12px 34px rgba(45, 25, 34, 0.07);
}

.sdw-card h3 {
  margin: 6px 0 10px;
  color: #171317;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.15;
}

.sdw-date,
.sdw-availability {
  margin: 0;
  color: #70676c;
}

.sdw-availability {
  margin-bottom: 20px;
}

.sdw-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--sdw-color);
  border-radius: 10px;
  padding: 11px 18px;
  background: var(--sdw-color);
  color: #fff !important;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none !important;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.sdw-button:hover,
.sdw-button:focus-visible {
  background: color-mix(in srgb, var(--sdw-color) 88%, #000);
  border-color: color-mix(in srgb, var(--sdw-color) 88%, #000);
  color: #fff !important;
}

.sdw-button:hover {
  transform: translateY(-1px);
}

.sdw-button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--sdw-color) 38%, transparent);
  outline-offset: 3px;
}

.sdw-button.is-disabled {
  border-color: #d8d1d4;
  background: #eee9eb;
  color: #756d71 !important;
  cursor: not-allowed;
}

.sdw-message {
  padding: 14px 16px;
  border: 1px solid #eadfe4;
  border-radius: 10px;
  background: #fff8fb;
  color: #51494d;
}

@media (max-width: 520px) {
  .sdw-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sdw-button {
    transition: none;
  }
}
