:root {
    --mo-bg: #fcfbfa;
    --mo-surface: #ffffff;
    --mo-border: #c5a059;
    --mo-burgundy: #5c0612;
    --mo-text-main: #231215;
    --mo-text-sub: #7d6b6e;
    --mo-price: #9d1c32;
    --mo-shadow: 0 12px 30px rgba(92, 6, 18, 0.04);
    --mo-radius: 4px;
}
body { margin: 0; background-color: var(--mo-bg); color: var(--mo-text-main); font-family: "Georgia", "STSong", "Songti SC", serif; -webkit-font-smoothing: antialiased; }
.mo-header { background-color: var(--mo-surface); border-bottom: 3px double var(--mo-border); padding: 22px 0; }
.mo-nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; box-sizing: border-box; }
.mo-logo img { height: 28px; filter: contrast(1.1) brightness(0.9); }
.mo-menu { display: flex; gap: 40px; }
.mo-menu a { text-decoration: none; color: var(--mo-text-sub); font-weight: 700; font-size: 14px; transition: 0.3s; }
.mo-menu a:hover { color: var(--mo-burgundy); }
.mo-container { max-width: 1400px; margin: 40px auto; padding: 0 24px; box-sizing: border-box; }
.mo-notice { background: var(--mo-surface); border-radius: var(--mo-radius); border: 3px double var(--mo-border); padding: 18px 24px; box-shadow: var(--mo-shadow); font-size: 13px; color: var(--mo-text-main); line-height: 1.6; display: flex; align-items: center; gap: 12px; }
.mo-notice i { color: var(--mo-burgundy); font-size: 18px; }
.mo-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
.mo-card { background-color: var(--mo-surface); border: 3px double var(--mo-border); border-radius: var(--mo-radius); padding: 16px; text-decoration: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: var(--mo-shadow); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.mo-card:hover { transform: translateY(-4px); border-color: var(--mo-burgundy); box-shadow: 0 15px 35px rgba(92, 6, 18, 0.12); }
.mo-img-box { width: 100%; aspect-ratio: 1; background: #faf8f5; border-radius: 2px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; border: 1px solid var(--mo-border); }
.mo-img-box img { width: 60%; height: 60%; object-fit: contain; transition: 0.3s; }
.mo-card:hover .mo-img-box img { transform: scale(1.04); }
.mo-name { font-size: 13px; font-weight: 700; color: var(--mo-text-main); height: 38px; line-height: 1.4; overflow: hidden; margin-bottom: 12px; font-family: "PingFang SC", sans-serif; }
.mo-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; border-top: 1px solid #f5f2ed; padding-top: 10px; }
.mo-price { color: var(--mo-price); font-weight: 800; font-size: 16px; }
.mo-sell { font-size: 11px; color: var(--mo-text-sub); }
.mo-tag { position: absolute; top: 12px; left: 12px; background: rgba(92, 6, 18, 0.1); color: var(--mo-burgundy); font-size: 10px; padding: 2px 6px; border-radius: 2px; font-weight: bold; border: 1px solid var(--mo-burgundy); }
.mo-detail-grid { display: grid; grid-template-columns: 1.30fr 1fr; gap: 32px; }
.mo-box { background: var(--mo-surface); border-radius: 4px; padding: 35px; border: 3px double var(--mo-border); box-shadow: var(--mo-shadow); }
.mo-h1 { font-size: 24px; font-weight: 800; margin: 0 0 20px 0; color: var(--mo-text-main); font-family: "PingFang SC", sans-serif; }
.mo-input { width: 100%; height: 46px; background: #faf8f5; border: 1px solid var(--mo-border); border-radius: 4px; padding: 0 15px; font-size: 14px; box-sizing: border-box; outline: none; transition: 0.3s; margin-top: 8px; color: var(--mo-text-main); font-family: "PingFang SC", sans-serif; }
.mo-input:focus { border-color: var(--mo-burgundy); background: var(--mo-surface); }
.mo-label { display: block; font-size: 12px; font-weight: 700; color: var(--mo-text-sub); font-family: "PingFang SC", sans-serif; }
.mo-btn { width: 100%; height: 50px; background: var(--mo-burgundy); color: var(--mo-surface); border: none; border-radius: 4px; font-size: 15px; font-weight: 700; cursor: pointer; transition: 0.3s; margin-top: 20px; font-family: "PingFang SC", sans-serif; }
.mo-btn:hover { background: var(--mo-border); color: var(--mo-burgundy); }
.mo-footer { background: var(--mo-surface); border-top: 3px double var(--mo-border); padding: 50px 0; margin-top: 80px; text-align: center; }
@media (max-width: 1400px) { .mo-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 1000px) { .mo-grid { grid-template-columns: repeat(3, 1fr); } .mo-detail-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .mo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }