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

body {
  font-family: "Yu Gothic", "Meiryo", "Segoe UI", "Hiragino Kaku Gothic ProN",
    sans-serif;
  color: #1f1524;
  background-image:
    linear-gradient(180deg, #fff1f5 0%, #f9f2ff 50%, #fdf6f8 100%),
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M60 85c-2.2 0-4.2-.8-5.8-2.3L30 58.5c-5-5-5-13 0-18s13-5 18 0l12 12 12-12c5-5 13-5 18 0s5 13 0 18L66 82.7c-1.6 1.5-3.6 2.3-6 2.3z' fill='%23f8a3c2' fill-opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat;
  background-size: cover, 120px 120px;
  background-attachment: fixed, fixed;
  line-height: 1.6;
}

main .intro h2,
main .store-list h2,
main .steps h2,
main .hero-title {
  letter-spacing: 0.01em;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}

body::before {
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, #ffd1dc 0%, transparent 70%);
}

body::after {
  bottom: -120px;
  left: -120px;
  background: radial-gradient(circle, #e9c6ff 0%, transparent 70%);
}

body::marker {
  content: "";
}

body::selection {
  background: rgba(248, 163, 194, 0.35);
}

body::after,
body::before {
  animation: floatGlow 12s ease-in-out infinite;
}

body::after {
  animation-delay: -4s;
}

.sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(248, 163, 194, 0.7) 0 1.5px, transparent 3px),
    radial-gradient(circle, rgba(233, 198, 255, 0.6) 0 1.5px, transparent 3px);
  background-size: 200px 200px, 260px 260px, 320px 320px;
  background-position: 0 0, 40px 80px, 120px 160px;
  animation: sparkleDrift 18s linear infinite;
  opacity: 0.35;
}

.container {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 22px;
}

.site-header {
  background: radial-gradient(circle at top left, #ffd1dc 0%, #f8a3c2 45%, #b86bd4 100%);
  color: #ffffff;
  padding: 32px 0;
  box-shadow: 0 10px 30px rgba(184, 107, 212, 0.25);
  position: relative;
  overflow: hidden;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 16px rgba(184, 107, 212, 0.35));
}

.site-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.35), transparent 45%);
  opacity: 0.8;
  pointer-events: none;
}

.site-title {
  font-size: 26px;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.site-subtitle {
  opacity: 0.95;
  font-weight: 500;
}

.top-banner {
  background: #fff4f8;
  border-bottom: 1px solid rgba(248, 163, 194, 0.35);
}

.top-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.banner-text {
  font-size: 13px;
  color: #3a2241;
}

.banner-link {
  font-size: 12px;
  color: #6b2a8c;
  text-decoration: none;
  background: #fff7fb;
  border: 1px solid rgba(184, 107, 212, 0.25);
  border-radius: 999px;
  padding: 6px 10px;
}

.banner-link:hover {
  border-color: #b86bd4;
  color: #8b3db2;
}

.hero {
  background: linear-gradient(135deg, rgba(255, 241, 245, 0.95), rgba(248, 229, 255, 0.95));
  border-radius: 18px;
  padding: 24px;
  margin: 12px 0 20px;
  border: 1px solid rgba(248, 163, 194, 0.35);
  box-shadow: 0 16px 30px rgba(248, 163, 194, 0.2);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent 70%);
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a2d5a;
  margin-bottom: 8px;
}

.hero-title {
  font-size: 24px;
  margin-bottom: 8px;
  color: #2a1830;
}

.hero-lead {
  font-size: 14px;
  color: #3a2241;
  margin-bottom: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.hero-links a {
  font-size: 12px;
  color: #6b2a8c;
  text-decoration: none;
  background: #fff7fb;
  border: 1px solid rgba(184, 107, 212, 0.25);
  border-radius: 999px;
  padding: 6px 10px;
}

.hero-links a:hover {
  border-color: #b86bd4;
  color: #8b3db2;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #6b416b;
}

.hero-points span {
  background: #fff7fb;
  border: 1px solid rgba(184, 107, 212, 0.25);
  border-radius: 999px;
  padding: 6px 10px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #fff7fb;
  border: 1px solid rgba(184, 107, 212, 0.25);
  min-width: 110px;
}

.hero-stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #2a1830;
}

.hero-stat-label {
  font-size: 12px;
  color: #6b416b;
}

.steps {
  background: #fffafc;
  border-radius: 16px;
  padding: 20px;
  margin: 0 0 20px;
  box-shadow: 0 12px 28px rgba(248, 163, 194, 0.18);
  border: 1px solid rgba(248, 163, 194, 0.25);
}

.steps h2 {
  font-size: 17px;
  margin-bottom: 14px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.step-card {
  background: #fff4f8;
  border: 1px solid rgba(248, 163, 194, 0.35);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 20px rgba(248, 163, 194, 0.12);
}

.step-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #7a2d5a;
  margin-bottom: 6px;
}

.step-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #2a1830;
}

.intro,
.store-list {
  background: #fffafc;
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 12px 28px rgba(248, 163, 194, 0.18);
  border: 1px solid rgba(248, 163, 194, 0.25);
  position: relative;
  overflow: hidden;
}

.intro h2,
.store-list h2 {
  font-size: 17px;
  margin-bottom: 10px;
}

.intro p {
  margin-top: 6px;
}

.intro::after,
.store-list::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 220, 0.5), transparent 70%);
  opacity: 0.6;
}

.store-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.store-card {
  border: 1px solid rgba(248, 163, 194, 0.35);
  border-radius: 14px;
  padding: 14px;
  background: #fff7fb;
  box-shadow: 0 10px 20px rgba(248, 163, 194, 0.12);
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #b86bd4;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  box-shadow: 0 10px 18px rgba(184, 107, 212, 0.25);
}

.action-button.secondary {
  background: #ffffff;
  color: #6b416b;
  border: 1px solid rgba(184, 107, 212, 0.35);
  box-shadow: none;
}

.action-button:hover {
  filter: brightness(1.03);
}

.store-cover {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(248, 163, 194, 0.3);
}

.store-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.store-card label {
  display: block;
  font-size: 13px;
  color: #475569;
  margin-bottom: 10px;
}

.store-card input,
.store-card textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #cbd5f5;
  border-radius: 8px;
  margin-top: 6px;
  font-size: 14px;
}

.store-card textarea {
  min-height: 70px;
  resize: vertical;
}

.store-meta {
  font-size: 14px;
  color: #3a2241;
  margin-bottom: 6px;
}

.filter-form {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.filter-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #2f3747;
  min-width: 160px;
  flex: 1 1 160px;
}

.filter-form select,
.filter-form input[type="text"] {
  padding: 8px 10px;
  border: 1px solid rgba(184, 107, 212, 0.35);
  border-radius: 10px;
  font-size: 14px;
  background: #ffffff;
}

.filter-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-width: auto;
}

.filter-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.portal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.portal-card {
  border: 1px solid rgba(248, 163, 194, 0.35);
  border-radius: 12px;
  padding: 10px;
  background: #fff4f8;
  box-shadow: 0 10px 20px rgba(248, 163, 194, 0.12);
}

.card-link {
  color: inherit;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: none;
}

.portal-cover {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 8px;
  border: 1px solid rgba(248, 163, 194, 0.3);
}

.portal-summary {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.notice-list,
.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.notice-item,
.faq-item {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(248, 163, 194, 0.35);
  background: #fff4f8;
  font-size: 14px;
  color: #2f1835;
}

.notice-date {
  font-size: 12px;
  color: #6a3a78;
  margin-bottom: 4px;
}

.portal-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: #fff4f8;
  border-radius: 10px;
  border: 1px solid rgba(248, 163, 194, 0.35);
  font-size: 14px;
  color: #2f1835;
}

.contact-box {
  margin-top: 12px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(248, 163, 194, 0.35);
  background: #fff4f8;
}

.portal-purposes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.purpose-chip {
  border: 1px solid rgba(184, 107, 212, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  background: #ffffff;
  cursor: pointer;
  font-size: 13px;
  color: #6b416b;
}

.purpose-chip:hover {
  border-color: #b86bd4;
  color: #8b3db2;
}

.area-chip {
  border: 1px solid rgba(184, 107, 212, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  background: #ffffff;
  cursor: pointer;
  font-size: 13px;
  color: #6b416b;
}

.area-chip:hover {
  border-color: #b86bd4;
  color: #8b3db2;
}

.genre-chip {
  border: 1px solid rgba(184, 107, 212, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  background: #ffffff;
  cursor: pointer;
  font-size: 13px;
  color: #6b416b;
}

.genre-chip:hover {
  border-color: #b86bd4;
  color: #8b3db2;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tag {
  background: #fde8f0;
  color: #7a2d5a;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
}

.like-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 6px;
}

.like-count {
  font-size: 13px;
  color: #3a2241;
}

.like-button {
  border: 1px solid rgba(184, 107, 212, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  background: #ffffff;
  cursor: pointer;
  font-size: 12px;
  color: #6b416b;
}

.like-button:hover:not(:disabled) {
  border-color: #b86bd4;
  color: #8b3db2;
}

.like-button:disabled {
  opacity: 0.6;
  cursor: default;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.status-open {
  background: #dcfce7;
  color: #166534;
}

.status-closed {
  background: #fee2e2;
  color: #991b1b;
}

.site-footer {
  background: #2b1035;
  color: #f7d9e7;
  padding: 20px 0 24px;
  margin-top: 32px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer-links a {
  color: #f7d9e7;
  text-decoration: none;
}

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

.footer-note {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 8px;
}

.legal-page h2 {
  margin-top: 20px;
  margin-bottom: 6px;
  font-size: 18px;
}

.legal-page p {
  margin-bottom: 12px;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.admin-input,
.admin-select {
  padding: 8px 10px;
  border: 1px solid rgba(184, 107, 212, 0.35);
  border-radius: 10px;
  font-size: 13px;
  background: #ffffff;
  min-width: 160px;
  flex: 1 1 180px;
}

.admin-toolbar .chat-option {
  white-space: nowrap;
}

.store-item {
  padding: 0;
  overflow: hidden;
}

.store-item summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #fff7fb;
  border-bottom: 1px dashed rgba(184, 107, 212, 0.25);
}

.store-item summary::-webkit-details-marker {
  display: none;
}

.store-item[open] summary {
  background: #fff2f7;
}

.store-summary {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.store-summary-title {
  font-size: 15px;
  font-weight: 600;
  color: #2a1830;
}

.store-summary-meta {
  font-size: 12px;
  color: #6b416b;
}

.store-fields {
  padding: 12px 14px;
}

.admin-gate {
  position: fixed;
  inset: 0;
  background: rgba(34, 12, 42, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
  backdrop-filter: blur(6px);
}

.admin-gate.hidden {
  display: none;
}

.admin-gate-card {
  background: #fffafc;
  border-radius: 16px;
  padding: 20px;
  width: min(360px, 92vw);
  border: 1px solid rgba(248, 163, 194, 0.3);
  box-shadow: 0 18px 36px rgba(248, 163, 194, 0.25);
}

.admin-gate-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.admin-gate-error {
  color: #991b1b;
  margin-top: 8px;
}

.image-preview {
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  border: 1px dashed rgba(184, 107, 212, 0.25);
  background: #fffafc;
}

.image-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 8px;
  margin-top: 6px;
}

.image-preview-grid img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(248, 163, 194, 0.3);
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(248, 163, 194, 0.12);
}

.file-input {
  display: block;
  margin-top: 6px;
  font-size: 12px;
}

.admin-tools {
  display: grid;
  gap: 12px;
}

.admin-tools textarea {
  width: 100%;
  min-height: 140px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  font-size: 13px;
}

.warning-box {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
  padding: 12px;
  border-radius: 10px;
}

.warning-box ul {
  margin-left: 18px;
}

.chat-widget {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 100;
  width: min(360px, calc(100vw - 32px));
  font-size: 14px;
}

.chat-toggle {
  width: 100%;
  background: linear-gradient(135deg, #f8a3c2, #b86bd4);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(248, 163, 194, 0.35);
}

.chat-toggle:hover {
  filter: brightness(1.03);
}

.chat-panel {
  background: #fff7fb;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(248, 163, 194, 0.3);
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  max-height: 70vh;
  border: 1px solid rgba(248, 163, 194, 0.25);
}

.chat-closed .chat-panel {
  display: none;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
}

.chat-title {
  font-weight: 600;
}

.chat-subtitle {
  font-size: 12px;
  color: #4b5563;
}

.chat-close {
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: #475569;
}

.chat-messages {
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-message {
  background: #fde8f0;
  padding: 10px 12px;
  border-radius: 12px;
  max-width: 90%;
  color: #2a1830;
}

.chat-message.ai {
  align-self: flex-start;
}

.chat-message.user {
  align-self: flex-end;
  background: #b86bd4;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(184, 107, 212, 0.25);
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid #e2e8f0;
}

.chat-input {
  display: flex;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid #e2e8f0;
}

.chat-input input {
  flex: 1;
  border: 1px solid rgba(184, 107, 212, 0.35);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 13px;
}

.chat-option {
  border: 1px solid rgba(184, 107, 212, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  background: #ffffff;
  cursor: pointer;
  font-size: 13px;
  color: #6b416b;
}

.chat-option.secondary {
  background: #fde8f0;
}

.chat-option:hover {
  border-color: #b86bd4;
  color: #8b3db2;
}

.detail-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: #6b2a8c;
  text-decoration: none;
}

.detail-link:hover {
  text-decoration: underline;
}

.gallery-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.gallery-item {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(248, 163, 194, 0.3);
  cursor: pointer;
}

.tel-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #b86bd4;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  box-shadow: 0 10px 18px rgba(184, 107, 212, 0.25);
}

.detail-section {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(184, 107, 212, 0.25);
}

.detail-grid {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.detail-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
  font-size: 14px;
  color: #6b416b;
}

.detail-label {
  font-weight: 600;
  color: #7a2d5a;
}

.tel-link:hover {
  filter: brightness(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(35, 12, 45, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 200;
  padding: 20px;
  touch-action: pan-y;
}

.lightbox.hidden {
  display: none;
}

#lightboxImage {
  max-width: min(90vw, 900px);
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: none;
  background: #ffffff;
  color: #8b3db2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

.lightbox-nav {
  border: none;
  background: #ffffff;
  color: #8b3db2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 640px) {
  .container {
    padding: 16px;
  }

  .site-header {
    padding: 26px 0;
  }

  .site-logo {
    width: 52px;
    height: 52px;
  }

  .site-title {
    font-size: 22px;
  }

  .hero {
    padding: 20px;
    margin: 10px 0 18px;
  }

  .hero-title {
    font-size: 20px;
  }

  .steps,
  .intro,
  .store-list {
    padding: 16px;
    margin: 16px 0;
  }

  .store-cover {
    height: 160px;
  }

  .portal-cover {
    height: 100px;
  }

  .chat-widget {
    width: calc(100vw - 32px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes sparkleDrift {
  from {
    background-position: 0 0, 40px 80px, 120px 160px;
  }
  to {
    background-position: 200px 200px, 300px 360px, 520px 640px;
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 20px, 0);
  }
}
