*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f5f5f5;
  min-height: 100vh;
}

.container {
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Header */
header {
  margin-bottom: 2rem;
}

.shop-name {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.25rem;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
}

/* Intro text */
.intro {
  margin-bottom: 1.5rem;
  color: #333;
}

/* Form */
label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.25rem;
  margin-top: 1rem;
}

input[type="text"],
input[type="email"],
textarea {
  display: block;
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.15s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #333;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

textarea {
  resize: vertical;
}

button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: #1a1a1a;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}

button:hover {
  background: #333;
}

/* Review data */
.review-data {
  margin: 1.5rem 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.review-data dt {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #666;
  margin-top: 1rem;
}

.review-data dt:first-child {
  margin-top: 0;
}

.review-data dd {
  font-size: 1rem;
  color: #111;
}

/* Actions row */
.actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.actions button {
  margin-top: 0;
}

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-secondary:hover {
  background: #f0f0f0;
}

/* Confirmation */
.confirmation-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
}

.confirmation-box p {
  margin-bottom: 1rem;
}

.confirmation-box p:last-child {
  margin-bottom: 0;
}

.legal-note {
  font-size: 0.8125rem;
  color: #666;
}

/* Alert */
.alert {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.alert.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Footer */
footer {
  margin-top: 3rem;
  border-top: 1px solid #e0e0e0;
  padding-top: 1rem;
}

.footer-legal ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal li {
  margin: 0;
  padding: 0;
}

.footer-legal a {
  display: block;
  padding: 0.5rem 1rem;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-copy {
  text-align: center;
  font-size: 0.8125rem;
  color: #999;
  margin-top: 0.5rem;
}
