:root {
  --color-primary: #f2a694;
  --color-secondary: #f7d7c4;
  --color-accent: #dd7055;
  --color-text: #4a3c3a;
  --color-muted: rgba(74, 60, 58, 0.65);
  --color-bg: #fffaf8;
  --color-panel: rgba(255, 255, 255, 0.82);
  --max-width: 1100px;
  --shadow-soft: 0 20px 40px rgba(219, 163, 138, 0.18);
  --radius-large: 24px;
  --radius-medium: 16px;
  --radius-small: 12px;
  color-scheme: light;
}

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

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221, 112, 85, 0.12);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header__inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  column-gap: 1rem;
  row-gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.site-header__logo-wrap {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
}

.site-header__logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(221, 112, 85, 0.28), rgba(221, 112, 85, 0));
  border: 1px solid rgba(221, 112, 85, 0.35);
  box-shadow: 0 16px 30px rgba(221, 112, 85, 0.2);
}

.site-header__logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  position: relative;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(15, 28, 21, 0.25);
}

.site-header__brand-text {
  display: grid;
  gap: 0.25rem;
}

.site-header__title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-header__tagline {
  font-size: 0.75rem;
  color: rgba(74, 60, 58, 0.73);
  letter-spacing: 0.06em;
  line-height: 1.1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: wrap;
  min-width: 0;
}

.site-nav__list {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  font-weight: 600;
  color: rgba(74, 60, 58, 0.78);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding-bottom: 0.2rem;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--color-accent);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
  transform: scaleX(1);
}

.access-address__name {
  font-weight: 700;
  font-size: 1.05rem;
  display: block;
}

.access-address__detail {
  display: block;
  margin-top: 0.25rem;
}

.site-nav__toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.2rem;
  border: none;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 24px rgba(221, 112, 85, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.site-nav__toggle::before {
  content: "☰";
  font-size: 1.1rem;
  line-height: 1;
}

.site-nav__toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

.site-nav__toggle:hover,
.site-nav__toggle[aria-expanded="true"] {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(221, 112, 85, 0.28);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 1.1rem;
  background-color: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  min-height: 2.6rem;
  box-shadow: 0 8px 22px rgba(221, 112, 85, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  margin-left: auto;
}

.site-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(221, 112, 85, 0.28);
}

.site-header__cta--line {
  background-color: #06c755;
  box-shadow: 0 10px 24px rgba(6, 199, 85, 0.24);
}

.site-header__cta--line:hover {
  box-shadow: 0 14px 28px rgba(6, 199, 85, 0.3);
}

.hero {
  position: relative;
  padding: 2rem 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(242, 166, 148, 0.18), rgba(255, 255, 255, 0.95));
  overflow: hidden;
  max-height: 600px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 14% auto auto -12%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(221, 112, 85, 0.2), rgba(221, 112, 85, 0));
  opacity: 0.65;
  pointer-events: none;
  transform: rotate(18deg);
}

.hero__inner {
  width: min(var(--max-width) + 80px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
  max-height: 550px;
}

@media (min-width: 960px) {
  .salon-overview {
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
  }
}

.hero-media {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-height: 600px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.hero-media__stage {
  position: relative;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  max-height: 550px;
}

.hero-media__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: var(--radius-large);
}

.hero-media__video.is-active {
  opacity: 1;
}

.hero-media__thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-media__thumb {
  width: 60px;
  height: 40px;
  border-radius: var(--radius-small);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease;
  background: #f0f0f0;
  flex-shrink: 0;
}

.hero-media__thumb.is-active {
  border-color: var(--color-accent);
}

.hero-media__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes heroFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

main {
  width: 100%;
}

.section {
  padding: 25px 1.5rem;
  width: min(1120px, 100%);
  margin: 0 auto;
}

@media (min-width: 960px) {
  .section {
    padding: 25px 1.5rem;
  }
}

.reviews-container {
  max-height: 400px;
  overflow-y: auto;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-medium);
  box-shadow: 0 10px 30px rgba(221, 112, 85, 0.1);
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) rgba(221, 112, 85, 0.1);
}

.reviews-container::-webkit-scrollbar {
  width: 6px;
}

.reviews-container::-webkit-scrollbar-track {
  background: rgba(221, 112, 85, 0.05);
  border-radius: 3px;
}

.reviews-container::-webkit-scrollbar-thumb {
  background-color: var(--color-accent);
  border-radius: 3px;
}

.review-card {
  background: var(--color-panel);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem;
  display: grid;
  gap: 0.9rem;
}

.review-card:nth-child(even) {
  background: #fdf8f6;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.review-card__author {
  font-weight: 600;
}

.review-card__author::before {
  content: "投稿者名：";
  font-weight: normal;
  color: var(--color-muted);
  margin-right: 0.25rem;
}

.review-card__time {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.review-card__time::before {
  content: "投稿日：";
  margin-right: 0.25rem;
}

.review-card__rating {
  font-weight: 700;
  color: var(--color-accent);
}

.review-card__rating::before {
  content: "評価：";
  font-weight: normal;
  color: var(--color-muted);
  margin-right: 0.25rem;
}

.review-card__body {
  color: var(--color-muted);
}

.section__header {
  text-align: center;
  margin: 0 auto 2.6rem;
  max-width: 760px;
  display: grid;
  gap: 0.75rem;
}

.section__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.section__subtitle {
  color: var(--color-muted);
  font-size: 1rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section--salon {
  padding-top: 5.5rem;
  padding-bottom: 5rem;
  background: linear-gradient(135deg, rgba(242, 166, 148, 0.16), rgba(255, 255, 255, 0.95));
}

.salon-overview {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
  padding: 1.5rem;
  border-radius: var(--radius-large);
  background: #fff;
  box-shadow: 0 24px 45px rgba(221, 112, 85, 0.12);
  border: 1px solid rgba(221, 112, 85, 0.14);
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  max-height: 400px;
}

.salon-overview::before {
  content: "";
  position: absolute;
  inset: -45% auto auto -22%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(221, 112, 85, 0.1), rgba(221, 112, 85, 0));
  pointer-events: none;
  opacity: 0.65;
}

@media (min-width: 960px) {
  .salon-overview {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
}

.salon-overview__details {
  display: grid;
  gap: 1.2rem;
  align-content: start;
  max-width: 560px;
}

.salon-overview__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  background: rgba(221, 112, 85, 0.14);
  color: var(--color-accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.salon-overview__title {
  font-size: clamp(1.5rem, 2.5vw + 1rem, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-text);
}

.salon-overview__lead {
  color: var(--color-muted);
  line-height: 1.9;
  font-size: 1rem;
}

.salon-overview__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.salon-overview__meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(74, 60, 58, 0.78);
}

.salon-overview__meta-label {
  min-width: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

.salon-overview__meta-link {
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.salon-overview__meta-link:hover {
  text-decoration: underline;
}

.salon-announcements {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
}

.salon-announcements__title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.salon-announcements__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.salon-announcements__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.salon-announcements__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(221, 112, 85, 0.16);
  color: var(--color-accent);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.salon-announcements__heading {
  font-weight: 600;
  letter-spacing: 0.05em;
  flex: 1;
}

.salon-announcements__time {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.salon-announcements__footer {
  margin-top: 0.5rem;
}

.salon-announcements__link {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.salon-announcements__link:hover {
  text-decoration: underline;
}

.announcement-toggle {
  background: none;
  border: none;
  color: var(--color-accent);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  margin-left: 0.5rem;
}

.salon-announcements__item {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(221, 112, 85, 0.18);
  box-shadow: 0 12px 28px rgba(221, 112, 85, 0.12);
  display: grid;
  gap: 0.45rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.salon-announcements__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(221, 112, 85, 0.16);
}

.salon-announcements__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.salon-announcements__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(221, 112, 85, 0.16);
  color: var(--color-accent);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.salon-announcements__heading {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.salon-announcements__body {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.salon-overview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}


.line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  background-color: #06c755;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(6, 199, 85, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.line-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(6, 199, 85, 0.3);
}

.line-button--full {
  width: 100%;
  text-align: center;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: 1px solid rgba(221, 112, 85, 0.4);
  background-color: rgba(221, 112, 85, 0.1);
  color: var(--color-accent);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(221, 112, 85, 0.2);
  background-color: rgba(221, 112, 85, 0.16);
}

.button-secondary--solid {
  background-color: var(--color-accent);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 24px rgba(221, 112, 85, 0.25);
}

.button-secondary--solid:hover {
  box-shadow: 0 16px 30px rgba(221, 112, 85, 0.3);
}

.salon-overview__media {
  position: relative;
}

.salon-overview__image {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.salon-overview__figure {
  display: grid;
  gap: 0.75rem;
}

.salon-overview__caption {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.salon-overview__placeholder {
  min-height: 320px;
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, rgba(242, 166, 148, 0.18), rgba(221, 112, 85, 0.12));
  display: grid;
  place-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.salon-overview__placeholder span {
  font-size: 0.85rem;
  color: var(--color-muted);
  letter-spacing: 0.12em;
}

.salon-features {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.8rem;
  width: 100%;
}

.salon-features__heading {
  text-align: center;
  display: grid;
  gap: 0.6rem;
}

.salon-features__heading p {
  color: var(--color-muted);
}

.highlight-carousel {
  display: grid;
  gap: 1.5rem;
  position: relative;
  min-height: 18rem;
  max-width: 960px;
  margin: 0 auto;
}

.highlight-card {
  display: none;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 1.5rem;
  border-radius: var(--radius-medium);
  background: var(--color-panel);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.highlight-card.is-active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.highlight-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.highlight-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: background 0.3s ease, transform 0.3s ease;
}

.highlight-dot.is-active {
  background: var(--color-accent);
  transform: scale(1.15);
}

.highlight-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-small);
}

.highlight-card__media img {
  border-radius: var(--radius-small);
  transform-origin: center;
  transition: transform 0.8s ease;
}

.highlight-card.is-active .highlight-card__media img {
  animation: highlightFloat 10s ease-in-out infinite;
}

.highlight-card:not(.is-active) .highlight-card__media img {
  animation: none;
}

.highlight-card__body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.highlight-card__body p {
  color: var(--color-muted);
  line-height: 1.8;
}

@keyframes highlightFloat {
  0% {
    transform: scale(1) rotate(0deg);
  }
  30% {
    transform: scale(1.02) rotate(1.6deg);
  }
  60% {
    transform: scale(1.02) rotate(-1.6deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.coupon-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.coupon-slider {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0 1.5rem 0;
  margin-bottom: 1rem;
}

.coupon-slider__container {
  display: flex;
  gap: 0.75rem;
  transition: transform 0.5s ease;
  padding-bottom: 0.5rem;
}

.coupon-slide {
  flex: 0 0 calc(25% - 0.75rem * 0.75);
  min-width: 0;
}

.coupon-slider__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.coupon-slider__prev,
.coupon-slider__next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: opacity 0.2s ease;
}

.coupon-slider__prev:hover,
.coupon-slider__next:hover {
  opacity: 0.8;
}

.coupon-slider__prev::before {
  content: "←";
}

.coupon-slider__next::before {
  content: "→";
}

@media (max-width: 768px) {
  .coupon-slider {
    position: relative;
  }
  
  .coupon-slider::before {
    content: "←→";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 18px;
    color: var(--color-accent);
    font-weight: bold;
    z-index: 10;
    pointer-events: none;
    animation: swipeHint 2s ease-in-out infinite;
  }
  
  @keyframes swipeHint {
    0% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
    100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  }
  
  .coupon-slider:hover::before,
  .coupon-slider:active::before {
    display: none;
  }
  
  .coupon-slider__container {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .coupon-slider::-webkit-scrollbar {
    display: none;
  }
  
  .coupon-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .coupon-slide {
    flex: 0 0 calc(50% - 0.75rem * 0.5);
  }
  
  .coupon-modal__content {
    width: 95%;
  }
  
  .coupon-grid {
    gap: 0.75rem;
  }
}

.coupon-card {
  background: var(--color-panel);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.coupon-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.coupon-card__body {
  padding: 1.5rem;
  display: grid;
  gap: 0.8rem;
}

.coupon-card--compact h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 1.5em;
}

.coupon-card__catch {
  color: var(--color-accent);
  font-weight: 600;
  margin: 0.2rem 0;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.coupon-card__pricing {
  margin: 0.3rem 0;
}

.coupon-card__detail-btn {
  width: 100%;
  padding: 0.4rem;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: var(--radius-small);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 0.9rem;
  margin-top: auto;
}

.coupon-card__detail-btn:hover {
  background: #c95d46;
}

.coupon-card--compact {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-small);
}

.coupon-card--compact .coupon-card__image {
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-small) var(--radius-small) 0 0;
}

.coupon-card--compact .coupon-card__body {
  padding: 0.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.coupon-tabs {
  margin-top: 2rem;
}

.coupon-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.coupon-tab {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: rgba(221, 112, 85, 0.1);
  color: var(--color-accent);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.coupon-tab:hover {
  background: rgba(221, 112, 85, 0.2);
}

.coupon-tab.is-active {
  background: var(--color-accent);
  color: white;
}

.coupon-tab-content {
  display: none;
}

.coupon-tab-content.is-active {
  display: block;
}

.coupon-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.coupon-modal.is-active {
  opacity: 1;
  pointer-events: all;
}

.coupon-modal__content {
  background: white;
  border-radius: var(--radius-medium);
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  position: relative;
  width: 500px;
}

.coupon-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, rgba(221, 112, 85, 0.95), rgba(221, 112, 85, 0.8));
  border: none;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 12px 25px rgba(221, 112, 85, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.coupon-modal__close:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(221, 112, 85, 1), rgba(221, 112, 85, 0.95));
  box-shadow: 0 16px 30px rgba(221, 112, 85, 0.35);
}

.coupon-modal__close:active {
  transform: scale(0.97);
}

.coupon-modal__close:focus-visible {
  outline: 3px solid rgba(221, 112, 85, 0.4);
  outline-offset: 4px;
}

.coupon-modal__body {
  padding: 2rem;
}

.coupon-modal__body .coupon-card__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-small);
  margin-bottom: 1rem;
}

.coupon-modal__body h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.coupon-modal__body .coupon-card__catch {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.coupon-modal__body .coupon-card__meta {
  margin: 1rem 0;
}

.coupon-modal__body .coupon-card__pricing {
  margin: 1rem 0;
  font-size: 1.2rem;
}

  .coupon-modal__body .coupon-card__terms {
    margin-top: 1rem;
    color: var(--color-muted);
    font-size: 0.9rem;
  }

.coupon-modal__body .coupon-card__price-label {
  font-weight: bold;
  color: var(--color-text);
  margin-right: 0.5rem;
}

.coupon-modal__body .coupon-card__original-label {
  margin-right: 0.5rem;
}

.coupon-modal__body .coupon-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}

.coupon-modal__body .coupon-card__original-wrap {
  text-decoration: line-through;
  color: var(--color-muted);
  margin-left: 0.5rem;
}

.coupon-modal__section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.coupon-modal__media {
  margin-bottom: 1rem;
  border-radius: var(--radius-medium);
  overflow: hidden;
}

.coupon-modal__media img {
  display: block;
  width: 100%;
  height: auto;
}

.coupon-modal__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
}

.coupon-modal__lead {
  font-size: 1rem;
  color: var(--color-muted);
}

.coupon-modal__price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-accent);
}

.coupon-modal__price-note {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.coupon-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.coupon-modal__meta-item {
  background: rgba(221, 112, 85, 0.12);
  color: var(--color-text);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-small);
}

.coupon-modal__description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
}

.coupon-modal__note {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.coupon-modal__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.coupon-modal__time {
  font-size: 0.85rem;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  /* 移动端菜单统一为单列显示 */
  .coupon-slider__container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .coupon-slider__container::-webkit-scrollbar {
    display: none;
  }
  
  .coupon-slide {
    flex: 0 0 100%;
    margin-right: 0;
    box-sizing: border-box;
    min-width: 100%;
  }
  
  /* 确保移动端菜单项正确显示 */
  .coupon-grid {
    grid-template-columns: 1fr;
  }
  
  .coupon-card {
    margin-bottom: 1rem;
  }
  
  .coupon-card__detail-btn {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
    box-sizing: border-box;
    min-height: 44px;
    padding: 12px 16px;
    margin: 0 auto;
    display: block;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: var(--radius-small);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
  .coupon-card__detail-btn:hover {
    background: #c95d46;
  }
  
  /* 确保模态框在移动端正确显示 */
  .coupon-modal.is-active {
    pointer-events: all !important;
  }
}

/* 移除与768px断点重复的480px断点设置，避免样式冲突 */

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  overflow: hidden;
  max-height: 500px;
}

.gallery-item {
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-small);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(219, 163, 138, 0.16);
  cursor: pointer;
  transition: transform 0.2s ease;
  display: none;
}

.gallery-item.visible {
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.gallery-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.gallery-nav button {
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-small);
  background: var(--color-accent);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  min-width: 120px;
}

.gallery-nav button:hover {
  opacity: 0.9;
}

.gallery-nav button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* PC端显示2行（8个项目） */
@media (min-width: 769px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}

/* 移动端只显示1行（2个项目）并显示导航按钮 */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    max-height: 250px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    position: relative;
  }
  
  .gallery-grid::before {
    content: "←→";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 18px;
    color: var(--color-accent);
    font-weight: bold;
    z-index: 10;
    pointer-events: none;
    animation: swipeHint 2s ease-in-out infinite;
  }
  
  @keyframes swipeHint {
    0% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
    100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  }
  
  .gallery-grid:hover::before,
  .gallery-grid:active::before {
    display: none;
  }
  
  .gallery-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  .gallery-item {
    min-width: calc(50% - 0.5rem);
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  /* 移動端隐藏导航按钮 */
  .gallery-nav {
    display: none;
  }
}

.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-modal.is-active {
  opacity: 1;
  pointer-events: all;
}

.gallery-modal__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.gallery-modal img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.gallery-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}


.staff-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (max-width: 768px) {
  .staff-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .staff-card {
    padding: 1rem;
  }
  
  .staff-card__image {
    width: 100px;
    height: 100px;
  }
}

.staff-card {
  background: var(--color-panel);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  text-align: center;
}

.staff-card__image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  box-shadow: 0 18px 35px rgba(221, 112, 85, 0.22);
}

.staff-card__role {
  color: var(--color-accent);
  font-weight: 600;
}

.staff-card__sns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.staff-card__sns a {
  font-size: 0.92rem;
  color: var(--color-accent);
  background: rgba(221, 112, 85, 0.12);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

.sns-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.sns-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-medium);
  font-weight: 600;
  transition: all 0.2s ease;
  color: white;
  min-width: 140px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sns-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
}

.sns-button--twitter {
  background-color: #1DA1F2;
}

.sns-button--instagram {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
}

.sns-button--tiktok {
  background-color: #000000;
}

.sns-button--facebook {
  background-color: #1877F2;
}

.sns-button--line {
  background-color: #06C755;
}

.access-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: stretch;
}

.access-grid__info {
  background: var(--color-panel);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  padding: 1.8rem;
  display: grid;
  gap: 1.1rem;
  font-size: 0.98rem;
  align-content: start;
}

.access-grid__map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .access-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .access-grid__info,
  .access-grid__map iframe {
    min-height: 370px;
  }
}

.access-address {
  display: grid;
  gap: 0.25rem;
  font-style: normal;
}

.access-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.2rem 0 0;
  color: var(--color-muted);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.phone-link {
  color: var(--color-accent);
  font-weight: 600;
}

.phone-link--button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-small);
  border: 1px solid rgba(221, 112, 85, 0.4);
  background-color: rgba(221, 112, 85, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--color-accent);
}

.phone-link--button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(221, 112, 85, 0.2);
}

.map-caption {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  text-align: right;
}

.map-caption a {
  color: var(--color-accent);
  font-weight: 600;
}

.review-list {
  display: grid;
  gap: 1.5rem;
}

.review-card {
  background: var(--color-panel);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem;
  display: grid;
  gap: 0.9rem;
}

.review-card:nth-child(even) {
  background: #fdf8f6;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.review-card__author {
  font-weight: 600;
}

.review-card__author::before {
  content: "投稿者名：";
  font-weight: normal;
  color: var(--color-muted);
  margin-right: 0.25rem;
}

.review-card__time {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.review-card__time::before {
  content: "投稿日：";
  margin-right: 0.25rem;
}

.review-card__rating {
  font-weight: 700;
  color: var(--color-accent);
}

.review-card__rating::before {
  content: "評価：";
  font-weight: normal;
  color: var(--color-muted);
  margin-right: 0.25rem;
}

.review-card__body {
  color: var(--color-muted);
}

.page-content {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text);
}

.page-content p {
  margin-bottom: 1.2rem;
}

.footer {
  margin-top: 4rem;
  padding: 2.5rem 1.5rem 3rem;
  background: #f2e5df;
}

.footer__inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  text-align: center;
  color: rgba(74, 60, 58, 0.8);
  display: grid;
  gap: 0.5rem;
}

.footer__brand {
  font-weight: 600;
  letter-spacing: 0.18em;
}

@media (min-width: 960px) {
  .site-header__logo {
    width: 92px;
    height: 92px;
  }

  .site-header__logo-wrap {
    width: 110px;
    height: 110px;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 1.2rem;
    row-gap: 0;
    padding: 0.85rem 1.5rem;
  }

  .site-header__brand {
    grid-column: 1 / 2;
  }

  .site-nav {
    grid-column: 2 / 3;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: nowrap;
    min-width: 0;
  }

  .site-header__cta {
    grid-column: 3 / 4;
    justify-self: end;
    padding: 0.55rem 1.25rem;
    font-size: 0.95rem;
  }

  .hero__inner {
    gap: 4rem;
  }

  .salon-overview__meta {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.7rem 1.8rem;
  }

  .highlight-carousel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 0.75rem;
    row-gap: 0.75rem;
    align-items: center;
  }

  .site-header__brand {
    grid-column: 1 / -1;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-nav__toggle {
    grid-column: 1 / 2;
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin: 0;
  }

  .site-nav {
    order: 0;
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    margin-left: 0;
    margin-top: 0.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(221, 112, 85, 0.12);
    border-radius: var(--radius-medium);
    padding: 0.75rem 0.75rem;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .site-nav__link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-small);
    background: rgba(255, 255, 255, 0.85);
  }

  .site-nav__link::after {
    display: none;
  }

  .site-header__logo-wrap {
    width: 76px;
    height: 76px;
  }

  .site-header__logo {
    width: 66px;
    height: 66px;
  }

  .site-header__tagline {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    white-space: normal;
  }

  .site-header__cta {
    grid-column: 2 / 3;
    align-self: stretch;
    justify-content: center;
    margin-left: 0;
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    min-height: 2.3rem;
  }

  .hero {
    padding: 3.5rem 1rem 3rem;
  }

  .hero__inner {
    gap: 2.5rem;
  }

  .section {
    padding-top: 3.5rem;
  }

  .salon-overview {
    padding: 2rem 1.5rem;
  }

  .salon-overview::before {
    inset: -45% auto auto -22%;
    width: 260px;
    height: 260px;
  }

  .salon-overview__title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .salon-overview__lead {
    font-size: 0.9rem;
    display: block !important; /* 确保在移动端显示 */
  }

  .salon-overview__meta {
    gap: 0.55rem;
  }

  .salon-overview__meta li {
    flex-direction: column;
    gap: 0.35rem;
  }

  .salon-overview__meta-label {
    min-width: auto;
  }

  .salon-overview__eyebrow {
    justify-content: center;
  }

  .salon-overview__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .line-button,
  .button-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    max-height: 500px;
    padding: 1rem;
    position: relative;
  }
  
  .hero__inner {
    max-height: 480px;
  }
  
  /* 在移动端隐藏特定的标题和描述文字 */
  .salon-overview__title,
  .salon-overview__lead {
    display: none !important;
  }
  
  .salon-overview {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }
  
  .salon-overview__details {
    gap: 0.8rem;
  }
  
  .salon-announcements {
    margin-top: 1rem;
  }
  
  .salon-announcements__list {
    gap: 0.7rem;
    max-height: none;
  }
  
  .salon-announcements__item {
    padding: 0.8rem 1rem;
  }
  
  .hero-media {
    max-height: 300px;
    margin-top: 1rem;
    position: relative;
    display: block !important; /* 确保在移动端显示 */
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
  }
  
  .hero-media::before {
    content: "←→";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 18px;
    color: var(--color-accent);
    font-weight: bold;
    z-index: 10;
    pointer-events: none;
    animation: swipeHint 2s ease-in-out infinite;
  }
  
  @keyframes swipeHint {
    0% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
    100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  }
  
  .hero-media:hover::before,
  .hero-media:active::before {
    display: none;
  }
  
  .hero-media__stage {
    max-height: 250px;
    overflow: visible !important;
    height: auto !important;
  }
  
  .site-header__inner {
    padding: 0.7rem 1rem;
  }
  
  .site-header__title {
    font-size: 1.3rem;
  }
  
  .site-nav__toggle {
    font-size: 1.1rem;
    min-height: 2.8rem;
    padding: 0.6rem 1.3rem;
  }
  
  .site-nav__list {
    gap: 0.7rem;
  }
  
  .site-nav__link {
    font-size: 1.1rem;
    font-weight: 700;
  }
  
  .site-header__cta {
    font-size: 1.1rem;
    min-height: 2.8rem;
    padding: 0.6rem 1.3rem;
  }
  
  .coupon-slider__nav {
    display: flex;
  }
  
  /* 增强导航按钮触摸体验 */
  .coupon-slider__prev,
  .coupon-slider__next {
    min-width: 44px;
    min-height: 44px;
    font-size: 1.2rem;
  }
}

/* 优化移动端菜单按钮显示 */
@media (max-width: 768px) {
  .coupon-card__detail-btn {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* 确保按钮容器不会溢出 */
  .coupon-card__body {
    padding: 12px;
  }
  
  .coupon-card__pricing {
    margin-bottom: 8px;
  }
}

/* 菜单轮播在移动端的改进 */
@media (max-width: 768px) {
  .coupon-slider__container {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.3s ease;
  }
  
  .coupon-slide {
    flex-shrink: 0;
    margin-right: 16px;
  }
  
  /* 确保最后一个slide的右边距 */
  .coupon-slide:last-child {
    margin-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .highlight-card__media img {
    animation: none !important;
  }
}
@media (max-width: 768px) {
  .coupon-slider__nav {
    display: none;
  }

  .hero-media__thumbs {
    display: none;
  }

  .coupon-modal__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
    box-shadow: 0 10px 20px rgba(221, 112, 85, 0.25);
  }
}
