/* 柚橙意 · PC 设计系统 — 柚香清新 */
:root {
  --ycy-peach: #FF7A29;
  --ycy-tangerine: #FF9A4D;
  --ycy-pulp: #FFF4EB;
  --ycy-cream: #FFFAF5;
  --ycy-ink: #2C2118;
  --ycy-muted: #8B7355;
  --ycy-line: #F0E0D0;
  --ycy-white: #FFFFFF;
  --ycy-success: #2F9E6B;
  --ycy-danger: #E5484D;
  --ycy-radius: 18px;
  --ycy-shadow: 0 12px 32px rgba(255, 122, 41, 0.12);
  --ycy-font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --ycy-display: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  --ycy-max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.ycy-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--ycy-font);
  color: var(--ycy-ink);
  background:
    radial-gradient(900px 420px at 8% -10%, rgba(255, 154, 77, 0.22), transparent 60%),
    radial-gradient(700px 360px at 100% 0%, rgba(255, 122, 41, 0.12), transparent 55%),
    var(--ycy-cream);
  line-height: 1.6;
}

a { color: var(--ycy-peach); text-decoration: none; }
a:hover { color: #e56512; }
img { max-width: 100%; display: block; }

.ycy-container { width: min(var(--ycy-max), calc(100% - 40px)); margin: 0 auto; }

/* Header */
.ycy-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 250, 245, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(240, 224, 208, 0.9);
}
.ycy-header-inner {
  min-height: 68px;
  display: flex; align-items: center; gap: 24px;
}
.ycy-logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ycy-ink); font-weight: 900; white-space: nowrap;
}
.ycy-logo:hover { color: var(--ycy-ink); }
.ycy-logo-mark {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ycy-tangerine), var(--ycy-peach));
  color: #fff; font-family: var(--ycy-display); font-size: 20px;
  box-shadow: 0 8px 18px rgba(255, 122, 41, 0.28);
}
.ycy-logo-text { font-size: 1.2rem; letter-spacing: 0.02em; }
.ycy-logo-sm .ycy-logo-mark { width: 32px; height: 32px; font-size: 16px; }

.ycy-nav {
  display: flex; gap: 6px; flex: 1; align-items: center;
}
.ycy-nav a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  color: var(--ycy-muted); font-weight: 600; font-size: 0.95rem;
}
.ycy-nav a:hover, .ycy-nav a.is-active {
  color: var(--ycy-peach); background: var(--ycy-pulp);
}
.ycy-header-actions {
  display: flex; align-items: center; gap: 10px;
}
.ycy-link-muted { color: var(--ycy-muted); font-size: 0.85rem; }
.ycy-user-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--ycy-line);
  color: var(--ycy-ink); font-weight: 600;
}

/* Buttons */
.ycy-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 18px; border: 0; border-radius: 12px;
  background: linear-gradient(135deg, var(--ycy-tangerine), var(--ycy-peach));
  color: #fff !important; font-weight: 700; cursor: pointer;
  box-shadow: 0 8px 18px rgba(255, 122, 41, 0.25);
  transition: transform .15s ease, filter .15s ease;
}
.ycy-btn:hover { filter: brightness(1.05); transform: translateY(-1px); color: #fff !important; }
.ycy-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.ycy-btn-sm { min-height: 36px; padding: 0 12px; font-size: 0.9rem; border-radius: 10px; }
.ycy-btn-ghost {
  background: #fff; color: var(--ycy-peach) !important;
  border: 1px solid #ffd2b0; box-shadow: none;
}
.ycy-btn-ghost:hover { background: var(--ycy-pulp); color: var(--ycy-peach) !important; }
.ycy-btn-block { width: 100%; }

/* Hero */
.ycy-hero {
  padding: 48px 0 28px;
  position: relative;
}
.ycy-hero-title {
  font-family: var(--ycy-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--ycy-ink);
  letter-spacing: 0.04em;
}
.ycy-hero-sub { color: var(--ycy-muted); margin: 0 0 22px; font-size: 1.05rem; }
.ycy-hero-title { animation: ycy-fade-up .55s ease both; }
.ycy-hero-sub { animation: ycy-fade-up .55s .08s ease both; }
.ycy-filter { animation: ycy-fade-up .55s .14s ease both; }
@keyframes ycy-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Filter */
.ycy-filter {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--ycy-line);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--ycy-shadow);
}
.ycy-filter-inner {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
.ycy-input {
  min-height: 42px; border-radius: 12px;
  border: 1px solid var(--ycy-line);
  background: #fff; padding: 0 12px;
  color: var(--ycy-ink); font: inherit;
  flex: 1 1 110px; max-width: 150px;
}
.ycy-input:focus {
  outline: none; border-color: var(--ycy-peach);
  box-shadow: 0 0 0 3px rgba(255,122,41,.15);
}
.ycy-input-grow { max-width: none; flex: 1 1 160px; min-width: 120px; }
select.ycy-input { appearance: auto; }

/* Dynamic bar */
.ycy-ticker {
  display: flex; align-items: center; gap: 12px;
  margin: 22px 0 8px; padding: 10px 14px;
  background: #fff; border-radius: 999px;
  border: 1px solid var(--ycy-line);
  overflow: hidden;
}
.ycy-ticker b {
  color: var(--ycy-peach); white-space: nowrap; font-size: 0.9rem;
}
.ycy-ticker-track {
  display: flex; gap: 28px; animation: ycy-marquee 28s linear infinite;
  white-space: nowrap; color: var(--ycy-muted); font-size: 0.9rem;
}
@keyframes ycy-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Section */
.ycy-section { padding: 18px 0 40px; }
.ycy-section-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 16px;
}
.ycy-section-head h2 {
  margin: 0; font-size: 1.35rem; font-weight: 800;
}
.ycy-section-head a { font-size: 0.9rem; font-weight: 600; }

/* Cards grid */
.ycy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ycy-card {
  --ycy-card-lift: 0px;
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(240,224,208,.95);
  color: inherit;
  box-shadow:
    0 8px 22px rgba(44,33,24,.05),
    0 1px 0 rgba(255,255,255,.8) inset;
  transform: translateY(var(--ycy-card-lift)) scale(1);
  transition:
    transform .38s cubic-bezier(.22,.68,0,1.2),
    box-shadow .35s ease,
    border-color .3s ease;
  will-change: transform;
  animation: ycy-card-in .55s cubic-bezier(.22,.8,.3,1) both;
}
.ycy-grid .ycy-card:nth-child(1) { animation-delay: .02s; }
.ycy-grid .ycy-card:nth-child(2) { animation-delay: .07s; }
.ycy-grid .ycy-card:nth-child(3) { animation-delay: .12s; }
.ycy-grid .ycy-card:nth-child(4) { animation-delay: .17s; }
.ycy-grid .ycy-card:nth-child(5) { animation-delay: .22s; }
.ycy-grid .ycy-card:nth-child(6) { animation-delay: .27s; }
.ycy-grid .ycy-card:nth-child(7) { animation-delay: .32s; }
.ycy-grid .ycy-card:nth-child(8) { animation-delay: .37s; }
.ycy-grid .ycy-card:nth-child(n+9) { animation-delay: .42s; }

@keyframes ycy-card-in {
  from { opacity: 0; transform: translateY(22px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.ycy-card::before {
  content: "";
  position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none; z-index: 3; opacity: 0;
  transition: opacity .35s ease;
  box-shadow: inset 0 0 0 1.5px rgba(255,122,41,.35);
}
.ycy-card::after {
  content: "";
  position: absolute; top: -40%; left: -60%;
  width: 45%; height: 180%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.45) 48%, rgba(255,255,255,.15) 52%, transparent 70%);
  transform: rotate(18deg) translateX(0);
  opacity: 0; pointer-events: none; z-index: 2;
}
.ycy-card:hover {
  --ycy-card-lift: -8px;
  transform: translateY(var(--ycy-card-lift)) scale(1.015);
  border-color: rgba(255,168,110,.75);
  box-shadow: 0 18px 40px rgba(255,122,41,.18), 0 8px 16px rgba(44,33,24,.06);
  color: inherit;
}
.ycy-card:hover::before { opacity: 1; }
.ycy-card:hover::after {
  opacity: 1;
  animation: ycy-shine .85s ease forwards;
}
@keyframes ycy-shine {
  from { transform: rotate(18deg) translateX(0); }
  to { transform: rotate(18deg) translateX(320%); }
}

.ycy-badge {
  position: absolute; top: 12px; left: 12px; z-index: 4;
  background: linear-gradient(135deg, var(--ycy-tangerine), var(--ycy-peach));
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(255,122,41,.35);
  animation: ycy-badge-pop .5s .2s both;
}
.ycy-badge.is-pulse {
  animation: ycy-badge-pop .5s .2s both, ycy-pulse 2.2s 1s ease-in-out infinite;
}
@keyframes ycy-badge-pop {
  from { opacity: 0; transform: scale(.7) translateY(-4px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes ycy-pulse {
  0%, 100% { box-shadow: 0 6px 14px rgba(255,122,41,.35); }
  50% { box-shadow: 0 6px 20px rgba(255,122,41,.55), 0 0 0 6px rgba(255,122,41,.12); }
}

.ycy-card-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,200,150,.35), transparent 50%),
    var(--ycy-pulp);
}
.ycy-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s cubic-bezier(.22,.68,0,1.1), filter .4s ease;
  transform-origin: center 30%;
}
.ycy-card:hover .ycy-card-photo img {
  transform: scale(1.08);
  filter: saturate(1.08) brightness(1.03);
}
.ycy-card-fade {
  position: absolute; inset: auto 0 0 0; height: 48%;
  background: linear-gradient(transparent, rgba(44,33,24,.28));
  pointer-events: none;
  transition: opacity .35s ease;
}
.ycy-card:hover .ycy-card-fade { opacity: .85; }

.ycy-card-body {
  padding: 14px 15px 16px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
  position: relative; z-index: 1;
}
.ycy-card-title {
  margin: 0; font-size: 1.08rem; font-weight: 800;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  letter-spacing: .01em;
  transition: color .25s ease;
}
.ycy-card:hover .ycy-card-title { color: var(--ycy-peach); }

.ycy-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.ycy-chips span {
  background: var(--ycy-pulp); color: #c45c12;
  font-size: 12px; padding: 3px 9px; border-radius: 999px; font-weight: 600;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.ycy-card:hover .ycy-chips span {
  background: #ffe8d4;
  box-shadow: 0 2px 8px rgba(255,122,41,.12);
}
.ycy-card:hover .ycy-chips span:nth-child(1) { transform: translateY(-1px); }
.ycy-card:hover .ycy-chips span:nth-child(2) { transform: translateY(-2px); transition-delay: .03s; }
.ycy-card:hover .ycy-chips span:nth-child(3) { transform: translateY(-1px); transition-delay: .06s; }
.ycy-card:hover .ycy-chips span:nth-child(4) { transform: translateY(-2px); transition-delay: .09s; }

.ycy-card-desc {
  margin: 0; color: var(--ycy-muted); font-size: 0.88rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.6em; line-height: 1.5;
}
.ycy-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 8px;
  border-top: 1px dashed transparent;
  transition: border-color .3s ease;
}
.ycy-card:hover .ycy-card-foot { border-top-color: rgba(255,200,160,.55); }

.ycy-price {
  color: var(--ycy-peach); font-weight: 900; font-size: 1.08rem;
  transition: transform .3s cubic-bezier(.22,.68,0,1.2);
}
.ycy-card:hover .ycy-price { transform: scale(1.06); }
.ycy-price small { font-size: 0.75rem; font-weight: 700; margin-left: 2px; }

.ycy-card-cta {
  color: var(--ycy-muted); font-size: 0.82rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  transition: color .25s ease, transform .3s ease;
}
.ycy-card-cta i {
  transition: transform .3s cubic-bezier(.22,.68,0,1.2);
  font-size: .75rem;
}
.ycy-card:hover .ycy-card-cta { color: var(--ycy-peach); transform: translateX(2px); }
.ycy-card:hover .ycy-card-cta i { transform: translateX(4px); }

/* Empty */
.ycy-empty {
  text-align: center; padding: 48px 20px;
  background: #fff; border-radius: var(--ycy-radius);
  border: 1px dashed var(--ycy-line); color: var(--ycy-muted);
}

/* Surface panels */
.ycy-surface {
  background: #fff;
  border: 1px solid var(--ycy-line);
  border-radius: var(--ycy-radius);
  box-shadow: 0 8px 24px rgba(44,33,24,.04);
  padding: 22px;
}

/* Detail */
.ycy-detail-hero {
  display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap;
}
.ycy-detail-avatar {
  width: 140px; height: 140px; border-radius: 22px; object-fit: cover;
  box-shadow: 0 12px 28px rgba(255,122,41,.2);
  background: var(--ycy-pulp);
}
.ycy-detail-title {
  margin: 0 0 8px; font-family: var(--ycy-display);
  font-size: 1.8rem; font-weight: 400;
}
.ycy-lock {
  text-align: center; padding: 28px 18px;
  border: 1px dashed #ffc9a3; border-radius: 16px;
  background: linear-gradient(180deg, #fffaf6, #fff);
}
.ycy-lock-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.ycy-price-list { list-style: none; padding: 0; margin: 14px auto; max-width: 260px; }
.ycy-price-list li {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--ycy-line); font-size: 0.92rem;
}
.ycy-gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 8px;
}
.ycy-gallery img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px;
}
.ycy-detail-list { padding-left: 1.1rem; }
.ycy-detail-list li { margin-bottom: .55rem; line-height: 1.65; }

/* Auth */
.ycy-auth-page {
  min-height: 100vh; display: grid; place-items: center; padding: 32px 16px;
  background:
    radial-gradient(700px 360px at 10% 0%, rgba(255,154,77,.25), transparent 60%),
    var(--ycy-cream);
}
.ycy-auth-card {
  width: min(440px, 100%);
  background: #fff; border-radius: 22px;
  border: 1px solid var(--ycy-line);
  box-shadow: var(--ycy-shadow);
  padding: 32px 28px;
}
.ycy-auth-card h1 {
  font-family: var(--ycy-display); font-weight: 400;
  font-size: 1.8rem; margin: 0 0 6px; text-align: center;
}
.ycy-auth-card .sub { text-align: center; color: var(--ycy-muted); margin-bottom: 22px; }
.ycy-field { margin-bottom: 14px; }
.ycy-field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 0.92rem; }
.ycy-field .ycy-input { width: 100%; max-width: none; }

/* Alerts */
.ycy-alert {
  border-radius: 12px; padding: 12px 14px; margin-bottom: 14px; font-size: 0.95rem;
}
.ycy-alert-danger { background: #fff1f0; color: #b42318; border: 1px solid #ffd0cc; }
.ycy-alert-success { background: #ecfdf3; color: #027a48; border: 1px solid #abefc6; }
.ycy-alert-info { background: #fff7ed; color: #9a3412; border: 1px solid #fed7aa; }

/* Footer */
.ycy-footer {
  margin-top: 40px; padding: 36px 0 28px;
  background: #2C2118; color: rgba(255,255,255,.78);
}
.ycy-footer a { color: rgba(255,255,255,.86); }
.ycy-footer .ycy-logo { color: #fff; }
.ycy-footer-grid {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.ycy-footer-desc { color: rgba(255,255,255,.6); max-width: 360px; margin: 10px 0 0; font-size: 0.92rem; }
.ycy-footer-links { display: flex; flex-direction: column; gap: 8px; font-weight: 600; }
.ycy-footer-copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 16px; font-size: 0.85rem; color: rgba(255,255,255,.45);
  text-align: center;
}

/* Tables / orders */
.ycy-table-wrap { overflow-x: auto; }
.ycy-table { width: 100%; border-collapse: collapse; }
.ycy-table th, .ycy-table td {
  padding: 12px 10px; border-bottom: 1px solid var(--ycy-line);
  text-align: left; font-size: 0.92rem;
}
.ycy-table th { color: var(--ycy-muted); font-weight: 700; background: var(--ycy-pulp); }
.ycy-stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px;
}
.ycy-stat {
  background: #fff; border: 1px solid var(--ycy-line); border-radius: 14px; padding: 14px;
}
.ycy-stat .label { color: var(--ycy-muted); font-size: 0.85rem; }
.ycy-stat .value { font-size: 1.4rem; font-weight: 900; color: var(--ycy-ink); margin-top: 4px; }

/* Sticky side buy */
.ycy-sticky { position: sticky; top: 84px; }

/* Responsive PC still ok on tablet */
@media (max-width: 1024px) {
  .ycy-grid { grid-template-columns: repeat(3, 1fr); }
  .ycy-nav span { display: none; }
}
@media (max-width: 768px) {
  .ycy-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ycy-header-actions .ycy-link-muted { display: none; }
  .ycy-stat-row { grid-template-columns: repeat(2, 1fr); }
  .ycy-filter-inner .ycy-input { max-width: none; flex: 1 1 calc(50% - 10px); }
  .ycy-nav { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ycy-ticker-track { animation: none; }
  .ycy-card, .ycy-btn { transition: none; animation: none; }
  .ycy-card:hover { transform: none; }
  .ycy-card:hover::after { animation: none; opacity: 0; }
  .ycy-card:hover .ycy-card-photo img { transform: none; }
  .ycy-badge, .ycy-badge.is-pulse { animation: none; }
}

@media (hover: none) {
  .ycy-card:hover {
    --ycy-card-lift: -2px;
    transform: translateY(-2px) scale(1);
  }
  .ycy-card:active {
    transform: scale(.98);
    transition-duration: .12s;
  }
  .ycy-card:hover::after { animation: none; opacity: 0; }
}


/* PC 不显示手机底栏挂件；避免列表样式漏出 */
.kp-mobile-nav { display: none !important; }
@media (max-width: 768px) {
  .kp-mobile-nav {
    display: block !important;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    background: rgba(255,255,255,.96);
    border-top: 1px solid #f0e0d0;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .kp-mobile-nav ul {
    list-style: none !important;
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .kp-mobile-nav li { list-style: none !important; }
  .kp-mobile-nav a {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2px; padding: 8px 4px; color: #8B7355; font-size: 11px; font-weight: 600; text-decoration: none;
  }
  .kp-mobile-nav a.active, .kp-mobile-nav a:hover { color: #FF7A29; }
  .kp-mobile-nav i { font-size: 18px; }
  body.ycy-body { padding-bottom: 64px; }
}


.ycy-cat-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 14px;
}
.ycy-cat-tab {
  display: inline-flex; align-items: center;
  padding: 7px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--ycy-line);
  color: var(--ycy-muted); font-weight: 700; font-size: .88rem;
  text-decoration: none;
  transition: all .2s ease;
}
.ycy-cat-tab:hover { color: var(--ycy-peach); border-color: #ffd2b0; }
.ycy-cat-tab.is-on {
  background: linear-gradient(135deg, var(--ycy-tangerine), var(--ycy-peach));
  color: #fff !important; border-color: transparent;
  box-shadow: 0 6px 14px rgba(255,122,41,.25);
}
.ycy-chip-cat {
  background: #fff3e8 !important;
  color: #c45c12 !important;
  border: 1px solid #ffd9b8;
}


/* ===== 相册灯箱：点击放大 + 左右切换 ===== */
.ycy-gallery, .m-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}
.ycy-gallery img, .m-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease;
  background: #f3f3f3;
}
.ycy-gallery img:hover, .m-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
body.ycy-lb-open { overflow: hidden; }
.ycy-lb {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
}
.ycy-lb[hidden] { display: none !important; }
.ycy-lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 8, 6, .88);
  backdrop-filter: blur(4px);
}
.ycy-lb-stage {
  position: relative;
  z-index: 2;
  width: min(92vw, 920px);
  height: min(78vh, 820px);
  display: flex; align-items: center; justify-content: center;
  touch-action: pan-y;
}
.ycy-lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  user-select: none;
  -webkit-user-drag: none;
}
.ycy-lb-counter {
  position: absolute;
  left: 50%; bottom: -36px; transform: translateX(-50%);
  color: rgba(255,255,255,.9);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
}
.ycy-lb-close {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 42px; height: 42px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.14); color: #fff; font-size: 28px; line-height: 1;
  cursor: pointer;
}
.ycy-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.16); color: #fff; font-size: 24px;
  cursor: pointer;
  display: grid; place-items: center;
}
.ycy-lb-prev { left: 12px; }
.ycy-lb-next { right: 12px; }
.ycy-lb-close:hover, .ycy-lb-nav:hover { background: rgba(255,122,41,.9); }
@media (max-width: 768px) {
  .ycy-lb-nav { width: 40px; height: 40px; font-size: 20px; }
  .ycy-lb-stage { height: min(70vh, 700px); width: 94vw; }
  .ycy-gallery, .m-gallery { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

.ycy-desktop-tip{background:#2C2118;color:#fff;text-align:center;padding:10px 12px;font-size:.9rem;font-weight:600}
.ycy-desktop-tip a{color:#FFB07A;text-decoration:underline;margin-left:6px}
.ycy-switch-mobile{font-weight:700!important;color:var(--ycy-peach)!important}


.ycy-chip-photo, .m-chip-photo {
  background: linear-gradient(135deg, #FF9A4D, #FF7A29) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 800 !important;
}
.ycy-has-photo-banner, .m-has-photo {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #FF9A4D, #FF7A29);
  color: #fff; font-weight: 800; font-size: .9rem;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 10px;
}
.ycy-service-code, .m-service-code {
  background: linear-gradient(180deg, #fff7f0, #fff);
  border: 1px dashed #ffc9a3; border-radius: 14px;
  padding: 14px 16px; margin: 10px 0 14px; text-align: center;
}
.ycy-service-code span, .m-service-code .lab {
  display: block; color: #8B7355; font-size: .85rem; margin-bottom: 4px;
}
.ycy-service-code strong, .m-service-code .val {
  font-size: 1.6rem; color: #FF6B1A; letter-spacing: .08em; font-weight: 900;
}
.m-service-code .tip { color: #8B7355; font-size: .82rem; margin-top: 6px; }
