/* [project]/app/globals.css [app-client] (css) */
:root {
  --background: #fffaf6;
  --surface: #fff;
  --surface-soft: #fff2ec;
  --surface-input: #fffdfb;
  --foreground: #2f2730;
  --muted: #756b73;
  --border: #eadfdc;
  --control-border: #dacdca;
  --primary: #ef6a67;
  --primary-dark: #d85458;
  --dark: #3b3340;
  --accent: #6d5dc5;
  --success: #317a60;
  --danger: #bd3d4b;
  --shadow: 0 18px 50px #4c323917;
  --focus-ring: 0 0 0 3px #ef6a671f;
  --font-size-xs: 12px;
  --font-size-sm: 13px;
  --font-size-md: 14px;
  --radius-xs: 10px;
  --radius-field: 11px;
  --radius-small: 12px;
  --radius-control: 13px;
  --radius-compact: 14px;
  --radius-large: 28px;
  --radius-medium: 18px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  min-height: 100vh;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  flex-direction: column;
  font-family: Pretendard, Apple SD Gothic Neo, Noto Sans KR, Arial, sans-serif;
  line-height: 1.55;
  display: flex;
}

button, input, select, textarea {
  color: inherit;
  font: inherit;
}

button, select {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

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

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

.site-main {
  flex: 1;
}

.container {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}

.narrow-page {
  max-width: 820px;
}

.page-section {
  padding-block: 64px 88px;
}

.site-header {
  z-index: 20;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: #fffaf6eb;
  border-bottom: 1px solid #eadfdcdb;
  position: sticky;
  top: 0;
}

.header-inner, .footer-inner, .main-nav, .brand, .hero-actions, .section-heading, .heading-with-action, .heading-with-badge, .inline-actions, .product-card-price-row, .address-card-heading, .seller-order-heading, .seller-order-actions, .progress-heading, .progress-meta, .summary-price-row {
  align-items: center;
  display: flex;
}

.header-inner {
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  letter-spacing: -.04em;
  gap: 10px;
  font-size: 20px;
  font-weight: 850;
}

.brand-mark, .auth-icon, .empty-state-icon, .dashboard-card-icon, .contributor-avatar {
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.brand-mark {
  color: #fff;
  border-radius: var(--radius-small);
  background: var(--primary);
  width: 36px;
  height: 36px;
  box-shadow: 0 8px 18px #ef6a6747;
}

.main-nav {
  color: #554b53;
  font-size: var(--font-size-md);
  gap: 24px;
  font-weight: 700;
}

.main-nav a {
  transition: color .16s, background .16s;
}

.main-nav a:not(.header-cta):hover {
  color: var(--primary-dark);
}

.seller-nav-link {
  border-bottom: 2px solid #0000;
  padding-block: 8px;
}

.seller-nav-link[aria-current="page"] {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

.mobile-menu-trigger {
  color: #554b53;
  border: 1px solid var(--border);
  border-radius: var(--radius-control);
  background: #ffffffb8;
  flex: none;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  display: none;
}

.mobile-menu-trigger:hover, .mobile-menu-trigger:focus-visible {
  color: var(--primary-dark);
  background: var(--surface);
  border-color: #d8c8c5;
}

.mobile-menu-icon {
  flex-direction: column;
  justify-content: space-between;
  width: 19px;
  height: 15px;
  display: flex;
}

.mobile-menu-icon span {
  border-radius: var(--radius-pill);
  background: currentColor;
  width: 100%;
  height: 2px;
  transition: transform .16s, opacity .16s;
  display: block;
}

.mobile-menu-trigger[aria-expanded="true"] .mobile-menu-icon span:first-child {
  transform: translateY(6.5px)rotate(45deg);
}

.mobile-menu-trigger[aria-expanded="true"] .mobile-menu-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-trigger[aria-expanded="true"] .mobile-menu-icon span:last-child {
  transform: translateY(-6.5px)rotate(-45deg);
}

.header-user-controls {
  align-items: center;
  gap: 8px;
  display: flex;
  position: relative;
}

.notification-trigger {
  color: #554b53;
  border: 1px solid var(--border);
  border-radius: var(--radius-control);
  background: #ffffffb8;
  place-items: center;
  width: 42px;
  height: 42px;
  display: grid;
  position: relative;
}

.notification-trigger:hover, .notification-trigger:focus-visible {
  color: var(--primary-dark);
  background: var(--surface);
  border-color: #d8c8c5;
}

.notification-badge {
  color: #fff;
  border: 2px solid var(--background);
  border-radius: var(--radius-pill);
  background: var(--primary-dark);
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding-inline: 5px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  display: grid;
  position: absolute;
  top: -6px;
  right: -7px;
}

.notification-dropdown {
  z-index: 40;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface);
  width: min(380px, 100vw - 28px);
  max-height: min(580px, 100vh - 96px);
  box-shadow: var(--shadow);
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  overflow: hidden;
}

.notification-dropdown-heading {
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 18px 13px;
  display: flex;
}

.notification-dropdown-heading strong {
  font-size: 17px;
}

.notification-dropdown-heading span {
  color: var(--muted);
  font-size: var(--font-size-xs);
}

.notification-list {
  max-height: min(450px, 100vh - 190px);
  overflow-y: auto;
}

.notification-item {
  background: var(--surface);
  border-bottom: 1px solid #f1e8e5;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.notification-item-open {
  text-align: left;
  background: none;
  border: 0;
  grid-template-columns: 8px minmax(0, 1fr) auto;
  align-items: start;
  gap: 11px;
  min-width: 0;
  padding: 14px 12px 14px 16px;
  display: grid;
}

.notification-item.unread {
  background: #fff8f4;
}

.notification-item-open:hover:not(:disabled), .notification-item-open:focus-visible {
  background: var(--surface-soft);
}

.notification-item-open:disabled {
  opacity: .72;
}

.notification-item-marker {
  background: none;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin-top: 7px;
}

.notification-item.unread .notification-item-marker {
  background: var(--primary);
}

.notification-item-copy {
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  display: flex;
}

.notification-item-copy strong {
  color: var(--foreground);
  font-size: var(--font-size-md);
}

.notification-item.read .notification-item-copy strong {
  color: #655c63;
}

.notification-item-copy > span {
  color: var(--muted);
  font-size: var(--font-size-sm);
  font-weight: 500;
  line-height: 1.45;
}

.notification-item-copy time {
  color: #9a8f95;
  font-size: 11px;
  font-weight: 600;
}

.notification-item-status {
  color: var(--primary-dark);
  white-space: nowrap;
  padding-top: 3px;
  font-size: 11px;
}

.notification-item-delete {
  color: var(--muted);
  border-radius: var(--radius-small);
  white-space: nowrap;
  background: none;
  border: 0;
  align-self: center;
  margin-right: 12px;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 700;
}

.notification-item-delete:hover:not(:disabled), .notification-item-delete:focus-visible {
  color: var(--danger);
  background: #fff0f0;
}

.notification-item-delete:disabled {
  opacity: .62;
}

.notification-empty, .notification-error {
  color: var(--muted);
  font-size: var(--font-size-sm);
  text-align: center;
  padding: 22px 18px;
}

.notification-error {
  color: var(--danger);
  border-top: 1px solid var(--border);
  background: #fff5f5;
  padding-block: 10px;
}

.account-menu {
  flex: none;
  position: relative;
}

.account-menu-trigger {
  border: 1px solid var(--border);
  border-radius: var(--radius-control);
  background: #ffffffb8;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  min-height: 42px;
  padding: 7px 11px;
  font-weight: 800;
  display: flex;
}

.account-menu-trigger:hover, .account-menu-trigger:focus-visible {
  background: var(--surface);
  border-color: #d8c8c5;
}

.account-user-name {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 120px;
  overflow: hidden;
}

.account-menu-trigger .status-badge {
  padding: 3px 8px;
  font-size: 10px;
}

.account-menu-arrow {
  color: var(--muted);
  font-size: 11px;
  transition: transform .16s;
}

.account-menu-arrow.open {
  transform: rotate(180deg);
}

.account-dropdown {
  z-index: 30;
  border: 1px solid var(--border);
  border-radius: var(--radius-compact);
  background: var(--surface);
  width: max-content;
  min-width: 190px;
  max-width: calc(100vw - 28px);
  box-shadow: var(--shadow);
  padding: 7px;
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
}

.account-dropdown a, .account-dropdown button {
  width: 100%;
  min-height: 44px;
  font-size: var(--font-size-md);
  text-align: left;
  white-space: nowrap;
  background: none;
  border: 0;
  border-radius: 9px;
  align-items: center;
  padding: 10px 12px;
  font-weight: 750;
  display: flex;
}

.account-dropdown a:hover, .account-dropdown button:hover, .account-dropdown a:focus-visible, .account-dropdown button:focus-visible {
  color: var(--primary-dark);
  background: var(--surface-soft);
}

.account-dropdown form {
  width: 100%;
}

.header-cta {
  color: #fff;
  border-radius: var(--radius-pill);
  background: var(--dark);
  padding: 9px 16px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #f8f0eb;
}

.footer-inner {
  min-height: 120px;
  color: var(--muted);
  font-size: var(--font-size-sm);
  justify-content: space-between;
  gap: 30px;
}

.footer-inner strong {
  color: var(--foreground);
  font-size: 18px;
}

.button {
  border-radius: var(--radius-control);
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 20px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .16s, box-shadow .16s, background .16s;
  display: inline-flex;
}

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

.button-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 10px 22px #ef6a6738;
}

.button-primary:hover:not(:disabled) {
  background: var(--primary-dark);
}

.button-dark {
  color: #fff;
  background: var(--dark);
}

.button-secondary, .button-ghost {
  border-color: var(--border);
}

.button-secondary {
  background: var(--surface);
}

.button-ghost {
  background: #fff9;
}

.button-disabled {
  color: #aaa0a6;
  border-color: var(--border);
  background: #eee8e5;
}

.button-full {
  width: 100%;
}

.text-link, .text-button, .back-link {
  color: var(--primary-dark);
  text-underline-offset: 4px;
  font-weight: 800;
  -webkit-text-decoration: underline #d854584d;
  text-decoration: underline #d854584d;
}

.text-button {
  background: none;
  border: 0;
  padding: 0;
}

.danger-text {
  color: var(--danger);
}

.back-link {
  margin-bottom: 24px;
  display: inline-block;
}

.eyebrow {
  color: var(--primary-dark);
  font-size: var(--font-size-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
}

.home-alert-wrap {
  background: #fff0e9;
  border-bottom: 1px solid #f0d8d1;
  padding-block: 14px;
}

.home-alert-banner {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  display: grid;
}

.home-alert-icon {
  width: 44px;
  height: 44px;
  color: var(--primary-dark);
  border-radius: var(--radius-compact);
  background: #fff;
  place-items: center;
  display: grid;
}

.home-alert-copy h2 {
  font-size: 18px;
}

.home-alert-copy p {
  color: #66575e;
  font-size: var(--font-size-md);
}

.home-alert-copy small {
  color: var(--muted);
  margin-top: 2px;
  display: block;
}

.home-alert-banner .button {
  min-height: 40px;
  padding: 9px 16px;
}

.hero-section {
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at 83% 30%, #f1b2ae5c, #0000 28%), linear-gradient(135deg, #fffaf6 0%, #fff0e8 58%, #f2edff 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 64px;
  min-height: 590px;
  padding-block: 74px;
  display: grid;
}

.hero-copy h1 {
  letter-spacing: -.065em;
  margin: 18px 0 22px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.04;
}

.hero-copy h1 em {
  color: var(--primary);
  font-style: normal;
}

.hero-copy > p {
  max-width: 570px;
  color: var(--muted);
  font-size: 18px;
}

.hero-label {
  color: #6c4e51;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-sm);
  background: #ffffffb3;
  border: 1px solid #f1cfca;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  font-weight: 800;
  display: inline-flex;
}

.hero-actions {
  gap: 12px;
  margin-top: 32px;
}

.hero-art {
  place-items: center;
  min-height: 430px;
  display: grid;
  position: relative;
}

.hero-gift {
  z-index: 2;
  color: #fff;
  background: linear-gradient(145deg, #f47b74, #d95b68);
  border: 12px solid #ffffff94;
  border-radius: 54px;
  place-items: center;
  width: 188px;
  height: 188px;
  display: grid;
  transform: rotate(-7deg);
  box-shadow: 0 32px 60px #ac4c5647;
}

.hero-orbit {
  border: 1px solid #644e702e;
  border-radius: 50%;
  position: absolute;
}

.orbit-one {
  width: 330px;
  height: 330px;
}

.orbit-two {
  width: 440px;
  height: 440px;
}

.floating-note, .floating-heart {
  z-index: 3;
  border-radius: var(--radius-compact);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #fffc;
  border: 1px solid #ffffffdb;
  padding: 10px 15px;
  font-weight: 900;
  position: absolute;
}

.floating-note {
  color: var(--accent);
  font-size: var(--font-size-md);
}

.note-one {
  top: 20%;
  left: 10%;
  transform: rotate(-8deg);
}

.note-two {
  bottom: 20%;
  right: 6%;
  transform: rotate(7deg);
}

.floating-heart {
  color: var(--primary);
  font-size: 24px;
  top: 16%;
  right: 14%;
}

.category-strip {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow-x: auto;
}

.category-list {
  align-items: center;
  gap: 6px;
  min-width: max-content;
  padding-block: 14px;
  display: flex;
}

.category-list a {
  color: var(--muted);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-md);
  padding: 9px 17px;
  font-weight: 800;
}

.category-list a.active, .category-list a:hover {
  color: #fff;
  background: var(--dark);
}

.products-section {
  padding-block: 72px 96px;
  scroll-margin-top: 72px;
}

.section-heading, .heading-with-action, .heading-with-badge {
  justify-content: space-between;
  gap: 28px;
}

.section-heading, .page-heading {
  margin-bottom: 32px;
}

.section-heading h2, .page-heading h1, .shared-list-intro h1 {
  letter-spacing: -.05em;
  margin-top: 7px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.14;
}

.page-heading > p:last-child, .shared-list-intro > p:last-child {
  color: var(--muted);
  margin-top: 10px;
}

.compact-heading {
  margin-bottom: 22px;
}

.compact-heading h1, .compact-heading h2 {
  letter-spacing: -.04em;
  font-size: 32px;
}

.product-filter-form {
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  display: flex;
}

.search-form {
  gap: 8px;
  display: flex;
}

.search-form input {
  min-width: 260px;
}

.product-filter-controls {
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  display: flex;
}

.product-sort-field {
  font-size: var(--font-size-sm);
  align-items: center;
  gap: 8px;
  font-weight: 800;
  display: flex;
}

.product-sort-field select {
  border: 1px solid var(--control-border);
  border-radius: var(--radius-xs);
  background: var(--surface-input);
  outline: none;
  min-height: 38px;
  padding: 7px 10px;
}

.product-sort-field select:focus {
  border-color: var(--primary);
  box-shadow: var(--focus-ring);
}

.product-stock-filter {
  font-size: var(--font-size-sm);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  display: grid;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface);
  transition: transform .18s, box-shadow .18s;
  overflow: hidden;
  box-shadow: 0 8px 25px #4c32390a;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-card-media, .detail-media {
  background: #f4ece8;
  position: relative;
  overflow: hidden;
}

.product-card-media {
  aspect-ratio: 1;
}

.product-image, .product-image-fallback {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.product-image-fallback {
  color: #aa7778;
  background: linear-gradient(145deg, #f8dcd5, #ede6fb);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 200px;
  font-weight: 900;
  display: flex;
}

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

.product-name {
  letter-spacing: -.025em;
  min-height: 48px;
  margin: 5px 0 12px;
  font-size: 17px;
  font-weight: 850;
  display: block;
}

.product-card-price-row {
  justify-content: space-between;
  gap: 12px;
}

.product-card-price-row span {
  color: var(--muted);
  font-size: var(--font-size-xs);
}

.product-card-participation {
  margin-top: 14px;
}

.product-card-participation .share-control {
  width: 100%;
  min-width: 0;
}

.product-card-participation .button {
  width: 100%;
}

.heart-button {
  z-index: 3;
  color: #62555e;
  background: #ffffffe0;
  border: 1px solid #ffffffe0;
  border-radius: 50%;
  place-items: center;
  width: 42px;
  height: 42px;
  display: grid;
  position: absolute;
  top: 12px;
  right: 12px;
  box-shadow: 0 7px 18px #34242b1f;
}

.heart-button.active {
  color: var(--primary);
}

.own-product-badge {
  z-index: 3;
  color: #514298;
  border-radius: var(--radius-pill);
  background: #ebe8ff;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
  position: absolute;
  top: 12px;
  left: 12px;
  box-shadow: 0 5px 14px #34242b1a;
}

.sold-out-overlay {
  z-index: 2;
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  background: #2f2730cc;
  padding: 6px 11px;
  font-weight: 900;
  position: absolute;
  inset: auto 12px 12px auto;
}

.sold-out-overlay.large {
  padding: 9px 16px;
  inset: 20px 20px auto auto;
}

.inline-empty, .notice-banner {
  border: 1px solid var(--border);
  border-radius: var(--radius-compact);
  background: var(--surface);
  padding: 18px 20px;
}

.inline-empty {
  text-align: center;
}

.notice-banner {
  color: #69535a;
  background: #fff1eb;
  margin-bottom: 22px;
  font-weight: 750;
}

.centered-action {
  justify-content: center;
  margin-top: 34px;
  display: flex;
}

.auth-section {
  background: radial-gradient(circle at 50% 15%, #ffe4da, #0000 45%);
  place-items: center;
  min-height: calc(100vh - 192px);
  padding: 60px 20px;
  display: grid;
}

.auth-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface);
  width: min(100%, 470px);
  box-shadow: var(--shadow);
  padding: 42px;
}

.auth-card > .eyebrow, .auth-card > h1, .auth-description {
  text-align: center;
}

.auth-icon {
  color: #fff;
  background: var(--primary);
  border-radius: 20px;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
}

.auth-card h1 {
  margin-top: 5px;
  font-size: 38px;
}

.auth-description {
  color: var(--muted);
  margin: 8px 0 28px;
}

.auth-alternate {
  color: var(--muted);
  text-align: center;
}

.auth-alternate a {
  color: var(--primary-dark);
  font-weight: 800;
}

.stack-form {
  flex-direction: column;
  gap: 18px;
  display: flex;
}

.form-card, .checkout-card, .info-card, .progress-card, .participation-panel, .order-summary-card, .action-panel, .address-card, .seller-order-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface);
  box-shadow: 0 10px 30px #4c32390b;
}

.form-card, .checkout-card, .participation-panel, .action-panel, .seller-order-card {
  padding: 28px;
}

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

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

.field {
  flex-direction: column;
  gap: 7px;
  display: flex;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span, .checkbox-field {
  font-size: var(--font-size-md);
  font-weight: 800;
}

.field small {
  color: var(--muted);
  font-size: var(--font-size-xs);
}

.product-image-upload {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
  align-items: start;
  gap: 22px;
  display: grid;
}

.product-image-upload-controls {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.product-image-preview {
  margin: 0;
}

.product-image-preview-frame {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-compact);
  background: #f4ece8;
  overflow: hidden;
}

.product-image-preview-frame > .product-image, .product-image-preview-frame > .product-image-fallback {
  min-height: 0;
}

.product-image-preview figcaption {
  color: var(--muted);
  font-size: var(--font-size-xs);
  text-align: center;
  margin-top: 7px;
}

.development-image-url {
  border: 1px dashed var(--border);
  border-radius: var(--radius-field);
  background: #fffaf7;
  padding: 13px 14px;
}

.development-image-url summary {
  cursor: pointer;
  color: var(--muted);
  font-size: var(--font-size-sm);
  font-weight: 800;
}

.development-image-url[open] summary {
  margin-bottom: 12px;
}

.product-image-current-note {
  color: var(--muted);
  font-size: var(--font-size-sm);
}

.field .product-image-upload-error {
  color: var(--danger);
}

.field input, .field select, .field textarea, .search-form input, .seller-order-actions select {
  border: 1px solid var(--control-border);
  border-radius: var(--radius-field);
  background: var(--surface-input);
  outline: none;
  width: 100%;
  transition: border-color .16s, box-shadow .16s;
}

.field input, .field select, .search-form input, .seller-order-actions select {
  min-height: 46px;
  padding: 10px 13px;
}

.field textarea {
  resize: vertical;
  padding: 12px 13px;
}

.field input:focus, .field select:focus, .field textarea:focus, .search-form input:focus, .seller-order-actions select:focus {
  border-color: var(--primary);
  box-shadow: var(--focus-ring);
}

.input-with-suffix {
  position: relative;
}

.input-with-suffix input {
  padding-right: 42px;
}

.input-with-suffix > span {
  color: var(--muted);
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
}

.checkbox-field {
  align-items: center;
  gap: 9px;
  display: flex;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.address-choice-list {
  border: 0;
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.address-choice-list legend {
  font-size: var(--font-size-md);
  margin-bottom: 8px;
  font-weight: 800;
}

.address-choice {
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: var(--surface-input);
  cursor: pointer;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 14px;
  display: grid;
}

.address-choice.selected {
  border-color: var(--primary);
  background: var(--surface-soft);
}

.address-choice > input {
  width: 17px;
  height: 17px;
  accent-color: var(--primary);
  margin-top: 3px;
}

.address-choice-copy, .address-choice-copy strong, .address-choice-copy span, .address-choice-copy small {
  display: block;
}

.address-choice-copy span {
  font-size: var(--font-size-md);
  margin-top: 2px;
}

.address-choice-copy small {
  color: var(--muted);
  margin-top: 3px;
}

.address-default-badge {
  color: var(--success);
  border-radius: var(--radius-pill);
  background: #eff8f1;
  margin-left: 8px;
  padding: 2px 7px;
  font-size: 11px;
  font-style: normal;
  display: inline-flex;
}

.form-message {
  min-height: 20px;
  color: var(--success);
  font-size: var(--font-size-sm);
}

.error-message {
  color: var(--danger);
}

.demo-notice {
  color: #685a3d;
  border-radius: var(--radius-small);
  font-size: var(--font-size-sm);
  background: #fff9e8;
  border: 1px solid #eadab0;
  flex-direction: column;
  gap: 3px;
  padding: 15px 17px;
  display: flex;
}

.demo-notice.compact {
  flex-direction: row;
  align-items: center;
  gap: 9px;
}

.product-detail-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .88fr);
  align-items: start;
  gap: clamp(40px, 7vw, 88px);
  display: grid;
}

.detail-media {
  aspect-ratio: 1;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.product-detail-copy {
  padding-top: 18px;
}

.product-detail-copy h1 {
  letter-spacing: -.055em;
  margin: 8px 0 10px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
}

.detail-price {
  font-size: 28px;
  font-weight: 900;
}

.seller-line {
  color: var(--muted);
  margin-top: 5px;
}

.detail-description {
  border-block: 1px solid var(--border);
  margin: 28px 0;
  padding-block: 24px;
}

.detail-description h2 {
  margin-bottom: 8px;
  font-size: 16px;
}

.detail-description p {
  color: var(--muted);
  white-space: pre-wrap;
}

.detail-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
  display: grid;
}

.detail-actions > form, .detail-actions > form .button, .stacked-actions > .button, .stacked-actions > form {
  width: 100%;
}

.stacked-actions {
  grid-template-columns: 1fr;
}

.empty-state, .error-state, .loading-state, .shared-list-intro {
  text-align: center;
}

.empty-state, .error-state {
  border-radius: var(--radius-large);
  background: #ffffff8c;
  border: 1px dashed #d9c8c4;
  padding: 72px 24px;
}

.empty-state-icon {
  color: #fff;
  background: var(--primary);
  border-radius: 23px;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
}

.empty-state h2, .error-state h1 {
  margin-bottom: 8px;
  font-size: 30px;
}

.empty-state p, .error-state p {
  color: var(--muted);
  margin-bottom: 24px;
}

.loading-state {
  min-height: 420px;
  color: var(--muted);
  place-content: center;
  gap: 12px;
  display: grid;
}

.loading-dot {
  background: var(--primary);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  margin: auto;
  animation: 1s ease-in-out infinite alternate pulse;
}

.shared-list-intro {
  max-width: 650px;
  margin: 0 auto 42px;
}

.share-control {
  text-align: center;
  min-width: max-content;
}

.share-buttons {
  justify-content: center;
  gap: 8px;
  display: flex;
}

.share-control .form-message {
  margin-top: 5px;
}

.detail-actions > .share-control, .detail-actions > .share-control .button {
  width: 100%;
}

.wishlist-feedback {
  z-index: 50;
  color: #fff;
  border-radius: var(--radius-compact);
  background: var(--dark);
  min-width: max-content;
  box-shadow: var(--shadow);
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  display: flex;
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.wishlist-feedback a {
  color: #ffd2cf;
  text-underline-offset: 3px;
  font-weight: 900;
  text-decoration: underline;
}

.guest-otp-section {
  flex-direction: column;
  gap: 22px;
  display: flex;
}

.guest-otp-section > div > p {
  color: var(--muted);
  margin-top: 4px;
}

.otp-verification-form {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

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

.dashboard-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 26px;
  transition: transform .16s, box-shadow .16s;
  display: grid;
}

.dashboard-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.dashboard-card-icon {
  width: 50px;
  height: 50px;
  color: var(--primary-dark);
  background: var(--surface-soft);
  border-radius: 16px;
  font-size: 21px;
  font-weight: 900;
}

.dashboard-card p, .dashboard-card strong, .dashboard-card small {
  display: block;
}

.dashboard-card strong {
  margin: 2px 0;
  font-size: 24px;
}

.dashboard-card small {
  color: var(--muted);
}

.management-grid, .checkout-grid, .acceptance-grid {
  align-items: start;
  gap: 32px;
  display: grid;
}

.management-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
}

.address-list, .management-list, .seller-order-list, .gift-list {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.address-card {
  padding: 22px;
}

.address-card-heading {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.address-card h2, .aside-title {
  font-size: 20px;
}

.address-card p {
  color: var(--muted);
  font-size: var(--font-size-md);
}

.inline-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.aside-title {
  margin-bottom: 14px;
}

.management-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface);
  grid-template-columns: 92px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 16px;
  display: grid;
}

.management-item > .product-image, .management-item > .product-image-fallback {
  border-radius: var(--radius-control);
  width: 92px;
  height: 92px;
  min-height: 0;
}

.management-item-copy h2 {
  font-size: 18px;
}

.management-item-copy > p {
  color: var(--muted);
  font-size: var(--font-size-md);
}

.item-actions {
  margin-top: 0;
}

.status-badge {
  border-radius: var(--radius-pill);
  color: #62585e;
  min-width: max-content;
  font-size: var(--font-size-xs);
  background: #eee9e7;
  align-items: center;
  padding: 6px 10px;
  font-weight: 900;
  display: inline-flex;
}

.status-success {
  color: #226049;
  background: #def2e8;
}

.status-warm {
  color: #875d2f;
  background: #f9ead1;
}

.status-accent {
  color: #514298;
  background: #ebe8ff;
}

.status-danger {
  color: #9e3541;
  background: #ffe1e5;
}

.checkout-grid {
  grid-template-columns: minmax(0, 1fr) 340px;
}

.order-summary-card {
  padding: 18px;
  position: sticky;
  top: 100px;
  overflow: hidden;
}

.order-summary-card > .product-image, .order-summary-card > .product-image-fallback {
  aspect-ratio: 1;
  border-radius: var(--radius-compact);
  min-height: 0;
  margin-bottom: 18px;
}

.order-summary-card h2 {
  margin: 5px 0 18px;
  font-size: 22px;
}

.summary-price-row {
  border-top: 1px solid var(--border);
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
}

.recipient-summary {
  border-radius: var(--radius-control);
  background: var(--surface-soft);
  flex-direction: column;
  padding: 16px 18px;
  display: flex;
}

.recipient-summary span, .recipient-summary small {
  color: var(--muted);
  font-size: var(--font-size-xs);
}

.recipient-summary strong {
  font-size: 18px;
}

.gift-card, .group-message-card {
  color: #593c48;
  background: radial-gradient(circle at 14% 16%, #ffffffe6 0 4px, #0000 5px), radial-gradient(circle at 87% 20%, #f7b9b2ad 0 6px, #0000 7px), radial-gradient(circle at 82% 86%, #a99be694 0 5px, #0000 6px), linear-gradient(150deg, #ffe8e2 0%, #fff8e9 52%, #eee9ff 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 48px #5b434c1c;
}

.gift-card {
  text-align: center;
  border: 8px solid #fffffff0;
  border-radius: 30px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 430px;
  min-height: 520px;
  margin: 0 auto 28px;
  padding: 44px 36px;
  display: flex;
}

.gift-card-icon {
  width: 42px;
  height: 42px;
  color: var(--primary-dark);
  background: #ffffff80;
  border: 1px solid #ffffffd1;
  border-radius: 14px;
  flex: none;
  place-items: center;
  margin: 0 auto 22px;
  display: grid;
  box-shadow: 0 8px 22px #78535f12;
}

.gift-card-intro, .group-message-card-intro {
  color: var(--primary-dark);
  font-size: var(--font-size-sm);
  letter-spacing: -.02em;
  font-weight: 800;
  line-height: 1.5;
}

.gift-card blockquote {
  color: #4b3440;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  max-width: 340px;
  margin: 28px auto 0;
  font-size: clamp(27px, 3.1vw, 34px);
  font-weight: 850;
  line-height: 1.5;
}

.gift-card-message-list {
  text-align: left;
  gap: 0;
  width: 100%;
  max-width: 340px;
  margin: 24px auto 0;
  display: grid;
}

.gift-card-message-row {
  border-bottom: 1px solid #593c481a;
  grid-template-columns: minmax(56px, .34fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  display: grid;
}

.gift-card-message-row:last-child {
  border-bottom: 0;
}

.gift-card-message-row span {
  color: #593c4894;
  font-size: var(--font-size-xs);
  overflow-wrap: anywhere;
  font-weight: 750;
  line-height: 1.5;
}

.gift-card-message-row p {
  color: #4b3440;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.55;
}

.gift-card-sender, .group-message-card-sender {
  color: #593c48a3;
  font-size: var(--font-size-sm);
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  margin-top: 30px;
  display: flex;
}

.gift-card-sender strong, .group-message-card-sender strong {
  color: #593c48;
  font-size: 16px;
  font-weight: 900;
}

.order-result-card, .acceptance-product, .group-product-summary, .gift-list-card {
  align-items: center;
  gap: 20px;
  display: grid;
}

.order-result-card {
  grid-template-columns: 120px 1fr;
  padding: 18px;
}

.group-message-section {
  margin-bottom: 24px;
}

.group-message-heading {
  margin-bottom: 12px;
}

.group-message-heading h2 {
  margin-top: 3px;
  font-size: 23px;
}

.group-message-participants {
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
  padding: 0;
  list-style: none;
  display: flex;
}

.group-message-participant-badge {
  color: #593c48b8;
  border-radius: var(--radius-pill);
  min-height: 26px;
  font-size: var(--font-size-xs);
  background: linear-gradient(135deg, #ffe7e4c2, #efeaffc2);
  border: 1px solid #d8818c2e;
  align-items: center;
  padding: 4px 10px;
  font-weight: 750;
  line-height: 1.35;
  display: inline-flex;
}

.group-message-carousel {
  width: 100%;
  max-width: 450px;
  margin-inline: auto;
}

.group-message-viewport {
  touch-action: pan-y;
  border-radius: 30px;
  overflow: hidden;
}

.group-message-viewport:focus-visible {
  outline-offset: 2px;
  outline: 3px solid #ef6a6738;
}

.group-message-track {
  align-items: stretch;
  transition: transform .48s;
  display: flex;
}

.group-message-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 10px;
  display: flex;
}

.group-message-card {
  text-align: center;
  border: 8px solid #fffffff0;
  border-radius: 30px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  min-height: 500px;
  padding: 40px 34px 34px;
  display: flex;
}

.group-message-card blockquote {
  color: #4b3440;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  max-width: 330px;
  margin: 26px auto 0;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 850;
  line-height: 1.5;
}

.group-message-card-icon {
  margin-bottom: 20px;
}

.group-message-card .group-message-contribution-track {
  background: #593c481f;
  width: 100%;
  max-width: 300px;
  height: 4px;
  margin: 28px auto 0;
}

.group-message-controls {
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  display: flex;
}

.group-message-arrow {
  color: #65535e;
  border: 1px solid var(--border);
  background: #ffffffc7;
  border-radius: 50%;
  place-items: center;
  width: 34px;
  height: 34px;
  font-size: 24px;
  line-height: 1;
  display: grid;
}

.group-message-arrow:hover, .group-message-arrow:focus-visible {
  color: var(--primary-dark);
  background: var(--surface);
  border-color: #d8c8c5;
}

.group-message-dots {
  justify-content: center;
  align-items: center;
  gap: 7px;
  display: flex;
}

.group-message-dot {
  background: #d8cdca;
  border: 0;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  transition: width .18s, background .18s;
}

.group-message-dot.active {
  border-radius: var(--radius-pill);
  background: var(--primary);
  width: 20px;
}

.order-result-card > .product-image, .order-result-card > .product-image-fallback, .group-product-summary > .product-image, .group-product-summary > .product-image-fallback {
  border-radius: var(--radius-compact);
  width: 120px;
  height: 120px;
  min-height: 0;
}

.action-panel {
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  display: flex;
}

.action-panel p, .address-summary p {
  color: var(--muted);
}

.vertical-panel {
  flex-direction: column;
  align-items: flex-start;
}

.address-summary {
  margin-top: 20px;
  padding: 24px;
}

.group-gift-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(310px, .6fr);
  align-items: start;
  gap: 28px;
  display: grid;
}

.group-gift-main {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.group-product-summary {
  grid-template-columns: 120px 1fr auto;
  padding: 18px;
}

.group-product-summary p, .participation-panel > :where(p), .muted-copy {
  color: var(--muted);
}

.progress-card {
  padding: 26px;
}

.progress-heading, .progress-meta {
  justify-content: space-between;
  gap: 20px;
}

.progress-heading > div {
  flex-direction: column;
  display: flex;
}

.progress-heading span, .progress-meta {
  color: var(--muted);
  font-size: var(--font-size-sm);
}

.progress-heading strong {
  font-size: 22px;
}

.progress-track, .contribution-progress-track {
  border-radius: var(--radius-pill);
  background: #eee7e4;
  overflow: hidden;
}

.progress-track span, .contribution-progress-track span {
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #a66bd2);
  height: 100%;
  display: block;
}

.progress-track {
  height: 13px;
  margin: 20px 0 10px;
}

.progress-meta strong {
  color: var(--primary-dark);
}

.participation-panel {
  position: sticky;
  top: 100px;
}

.participation-panel > h2 {
  margin-bottom: 4px;
}

.participation-panel > p {
  margin-bottom: 20px;
}

.verified-participant {
  color: var(--success);
  border-radius: var(--radius-xs);
  font-size: var(--font-size-sm);
  background: #eff8f1;
  padding: 10px 12px;
  font-weight: 800;
}

.contribution-list {
  padding: 26px;
}

.compact-section-heading {
  margin-bottom: 18px;
}

.compact-section-heading h2 {
  font-size: 24px;
}

.contribution-list ul {
  list-style: none;
}

.contribution-list li {
  border-top: 1px solid var(--border);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 15px 0;
  display: grid;
}

.contributor-avatar {
  width: 38px;
  height: 38px;
  color: var(--primary-dark);
  background: var(--surface-soft);
  border-radius: 50%;
  font-weight: 900;
}

.contribution-list li p {
  color: var(--muted);
  font-size: var(--font-size-sm);
}

.contribution-list li.completed-contribution {
  grid-template-columns: 1fr;
}

.completed-contribution > div {
  min-width: 0;
}

.contribution-progress-track {
  height: 9px;
  margin: 9px 0;
}

.seller-order-card {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.seller-order-heading {
  justify-content: space-between;
  gap: 18px;
}

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

.order-info-grid > div {
  border-radius: var(--radius-small);
  background: #faf6f3;
  flex-direction: column;
  min-width: 0;
  padding: 14px;
  display: flex;
}

.order-info-grid span, .order-info-grid small {
  color: var(--muted);
  font-size: var(--font-size-xs);
}

.order-info-grid small {
  overflow-wrap: anywhere;
}

.seller-order-actions {
  justify-content: space-between;
  gap: 20px;
}

.seller-order-actions form {
  gap: 8px;
  display: flex;
}

.gift-list-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface);
  grid-template-columns: 150px 1fr;
  overflow: hidden;
}

.gift-list-card > .product-image, .gift-list-card > .product-image-fallback {
  border-radius: 0;
  width: 150px;
  height: 100%;
  min-height: 170px;
}

.gift-list-copy {
  padding: 20px 22px 20px 0;
}

.gift-list-heading {
  justify-content: space-between;
  gap: 18px;
}

.gift-list-heading h3 {
  font-size: 20px;
}

.gift-list-copy blockquote {
  color: var(--muted);
  margin-top: 10px;
}

.gift-list-copy .muted-copy {
  margin-top: 6px;
}

.gift-box-section + .gift-box-section {
  margin-top: 56px;
}

.acceptance-grid {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.acceptance-grid > .gift-card {
  align-self: start;
  position: sticky;
  top: 100px;
}

.acceptance-product {
  grid-template-columns: 90px 1fr;
  margin-bottom: 24px;
  padding: 14px;
}

.acceptance-product > .product-image, .acceptance-product > .product-image-fallback {
  border-radius: var(--radius-compact);
  width: 90px;
  height: 90px;
  min-height: 0;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

@keyframes pulse {
  to {
    opacity: .5;
    transform: scale(1.35);
  }
}

@media (max-width: 960px) {
  .hero-grid, .product-detail-grid, .checkout-grid, .management-grid, .group-gift-grid, .acceptance-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 20px;
    padding-bottom: 30px;
  }

  .hero-art {
    min-height: 360px;
  }

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

  .order-summary-card, .participation-panel, .acceptance-grid > .gift-card {
    position: static;
  }

  .order-summary-card {
    order: -1;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .page-section, .products-section {
    padding-block: 42px 64px;
  }

  .header-inner {
    align-items: center;
    min-height: auto;
    padding-block: 10px;
    position: relative;
  }

  .mobile-menu-trigger {
    display: grid;
  }

  .main-nav {
    z-index: 50;
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius-medium) var(--radius-medium);
    max-width: none;
    max-height: calc(100dvh - 86px);
    box-shadow: var(--shadow);
    background: #fffdfbfa;
    flex-flow: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    overflow-y: auto;
  }

  .main-nav.mobile-menu-open {
    display: flex;
  }

  .main-nav > a {
    border-radius: var(--radius-small);
    min-height: 44px;
    font-size: var(--font-size-md);
    align-items: center;
    padding: 10px 12px;
    display: flex;
  }

  .main-nav > a:hover, .main-nav > a:focus-visible {
    background: var(--surface-soft);
  }

  .main-nav > .seller-nav-link {
    border-bottom: 0;
    border-left: 3px solid #0000;
    padding: 10px 12px;
  }

  .main-nav > .seller-nav-link[aria-current="page"] {
    border-left-color: var(--primary);
    background: var(--surface-soft);
  }

  .header-user-controls {
    border-top: 1px solid var(--border);
    justify-content: flex-end;
    width: 100%;
    margin-top: 4px;
    padding: 10px 4px 2px;
  }

  .account-user-name {
    max-width: 80px;
  }

  .account-menu-trigger {
    min-height: 40px;
    padding: 6px 9px;
  }

  .main-nav .account-dropdown a, .account-dropdown button {
    font-size: var(--font-size-md);
  }

  .notification-dropdown {
    right: 0;
  }

  .main-nav > .header-cta {
    justify-content: center;
    padding: 10px 12px;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 14vw, 62px);
  }

  .hero-art {
    min-height: 300px;
  }

  .hero-gift {
    width: 148px;
    height: 148px;
  }

  .orbit-one {
    width: 250px;
    height: 250px;
  }

  .orbit-two {
    width: 310px;
    height: 310px;
  }

  .section-heading, .heading-with-action, .heading-with-badge, .action-panel, .seller-order-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .search-form, .search-form label, .search-form input {
    width: 100%;
    min-width: 0;
  }

  .product-filter-form {
    align-items: stretch;
    width: 100%;
  }

  .product-filter-controls {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .heading-with-action .share-control {
    min-width: 0;
  }

  .heading-with-action .share-buttons .button {
    flex: 1;
  }

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

  .home-alert-banner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .home-alert-banner .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .gift-card {
    border-width: 7px;
    border-radius: 24px;
    min-height: 450px;
    padding: 34px 24px;
  }

  .gift-card blockquote {
    margin-top: 24px;
    font-size: clamp(25px, 7.2vw, 31px);
  }

  .group-message-slide {
    padding: 7px 2px 10px;
  }

  .group-message-card {
    border-width: 7px;
    border-radius: 24px;
    min-height: 450px;
    padding: 34px 24px 30px;
  }

  .product-card-body {
    padding: 14px;
  }

  .product-name {
    font-size: 15px;
  }

  .management-item {
    grid-template-columns: 74px 1fr auto;
  }

  .management-item > .product-image, .management-item > .product-image-fallback {
    width: 74px;
    height: 74px;
  }

  .item-actions {
    grid-column: 2 / -1;
  }

  .two-columns, .product-image-upload, .order-info-grid {
    grid-template-columns: 1fr;
  }

  .form-spacer {
    display: none;
  }

  .gift-list-card {
    grid-template-columns: 110px 1fr;
  }

  .gift-list-card > .product-image, .gift-list-card > .product-image-fallback {
    width: 110px;
  }

  .gift-list-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .group-product-summary {
    grid-template-columns: 90px 1fr;
  }

  .group-product-summary > .product-image, .group-product-summary > .product-image-fallback {
    width: 90px;
    height: 90px;
  }

  .group-product-summary > .status-badge {
    grid-column: 2;
    justify-self: start;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-block: 26px;
  }
}

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

  .hero-actions, .search-form, .seller-order-actions form {
    flex-direction: column;
    align-items: stretch;
  }

  .detail-actions {
    grid-template-columns: 1fr;
  }

  .wishlist-feedback {
    justify-content: space-between;
    width: calc(100% - 28px);
    min-width: 0;
    bottom: 18px;
  }

  .auth-card, .form-card, .checkout-card, .participation-panel, .seller-order-card {
    padding: 22px;
  }

  .gift-list-card, .order-result-card, .acceptance-product {
    grid-template-columns: 1fr;
  }

  .gift-list-card > .product-image, .gift-list-card > .product-image-fallback, .order-result-card > .product-image, .order-result-card > .product-image-fallback, .acceptance-product > .product-image, .acceptance-product > .product-image-fallback {
    aspect-ratio: 16 / 10;
    width: 100%;
    height: auto;
  }

  .gift-list-copy {
    padding: 0 18px 18px;
  }
}

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

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/