:root {
  color-scheme: light;
  --ink: #25231f;
  --muted: #6f685f;
  --line: #ddd7cd;
  --paper: #f8f6f0;
  --soft: #ebe4d8;
  --accent: #7b6042;
  --accent-dark: #4f3f2e;
  --green: #506758;
  --white: #fffdf8;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(37, 35, 31, 0.12);
  background: rgba(248, 246, 240, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(42px, 4vw, 56px);
  max-width: min(260px, 48vw);
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a:hover,
.text-link:hover {
  color: var(--accent-dark);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: calc(100vh - 72px);
  min-height: 560px;
  object-fit: cover;
  opacity: 0;
  animation: heroFade var(--hero-duration, 18s) infinite;
  animation-delay: var(--hero-delay, 0s);
}

.hero-slide.is-single {
  opacity: 1;
  animation: none;
}

@keyframes heroFade {
  0%,
  30% {
    opacity: 1;
  }

  40%,
  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 23, 20, 0.48), rgba(25, 23, 20, 0.1));
}

.hero-copy {
  position: absolute;
  left: clamp(28px, 7vw, 108px);
  top: 50%;
  width: min(86vw, 1120px);
  max-width: calc(100% - clamp(56px, 14vw, 216px));
  color: var(--white);
  transform: translateY(-28%);
}

.hero-title,
.section-heading h2,
.detail h1,
.about-hero h1,
.about-hero h2,
.admin h1,
.contact h1,
.login h1 {
  margin: 0;
  font-family: Georgia, "Yu Mincho", serif;
  font-weight: 400;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.26);
  text-wrap: balance;
}

.hero-title-line {
  display: inline-block;
  white-space: nowrap;
}

.eyebrow,
.status {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.light {
  color: var(--white);
}

.collection,
.feature-band,
.about-hero,
.contact,
.admin,
.login,
.not-found {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.section-heading h2,
.about-hero h1,
.about-hero h2,
.contact h1,
.admin h1,
.login h1 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.about-hero p,
.contact p,
.admin p,
.detail-copy p {
  color: var(--muted);
  line-height: 2;
}

.collection {
  width: min(1200px, 94vw);
  padding: 64px 0 96px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.instagram-button {
  min-height: 42px;
  padding: 0 18px;
  border-color: var(--line);
  background: var(--white);
  font-size: 0.9rem;
}

.section-title-balanced span {
  display: inline-block;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px 30px;
  align-items: stretch;
}

.collection-actions {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}

.load-more-button {
  gap: 12px;
  min-width: 220px;
}

.load-more-button span {
  color: var(--muted);
  font-size: 0.78rem;
}

.product-card {
  display: flex;
  min-width: 0;
  padding-bottom: 0;
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--soft);
}

.product-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.015);
}

.product-card-copy {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 8px;
  width: 100%;
  padding: 16px 0 0;
}

.product-card h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  font-weight: 700;
  line-height: 1.45;
}

.product-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}

.product-size,
.price {
  color: var(--ink);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.feature-copy h2 {
  margin: 0;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.55;
}

.feature-title-line {
  display: inline;
}

.feature-copy-body {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 2;
}

.feature-copy-body p {
  margin: 0;
}

.feature-copy-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.feature-copy-mobile {
  display: none;
}

.feature-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.feature-images img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: var(--soft);
}

.feature-list {
  display: grid;
  gap: 18px;
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.feature-list > span {
  display: grid;
  gap: 4px;
}

.feature-step-title {
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 1.35rem;
  line-height: 1.45;
}

.feature-step-description {
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 1.08rem;
  line-height: 1.65;
}

.feature-step-note {
  margin-top: 12px;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 0.92rem;
  line-height: 1.75;
}

.detail {
  width: min(1280px, 92vw);
  margin: 0 auto;
  padding: 56px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 6vw;
}

.back-link,
.text-link {
  display: inline-flex;
  width: max-content;
  border-bottom: 1px solid currentColor;
}

.detail .back-link {
  grid-column: 1 / -1;
  color: var(--muted);
}

.detail-slideshow {
  min-width: 0;
}

.detail-slide-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}

.detail-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.detail-slide.is-active {
  opacity: 1;
}

.slide-button {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(37, 35, 31, 0.2);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink);
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.slide-button-prev {
  left: 16px;
}

.slide-button-next {
  right: 16px;
}

.slide-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.slide-dots {
  display: flex;
  gap: 8px;
}

.slide-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slide-dot.is-active {
  background: var(--accent);
}

.detail-copy {
  position: sticky;
  top: 104px;
  align-self: start;
}

.detail h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.lead {
  font-size: 1.12rem;
}

.spec-list {
  margin: 36px 0;
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--accent);
}

.spec-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.button,
.ghost-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--accent-dark);
  background: var(--accent-dark);
  color: var(--white);
  cursor: pointer;
  font: inherit;
}

.button.disabled {
  border-color: var(--line);
  background: var(--soft);
  color: var(--muted);
  cursor: default;
}

.ghost-button {
  background: transparent;
  color: var(--accent-dark);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.about-hero {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 6vw;
  align-items: center;
  padding: 80px 0;
}

.home-about {
  padding: 96px 0 88px;
}

.about-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.contact,
.admin,
.login,
.not-found {
  padding: 72px 0 96px;
}

.form {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-top: 40px;
}

.contact-order-fields,
.design-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-order-fields[hidden],
.design-fields[hidden] {
  display: none;
}

.form.compact {
  max-width: 520px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--white);
}

label {
  display: grid;
  gap: 8px;
  color: var(--accent-dark);
}

.label-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.required-mark {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 7px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.72rem;
  line-height: 1;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.form-result,
.muted {
  color: var(--muted);
}

.admin-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 160px auto;
  gap: 10px;
  align-items: end;
  margin-top: 26px;
}

.admin-search {
  gap: 6px;
  color: var(--muted);
  font-size: 0.8rem;
}

.admin-table {
  display: grid;
  gap: 28px;
  margin: 36px 0 56px;
}

.admin-panel {
  display: grid;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.72);
}

.admin-panel h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

.admin-section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.admin-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-pills span {
  padding: 5px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
}

.hero-url-list {
  display: grid;
  gap: 10px;
}

.admin-products {
  display: grid;
  gap: 10px;
}

.admin-list-head {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) minmax(90px, 0.6fr) minmax(150px, 0.9fr) 70px 80px 190px;
  gap: 14px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.admin-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) minmax(90px, 0.6fr) minmax(150px, 0.9fr) 70px 80px 190px;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  font-size: 0.88rem;
}

.admin-product-cell {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.admin-product-cell img {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: contain;
  background: var(--soft);
}

.admin-product-cell strong {
  display: block;
  margin-top: 3px;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 0.98rem;
}

.admin-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 8px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
}

.admin-image-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-image-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.site-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.site-settings-actions .form-result {
  margin: 0;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.row-actions .ghost-button {
  min-height: 34px;
  padding: 0 12px;
  border-color: var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.82rem;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.icon-button:disabled {
  opacity: 0.35;
  cursor: default;
}

.switch {
  display: inline-flex;
  justify-content: center;
}

.switch input {
  position: absolute;
  width: 1px;
  opacity: 0;
  pointer-events: none;
}

.switch span {
  position: relative;
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: #e6e4df;
}

.switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease;
}

.switch input:checked + span {
  background: var(--ink);
}

.switch input:checked + span::after {
  transform: translateX(16px);
}

.danger {
  width: max-content;
  border-color: #b36a5e;
  color: #8d3f35;
}

.admin-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
}

.admin-modal {
  width: min(760px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  padding: 22px;
  border-radius: 12px;
  background: var(--white);
}

.admin-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 14px;
}

.admin-modal h2,
.admin-modal h3 {
  margin: 0;
  font-family: Georgia, "Yu Mincho", serif;
}

.product-edit-form {
  display: grid;
  gap: 18px;
}

.editor-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  border-radius: 999px;
  background: #f0eeea;
  color: var(--muted);
  text-align: center;
  font-size: 0.86rem;
}

.editor-tabs span:first-child {
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
}

.editor-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--ink);
  border-radius: 12px;
}

.editor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.edit-image-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.edit-image-preview img,
.empty-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--ink);
  border-radius: 8px;
  object-fit: cover;
  background: #f3f2ef;
}

.empty-image {
  display: grid;
  place-items: center;
  color: var(--muted);
}

.image-add-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.edit-images {
  display: grid;
  gap: 10px;
}

.image-editor-row {
  display: grid;
  grid-template-columns: 54px 1fr auto auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--ink);
  border-radius: 12px;
}

.image-editor-row img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 8px;
}

.inquiries {
  display: grid;
  gap: 16px;
}

.inquiries article {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 4vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 820px) {
  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    inset: 72px 0 auto 0;
    display: none;
    padding: 20px 4vw;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: grid;
  }

  .hero-copy {
    left: clamp(22px, 6vw, 44px);
    top: 48%;
    width: calc(100% - clamp(44px, 12vw, 88px));
    max-width: none;
    transform: translateY(-18%);
  }

  .feature-band,
  .detail,
  .about-hero {
    grid-template-columns: 1fr;
  }

  .home-about {
    width: min(100% - 32px, 640px);
    padding: 36px 0 34px;
    gap: 0;
    overflow: hidden;
  }

  .about-hero h2 {
    font-size: clamp(1.6rem, 6.4vw, 2.2rem);
    line-height: 1.42;
  }

  .about-hero p {
    font-size: 0.9rem;
    line-height: 1.85;
    overflow-wrap: anywhere;
  }

  .about-hero img {
    display: none;
  }

  .detail-copy {
    position: static;
  }

  .admin-toolbar,
  .admin-list-head,
  .admin-row {
    grid-template-columns: 1fr;
  }

  .admin-list-head {
    display: none;
  }

  .row-actions {
    justify-content: flex-start;
  }

  .admin-image-preview,
  .editor-grid,
  .edit-image-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer,
  .admin-heading {
    display: grid;
  }
}

@media (max-width: 980px) {
  .admin-toolbar,
  .admin-list-head,
  .admin-row {
    grid-template-columns: 1fr;
  }

  .admin-list-head {
    display: none;
  }

  .row-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .brand-logo {
    height: 30px;
    max-width: 190px;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-slide {
    height: 72vh;
    min-height: 500px;
  }

  .hero-title-line {
    display: block;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding: 0 16px;
  }

  .nav {
    padding: 20px 16px;
  }

  .hero-copy {
    left: 24px;
    top: 46%;
    width: calc(100% - 48px);
  }

  .hero-title {
    font-size: clamp(2rem, 9.2vw, 2.45rem);
    line-height: 1.32;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 24px;
  }
}

@media (max-width: 760px) {
  .section-title-balanced span {
    display: block;
    white-space: normal;
  }

  .collection {
    padding-top: 42px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-actions {
    margin-top: 34px;
  }

  .load-more-button {
    width: min(100%, 280px);
  }

  .feature-band {
    gap: 24px;
    padding: 44px 0 48px;
  }

  .feature-copy h2 {
    font-size: clamp(1.38rem, 5.6vw, 1.78rem);
    line-height: 1.45;
  }

  .feature-title-line {
    display: block;
  }

  .feature-copy-body,
  .feature-images {
    display: none;
  }

  .feature-copy-mobile {
    display: block;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.8;
  }

  .feature-list {
    gap: 12px;
  }

  .feature-list > span {
    gap: 2px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(221, 215, 205, 0.8);
  }

  .feature-list > span:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .feature-step-title {
    font-size: 1.02rem;
    line-height: 1.45;
  }

  .feature-step-description {
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .feature-step-note {
    margin-top: 2px;
    font-size: 0.74rem;
    line-height: 1.65;
  }
}

@media (max-width: 430px) {
  .home-about {
    width: calc(100% - 32px);
  }
}

@media (max-width: 480px) {
  .collection {
    width: calc(100% - 28px);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 12px;
  }

  .product-card {
    padding-bottom: 18px;
  }

  .product-card-copy {
    gap: 7px;
    padding-top: 12px;
  }

  .section-title-balanced span {
    display: block;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  .product-card p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .status {
    font-size: 0.72rem;
  }

  .product-size,
  .price {
    font-size: 0.8rem;
  }

  .slide-button {
    width: 38px;
    height: 38px;
    font-size: 1.7rem;
  }

  .slide-button-prev {
    left: 10px;
  }

  .slide-button-next {
    right: 10px;
  }

  .admin-panel {
    padding: 18px;
  }

  .admin-section-head {
    display: grid;
  }

  .admin-image-preview,
  .editor-grid,
  .edit-image-preview,
  .contact-order-fields,
  .design-fields,
  .image-add-row,
  .image-editor-row {
    grid-template-columns: 1fr;
  }

  .admin-modal-backdrop {
    padding: 12px;
  }

  .admin-modal {
    padding: 16px;
  }
}

@media (max-width: 340px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  html {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}
