:root {
    --id-primary: #00a86b;
    --id-primary-dark: #008f5a;
    --id-accent: #ff4757;
    --id-accent-dark: #ee5253;
    --id-bg: #f8fafc;
    --id-card-bg: #ffffff;
    --id-border: #e2e8f0;
    --id-text: #2f3542;
    --id-sub: #747d8c;
    --id-dark: #1e272e;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--id-bg); color: var(--id-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; }

.id-topbar { background: #ffffff; border-bottom: 1px solid var(--id-border); font-size: 12px; height: 36px; line-height: 36px; color: var(--id-sub); }
.id-topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; display: flex; justify-content: flex-end; align-items: center; }

.id-header { background: var(--id-primary); padding: 16px 0; color: #ffffff; }
.id-header-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; display: flex; justify-content: space-between; align-items: center; }
.id-logo img { height: 42px; width: auto; max-width: 180px; object-fit: contain; filter: brightness(1.2); }

.id-nav-bar { background: #ffffff; border-bottom: 2px solid var(--id-primary); }
.id-nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; }
.id-nav-list { display: flex; list-style: none; flex-wrap: wrap; }
.id-nav-list li a { display: block; padding: 12px 22px; color: var(--id-text); font-size: 14px; font-weight: 700; }
.id-nav-list li a:hover, .id-nav-list li.active a { color: var(--id-primary); }

.id-notice { max-width: 1280px; margin: 15px auto 0; padding: 10px 15px; background: #eafaf1; border-left: 4px solid var(--id-primary); border-radius: 4px; color: var(--id-primary-dark); font-size: 13px; }

.id-container { max-width: 1280px; margin: 25px auto; padding: 0 15px; min-height: 60vh; }

.id-hero-banner { background: linear-gradient(135deg, #00a86b 0%, #008f5a 100%); color: #ffffff; padding: 40px 25px; text-align: center; border-radius: 12px; margin-bottom: 30px; box-shadow: 0 10px 25px rgba(0,168,107,0.15); }
.id-hero-banner h1 { font-size: 28px; font-weight: 800; letter-spacing: 1px; margin-bottom: 6px; }
.id-hero-banner p { font-size: 14px; opacity: 0.95; }

.id-section-head { display: flex; justify-content: space-between; align-items: center; margin: 35px 0 18px; }
.id-section-title { font-size: 20px; font-weight: 800; color: var(--id-text); display: flex; align-items: center; }
.id-section-title::before { content: ""; width: 4px; height: 18px; background: var(--id-primary); margin-right: 8px; border-radius: 2px; }

.id-grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
.id-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.id-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.id-card-item { background: #ffffff; border: 1px solid var(--id-border); border-radius: 10px; padding: 16px; text-align: center; transition: 0.2s; position: relative; }
.id-card-item:hover { border-color: var(--id-primary); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,168,107,0.1); }
.id-card-badge { position: absolute; top: 10px; left: 10px; background: #eafaf1; color: var(--id-primary); font-size: 10px; font-weight: bold; padding: 2px 6px; border-radius: 3px; border: 1px solid var(--id-primary); }

.id-card-img-box { width: 100%; height: 110px; background: #f8fafc; border-radius: 6px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.id-card-img-box img { max-width: 70px; max-height: 70px; object-fit: contain; }
.id-card-name { font-size: 13px; font-weight: 700; color: var(--id-text); height: 36px; overflow: hidden; margin-bottom: 8px; }
.id-card-price { font-size: 16px; font-weight: 800; color: var(--id-accent); margin-bottom: 10px; }
.id-btn-buy { display: block; width: 100%; padding: 7px 0; background: var(--id-accent); color: #ffffff; font-size: 12px; font-weight: bold; text-align: center; border-radius: 6px; }
.id-btn-buy:hover { background: var(--id-accent-dark); }

.id-box { background: #ffffff; border: 1px solid var(--id-border); margin-bottom: 25px; padding: 20px; border-radius: 10px; }
.id-row-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 8px; border-bottom: 1px dashed var(--id-border); font-size: 13px; }
.id-row-item:last-child { border-bottom: none; }

.id-detail-layout { display: flex; gap: 30px; background: #ffffff; border: 1px solid var(--id-border); padding: 30px; border-radius: 12px; }
.id-detail-media { flex: 0 0 280px; text-align: center; }
.id-detail-img-wrap { width: 230px; height: 230px; margin: 0 auto 12px; border: 1px solid var(--id-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; background: #f8fafc; padding: 12px; }
.id-detail-img-wrap img { max-width: 190px; max-height: 190px; object-fit: contain; }
.id-detail-info { flex: 1; }
.id-detail-name { font-size: 20px; font-weight: bold; color: var(--id-text); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--id-border); }
.id-detail-meta-box { background: #eafaf1; border: 1px solid #c7f0d8; padding: 15px 20px; border-radius: 8px; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }

.id-form-group { margin-bottom: 15px; }
.id-form-label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 13px; color: #475569; }
.id-input { width: 100%; height: 40px; background: #ffffff; border: 1px solid var(--id-border); border-radius: 6px; padding: 0 12px; outline: none; font-size: 13px; }
.id-input:focus { border-color: var(--id-primary); }
.id-btn-submit { width: 100%; height: 44px; background: var(--id-accent); color: #ffffff; font-size: 15px; font-weight: bold; border: none; border-radius: 6px; cursor: pointer; transition: 0.2s; }
.id-btn-submit:hover { background: var(--id-accent-dark); }

.id-footer { background: var(--id-dark); color: #94a3b8; padding: 35px 15px; text-align: center; margin-top: 40px; font-size: 13px; }
.id-footer-links { margin-bottom: 10px; }
.id-footer-links a { color: #ffffff; margin: 0 10px; font-weight: 500; }
.id-footer-links a:hover { color: var(--id-accent); }

@media (max-width: 992px) {
    .id-grid-6 { grid-template-columns: repeat(3, 1fr); }
    .id-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .id-grid-2 { grid-template-columns: 1fr; }
    .id-detail-layout { flex-direction: column; }
    .id-detail-media { flex: 1; }
}
@media (max-width: 640px) {
    .id-grid-6 { grid-template-columns: repeat(2, 1fr); }
    .id-grid-4 { grid-template-columns: 1fr; }
    .id-nav-list li a { padding: 9px 12px; font-size: 13px; }
}
