:root {
    --bs-primary: #f45b5b;
    --bs-primary-dark: #eb4d4b;
    --bs-accent: #ff7675;
    --bs-accent-dark: #d63031;
    --bs-bg: #fff9f9;
    --bs-card-bg: #ffffff;
    --bs-border: #fce4e4;
    --bs-text: #2d3436;
    --bs-sub: #636e72;
    --bs-dark-shelf: #1e272e;
    --bs-pink-light: #fff0f0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bs-bg); color: var(--bs-text); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: 13px; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; transition: 0.2s; }

.bs-topbar { background: #ffffff; border-bottom: 1px solid var(--bs-border); font-size: 12px; height: 36px; line-height: 36px; color: var(--bs-sub); }
.bs-topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; display: flex; justify-content: flex-end; align-items: center; }

.bs-header { background: #ffffff; padding: 16px 0; border-bottom: 1px solid var(--bs-border); }
.bs-header-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; display: flex; justify-content: space-between; align-items: center; }
.bs-logo img { height: 42px; width: auto; max-width: 180px; object-fit: contain; }

.bs-nav-bar { background: #ffffff; border-bottom: 2px solid var(--bs-primary); }
.bs-nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; }
.bs-nav-list { display: flex; list-style: none; flex-wrap: wrap; }
.bs-nav-list li a { display: block; padding: 12px 22px; color: #2d3436; font-size: 14px; font-weight: 700; }
.bs-nav-list li a:hover, .bs-nav-list li.active a { color: var(--bs-primary); }

.bs-notice { max-width: 1280px; margin: 15px auto 0; padding: 10px 15px; background: var(--bs-pink-light); border-left: 4px solid var(--bs-primary); border-radius: 4px; color: var(--bs-primary-dark); font-size: 13px; }

.bs-container { max-width: 1280px; margin: 25px auto; padding: 0 15px; min-height: 60vh; }

.bs-hero-banner { background: linear-gradient(135deg, #f45b5b 0%, #ff7675 100%); color: #ffffff; padding: 40px 25px; text-align: center; border-radius: 12px; margin-bottom: 30px; box-shadow: 0 10px 25px rgba(244,91,91,0.18); }
.bs-hero-banner h1 { font-size: 28px; font-weight: 800; letter-spacing: 1px; margin-bottom: 6px; }
.bs-hero-banner p { font-size: 14px; opacity: 0.95; }

.bs-section-head { display: flex; justify-content: space-between; align-items: center; margin: 35px 0 18px; }
.bs-section-title { font-size: 20px; font-weight: 800; color: #2d3436; display: flex; align-items: center; }
.bs-section-title::before { content: ""; width: 4px; height: 18px; background: var(--bs-primary); margin-right: 8px; border-radius: 2px; }

.bs-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.bs-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bs-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.bs-card-item { background: #ffffff; border: 1px solid var(--bs-border); border-radius: 10px; padding: 18px 14px; text-align: center; transition: 0.2s; position: relative; }
.bs-card-item:hover { border-color: var(--bs-primary); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(244,91,91,0.12); }
.bs-card-img-box { width: 100%; height: 120px; background: #fff5f5; border-radius: 6px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.bs-card-img-box img { max-width: 75px; max-height: 75px; object-fit: contain; }
.bs-card-name { font-size: 13px; font-weight: 700; color: var(--bs-text); height: 36px; overflow: hidden; margin-bottom: 8px; }
.bs-card-price { font-size: 16px; font-weight: 800; color: var(--bs-primary); margin-bottom: 10px; }
.bs-btn-buy { display: block; width: 100%; padding: 7px 0; background: var(--bs-pink-light); color: var(--bs-primary); font-size: 12px; font-weight: bold; text-align: center; border-radius: 6px; border: 1px solid var(--bs-border); }
.bs-btn-buy:hover { background: var(--bs-primary); color: #ffffff; }

.bs-shelf-section { background: var(--bs-dark-shelf); padding: 35px 25px; border-radius: 12px; margin-bottom: 35px; color: #ffffff; }

.bs-box { background: #ffffff; border: 1px solid var(--bs-border); margin-bottom: 25px; padding: 20px; border-radius: 10px; }
.bs-row-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 8px; border-bottom: 1px dashed var(--bs-border); font-size: 13px; }
.bs-row-item:last-child { border-bottom: none; }

.bs-detail-layout { display: flex; gap: 30px; background: #ffffff; border: 1px solid var(--bs-border); padding: 30px; border-radius: 12px; }
.bs-detail-media { flex: 0 0 280px; text-align: center; }
.bs-detail-img-wrap { width: 230px; height: 230px; margin: 0 auto 12px; border: 1px solid var(--bs-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; background: #fff5f5; padding: 12px; }
.bs-detail-img-wrap img { max-width: 190px; max-height: 190px; object-fit: contain; }
.bs-detail-info { flex: 1; }
.bs-detail-name { font-size: 20px; font-weight: bold; color: var(--bs-text); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--bs-border); }
.bs-detail-meta-box { background: var(--bs-pink-light); border: 1px solid var(--bs-border); padding: 15px 20px; border-radius: 8px; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }

.bs-form-group { margin-bottom: 15px; }
.bs-form-label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 13px; color: #475569; }
.bs-input { width: 100%; height: 40px; background: #ffffff; border: 1px solid var(--bs-border); border-radius: 6px; padding: 0 12px; outline: none; font-size: 13px; }
.bs-input:focus { border-color: var(--bs-primary); }
.bs-btn-submit { width: 100%; height: 44px; background: var(--bs-primary); color: #ffffff; font-size: 15px; font-weight: bold; border: none; border-radius: 6px; cursor: pointer; transition: 0.2s; }
.bs-btn-submit:hover { background: var(--bs-primary-dark); }

.bs-footer { background: var(--bs-dark-shelf); color: #94a3b8; padding: 35px 15px; text-align: center; margin-top: 40px; font-size: 13px; }
.bs-footer-links { margin-bottom: 10px; }
.bs-footer-links a { color: #ffffff; margin: 0 10px; font-weight: 500; }
.bs-footer-links a:hover { color: var(--bs-accent); }

@media (max-width: 992px) {
    .bs-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .bs-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .bs-grid-2 { grid-template-columns: 1fr; }
    .bs-detail-layout { flex-direction: column; }
    .bs-detail-media { flex: 1; }
}
@media (max-width: 640px) {
    .bs-grid-5, .bs-grid-4 { grid-template-columns: 1fr; }
    .bs-nav-list li a { padding: 9px 12px; font-size: 13px; }
}
