/* LovePage Shop - 公共样式 */
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:-apple-system,"PingFang SC","Microsoft YaHei",sans-serif;min-height:100vh;background:#fef6f0;color:#333}
.container{max-width:500px;margin:0 auto;padding:20px}
.header{text-align:center;padding:30px 0 20px}
.header h1{font-size:22px;color:#c94b72}
.header p{color:#999;font-size:13px;margin-top:6px}
.card{background:#fff;border-radius:16px;padding:20px;margin-bottom:14px;box-shadow:0 2px 12px rgba(0,0,0,.06);cursor:pointer;transition:transform .2s,box-shadow .2s}
.card:hover{transform:translateY(-2px);box-shadow:0 4px 20px rgba(0,0,0,.1)}
.card .emoji{font-size:28px}
.card .name{font-size:17px;font-weight:600;margin:8px 0 4px}
.card .desc{font-size:12px;color:#888;line-height:1.5}
.card .price{font-size:20px;color:#ff4757;font-weight:700;margin-top:8px}
.card .price small{font-size:12px;color:#bbb;font-weight:400;text-decoration:line-through;margin-left:6px}
.badges{display:flex;justify-content:center;gap:16px;margin-top:20px;font-size:11px;color:#aaa}
.btn{display:block;width:100%;padding:14px;border:none;border-radius:12px;font-size:16px;font-weight:600;cursor:pointer;transition:opacity .2s}
.btn:hover{opacity:.9}
.btn-primary{background:linear-gradient(135deg,#ee9ca7,#c94b72);color:#fff}
.btn-secondary{background:#f5f5f5;color:#666}
.form-group{margin-bottom:16px}
.form-group label{display:block;font-size:13px;color:#666;margin-bottom:6px}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:12px;border:1px solid #eee;border-radius:10px;font-size:14px;outline:none;transition:border .2s}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:#ee9ca7}
.form-group textarea{resize:vertical;min-height:80px}
.style-options{display:flex;gap:10px;flex-wrap:wrap}
.style-opt{flex:1;min-width:80px;padding:10px;border:2px solid #eee;border-radius:10px;text-align:center;cursor:pointer;font-size:12px;transition:border .2s}
.style-opt.active{border-color:#c94b72;background:#fff5f7}
.style-opt .dot{width:20px;height:20px;border-radius:50%;margin:0 auto 4px}
.back-link{display:inline-block;margin-bottom:16px;color:#c94b72;font-size:13px;text-decoration:none}
.order-summary{background:#fff5f7;border-radius:12px;padding:16px;margin:16px 0}
.order-summary .row{display:flex;justify-content:space-between;padding:6px 0;font-size:13px}
.order-summary .row.total{font-size:18px;font-weight:700;color:#c94b72;border-top:1px solid #f0d0d8;margin-top:8px;padding-top:10px}
.status-icon{font-size:48px;text-align:center;margin:30px 0 10px}
.status-text{text-align:center;font-size:15px;color:#666;line-height:1.8}
