
:root {
  --bg-main:      #F9F7F4;
  --bg-soft:      #EFEBE5;
  --surface:      #FFFFFF;
  --text-dark:    #1C1917;
  --text-light:   #78716C;
  --accent:       #E8455A;
  --accent-dark:  #CB3349;
  --accent-bg:    #FFF1F4;
  --border-color: #E8DDD5;
  --green:        #16A34A;
  --link:         #4C8BF5;
  --link-dark:    #3568D4;
  --link-bg:      #EEF4FF;
  --shadow-sm: 0 1px 4px rgba(28,25,23,.06), 0 1px 2px rgba(28,25,23,.04);
  --shadow-md: 0 4px 20px rgba(28,25,23,.09), 0 2px 8px rgba(28,25,23,.05);
  --hero-fade: color-mix(in srgb, #FFF3F5 60%, var(--bg-main));
  --hero-blush: color-mix(in srgb, var(--hero-fade) 72%, var(--bg-main));
  --font-brand: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
}
* {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-tap-highlight-color: transparent;
}
.font-display {
  font-family: 'Playfair Display', serif;
}
.brand-mark {
  font-family: var(--font-brand);
  font-weight: 600;
  letter-spacing: -0.02em;
}
html { scroll-behavior: smooth; }
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  background-color: var(--bg-main);
  color: var(--text-dark);
}
body::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }
img.product-img[src=""],
img.product-img:not([src]),
img.cr-pcard-img[src=""],
img.cr-pcard-img:not([src]) {
  background: linear-gradient(135deg, var(--bg-soft), #E2D9D0);
}
img.img-failed {
  background: linear-gradient(135deg, var(--bg-soft), #E2D9D0);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.3s ease-out both; }
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-fade-in { animation: fadeIn 0.25s ease-out both; }
@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.toast {
  position: fixed;
  bottom: var(--fl-toast-bottom, 1.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--text-dark);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  box-shadow: 0 8px 28px rgba(28,25,23,.22);
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: normal;
  max-width: min(360px, calc(100vw - 2rem));
  width: max-content;
  text-align: center;
  line-height: 1.45;
  pointer-events: none;
  letter-spacing: 0.01em;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.error { background: #DC2626; }
.toast.warn  { background: #B45309; }
.owned-note {
  display: none;
  align-items: flex-start;
  gap: .5rem;
  margin: .75rem .75rem 0;
  padding: .6rem .75rem;
  border-radius: 12px;
  background: #FEF3C7;
  color: #78350F;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.35;
}
.owned-note svg { flex-shrink: 0; margin-top: 1px; }
#preview-card.owned .owned-note { display: flex; }
#preview-card.owned #fetch-img-block,
#preview-card.owned #fetch-edit-details,
#preview-card.owned #fetch-tags-block { display: none; }
@keyframes reveal-ring {
  0%, 100% { box-shadow: var(--shadow-sm); }
  25%, 75% { box-shadow: 0 0 0 3px var(--accent); }
}
.product-card.reveal-flash { animation: reveal-ring 1.8s ease-in-out; }
@media (prefers-reduced-motion: reduce) {
  .product-card.reveal-flash {
    animation: none;
    box-shadow: 0 0 0 3px var(--accent) !important;
  }
}
.imgup-zone {
  display: block;
  border: 2px dashed var(--border-color);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  overflow: hidden;
}
.imgup-zone:hover {
  border-color: var(--accent);
  background: var(--accent-bg);
}
.imgup-zone:hover .imgup-placeholder > svg { color: var(--accent); }
.imgup-zone.imgup-has-file {
  border-style: solid;
  border-color: var(--border-color);
}
.imgup-slim .imgup-placeholder { padding: 10px 14px; min-height: 0; gap: 4px; }
.imgup-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 18px 16px;
  min-height: 80px;
}
.product-card {
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ad-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ad-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ad-chip {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: rgba(28, 25, 23, 0.72);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.ad-banner-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 4px;
}
.fl-ad {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
}
.fl-ad[data-fmt="in_feed"] {
  height: 140px;
}
.fl-ad[data-fmt="in_article"],
.fl-ad[data-fmt="multiplex"] {
  height: auto;
  overflow: visible;
}
.fl-ad[data-fmt="in_article"] {
  min-height: 100px;
}
.fl-ad[data-fmt="multiplex"] {
  min-height: 250px;
}
.fl-ad[data-fl-ad="empty"] {
  display: none;
}
:where(.cr-grid, .cr-lookgrid) > .fl-ad-wrap {
  grid-column: 1 / -1;
}
.fl-ad-anchor:empty {
  display: none;
}
.fl-ad-anchor:has(.fl-ad[data-fl-ad="empty"]) {
  display: none;
}
.fl-ad-wrap {
  margin: 28px 0;
}
.fl-ad-wrap > .ad-banner-label {
  margin-bottom: 4px;
}
.fl-ad-wrap:has(> .fl-ad[data-fl-ad="empty"]) {
  display: none;
}
.haul-cover-img {
  transition: transform 0.35s ease;
}
.avatar-ring {
  display: inline-flex;
  padding: var(--ring, 2px);
  border-radius: 9999px;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--accent) 86%, #fff) 0%,
    #FFA1B2 60%,
    #FFCCAA 100%);
  box-shadow: 0 0 0 2.5px var(--surface), 0 6px 20px -8px rgba(28, 25, 23, 0.28);
}
.avatar-ring-inner {
  border-radius: 9999px;
  overflow: hidden;
  background: white;
}
.stat-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.stat-chip:hover { box-shadow: var(--shadow-md); }
.mode-toggle {
  display: flex;
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 4px;
  gap: 4px;
}
.mode-tab {
  flex: 1;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-align: center;
  cursor: pointer;
  border: none;
  background: transparent;
  white-space: nowrap;
}
.mode-tab-active {
  background: var(--surface) !important;
  color: var(--text-dark) !important;
  box-shadow: 0 1px 5px rgba(28,25,23,.1);
}
.mode-tab-inactive {
  background: transparent !important;
  color: var(--text-light) !important;
}
summary.no-marker { list-style: none; }
summary.no-marker::-webkit-details-marker { display: none; }
details[open] .edit-chev { transform: rotate(180deg); }
.fetch-progress-fill {
  transition: width 0.2s ease-out;
  background: linear-gradient(90deg, var(--accent) 0%, #FF7086 50%, var(--accent) 100%);
  background-size: 220% 100%;
}
.fetch-progress-fill.animating {
  animation: fetchShimmer 1.1s linear infinite;
}
@keyframes fetchShimmer {
  from { background-position: 220% 0; }
  to   { background-position: 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  .fetch-progress-fill.animating { animation: none; }
}
.skeleton {
  background: linear-gradient(90deg, var(--bg-soft) 25%, #E8E2DB 50%, var(--bg-soft) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: 10px;
}
.drag-grip { display: none; }
.reordering > [data-sortable-item] .drag-grip { display: flex; }
.reordering > [data-sortable-item] {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  outline: 2px dashed var(--link);
  outline-offset: -2px;
  border-radius: 1rem;
  transition: box-shadow 0.15s ease, transform 0.15s ease, outline-color 0.15s ease;
}
.reordering > [data-sortable-item] * { pointer-events: none; }
.reordering > [data-sortable-item] .drag-grip {
  pointer-events: auto;
  touch-action: none;
  cursor: grab;
}
.reordering > [data-sortable-item] .drag-grip:active { cursor: grabbing; }
.sortable-dragging { opacity: 0.3 !important; }
.sortable-clone { border-radius: 1rem; }
.drag-grip {
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--link);
}
.reordering > [data-sortable-item] button,
.reordering > [data-sortable-item] .haul-view { opacity: 0 !important; }
.content-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 4px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 6px 16px -12px rgba(28, 25, 23, 0.5);
}
@media (min-width: 640px) { .content-tabs { max-width: 360px; } }
.content-tab {
  flex: 1;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  color: var(--text-light);
  transition: all 0.2s ease;
}
.content-tab-active {
  background: color-mix(in srgb, var(--accent-bg) 50%, #fff);
  color: color-mix(in srgb, var(--accent) 55%, var(--accent-dark));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 20%, transparent);
}
.content-tab-inactive { color: var(--text-light); }
.content-tab-inactive:hover { color: var(--text-dark); }
.look-tile {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--border-color);
  cursor: pointer;
  border-radius: 0.9rem;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.look-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.look-hero { aspect-ratio: 2 / 3; background: var(--bg-soft); }
.look-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.look-tile:hover .look-tile-img { transform: scale(1.05); }
.look-tile-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 10px;
  border-top: 1px solid var(--border-color);
  background: var(--surface);
  color: var(--text-dark);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: left;
  transition: background 0.2s ease;
}
.look-tile-bar svg { flex-shrink: 0; display: block; }
.look-tile-bar-ico { display: flex; flex-shrink: 0; color: var(--accent); }
.look-tile-bar-chev {
  margin-left: auto;
  color: var(--text-light);
  transition: transform 0.2s ease, color 0.2s ease;
}
.look-tile:hover .look-tile-bar { background: var(--accent-bg); }
.look-tile:hover .look-tile-bar-chev { transform: translateX(2px); color: var(--accent); }
.lt-cta-txt { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; line-height: 1.3; }
.look-modal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 940px;
  max-height: 88vh;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: 0 24px 64px rgba(28, 25, 23, 0.4);
}
.look-modal-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px 12px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border-color);
}
.lm-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lm-sub {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 640px) {
  .lm-title { font-size: 17px; }
  .lm-sub   { font-size: 11.5px; }
}
.look-modal-back {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 13px 7px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 700;
  transition: background 0.18s ease;
}
.look-modal-back svg { flex-shrink: 0; }
.look-modal-back:hover { background: var(--border-color); }
.look-modal-inner {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.shl-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 14px;
  display: block;
}
@media (max-width: 639px) {
  .shl-card { max-height: 80vh; }
}
@media (min-width: 640px) {
  .shl-body { padding: 18px; }
}
.look-modal-media {
  position: relative;
  flex-shrink: 0;
  height: 36vh;
  overflow: hidden;
  background: var(--bg-soft);
}
.look-modal-media-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(30px) brightness(0.82);
  transform: scale(1.2);
}
.look-modal-media-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.look-modal-products-wrap {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-color);
}
.look-modal-products {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 12px 4px;
  scroll-padding-left: 12px;
}
.look-modal-products > * {
  flex: 0 0 auto;
  width: 132px;
  scroll-snap-align: start;
}
.lm-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.lm-card:hover,
.lm-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  outline: none;
}
.lm-card:active { transform: translateY(-1px) scale(0.99); }
.lm-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-soft);
}
.lm-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.lm-card:hover .lm-card-img { transform: scale(1.07); }
.lm-card-shop {
  position: absolute;
  left: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(232, 69, 90, 0.9);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.lm-card-shop svg { width: 10px; height: 10px; }
.lm-card:focus-visible .lm-card-shop,
.lm-card.is-touched .lm-card-shop { opacity: 1; transform: translateY(0); }
@media (hover: hover) {
  .lm-card:hover .lm-card-shop { opacity: 1; transform: translateY(0); }
}
.lm-card .lm-info {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.lm-brand {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lm-name {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lm-price {
  margin-top: 3px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--green);
}
.look-modal-swipe {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: background 0.15s ease;
}
.look-modal-swipe:hover { background: var(--bg-soft); }
.look-modal-swipe svg { color: var(--accent); animation: swipeNudge 1.4s ease-in-out infinite; }
.look-modal-swipe.is-vertical svg { animation: swipeNudgeDown 1.4s ease-in-out infinite; }
@keyframes swipeNudgeDown { 0%, 100% { transform: rotate(90deg) translateX(0); } 50% { transform: rotate(90deg) translateX(3px); } }
@keyframes swipeNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(3px); } }
@media (prefers-reduced-motion: reduce) { .look-modal-swipe svg { animation: none; } }
@media (min-width: 640px) {
  .look-modal-card { height: 74vh; }
  .look-modal-inner { flex-direction: row; }
  .look-modal-media {
    height: auto;
    width: 52%;
    align-self: stretch;
  }
  .look-modal-products-wrap {
    justify-content: flex-start;
    padding: 0;
    border-top: none;
    border-left: 1px solid var(--border-color);
  }
  .look-modal-products {
    flex: 1 1 auto;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: max-content;
    gap: 14px;
    overflow-x: visible;
    overflow-y: auto;
    scroll-snap-type: none;
    padding: 16px 16px 48px;
    align-content: start;
  }
  .look-modal-products > * { width: auto; }
  .lm-card .lm-info { padding: 10px 12px 12px; }
  .lm-name  { font-size: 13px; }
  .lm-brand { font-size: 10px; }
  .lm-price { font-size: 13.5px; }
  .look-modal-swipe {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    margin: 0;
    z-index: 3;
    align-self: auto;
  }
  .look-modal-swipe:hover { transform: translateX(-50%); background: var(--bg-soft); }
}
.fl-social-ico {
  display: block;
  overflow: visible;
  flex-shrink: 0;
}
.cr-name,
.cr-sectitle,
.cr-statetitle,
.cr-avatar-letter,
.cr-navavatar {
  font-family: 'Playfair Display', Georgia, serif;
}
.cr-brand,
.cr-footer-mark span {
  font-family: var(--font-brand);
  font-weight: 600;
}
.cr-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(249, 247, 244, 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  backdrop-filter: blur(14px) saturate(1.5);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.cr-nav.is-over-cover {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.cr-nav.is-over-cover .cr-brand {
  text-shadow: 0 1px 1.5px rgba(255, 255, 255, 0.34);
}
.cr-nav.is-over-cover.on-dark .cr-brand {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.cr-nav-inner {
  max-width: 896px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}
.cr-brand {
  flex-shrink: 0;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
.cr-nav-slot {
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 38px;
}
.cr-navavatar {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -17px;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  background: var(--accent);
  border: 2px solid var(--surface);
  box-shadow: var(--shadow-sm);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}
.cr-navavatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cr-nav-slot.is-scrolled .cr-share { opacity: 0; transform: scale(0.9); pointer-events: none; }
.cr-nav-slot.is-scrolled .cr-navavatar { opacity: 1; transform: none; pointer-events: auto; }
.cr-share {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease,
              transform 0.22s ease, opacity 0.22s ease;
}
.cr-share svg { color: var(--accent); transition: color 0.18s ease; }
.cr-share:hover { border-color: var(--accent); color: var(--accent); }
.cr-share:active { transform: scale(0.95); }
@media (max-width: 430px) {
  .cr-share-txt { display: none; }
  .cr-share { padding: 8px; }
}
.cr-main {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px 68px;
}
.cr-hero {
  --cr-avatar: 100px;
  --ring: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin: 0 -16px 18px;
  padding: 92px 20px 18px;
  text-align: center;
  background:
    radial-gradient(ellipse 64% 44% at 50% 34%, rgba(232,69,90,0.07) 0%, transparent 74%),
    linear-gradient(178deg, var(--hero-fade) 0%, var(--bg-main) 74%);
}
#profile-header.hidden { display: none; }
#avatar-letter.hidden  { display: none; }
.cr-hero-id {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.cr-avatar { width: var(--cr-avatar); height: var(--cr-avatar); }
.cr-avatar-letter {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(var(--cr-avatar) * 0.42);
  font-weight: 700;
  color: #fff;
  background: var(--accent);
}
#avatar-img:not(.hidden) + #avatar-letter { display: none; }
.cr-hero-text { min-width: 0; }
.cr-name {
  font-size: clamp(1.7rem, 6.6vw, 2.25rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.015em;
  overflow-wrap: anywhere;
}
.cr-bio {
  margin: 10px auto 0;
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  overflow-wrap: anywhere;
}
.cr-bio:empty { display: none; }
.cr-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}
.cr-socials:empty { display: none; }
.cr-socials.cr-socials-ssr:empty { display: flex; min-height: 40px; }
.cr-social {
  --brand: var(--text-dark);
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, background 0.18s ease,
              color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.cr-social:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cr-social:active { transform: translateY(0) scale(0.94); }
.cr-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px auto 0;
  max-width: 420px;
}
.cr-btns:empty { display: none; }
.cr-btn { flex: 1 1 0; min-width: 140px; }
.cr-btns.is-stacked { flex-direction: column; max-width: 268px; }
.cr-btns.is-stacked .cr-btn { flex: 0 0 auto; width: 100%; min-width: 0; }
.cr-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FDFBF9 100%);
  color: var(--text-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9),
              0 1px 2px rgba(28, 25, 23, 0.04),
              0 6px 16px -10px rgba(28, 25, 23, 0.22);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.cr-btn-ico {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand, var(--text-light)) 12%, transparent);
  color: var(--brand, var(--text-light));
  transition: background 0.18s ease, color 0.18s ease;
}
.cr-btn:hover .cr-btn-ico {
  background: var(--brand, var(--text-light));
  color: #fff;
}
.cr-btn-txt {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cr-btn:hover {
  transform: translateY(-3px);
  background: #FFFFFF;
  border-color: color-mix(in srgb, var(--brand, var(--text-light)) 38%, var(--border-color));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95),
              0 2px 4px rgba(28, 25, 23, 0.05),
              0 14px 30px -12px color-mix(in srgb, var(--brand, #1C1917) 34%, transparent);
}
.cr-btn:hover .cr-btn-txt { transform: translateX(1px); }
.cr-btn-txt { transition: transform 0.18s ease; }
.cr-btn:active { transform: translateY(0) scale(0.985); }
.cr-btn:first-child:not(:only-child) {
  border-color: color-mix(in srgb, var(--accent-dark) 45%, var(--accent));
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--accent) 92%, #fff) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11),
              0 1px 2px rgba(203, 51, 73, 0.12),
              0 8px 20px -10px rgba(232, 69, 90, 0.5);
}
.cr-btn:first-child:not(:only-child) .cr-btn-ico {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.cr-btn:first-child:not(:only-child):hover {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: var(--accent-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13),
              0 2px 4px rgba(203, 51, 73, 0.16),
              0 16px 32px -12px rgba(232, 69, 90, 0.55);
}
.cr-btn:first-child:not(:only-child):hover .cr-btn-ico {
  background: #fff;
  color: var(--accent);
}
.cr-cover { display: none; }
.cr-hero.has-cover {
  --cover-h: clamp(150px, 38.5vw, 300px);
  --cover-top: 0px;
  --edge: 0px;
  --cr-avatar: 97px;
  padding: var(--cover-top) 20px 18px;
  margin-bottom: 18px;
  gap: 0;
  align-items: stretch;
  text-align: center;
  background: linear-gradient(180deg,
    var(--hero-blush) calc(var(--cover-top) + var(--cover-h)),
    var(--bg-main) 100%);
}
.cr-hero.has-cover .cr-cover {
  display: block;
  position: relative;
  margin: 0 -20px;
  height: var(--cover-h);
  overflow: hidden;
  background: var(--bg-soft);
}
.cr-cover-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cr-hero.has-cover .cr-hero-id {
  position: relative;
  z-index: 1;
  align-items: stretch;
  gap: 12px;
  margin-top: calc((var(--cr-avatar) + var(--ring) * 2) / -2 - var(--edge));
}
.cr-hero.has-cover .avatar-ring { align-self: center; }
.cr-hero.has-cover .cr-bio {
  margin: 7px auto 0;
  font-size: 13.5px;
  max-width: 42ch;
}
.cr-hero.has-cover .cr-socials { justify-content: center; margin-top: 18px; }
.cr-hero.has-cover .cr-btns.is-stacked { max-width: 268px; }
@media (min-width: 640px) {
  .cr-hero.has-cover { --cr-avatar: 105px; }
  .cr-btns.is-stacked { max-width: 288px; }
  .cr-hero.has-cover .cr-btns.is-stacked { max-width: 280px; }
}
@media (min-width: 768px) {
  .cr-hero {
    --cr-avatar: 132px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    padding: 104px 32px 24px;
    text-align: left;
    border-radius: 0 0 26px 26px;
  }
  .cr-hero-id { flex-direction: row; gap: 26px; }
  .cr-hero:not(.has-cover) .avatar-ring { align-self: flex-start; }
  .cr-bio { margin-left: 0; margin-right: 0; max-width: 52ch; }
  .cr-socials { justify-content: flex-start; }
  .cr-btns { max-width: 430px; }
  .cr-btns.is-stacked { max-width: 304px; }
  .cr-hero.has-cover {
    --cr-avatar: 120px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: var(--cover-top) 32px 24px;
    text-align: center;
  }
  .cr-hero.has-cover .cr-cover { margin-left: -32px; margin-right: -32px; }
  .cr-hero.has-cover .cr-hero-id {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-top: 0;
    margin-top: calc((var(--cr-avatar) + var(--ring) * 2) / -2 - var(--edge));
  }
  .cr-hero.has-cover .cr-bio { font-size: 14px; max-width: 56ch; }
  .cr-hero.has-cover .cr-socials { margin-top: 21px; }
  .cr-hero.has-cover .cr-btns { max-width: 430px; }
  .cr-hero.has-cover .cr-btns.is-stacked { max-width: 304px; }
}
.cr-hero.hero-slant { --edge: calc(var(--cover-h) * 0.12); }
.cr-hero.hero-slant .cr-cover {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path d='M0,0 H1200 V474 L0,582 Z' fill='black'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path d='M0,0 H1200 V474 L0,582 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.cr-hero.hero-sweep { --edge: calc(var(--cover-h) * 0.0583); }
.cr-hero.hero-sweep .cr-cover {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path d='M0,0 H1200 V486 C1010,494 860,528 700,552 C556,573 402,586 268,578 C170,572 78,562 0,548 Z' fill='black'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path d='M0,0 H1200 V486 C1010,494 860,528 700,552 C556,573 402,586 268,578 C170,572 78,562 0,548 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.cr-hero.hero-torn { --edge: calc(var(--cover-h) * 0.1562); }
.cr-hero.hero-torn .cr-cover {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path d='M0,0 H1200 V521.4 L1173.9,526.5 L1147.8,520.9 L1121.7,529.6 L1095.7,528.5 L1069.6,534.3 L1043.5,532.6 L1017.4,522.3 L991.3,530.5 L965.2,519.1 L939.1,538.3 L913.0,518.7 L887.0,520.6 L860.9,523.3 L834.8,526.2 L808.7,515.3 L782.6,513.4 L756.5,524.6 L730.4,513.7 L704.3,515.8 L678.3,507.6 L652.2,508.5 L626.1,504.2 L600.0,506.3 L573.9,496.4 L547.8,501.4 L521.7,508.9 L495.7,507.6 L469.6,494.0 L443.5,500.4 L417.4,503.5 L391.3,493.8 L365.2,506.0 L339.1,492.3 L313.0,493.2 L287.0,491.9 L260.9,497.8 L234.8,491.8 L208.7,490.3 L182.6,496.4 L156.5,495.3 L130.4,494.0 L104.3,500.2 L78.3,508.4 L52.2,504.8 L26.1,520.0 L0.0,499.1 Z' fill='black'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path d='M0,0 H1200 V521.4 L1173.9,526.5 L1147.8,520.9 L1121.7,529.6 L1095.7,528.5 L1069.6,534.3 L1043.5,532.6 L1017.4,522.3 L991.3,530.5 L965.2,519.1 L939.1,538.3 L913.0,518.7 L887.0,520.6 L860.9,523.3 L834.8,526.2 L808.7,515.3 L782.6,513.4 L756.5,524.6 L730.4,513.7 L704.3,515.8 L678.3,507.6 L652.2,508.5 L626.1,504.2 L600.0,506.3 L573.9,496.4 L547.8,501.4 L521.7,508.9 L495.7,507.6 L469.6,494.0 L443.5,500.4 L417.4,503.5 L391.3,493.8 L365.2,506.0 L339.1,492.3 L313.0,493.2 L287.0,491.9 L260.9,497.8 L234.8,491.8 L208.7,490.3 L182.6,496.4 L156.5,495.3 L130.4,494.0 L104.3,500.2 L78.3,508.4 L52.2,504.8 L26.1,520.0 L0.0,499.1 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.cr-hero.hero-curve { --edge: calc(var(--cover-h) * 0.1); }
.cr-hero.hero-curve .cr-cover {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path d='M0,0 H1200 V600 Q600,480 0,600 Z' fill='black'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path d='M0,0 H1200 V600 Q600,480 0,600 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.cr-hero.hero-frame .cr-cover { border-radius: 0; }
.cr-hero.hero-classic { text-align: left; }
.cr-hero.hero-classic .avatar-ring { align-self: flex-start; }
.cr-hero.hero-classic .cr-bio { margin-left: 0; margin-right: 0; }
.cr-hero.hero-classic .cr-socials { justify-content: flex-start; }
.cr-hero.hero-classic .cr-btns { margin-left: 0; margin-right: 0; }
.cr-hero.hero-classic .cr-cover::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 52%;
  background: linear-gradient(to top,
    var(--hero-blush) 0%,
    color-mix(in srgb, var(--hero-blush) 62%, transparent) 30%,
    color-mix(in srgb, var(--hero-blush) 0%, transparent) 100%);
  pointer-events: none;
}
.cr-sec { margin-bottom: 52px; }
.cr-sec:last-child { margin-bottom: 0; }
.cr-sechead {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.cr-sectitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.cr-sectitle::before {
  content: '';
  flex-shrink: 0;
  width: 3px; height: 20px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), #FF8FA3);
}
.cr-secrule {
  flex: 1;
  min-width: 12px;
  height: 1px;
  background: linear-gradient(to right, var(--border-color), transparent);
}
.cr-seccount {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.cr-seccount:empty { display: none; }
@media (min-width: 640px) {
  .cr-sectitle { font-size: 27px; }
  .cr-sectitle::before { height: 26px; }
}
.cr-tabsbar {
  position: sticky;
  top: 64px;
  z-index: 30;
  margin-bottom: 26px;
}
.cr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  --cr-cols: 2;
  gap: 15px;
}
@media (min-width: 640px)  { .cr-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); --cr-cols: 3; gap: 16px; } }
@media (min-width: 768px)  { .cr-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); --cr-cols: 4; gap: 16px; } }
.cr-pcard {
  position: relative;
  display: block;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.cr-pcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #E0CFC4;
}
.cr-pcard-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-soft);
}
.cr-pcard-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.cr-pcard:hover .cr-pcard-img { transform: scale(1.06); }
.cr-pcard-shop {
  position: absolute;
  left: 9px;
  bottom: 9px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(232, 69, 90, 0.9);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.cr-pcard-shop svg { width: 10px; height: 10px; }
.cr-pcard:focus-visible .cr-pcard-shop,
.cr-pcard.is-touched .cr-pcard-shop { opacity: 1; transform: translateY(0); }
@media (hover: hover) {
  .cr-pcard:hover .cr-pcard-shop { opacity: 1; transform: translateY(0); }
}
.cr-pcard-body { padding: 12px 13px 14px; }
.cr-pbrand {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cr-pbrand:empty { display: none; }
.cr-pname {
  margin-top: 2px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cr-pprice {
  margin-top: 5px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--green);
}
.cr-pprice:empty { display: none; }
.cr-adcta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
}
.cr-skel-sm, .cr-skel-md, .cr-skel-lg { display: none; }
@media (min-width: 480px)  { .cr-skel-sm { display: block; } }
@media (min-width: 768px)  { .cr-skel-md { display: block; } }
@media (min-width: 1024px) { .cr-skel-lg { display: block; } }
.cr-haullist {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cr-haul {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 17px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}
.cr-haul:hover { box-shadow: var(--shadow-md); }
.cr-haul.is-open { border-color: #E7C9CF; }
.cr-haul { scroll-margin-top: 112px; }
.cr-haul-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.cr-haul-head:active { background: var(--bg-soft); }
.cr-haul-cover {
  flex-shrink: 0;
  display: flex;
  gap: 4px;
  height: 80px;
}
.cr-haul-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--bg-soft);
}
.cr-haul-cover-main {
  width: 58px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.cr-haul-cover-side {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 28px;
}
.cr-haul-cover-side img {
  flex: 1 1 0;
  min-height: 0;
  height: auto;
  border-radius: 8px;
}
.cr-haul-cover-empty {
  width: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--text-light);
}
.cr-haul-meta { flex: 1; min-width: 0; }
.cr-haul-title {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cr-haul-desc {
  margin-top: 2px;
  font-size: 11.5px;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cr-haul-tags {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cr-haul-count {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.cr-haul-hint {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-light);
}
.cr-haul-linkonly {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--link-bg);
  color: var(--link);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.cr-haul-chev {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: transform 0.3s ease, color 0.2s ease;
}
.cr-haul.is-open .cr-haul-chev {
  transform: rotate(180deg);
  color: var(--accent);
}
.cr-haul-body { padding: 0 14px 16px; }
.cr-haul-inner {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}
.cr-lookgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  --cr-cols: 2;
  gap: 14px;
}
@media (min-width: 640px)  { .cr-lookgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); --cr-cols: 3; gap: 18px; } }
@media (min-width: 1024px) { .cr-lookgrid { grid-template-columns: repeat(4, minmax(0, 1fr)); --cr-cols: 4; gap: 20px; } }
.cr-notfound {
  padding: 76px 20px;
  text-align: center;
}
.cr-statetitle {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-dark);
}
@media (min-width: 640px) { .cr-statetitle { font-size: 28px; } }
.cr-notfound-ico {
  width: 58px; height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
}
.cr-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(232, 69, 90, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cr-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(232, 69, 90, 0.34); }
.cr-cta:active { transform: scale(0.97); }
.cr-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.cr-page > .cr-main { flex: 1 0 auto; width: 100%; min-width: 0; }
.cr-page > .cr-footer { flex: none; }
.cr-footer {
  margin-top: 56px;
  padding: 28px 16px 34px;
  background: var(--surface);
  border-top: 1px solid var(--border-color);
}
.cr-footer-inner {
  max-width: 896px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}
.cr-footer-mark {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
}
.cr-footer-mark span {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.cr-footer-note {
  font-size: 10.5px;
  color: var(--text-light);
}
@media (min-width: 640px) {
  .cr-footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.soc-hint {
  flex-shrink: 0;
  font-size: 11px;
  color: var(--text-light);
  white-space: nowrap;
  transition: color 0.18s ease;
}
.soc-hint.is-drag {
  color: var(--link);
  font-weight: 600;
}
.soc-rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-right: 8px;
}
.soc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.soc-ico {
  --brand: var(--text-dark);
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  color: var(--brand);
  cursor: grab;
  touch-action: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.soc-ico:hover { border-color: var(--brand); }
.soc-row.soc-dragging {
  position: relative;
  z-index: 2;
  cursor: grabbing;
}
.soc-row.soc-dragging .soc-ico {
  cursor: grabbing;
  border-color: var(--brand);
  box-shadow: 0 4px 14px rgba(28, 25, 23, 0.18);
}
.soc-row.soc-dragging .soc-field { border-color: var(--brand); }
.soc-field {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 11px;
  border: 1px solid var(--border-color);
  background: var(--bg-soft);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.soc-field:focus-within {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--accent);
}
.soc-prefix {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}
.soc-input {
  flex: 1;
  width: 0;
  min-width: 0;
  padding: 9px 0 9px 2px;
  border: none;
  background: transparent;
  font-size: 13px;
  color: var(--text-dark);
}
.soc-input:focus { outline: none; }
.soc-del {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--text-light);
  transition: background 0.15s ease, color 0.15s ease;
}
.soc-del:hover { background: var(--accent-bg); color: var(--accent); }
.soc-add {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
  padding-right: 8px;
}
.soc-add:empty { display: none; }
.soc-chip {
  --brand: var(--text-dark);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  border: 1px dashed var(--border-color);
  background: var(--surface);
  color: var(--text-light);
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, border-style 0.15s ease;
}
.soc-chip svg {
  color: var(--brand);
  opacity: 0.72;
  transition: opacity 0.15s ease;
}
.soc-chip:hover { border-style: solid; border-color: var(--brand); color: var(--text-dark); }
.soc-chip:hover svg { opacity: 1; }
#confirm-modal { z-index: 100; }
[data-tip] { position: relative; }
[data-tip]::after,
[data-tip]::before {
  position: absolute;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 20;
}
[data-tip]::after {
  content: attr(data-tip);
  bottom: calc(100% + 9px);
  transform: translateX(-50%) translateY(4px);
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--text-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  white-space: nowrap;
  box-shadow: 0 6px 18px -8px rgba(28, 25, 23, 0.55);
}
[data-tip]::before {
  content: '';
  bottom: calc(100% + 4px);
  transform: translateX(-50%) translateY(4px);
  border: 5px solid transparent;
  border-top-color: var(--text-dark);
}
[data-tip]:hover::after, [data-tip]:focus-visible::after,
[data-tip]:hover::before, [data-tip]:focus-visible::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cov-wrap { position: relative; }
.cov-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-color);
  color: #E8455A;
  box-shadow: var(--shadow-sm);
  transition: background 0.15s ease, transform 0.15s ease;
}
.cov-remove:hover { background: #fff; transform: scale(1.06); }
.cov-remove:active { transform: scale(0.94); }
.cov-remove.hidden { display: none; }
.cov-drop {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: 13px;
  border: 1px dashed var(--border-color);
  background: var(--bg-soft);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.cov-drop:hover { border-color: var(--accent); }
.cov-drop.has-img { border-style: solid; }
.cov-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cov-img.hidden { display: none; }
.cov-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--text-light);
  text-align: center;
  padding: 0 14px;
}
.cov-empty.hidden { display: none; }
.cov-empty-title { font-size: 12.5px; font-weight: 700; color: var(--text-dark); }
.cov-empty-sub { font-size: 10.5px; line-height: 1.3; }
.cov-badge {
  position: absolute;
  left: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  font-size: 10.5px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.cov-badge svg { flex-shrink: 0; color: var(--accent); }
.cov-badge.hidden { display: none; }
.btnr-rows {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-right: 8px;
}
.btnr-rows:empty { display: none; }
.btnr {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.btnr-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.btnr-badge {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  background: var(--surface);
  border: 1px solid var(--border-color);
  color: var(--text-light);
}
.btnr-link { margin-left: 40px; }
.btnr-link .soc-prefix {
  display: flex;
  align-items: center;
  margin-right: 5px;
  opacity: 0.7;
}
.thm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}
.thm {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px 7px 9px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: var(--surface);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.thm:hover { border-color: #E0CFC4; transform: translateY(-2px); }
.thm[aria-pressed="true"] {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent), var(--shadow-sm);
}
.thm-vis {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 9px;
  overflow: hidden;
  background: var(--hero-blush);
  margin-bottom: 5px;
}
.thm-band {
  position: absolute;
  inset: 0 0 auto 0;
  height: 62%;
  background-color: var(--accent);
  background-image: var(--thm-cover, linear-gradient(135deg, #E8455A, #FF8FA3 55%, #FFBE98));
  background-size: cover;
  background-position: center;
}
.thm-slant .thm-band {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path d='M0,0 H1200 V474 L0,582 Z' fill='black'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path d='M0,0 H1200 V474 L0,582 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.thm-sweep .thm-band { -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path d='M0,0 H1200 V486 C1010,494 860,528 700,552 C556,573 402,586 268,578 C170,572 78,562 0,548 Z' fill='black'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path d='M0,0 H1200 V486 C1010,494 860,528 700,552 C556,573 402,586 268,578 C170,572 78,562 0,548 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat; }
.thm-frame .thm-band { border-radius: 0; }
.thm-curve .thm-band {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path d='M0,0 H1200 V600 Q600,480 0,600 Z' fill='black'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path d='M0,0 H1200 V600 Q600,480 0,600 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.thm-torn .thm-band {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path d='M0,0 H1200 V521.4 L1173.9,526.5 L1147.8,520.9 L1121.7,529.6 L1095.7,528.5 L1069.6,534.3 L1043.5,532.6 L1017.4,522.3 L991.3,530.5 L965.2,519.1 L939.1,538.3 L913.0,518.7 L887.0,520.6 L860.9,523.3 L834.8,526.2 L808.7,515.3 L782.6,513.4 L756.5,524.6 L730.4,513.7 L704.3,515.8 L678.3,507.6 L652.2,508.5 L626.1,504.2 L600.0,506.3 L573.9,496.4 L547.8,501.4 L521.7,508.9 L495.7,507.6 L469.6,494.0 L443.5,500.4 L417.4,503.5 L391.3,493.8 L365.2,506.0 L339.1,492.3 L313.0,493.2 L287.0,491.9 L260.9,497.8 L234.8,491.8 L208.7,490.3 L182.6,496.4 L156.5,495.3 L130.4,494.0 L104.3,500.2 L78.3,508.4 L52.2,504.8 L26.1,520.0 L0.0,499.1 Z' fill='black'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path d='M0,0 H1200 V521.4 L1173.9,526.5 L1147.8,520.9 L1121.7,529.6 L1095.7,528.5 L1069.6,534.3 L1043.5,532.6 L1017.4,522.3 L991.3,530.5 L965.2,519.1 L939.1,538.3 L913.0,518.7 L887.0,520.6 L860.9,523.3 L834.8,526.2 L808.7,515.3 L782.6,513.4 L756.5,524.6 L730.4,513.7 L704.3,515.8 L678.3,507.6 L652.2,508.5 L626.1,504.2 L600.0,506.3 L573.9,496.4 L547.8,501.4 L521.7,508.9 L495.7,507.6 L469.6,494.0 L443.5,500.4 L417.4,503.5 L391.3,493.8 L365.2,506.0 L339.1,492.3 L313.0,493.2 L287.0,491.9 L260.9,497.8 L234.8,491.8 L208.7,490.3 L182.6,496.4 L156.5,495.3 L130.4,494.0 L104.3,500.2 L78.3,508.4 L52.2,504.8 L26.1,520.0 L0.0,499.1 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.thm-classic .thm-band::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(to top,
    var(--hero-blush) 0%,
    color-mix(in srgb, var(--hero-blush) 55%, transparent) 40%,
    color-mix(in srgb, var(--hero-blush) 0%, transparent) 100%);
}
.bl-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.bl {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 13px;
  border: 1px solid var(--border-color); background: var(--surface);
  text-align: left; cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.bl:hover { border-color: #E0CFC4; }
.bl[aria-pressed="true"] {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent), var(--shadow-sm);
}
.bl-vis {
  flex-shrink: 0;
  width: 36px; height: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.bl-vis.is-stack { flex-direction: column; justify-content: center; }
.bl-pill { width: 16px; height: 8px; border-radius: 999px; background: var(--border-color); }
.bl-vis.is-stack .bl-pill { width: 100%; }
.bl[aria-pressed="true"] .bl-pill { background: var(--accent); }
.bl-name { font-size: 12px; font-weight: 700; }
.bl[aria-pressed="true"] .bl-name { color: var(--accent); }
.thm-dot {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translateX(-50%);
  width: 26%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 2px solid var(--surface);
  box-shadow: 0 1px 3px rgba(28, 25, 23, .2);
}
.thm-classic .thm-dot { left: 16%; transform: none; }
.thm-line {
  position: absolute;
  height: 3px;
  border-radius: 2px;
  background: var(--border-color);
  left: 50%;
  transform: translateX(-50%);
}
.thm-line-a { bottom: 17%; width: 42%; background: #C9BDB3; }
.thm-line-b { bottom: 8%;  width: 28%; }
.thm-classic .thm-line { left: 16%; transform: none; }
.thm-name { font-size: 11.5px; font-weight: 700; line-height: 1.2; }
.thm-desc { font-size: 9.5px; line-height: 1.2; color: var(--text-light); }
.thm[aria-pressed="true"] .thm-name { color: var(--accent); }
.thm-grid.is-idle { opacity: 0.5; pointer-events: none; }
.thm-lock {
  position: absolute;
  top: 5px; right: 5px;
  width: 17px; height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--text-dark);
  color: #fff;
  box-shadow: 0 2px 6px -1px rgba(28, 25, 23, 0.5);
}
.thm-lock svg { width: 9px; height: 9px; }
.thm.is-locked .thm-name { color: var(--text-light); }
.dash-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 4px;
  position: sticky;
  top: 66px;
  z-index: 40;
  box-shadow: 0 6px 16px -12px rgba(28, 25, 23, .5);
}
#add-product-card { position: relative; z-index: 20; }
.dash-tab {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 6px;
  font-size: 12.5px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.dash-tab-ico { width: 14px; height: 14px; flex-shrink: 0; display: block; }
.dash-tab-active {
  background: var(--surface);
  color: var(--text-dark);
  box-shadow: 0 1px 5px rgba(28, 25, 23, .1);
}
.dash-tab-inactive { color: var(--text-light); }
.dash-tab-count {
  flex-shrink: 0;
  min-width: 18px;
  padding: 1px 5px;
  border-radius: 999px;
  background: rgba(120, 113, 108, .14);
  color: var(--text-light);
  font-size: 10px;
  font-weight: 800;
  line-height: 15px;
  text-align: center;
}
.dash-tab-active .dash-tab-count { background: var(--accent-bg); color: var(--accent); }
@media (max-width: 400px) {
  .dash-tab { font-size: 11.5px; gap: 4px; }
}
@media (max-width: 450px) {
  .dash-tab-count { display: none !important; }
}
.guide-lede {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin: 2px 0 0;
}
.guide-eyebrow {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 18px 0 8px;
}
.guide-lead {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
}
.guide-detail {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-light);
}
.guide-lead + .guide-detail { margin-top: 2px; }
.guide-detail strong,
.guide-lead strong { color: var(--text-dark); font-weight: 700; }
.guide-flow-txt { min-width: 0; }
.guide-flow {
  list-style: none;
  margin: 0;
  padding: 14px;
  border-radius: 16px;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.guide-flow li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  position: relative;
}
.guide-flow li:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 24px;
  bottom: -13px;
  width: 1.5px;
  border-radius: 2px;
  background: var(--border-color);
}
.guide-step {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.guide-types {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guide-type {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: var(--surface);
}
.guide-type-ico {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-bg);
  color: var(--accent);
}
.guide-type-ico svg { width: 16px; height: 16px; display: block; }
.guide-tip {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 18px;
  padding: 12px 13px;
  border-radius: 14px;
  background: var(--link-bg, var(--bg-soft));
  border: 1px solid var(--border-color);
}
.guide-tip-ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--link);
}
.guide-tip-ico svg { width: 100%; height: 100%; display: block; }
.guide-tip .guide-detail { min-width: 0; }
.guide-inline-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  border: 1px solid var(--link);
  background: var(--surface);
  color: var(--link);
  vertical-align: middle;
  margin: 0 2px;
}
.guide-inline-ico svg { width: 10px; height: 10px; display: block; }
.empty-state {
  padding: 30px 22px;
  border-radius: 1rem;
  border: 1px dashed var(--border-color);
  background: var(--surface);
  text-align: center;
}
.empty-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--text-light);
  margin-bottom: 10px;
}
.empty-title { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.empty-text {
  margin: 5px auto 0;
  max-width: 34ch;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-light);
}
.plan-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}
.plan-chev { flex-shrink: 0; color: var(--text-light); transition: transform 0.22s ease; }
.plan-chev.is-open { transform: rotate(180deg); }
.dlook-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.dlook-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.dlook-open {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: var(--bg-soft);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.dlook-media { display: block; width: 100%; aspect-ratio: 2 / 3; overflow: hidden; }
.dlook-card:hover .look-tile-img { transform: scale(1.05); }
.look-tile-scrim {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(28,25,23,0.5), transparent);
  pointer-events: none;
}
.look-tile-cta {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 5px;
  max-width: calc(100% - 16px);
  white-space: nowrap;
  background: rgba(28, 25, 23, 0.5);
  -webkit-backdrop-filter: blur(10px) saturate(1.3);
  backdrop-filter: blur(10px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}
.look-tile-cta svg { flex-shrink: 0; display: block; }
.dlook-flag {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(180, 83, 9, .92);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.reordering > [data-sortable-item] .dlook-flag,
.reordering > [data-sortable-item] .look-tile-cta { opacity: 0; }
.dlook-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px 10px;
}
.dlook-title {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dlook-sub { font-size: 10.5px; color: var(--text-light); line-height: 1.3; margin-top: 1px; }
.lk-actions { display: flex; align-items: center; gap: 8px; }
.lk-eye {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--surface);
  color: var(--text-light);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.lk-eye-hidden { border-color: #CFC6F2; background: #F5F2FE; color: #6B57C4; }
@media (hover: hover) and (pointer: fine) {
  .lk-eye:hover { border-color: var(--accent); color: var(--accent); }
  .lk-eye-hidden:hover { border-color: #6B57C4; color: #57459F; }
}
.lk-chip-hidden {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #F5F2FE;
  color: #6B57C4;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}
.lk-chip-hidden svg { width: 11px; height: 11px; }
.lbl-mini { display: none; }
@media (max-width: 380px) {
  .lbl-full { display: none; }
  .lbl-mini { display: inline; }
}
.dlook-hero {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--bg-soft);
}
.dlook-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(26px) brightness(0.82);
  transform: scale(1.2);
}
.dlook-hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (min-width: 640px) { .dlook-hero { height: 290px; } }
.dlook-back {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(28, 25, 23, 0.3);
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}
.dlook-back svg { flex-shrink: 0; }
.dlook-back:hover  { background: #fff; color: var(--accent); }
.dlook-back:active { transform: scale(0.96); }
#tour-card {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
#tour-card.hidden { display: none; }
.tour-inner {
  pointer-events: auto;
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 14px 15px;
  box-shadow: 0 18px 44px rgba(28, 25, 23, .26);
  animation: fadeUp 0.28s ease-out both;
}
.tour-step {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
}
.tour-dots { flex: 1; display: flex; align-items: center; gap: 5px; min-width: 0; }
.tour-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--border-color);
  transition: background 0.2s ease, width 0.2s ease;
}
.tour-dot.is-on { width: 18px; background: var(--accent); }
.tour-spot {
  outline: 2.5px solid var(--accent);
  outline-offset: 4px;
  border-radius: 16px;
  animation: tourPulse 1.7s ease-in-out infinite;
  scroll-margin-top: 90px;
  scroll-margin-bottom: 160px;
}
@keyframes tourPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 69, 90, .30); }
  50%      { box-shadow: 0 0 0 9px rgba(232, 69, 90, 0); }
}
@media (prefers-reduced-motion: reduce) { .tour-spot { animation: none; } }
#notif-wrap.is-pending { visibility: hidden; }
.notif-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 17px;
  text-align: center;
  box-shadow: 0 0 0 2px var(--surface);
}
.notif-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(370px, calc(100vw - 24px));
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  z-index: 60;
}
.notif-list {
  max-height: min(calc(50vh - 57px), 363px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.notif-list::-webkit-scrollbar { display: none; }
.notif-list.has-more {
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 34px), transparent);
  mask-image: linear-gradient(to bottom, #000 calc(100% - 34px), transparent);
}
.notif-head {
  background: var(--surface);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.notif-clearall {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .01em;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-bg);
  transition: background .15s, color .15s, transform .1s;
}
.notif-clearall:hover { background: var(--accent); color: #fff; }
.notif-clearall:active { transform: scale(.95); }
.notif-close-btn { width: 32px; height: 32px; }
.notif-item {
  display: flex;
  gap: 11px;
  padding: 13px 15px;
  border-top: 1px solid var(--border-color);
  position: relative;
}
.notif-item:first-child { border-top: none; }
.notif-item.has-x { padding-right: 38px; }
.notif-x {
  position: absolute;
  top: 9px;
  right: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--text-light);
  opacity: .5;
  transition: opacity .15s, background .15s, color .15s;
}
.notif-x:hover,
.notif-x:focus-visible {
  opacity: 1;
  background: var(--bg-soft);
  color: var(--text-dark);
}
.notif-x:active { transform: scale(.9); }
@media (hover: none) {
  .notif-x { opacity: .75; }
}
.notif-dot {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 639px) {
  .notif-panel {
    position: fixed;
    top: 66px;
    left: 12px;
    right: 12px;
    width: auto;
  }
  .notif-list { max-height: calc(50vh - 57px); }
}
.tag-hint {
  font-size: 10.5px;
  line-height: 1.4;
  color: var(--text-light);
  margin: -4px 0 6px;
}
.tagpick { display: flex; flex-direction: column; gap: 7px; }
.tagpick-row { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.tagpick-suggest {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding-top: 7px;
  border-top: 1px dashed var(--border-color);
}
.tagpick-scroll {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow-x: auto;
  padding: 1px 14px 1px 0;
  scroll-padding-right: 14px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tagpick-scroll::-webkit-scrollbar { display: none; }
.tagpick-scroll .tagpick-chip { flex-shrink: 0; }
.tagpick-label {
  flex-shrink: 0;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
}
.tagpick-label b {
  display: inline-block;
  min-width: 15px;
  margin-left: 2px;
  padding: 1px 4px;
  border-radius: 999px;
  background: rgba(120, 113, 108, 0.14);
  color: var(--text-light);
  font-size: 9px;
  text-align: center;
}
.tagpick-more {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  color: var(--accent);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.tagpick-more:hover { background: var(--accent-bg); }
.tagpick-more:active { transform: scale(0.92); }
.tagpick-note { font-size: 11px; color: var(--text-light); padding: 0 4px; }
.tagpick-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--surface);
  color: var(--text-light);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.15s ease;
  max-width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .tagpick-chip:hover { border-color: var(--accent); color: var(--accent); }
}
.tagpick-chip.is-on {
  background: var(--accent-bg);
  border-color: var(--accent);
  color: var(--accent);
}
.tagpick-chip span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tagpick-new {
  flex: 1 1 140px;
  min-width: 120px;
  height: 28px;
  padding: 0 12px;
  line-height: 26px;
  border-radius: 999px;
  border: 1px dashed var(--border-color);
  background: var(--bg-soft);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.15s ease;
}
.tagpick-new:focus { border-style: solid; border-color: var(--accent); background: var(--surface); }
.tagpick-new::placeholder { color: var(--text-light); font-weight: 500; }
.dash-panel { padding-top: 6px; }
#dash-tabs { margin-top: 26px; }
.sec-head { display: flex; flex-direction: column; gap: 10px; }
.sec-titlerow { display: flex; align-items: center; gap: 10px; }
.sec-actions { display: flex; align-items: center; gap: 8px; }
.sec-head.hidden, .sec-titlerow.hidden, .sec-actions.hidden { display: none; }
.img-staged { display: block; }
.img-staged-frame {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}
.img-staged-frame img {
  display: block;
  width: 100%;
  height: 128px;
  object-fit: contain;
}
.img-change-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 7px;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-light);
  white-space: nowrap;
}
.img-change-hint svg { flex-shrink: 0; display: block; }
.el-photo {
  display: block;
  width: 150px;
  margin: 0 auto;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-soft);
}
.el-photo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.clear-ico {
  flex-shrink: 0;
  width: 42px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--surface);
  color: var(--text-light);
  transition: all 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .clear-ico:hover { border-color: #FCA5A5; color: #DC2626; background: #FEF2F2; }
}
.clear-ico svg { display: block; }
.share-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  padding: 9px 18px 9px 11px;
  border-radius: 12px;
  background: var(--link-bg);
  border: 1px solid #DBE7FF;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-light);
}
.share-note svg { color: var(--link); }
.share-note.hidden { display: none; }
.share-note { animation: fadeIn 0.2s ease-out both; }
.info-dot {
  position: relative;
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--link);
  background: var(--link-bg);
  color: var(--link);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.info-dot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
}
.info-dot svg { width: 12px; height: 12px; display: block; }
.info-dot:active { transform: scale(0.9); }
.info-dot:focus-visible { outline: 2px solid var(--link); outline-offset: 2px; }
.info-dot[aria-expanded="true"] {
  background: var(--link);
  border-color: var(--link);
  color: #fff;
}
@media (hover: hover) {
  .info-dot:hover { background: var(--link); border-color: var(--link); color: #fff; }
}
.info-dot.hidden { display: none; }
.sheet-tall {
  max-height: 84vh;
  max-height: min(84dvh, 84vh + 0px);
}
@supports (height: 100dvh) {
  .sheet-tall { max-height: 84dvh; }
}
body.sheet-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}
.sheet-scroll {
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.btn-ico { position: relative; top: 0.6px; }
.haul-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
  user-select: none;
}
@media (hover: hover) {
  .haul-head:hover { background: var(--bg-main); }
}
.haul-head > .min-w-0 { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.haul-titlerow { display: flex; align-items: center; gap: 8px; }
.haul-titleacts { display: flex; align-items: center; gap: 7px; margin-left: auto; flex-shrink: 0; }
.haul-cover {
  flex-shrink: 0;
  width: 52px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  background: var(--bg-soft);
}
.haul-cover-empty {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}
.haul-title {
  display: block;
  min-width: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.haul-desc {
  display: block;
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.3;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.haul-count {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  margin-top: 5px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}
.haul-view {
  flex-shrink: 0;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}
.hh-opt {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.hh-opt:has(.hh-opt-box:checked) { background: var(--link-bg); border-color: #D6E4FF; }
.hh-opt-box {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--link);
  cursor: pointer;
}
.hh-opt-title { display: block; font-size: 12.5px; font-weight: 700; color: var(--text-dark); }
.hh-opt-sub { display: block; margin-top: 2px; font-size: 11px; line-height: 1.4; color: var(--text-light); }
.hh-opt-sub + .hh-opt-sub { margin-top: 6px; }
@keyframes segPulse {
  0%   { box-shadow: 0 0 0 0 rgba(232, 69, 90, 0.45); }
  70%  { box-shadow: 0 0 0 7px rgba(232, 69, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 69, 90, 0); }
}
.seg-pulse { animation: segPulse 1.4s ease-out; }
@media (prefers-reduced-motion: reduce) {
  .seg-pulse { animation: none; }
}
.haul-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }
.haul-actions-end {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  flex-shrink: 0;
}
.haul-ico {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--surface);
  color: var(--text-light);
  transition: all 0.15s ease;
}
.haul-ico-link { border-color: var(--link); background: var(--link-bg); color: var(--link); }
.haul-ico-danger { border-color: #FCA5A5; color: #EF4444; }
.haul-ico-hidden { border-color: #CFC6F2; background: #F5F2FE; color: #6B57C4; }
@media (hover: hover) and (pointer: fine) {
  .haul-ico:hover { border-color: var(--accent); color: var(--accent); }
  .haul-ico-link:hover { border-color: var(--link-dark); color: var(--link-dark); }
  .haul-ico-danger:hover { background: #FEF2F2; border-color: #F87171; color: #DC2626; }
  .haul-ico-hidden:hover { border-color: #6B57C4; color: #57459F; }
}
.scope-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 9px 11px;
  border-radius: 12px;
  background: var(--link-bg);
  border: 1px solid #D6E4FF;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--link-dark);
}
.scope-note.hidden { display: none; }
.scope-note svg { flex-shrink: 0; margin-top: 1px; }
.scope-note strong { font-weight: 800; }
.filterbar { display: flex; flex-direction: column; gap: 9px; }
.filter-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filterbar.hidden,
.filter-row.hidden,
.tagfilter.hidden,
.tagpick.hidden,
.seg.hidden,
.hh-opt.hidden,
.haul-actions.hidden { display: none; }
.seg {
  display: flex;
  gap: 3px;
  padding: 3px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}
.seg-btn {
  padding: 6px 11px;
  border: none;
  border-radius: 9px;
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.18s ease;
}
.seg-full { width: 100%; }
.seg-full .seg-btn { flex: 1; }
.seg-on  { background: var(--surface); color: var(--text-dark); box-shadow: 0 1px 5px rgba(28,25,23,.1); }
.seg-off { background: transparent; color: var(--text-light); }
.seg-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 17px;
  height: 17px;
  margin-left: 5px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(120, 113, 108, .14);
  color: var(--text-light);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  vertical-align: 1px;
}
.seg-on .seg-count { background: var(--accent-bg); color: var(--accent); }
.seg-count.hidden { display: none; }
.tagfilter {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 0 14px 2px 0;
  scroll-padding-right: 14px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tagfilter::-webkit-scrollbar { display: none; }
.tagfilter:empty { display: none; }
.tagfilter .tagpick-chip { flex-shrink: 0; }
.product-card.pc-hidden .product-img { opacity: 0.5; filter: saturate(0.55); }
.pc-flag {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(28, 25, 23, 0.78);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(3px);
  pointer-events: none;
}
.pc-flag svg { display: block; }
.pc-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; margin-top: 6px; }
.pc-tag {
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text-light);
  font-size: 9.5px;
  font-weight: 700;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pc-where {
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--link-bg);
  color: var(--link-dark);
  font-size: 9.5px;
  font-weight: 700;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pc-eye {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--surface);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s ease;
}
.pc-eye:hover { border-color: var(--accent); color: var(--accent); }
.pc-eye.is-live { border-color: var(--green); color: var(--green); background: #F0FDF4; }
.pc-eye svg { display: block; }
.pick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: max-content;
  gap: 8px;
}
.pick-grid.hidden { display: none; }
@media (min-width: 640px) {
  .pick-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
}
.pick-card {
  display: block;
  width: 100%;
  position: relative;
  text-align: left;
  border-radius: 12px;
  border: 1.5px solid var(--border-color);
  background: var(--surface);
  overflow: hidden;
  transition: all 0.15s ease;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .pick-card:hover { border-color: var(--accent); }
  .pick-card:disabled:hover { border-color: var(--border-color); }
}
.pick-card.is-on { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-bg); }
.pick-card:disabled { opacity: 0.5; cursor: not-allowed; }
.pick-media { display: block; aspect-ratio: 3 / 4; overflow: hidden; background: var(--bg-soft); }
.pick-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pick-check {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  border: 1.5px solid #fff;
  background: rgba(28, 25, 23, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.pick-card.is-on .pick-check, .pick-card:disabled .pick-check { background: var(--accent); }
.pick-card:disabled .pick-check { background: var(--text-light); }
.pick-check svg { display: block; opacity: 0; }
.pick-card.is-on .pick-check svg, .pick-card:disabled .pick-check svg { opacity: 1; }
.pick-body { display: block; padding: 6px 7px 7px; }
.pick-name { display: block; font-size: 11px; font-weight: 700; line-height: 1.25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pick-brand { display: block; font-size: 9.5px; color: var(--text-light); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.otp-field { position: relative; }
.otp-slots { display: flex; gap: 8px; }
.otp-slot {
  flex: 1 1 0;
  min-width: 0;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-dark);
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.otp-slot:empty::after {
  content: '-';
  color: var(--text-light);
  opacity: .45;
}
.otp-slot.is-filled { background: var(--surface); border-color: var(--accent); }
.otp-slot.is-active {
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-bg);
}
.otp-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  outline: none;
  opacity: 0;
  background: transparent;
  color: transparent;
  caret-color: transparent;
  font-size: 16px;
  cursor: pointer;
}
@media (max-width: 360px) {
  .otp-slots { gap: 6px; }
  .otp-slot { height: 48px; font-size: 19px; border-radius: 10px; }
}
.demo-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--accent);
}
.demo-link:hover span { text-decoration: underline; }
.demo-link svg {
  display: block;
  flex: none;
  width: 13px;
  height: 13px;
  position: relative;
  top: 1px;
  transition: transform .18s ease;
}
.demo-link:hover svg { transform: translateX(2px); }
.hm-shell { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .hm-shell { padding: 0 32px; } }
.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.62s cubic-bezier(.22,.61,.36,1),
              transform 0.62s cubic-bezier(.22,.61,.36,1);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}
@media print {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
}
.hm-sec { padding: 80px 0; }
@media (min-width: 768px) { .hm-sec { padding: 112px 0; } }
.hm-sec-soft { background: var(--bg-soft); }
.hm-proof,
.hm-sec,
.hm-cta,
.hm-footer {
  content-visibility: auto;
}
.hm-proof { contain-intrinsic-size: auto 56px; }
.hm-sec   { contain-intrinsic-size: auto 908px; }
#build.hm-sec { contain-intrinsic-size: auto 1261px; }
.hm-sec-soft  { contain-intrinsic-size: auto 468px; }
.hm-cta    { contain-intrinsic-size: auto 271px; }
.hm-footer { contain-intrinsic-size: auto 92px; }
@media (min-width: 768px) {
  .hm-sec   { contain-intrinsic-size: auto 395px; }
  #build.hm-sec { contain-intrinsic-size: auto 556px; }
  .hm-sec-soft  { contain-intrinsic-size: auto 327px; }
  .hm-cta    { contain-intrinsic-size: auto 194px; }
  .hm-footer { contain-intrinsic-size: auto 19px; }
}
@media print {
  .hm-proof, .hm-sec, .hm-cta, .hm-footer { content-visibility: visible; }
}
.hm-sechead { max-width: 600px; margin: 0 auto 48px; text-align: center; }
@media (min-width: 768px) { .hm-sechead { margin-bottom: 60px; } }
.hm-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}
.hm-h2 {
  margin-top: 14px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 4.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hm-lede {
  margin: 15px auto 0;
  max-width: 46ch;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-light);
  text-wrap: pretty;
}
.hm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
              background 0.18s ease, color 0.18s ease;
}
.hm-btn svg { flex: none; width: 16px; height: 16px; }
.hm-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(232, 69, 90, 0.7);
}
@media (hover: hover) {
  .hm-btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(232, 69, 90, 0.75); }
}
.hm-btn-primary:active { transform: scale(0.97); }
.hm-btn-link {
  background: transparent;
  color: var(--text-dark);
  padding: 15px 10px;
  text-shadow: 0 1px 2px rgba(28, 25, 23, 0.12);
  transition: transform 0.18s ease, color 0.18s ease, text-shadow 0.18s ease;
}
.hm-btn-link svg {
  transition: transform 0.18s ease;
  filter: drop-shadow(0 1px 1.5px rgba(28, 25, 23, 0.12));
}
@media (hover: hover) {
  .hm-btn-link:hover { color: var(--accent); text-shadow: 0 1px 4px rgba(232, 69, 90, 0.2); }
  .hm-btn-link:hover svg { transform: translate(1px, -1px); }
}
.hm-btn-link:focus-visible,
.hm-btn-link.is-touched { color: var(--accent); text-shadow: 0 1px 4px rgba(232, 69, 90, 0.2); }
.hm-btn-link:active { transform: scale(0.97); color: var(--accent); }
.hm-hero { position: relative; overflow: hidden; padding: 126px 0 76px; }
@media (min-width: 980px) { .hm-hero { padding: 176px 0 128px; } }
.hm-orb {
  position: absolute;
  top: 40px;
  left: -180px;
  width: 560px;
  height: 460px;
  border-radius: 999px;
  background: radial-gradient(circle at 40% 40%, rgba(232,69,90,.15), transparent 68%);
  filter: blur(30px);
  pointer-events: none;
}
.hm-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 56px;
  align-items: center;
}
.hm-hero-grid > * { min-width: 0; }
@media (min-width: 980px) {
  .hm-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 380px); gap: 72px; }
}
.hm-hero-copy { text-align: center; }
@media (min-width: 980px) { .hm-hero-copy { text-align: left; } }
.hm-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.3rem, 7.2vw, 3.85rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.022em;
}
.hm-h1 em { font-style: normal; color: var(--accent); }
.hm-sub {
  margin: 28px auto 0;
  max-width: 30rem;
  font-size: clamp(0.98rem, 1.6vw, 1.09rem);
  line-height: 1.72;
  color: var(--text-light);
  text-wrap: pretty;
}
@media (min-width: 980px) { .hm-sub { margin-left: 0; margin-right: 0; } }
.hm-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 42px;
}
@media (min-width: 560px) { .hm-ctas { flex-direction: row; justify-content: center; gap: 14px; } }
@media (min-width: 980px) { .hm-ctas { justify-content: flex-start; } }
.hm-ctas-center { justify-content: center !important; }
@media (max-width: 480px) {
  a.cta-fill { padding-inline: 2.25rem; max-width: 100%; }
}
.hm-fineprint {
  margin-top: 24px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-light);
}
.hm-fineprint-2 { display: block; }
.hm-fineprint-2::before { content: ' '; }
@media (min-width: 700px) {
  .hm-fineprint-2 { display: inline; }
  .hm-fineprint-2::before { content: ' \00b7  '; }
}
.hm-demo { position: relative; z-index: 1; }
.hm-phone {
  position: relative;
  width: min(272px, 74vw);
  aspect-ratio: 1 / 2;
  margin: 0 auto;
  padding: 6px;
  border-radius: 34px;
  background: linear-gradient(152deg, #4A4340 0%, #211D1A 34%, #14110F 78%);
  box-shadow: 0 40px 80px -30px rgba(28, 25, 23, 0.7),
              0 4px 10px rgba(28, 25, 23, 0.22),
              inset 0 0 0 1px rgba(255, 255, 255, 0.14),
              inset 0 0 0 3px rgba(0, 0, 0, 0.5);
}
.hm-phone-btn {
  position: absolute;
  width: 2.5px;
  border-radius: 2px;
  background: linear-gradient(180deg, #4A4340, #262120);
}
.hm-btn-vup { left: -2px; top: 21%; height: 28px; }
.hm-btn-vdn { left: -2px; top: 30%; height: 28px; }
.hm-btn-pwr { right: -2px; top: 24%; height: 42px; }
.hm-screens {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-main);
}
.hm-screens::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to top, var(--bg-main), transparent);
}
.hm-status {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hm-status-time { font-size: 10px; font-weight: 800; letter-spacing: -0.01em; color: var(--text-dark); }
.hm-island {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 13px;
  border-radius: 999px;
  background: #14110F;
}
.hm-status-ico { display: flex; align-items: center; gap: 3px; color: var(--text-dark); }
.hm-status-ico svg { height: 8px; width: auto; display: block; fill: currentColor; }
.hm-screen {
  position: absolute;
  inset: 0;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  background: var(--bg-main);
  transition: transform 0.52s cubic-bezier(.4, 0, .2, 1);
}
.hm-screen-add   { z-index: 1; transform: translateX(0); }
.hm-screen-store {
  z-index: 2;
  transform: translateX(100%);
  box-shadow: -10px 0 26px rgba(28, 25, 23, 0.1);
}
.hm-phone[data-screen="store"] .hm-screen-add   { transform: translateX(-26%); }
.hm-phone[data-screen="store"] .hm-screen-store { transform: translateX(0); }
.hm-bar {
  flex: none;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border-color);
}
.hm-bar-mark {
  font-family: var(--font-brand);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.hm-bar-sub {
  margin-left: auto;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hm-share {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--text-dark);
}
.hm-share svg { width: 9px; height: 9px; color: var(--accent); }
.hm-add {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 16px 14px 14px;
}
.hm-add-spacer { flex: 1; min-height: 8px; }
.hm-lbl {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}
.hm-url {
  flex: none;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
  padding: 9px 11px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--accent-bg);
  font-size: 10.5px;
  line-height: 1.35;
  color: var(--text-dark);
  overflow: hidden;
}
.hm-url svg { flex: none; width: 13px; height: 13px; color: var(--text-light); }
.hm-url-txt { min-width: 0; word-break: break-all; }
.hm-caret {
  flex: none;
  display: inline-block;
  width: 1.5px;
  height: 13px;
  background: var(--accent);
  animation: hmBlink 1.05s step-end infinite;
}
@keyframes hmBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hm-fetch {
  position: relative;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 37px;
  margin-top: 10px;
  border-radius: 11px;
  overflow: hidden;
  background: #1F1B1A;
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
}
.hm-fetch-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--p, 0%);
  background: linear-gradient(90deg, var(--accent) 0%, #FF7086 50%, var(--accent) 100%);
  background-size: 220% 100%;
  transition: width 0.3s ease-out;
}
.hm-fetch-lbl { position: relative; z-index: 1; }
.hm-fetch[data-state="loading"] .hm-fetch-fill { animation: fetchShimmer 1.1s linear infinite; }
.hm-fetch[data-state="done"] .hm-fetch-fill { background: var(--green); }
@media (prefers-reduced-motion: reduce) {
  .hm-fetch[data-state="loading"] .hm-fetch-fill { animation: none; }
}
.hm-found {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 9px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-light);
}
.hm-found::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border-color), transparent);
}
.hm-result {
  flex: none;
  display: flex;
  gap: 11px;
  padding: 11px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.hm-result-media {
  position: relative;
  flex: none;
  width: 66px;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-soft);
}
.hm-result-media[data-on="0"] {
  background: linear-gradient(90deg, var(--bg-soft) 25%, #E8E2DB 50%, var(--bg-soft) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}
.hm-result-media svg { width: 100%; height: 100%; display: block; }
.hm-result-media[data-on="0"] svg { opacity: 0; }
.hm-result-media[data-on="1"] svg { animation: hmPop 0.45s cubic-bezier(.34,1.5,.64,1) both; }
@keyframes hmPop { from { opacity: 0; transform: scale(0.84); } to { opacity: 1; transform: none; } }
.hm-result-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.hm-fld { position: relative; }
.hm-fld-skel {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bg-soft) 25%, #E8E2DB 50%, var(--bg-soft) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}
.hm-fld-val { display: none; }
.hm-fld[data-on="1"] .hm-fld-skel { display: none; }
.hm-fld[data-on="1"] .hm-fld-val { display: block; animation: hmLand 0.44s ease-out both; }
@keyframes hmLand {
  0%   { opacity: 0; transform: translateY(4px); background: var(--accent-bg); }
  60%  { opacity: 1; background: var(--accent-bg); }
  100% { opacity: 1; transform: none; background: transparent; }
}
.hm-fld-brand { font-size: 8.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }
.hm-fld-name {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hm-fld-price { font-size: 12.5px; font-weight: 800; color: var(--green); }
.hm-fld-brand .hm-fld-skel { width: 46%; height: 7px; }
.hm-fld-name  .hm-fld-skel { width: 88%; }
.hm-fld-price .hm-fld-skel { width: 38%; height: 10px; }
.hm-edit {
  flex: none;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding-left: 2px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dark);
}
.hm-edit-pen { flex: none; width: 11px; height: 11px; color: var(--accent); }
.hm-edit-chev { flex: none; width: 11px; height: 11px; color: var(--text-light); }
.hm-save {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 37px;
  border-radius: 11px;
  background: var(--bg-soft);
  color: var(--text-light);
  font-size: 11.5px;
  font-weight: 800;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.hm-save svg { width: 13px; height: 13px; }
.hm-save[data-on="1"] {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(232, 69, 90, 0.6);
}
.hm-note {
  flex: none;
  margin-top: 8px;
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-light);
}
.hm-store-hero {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px 14px 12px;
  text-align: center;
  background:
    radial-gradient(ellipse 85% 62% at 50% -14%, rgba(232,69,90,.14) 0%, transparent 70%),
    linear-gradient(178deg, #FFF3F5 0%, var(--bg-main) 78%);
  border-bottom: 1px solid var(--border-color);
}
.hm-store-av {
  width: 44px; height: 44px;
  padding: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #FF8FA3 60%, #FFBE98 100%);
  box-shadow: 0 0 0 3px #FFF3F5, 0 8px 20px -6px rgba(232, 69, 90, 0.42);
}
.hm-store-av svg { width: 100%; height: 100%; border-radius: 999px; display: block; background: #fff; }
.hm-store-name {
  margin-top: 8px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.hm-store-bio { margin-top: 2px; font-size: 9.5px; font-weight: 500; color: var(--text-light); }
.hm-store-socials { display: flex; gap: 5px; margin-top: 8px; }
.hm-store-soc {
  width: 21px; height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  color: var(--text-light);
}
.hm-store-soc svg { width: 10px; height: 10px; }
.hm-store-scroll { flex: 1; min-height: 0; overflow: hidden; }
.hm-store-inner {
  padding: 0 14px 20px;
  transition: transform 0.6s cubic-bezier(.4, 0, .2, 1);
}
.hm-store-hero { margin: 0 -14px; }
.hm-tabs {
  display: flex;
  gap: 3px;
  margin: 12px auto 14px;
  padding: 3px;
  max-width: 190px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
}
.hm-tab {
  flex: 1;
  padding: 5px 4px;
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
  font-size: 8.5px;
  font-weight: 700;
  color: var(--text-light);
  transition: background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}
.hm-tab.is-on {
  background: var(--surface);
  color: var(--text-dark);
  box-shadow: 0 1px 4px rgba(28, 25, 23, .1);
}
.hm-pane { display: none; }
.hm-pane.is-on { display: block; }
.hm-haul {
  margin-bottom: 8px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease;
}
.hm-haul[data-open="1"] { border-color: #E7C9CF; }
.hm-haul-head { display: flex; align-items: center; gap: 9px; padding: 8px; }
.hm-haul-cover { flex: none; display: flex; gap: 2px; height: 46px; }
.hm-haul-cover-main { width: 34px; height: 100%; border-radius: 7px; overflow: hidden; background: var(--bg-soft); }
.hm-haul-cover-main svg { width: 100%; height: 100%; display: block; }
.hm-haul-cover-side { display: flex; flex-direction: column; gap: 2px; width: 16px; }
.hm-haul-cover-side > span { flex: 1 1 0; min-height: 0; border-radius: 5px; overflow: hidden; background: var(--bg-soft); }
.hm-haul-cover-side svg { width: 100%; height: 100%; display: block; }
.hm-haul-meta { flex: 1; min-width: 0; }
.hm-haul-t { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hm-haul-d { display: block; margin-top: 1px; font-size: 7.5px; color: var(--text-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hm-haul-n {
  display: inline-block;
  margin-top: 4px;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 7px;
  font-weight: 800;
}
.hm-haul-chev {
  flex: none;
  width: 12px; height: 12px;
  color: var(--text-light);
  transition: transform 0.35s ease, color 0.3s ease;
}
.hm-haul[data-open="1"] .hm-haul-chev { transform: rotate(180deg); color: var(--accent); }
.hm-haul-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1), opacity 0.28s ease;
}
.hm-haul[data-open="1"] .hm-haul-body { max-height: 120px; opacity: 1; }
.hm-haul-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  margin: 0 8px 9px;
  padding-top: 8px;
  border-top: 1px solid var(--border-color);
}
.hm-haul-grid > span {
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
}
.hm-haul-grid svg { width: 100%; height: 100%; display: block; }
.hm-lookgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.hm-look {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow-sm);
}
.hm-look > svg { width: 100%; height: 100%; display: block; }
.hm-look::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 32%;
  background: linear-gradient(to top, rgba(28,25,23,0.42), transparent);
}
.hm-look-cta {
  position: absolute;
  left: 50%;
  bottom: 6px;
  z-index: 1;
  transform: translateX(-50%);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(28, 25, 23, 0.5);
  -webkit-backdrop-filter: blur(8px) saturate(1.3);
  backdrop-filter: blur(8px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 7.5px;
  font-weight: 700;
}
.hm-store-sec-gap { margin-top: 18px; }
.hm-store-sec {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hm-store-sec::before {
  content: '';
  flex: none;
  width: 2.5px; height: 13px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), #FF8FA3);
}
.hm-store-sec span {
  margin-left: auto;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 8.5px;
  font-weight: 800;
}
.hm-store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.hm-pc {
  border-radius: 11px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.hm-pc-media { aspect-ratio: 3 / 4; overflow: hidden; background: var(--bg-soft); }
.hm-pc-media svg { width: 100%; height: 100%; display: block; }
.hm-pc-body { padding: 7px 8px 9px; }
.hm-pc-brand { font-size: 7px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hm-pc-name {
  margin-top: 1px;
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hm-pc-price { margin-top: 3px; font-size: 10px; font-weight: 800; color: var(--green); }
.hm-pc-new { animation: hmCardIn 0.62s cubic-bezier(.34,1.4,.64,1) both; }
@keyframes hmCardIn {
  0%   { opacity: 0; transform: translateY(10px) scale(0.9); box-shadow: 0 0 0 2px var(--accent); }
  70%  { opacity: 1; box-shadow: 0 0 0 2px var(--accent); }
  100% { opacity: 1; transform: none; box-shadow: var(--shadow-sm); }
}
.hm-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: min(272px, 74vw);
  margin: 22px auto 0;
}
.hm-step { text-align: center; }
.hm-step-bar {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--border-color);
  transition: background 0.35s ease;
}
.hm-step-txt {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-light);
  opacity: 0.7;
  transition: color 0.35s ease, opacity 0.35s ease;
}
.hm-step[data-on="1"] .hm-step-bar { background: var(--accent); }
.hm-step[data-on="1"] .hm-step-txt { color: var(--text-dark); opacity: 1; }
.hm-proof {
  padding: 30px 0 32px;
  background: var(--surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.hm-proof-lbl {
  margin-bottom: 18px;
  text-align: center;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.hm-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.hm-marquee-track {
  display: flex;
  width: max-content;
  animation: hmSlide 36s linear infinite;
}
@keyframes hmSlide { from { transform: translateX(0); } to { transform: translateX(-16.6667%); } }
.hm-marquee:hover .hm-marquee-track { animation-play-state: paused; }
.hm-marquee-set { display: flex; align-items: center; flex: none; }
.hm-marquee-set > * {
  padding: 0 21px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--text-dark);
  opacity: 0.42;
}
.hm-marquee-set > b { color: var(--accent); opacity: 1; font-weight: 800; }
@media (prefers-reduced-motion: reduce) { .hm-marquee-track { animation: none; } }
.hm-builds {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 780px) { .hm-builds { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; } }
.hm-build {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
@media (hover: hover) {
  .hm-build:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
}
.hm-build-art {
  height: 186px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(232,69,90,.07), transparent 72%),
    linear-gradient(165deg, #FDF5F6, var(--bg-soft));
  border-bottom: 1px solid var(--border-color);
}
.hm-build-body { padding: 22px 24px 26px; }
.hm-build-t { font-size: 16px; font-weight: 700; letter-spacing: -0.015em; }
.hm-build-d { margin-top: 8px; font-size: 13px; line-height: 1.65; color: var(--text-light); }
.hm-mine { display: grid; gap: 34px; align-items: center; }
@media (min-width: 900px) {
  .hm-mine { grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr); gap: 58px; }
}
.hm-mine-copy { text-align: center; }
.hm-mine-copy .hm-lede { margin-left: auto; margin-right: auto; }
@media (min-width: 900px) {
  .hm-mine-copy { text-align: left; }
  .hm-mine-copy .hm-lede { margin-left: 0; margin-right: 0; }
}
.hm-lays {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.hm-lay {
  position: relative;
  margin: 0;
  padding: 8px 8px 10px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
@media (hover: hover) {
  .hm-lay:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
}
.hm-lay-n { font-size: 12px; font-weight: 700; letter-spacing: -0.01em; }
.hm-lay-paid {
  position: absolute;
  top: 12px; right: 12px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(28, 25, 23, 0.62);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.hm-mini-picks { display: flex; gap: 10px; width: 100%; max-width: 196px; }
.hm-mini-pc {
  flex: 1;
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.hm-mini-pc-media { aspect-ratio: 3 / 4; overflow: hidden; background: var(--bg-soft); }
.hm-mini-pc-media svg { width: 100%; height: 100%; display: block; }
.hm-mini-pc-body { padding: 6px 7px 8px; }
.hm-mini-pc-brand { font-size: 6.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hm-mini-pc-price { margin-top: 2px; font-size: 9px; font-weight: 800; color: var(--green); }
.hm-mini-haul {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 232px;
  padding: 10px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.hm-mini-haul-cover { flex: none; display: flex; gap: 3px; height: 58px; }
.hm-mini-haul-main { width: 42px; height: 100%; border-radius: 9px; overflow: hidden; background: var(--bg-soft); }
.hm-mini-haul-main svg { width: 100%; height: 100%; display: block; }
.hm-mini-haul-side { display: flex; flex-direction: column; gap: 3px; width: 20px; }
.hm-mini-haul-side > span { flex: 1 1 0; min-height: 0; border-radius: 6px; overflow: hidden; background: var(--bg-soft); }
.hm-mini-haul-side svg { width: 100%; height: 100%; display: block; }
.hm-mini-haul-meta { flex: 1; min-width: 0; }
.hm-mini-haul-t { font-size: 11px; font-weight: 700; letter-spacing: -0.015em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hm-mini-haul-d { margin-top: 1px; font-size: 8.5px; color: var(--text-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hm-mini-haul-n {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
}
.hm-mini-haul-chev { flex: none; color: var(--text-light); }
.hm-mini-look {
  position: relative;
  width: 112px;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow-md);
}
.hm-mini-look > svg { width: 100%; height: 100%; display: block; }
.hm-mini-look::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(28,25,23,0.5), transparent);
}
.hm-mini-look-cta {
  position: absolute;
  left: 50%;
  bottom: 8px;
  z-index: 1;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 9px;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(28, 25, 23, 0.5);
  -webkit-backdrop-filter: blur(10px) saturate(1.3);
  backdrop-filter: blur(10px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 8.5px;
  font-weight: 700;
}
.hm-mini-look-cta svg { flex: none; width: 9px; height: 9px; }
.hm-mini-dot {
  position: absolute;
  z-index: 1;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: #fff;
  border: 2.5px solid var(--accent);
  box-shadow: 0 2px 6px rgba(28,25,23,.35);
}
.hm-mini-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 1.5px solid #fff;
  opacity: 0;
  animation: hmPing 2.4s ease-out infinite;
}
.hm-mini-dot:nth-of-type(2)::after { animation-delay: 1.1s; }
@keyframes hmPing {
  0%   { opacity: .8; transform: scale(0.55); }
  70%  { opacity: 0;  transform: scale(1.4); }
  100% { opacity: 0;  transform: scale(1.4); }
}
@media (prefers-reduced-motion: reduce) { .hm-mini-dot::after { animation: none; } }
.hm-feats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 560px) { .hm-feats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 940px) { .hm-feats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.hm-feat {
  padding: 24px 22px 26px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
@media (hover: hover) {
  .hm-feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
}
.hm-feat-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--accent-bg);
  color: var(--accent);
}
.hm-feat-ico svg { width: 19px; height: 19px; }
.hm-feat-t { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
.hm-feat-d { margin-top: 7px; font-size: 12.5px; line-height: 1.62; color: var(--text-light); }
.hm-cta { padding: 68px 0 92px; text-align: center; background: var(--bg-soft); }
.hm-cta-inner { max-width: 740px; margin: 0 auto; }
.hm-footer { padding: 34px 0 40px; border-top: 1px solid var(--border-color); }
.hm-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
@media (min-width: 640px) { .hm-footer-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.hm-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-light);
}
.hm-footer-nav a { transition: color 0.18s ease; }
.hm-footer-nav a:hover { color: var(--text-dark); }
.hm-footer-c { font-size: 12px; color: var(--text-light); }
@media (prefers-reduced-motion: reduce) {
  .hm-caret,
  .hm-fld-skel,
  .hm-result-media[data-on="0"] { animation: none; }
  .hm-fld[data-on="1"] .hm-fld-val,
  .hm-result-media[data-on="1"] svg,
  .hm-pc-new { animation: none; }
  .hm-screen { transition: none; }
}
body.crop-open { overflow: hidden; }
#crop-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 12px 12px;
}
#crop-modal.hidden { display: none; }
.crop-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, .5);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
@media (min-width: 640px) {
  #crop-modal { align-items: center; padding: 16px; }
}
.crop-sheet {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 340px;
  max-height: calc(100% - 12px);
  padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
  border-radius: 24px;
  border: 1px solid var(--border-color);
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(28, 25, 23, .3);
}
@media (min-width: 640px) {
  .crop-sheet { padding-bottom: 16px; }
}
.crop-head { display: flex; align-items: center; gap: 10px; }
.crop-title { flex: 1; min-width: 0; font-size: 15px; font-weight: 800; color: var(--text-dark); }
.crop-ratio {
  flex-shrink: 0;
  padding: 3px 8px;
  border-radius: 7px;
  background: var(--bg-soft);
  border: 1px solid var(--border-color);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--text-light);
  white-space: nowrap;
}
.crop-ratio:empty { display: none; }
.crop-x {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text-light);
  transition: color .18s ease;
}
.crop-x:hover { color: var(--text-dark); }
.crop-stage { display: flex; justify-content: center; min-height: 0; }
.crop-frame {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #15120F;
  touch-action: none;
  cursor: grab;
}
.crop-frame:active { cursor: grabbing; }
.crop-frame.is-round { border-radius: 999px; }
.crop-frame.is-fit { background: #FFFFFF; box-shadow: inset 0 0 0 1px var(--border-color); }
.crop-frame canvas { display: block; width: 100%; height: 100%; }
.crop-guides {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right,  transparent calc(33.333% - 1px), rgba(255,255,255,.26) calc(33.333% - 1px), rgba(255,255,255,.26) 33.333%, transparent 33.333%,
                               transparent calc(66.666% - 1px), rgba(255,255,255,.26) calc(66.666% - 1px), rgba(255,255,255,.26) 66.666%, transparent 66.666%),
    linear-gradient(to bottom, transparent calc(33.333% - 1px), rgba(255,255,255,.26) calc(33.333% - 1px), rgba(255,255,255,.26) 33.333%, transparent 33.333%,
                               transparent calc(66.666% - 1px), rgba(255,255,255,.26) calc(66.666% - 1px), rgba(255,255,255,.26) 66.666%, transparent 66.666%);
}
.crop-frame.is-round .crop-guides,
.crop-frame.is-fit .crop-guides { display: none; }
.crop-row { display: flex; align-items: center; gap: 9px; }
.crop-ico {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--surface);
  color: var(--text-dark);
  transition: background .18s ease;
}
.crop-ico:active { background: var(--bg-soft); }
.crop-toggle {
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--surface);
  color: var(--text-light);
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.crop-toggle.is-on {
  background: var(--accent-bg);
  border-color: var(--accent);
  color: var(--accent);
}
#crop-zoom {
  flex: 1;
  min-width: 0;
  height: 26px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
#crop-zoom::-webkit-slider-runnable-track { height: 5px; border-radius: 999px; background: var(--bg-soft); }
#crop-zoom::-moz-range-track            { height: 5px; border-radius: 999px; background: var(--bg-soft); }
#crop-zoom::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  margin-top: -8.5px;
  border-radius: 999px;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .25);
}
#crop-zoom::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .25);
}
.crop-actions { display: flex; gap: 8px; }
.crop-cancel {
  flex-shrink: 0;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
}
.crop-apply {
  flex: 1;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition: transform .12s ease, opacity .18s ease;
}
.crop-apply:active { transform: scale(.97); }
.crop-apply:disabled { opacity: .6; }
.pos-badge {
  display: none;
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 25;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--surface);
  border: 1.5px solid var(--link);
  color: var(--link);
  font-size: 11px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 1px 4px rgba(28, 25, 23, .18);
  pointer-events: none;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.reordering > [data-sortable-item] > .pos-badge,
.sortable-clone > .pos-badge { display: flex; }
.pos-badge.is-picked {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.reordering > [data-sortable-item].is-picked {
  outline-style: solid;
  outline-color: var(--accent);
}
.reordering > [data-sortable-item]:not(.is-picked):active { transform: scale(.98); }
#reorder-bar {
  position: fixed;
  left: 50%;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(100% - 24px);
  max-width: 380px;
  padding: 8px 8px 8px 12px;
  border-radius: 999px;
  background: var(--text-dark);
  color: #fff;
  box-shadow: 0 12px 32px rgba(28, 25, 23, .34);
  transform: translate(-50%, calc(100% + 28px));
  opacity: 0;
  pointer-events: none;
  transition: transform .22s cubic-bezier(.22, 1, .36, 1), opacity .18s ease;
}
#reorder-bar.on { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.rb-say {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  font-size: 11.5px;
  font-weight: 600;
}
.rb-count {
  flex-shrink: 0;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  font-size: 11px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
#rb-word { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
#reorder-bar.rb-nocount .rb-say { padding-left: 5px; }
.rb-acts { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
#rb-clear {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  transition: background .16s ease;
}
#rb-clear:active { background: rgba(255, 255, 255, .28); }
#rb-save {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .12s ease;
}
#rb-save:active { transform: scale(.96); }
body:has(#reorder-bar.on) .toast { bottom: 4.75rem; }
@media (prefers-reduced-motion: reduce) {
  #reorder-bar { transition: opacity .18s ease; transform: translate(-50%, 0); }
}
.bar-scroll {
  max-height: 30.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.bar-scroll::-webkit-scrollbar { display: none; }
.bar-gone {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text-light);
  border: 1px solid var(--border-color);
}
.bar-scroll.has-more {
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 34px), transparent);
  mask-image: linear-gradient(to bottom, #000 calc(100% - 34px), transparent);
}
.top-menu { position: relative; flex-shrink: 0; }
.top-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px 5px 11px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  transition: border-color .16s ease, color .16s ease;
}
.top-menu-btn:hover { border-color: var(--accent); }
.top-menu-btn:focus { outline: none; }
.top-menu-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.top-menu-btn svg { transition: transform .18s ease; color: var(--text-light); }
.top-menu.is-open .top-menu-btn { border-color: var(--accent); color: var(--accent); }
.top-menu.is-open .top-menu-btn svg { transform: rotate(180deg); color: inherit; }
.top-menu-pop {
  position: absolute;
  z-index: 40;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  padding: 4px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.top-menu-opt {
  display: block;
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  white-space: nowrap;
  transition: background .14s ease;
}
.top-menu-opt:hover { background: var(--bg-soft); }
.top-menu-opt.is-on {
  background: var(--accent-bg);
  color: var(--accent-dark);
  font-weight: 800;
}
section.menu-open { position: relative; z-index: 45; }
.site-footer-nav { row-gap: 10px; }
.foot-break { display: none; }
@media (max-width: 639px) {
  .foot-break { display: block; flex-basis: 100%; height: 0; margin: 0; }
}
.orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.3;
}
.orb-canvas { position: relative; overflow: hidden; }
.orb-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(249, 247, 244, 0) 0%,
    rgba(249, 247, 244, 0.35) 46%,
    rgba(249, 247, 244, 0.88) 74%,
    var(--bg-main) 100%);
}
.orb-canvas.orb-fade-soft::after {
  background: linear-gradient(180deg,
    rgba(239, 235, 229, 0) 0%,
    rgba(239, 235, 229, 0.35) 46%,
    rgba(239, 235, 229, 0.88) 74%,
    var(--bg-soft) 100%);
}
