:root {
    --hst-primary: #95c11f;
    --hst-primary-dark: #7fa815;
    --hst-accent: #f59e0b;
    --hst-bg: #f9fbf4;
    --hst-card-bg: #ffffff;
    --hst-border: #e8eee0;
    --hst-text: #2d3748;
    --hst-sub: #718096;
    --hst-dark: #2d3748;
    --hst-green-light: #f2f8e6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--hst-bg); color: var(--hst-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; }

.hst-topbar { background: #ffffff; border-bottom: 1px solid var(--hst-border); font-size: 12px; height: 36px; line-height: 36px; color: var(--hst-sub); }
.hst-topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; display: flex; justify-content: flex-end; align-items: center; }

.hst-header { background: #ffffff; padding: 15px 0; border-bottom: 1px solid var(--hst-border); }
.hst-header-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; display: flex; justify-content: space-between; align-items: center; }
.hst-logo img { height: 44px; width: auto; max-width: 180px; object-fit: contain; }

.hst-nav-bar { background: #ffffff; border-bottom: 2px solid var(--hst-primary); }
.hst-nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; }
.hst-nav-list { display: flex; list-style: none; flex-wrap: wrap; }
.hst-nav-list li a { display: block; padding: 12px 22px; color: #334155; font-size: 14px; font-weight: 700; }
.hst-nav-list li a:hover, .hst-nav-list li.active a { color: var(--hst-primary); }

.hst-notice { max-width: 1280px; margin: 15px auto 0; padding: 10px 15px; background: var(--hst-green-light); border-left: 4px solid var(--hst-primary); border-radius: 4px; color: var(--hst-primary-dark); font-size: 13px; }

.hst-container { max-width: 1280px; margin: 25px auto; padding: 0 15px; min-height: 60vh; }

.hst-hero-banner { background: linear-gradient(135deg, #95c11f 0%, #7fa815 100%); color: #ffffff; padding: 40px 25px; text-align: center; border-radius: 12px; margin-bottom: 30px; box-shadow: 0 10px 25px rgba(149,193,31,0.2); }
.hst-hero-banner h1 { font-size: 28px; font-weight: 800; letter-spacing: 1px; margin-bottom: 6px; }
.hst-hero-banner p { font-size: 14px; opacity: 0.9; }

.hst-section-head { text-align: center; margin: 35px 0 20px; }
.hst-section-title { font-size: 22px; font-weight: 800; color: #0f172a; }
.hst-section-sub { font-size: 13px; color: var(--hst-primary-dark); font-weight: 600; margin-top: 3px; }

.hst-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.hst-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hst-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hst-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.hst-bowl-card { background: #ffffff; border: 1px solid var(--hst-border); border-radius: 12px; padding: 25px 20px; text-align: center; transition: 0.2s; }
.hst-bowl-card:hover { transform: translateY(-3px); border-color: var(--hst-primary); box-shadow: 0 8px 20px rgba(149,193,31,0.15); }
.hst-bowl-icon { width: 64px; height: 64px; margin: 0 auto 12px; border-radius: 50%; background: #fdfaf3; border: 2px dashed #d7ccc8; display: flex; align-items: center; justify-content: center; }
.hst-bowl-icon img { max-width: 40px; max-height: 40px; object-fit: contain; }

.hst-card-item { background: #ffffff; border: 1px solid var(--hst-border); border-radius: 10px; padding: 16px; text-align: center; transition: 0.2s; position: relative; }
.hst-card-item:hover { border-color: var(--hst-primary); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(149,193,31,0.12); }
.hst-card-img-box { width: 100%; height: 110px; background: #f8fafc; border-radius: 8px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.hst-card-img-box img { max-width: 70px; max-height: 70px; object-fit: contain; }
.hst-card-name { font-size: 13px; font-weight: 700; color: var(--hst-text); height: 36px; overflow: hidden; margin-bottom: 8px; }
.hst-card-price { font-size: 16px; font-weight: 800; color: var(--hst-primary-dark); margin-bottom: 10px; }
.hst-btn-buy { display: block; width: 100%; padding: 7px 0; background: var(--hst-primary); color: #ffffff; font-size: 12px; font-weight: bold; text-align: center; border-radius: 6px; }
.hst-btn-buy:hover { background: var(--hst-primary-dark); }

.hst-box { background: #ffffff; border: 1px solid var(--hst-border); margin-bottom: 25px; padding: 20px; border-radius: 10px; }
.hst-row-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 8px; border-bottom: 1px dashed var(--hst-border); font-size: 13px; }
.hst-row-item:last-child { border-bottom: none; }

.hst-detail-layout { display: flex; gap: 30px; background: #ffffff; border: 1px solid var(--hst-border); padding: 30px; border-radius: 12px; }
.hst-detail-media { flex: 0 0 280px; text-align: center; }
.hst-detail-img-wrap { width: 230px; height: 230px; margin: 0 auto 12px; border: 1px solid var(--hst-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; background: #f8fafc; padding: 12px; }
.hst-detail-img-wrap img { max-width: 190px; max-height: 190px; object-fit: contain; }
.hst-detail-info { flex: 1; }
.hst-detail-name { font-size: 20px; font-weight: bold; color: var(--hst-text); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--hst-border); }
.hst-detail-meta-box { background: var(--hst-green-light); border: 1px solid #dcebc2; padding: 15px 20px; border-radius: 8px; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }

.hst-form-group { margin-bottom: 15px; }
.hst-form-label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 13px; color: #475569; }
.hst-input { width: 100%; height: 40px; background: #ffffff; border: 1px solid var(--hst-border); border-radius: 6px; padding: 0 12px; outline: none; font-size: 13px; }
.hst-input:focus { border-color: var(--hst-primary); }
.hst-btn-submit { width: 100%; height: 44px; background: var(--hst-primary); color: #ffffff; font-size: 15px; font-weight: bold; border: none; border-radius: 6px; cursor: pointer; transition: 0.2s; }
.hst-btn-submit:hover { background: var(--hst-primary-dark); }

.hst-footer { background: var(--hst-dark); color: #94a3b8; padding: 35px 15px; text-align: center; margin-top: 40px; font-size: 13px; }
.hst-footer-links { margin-bottom: 10px; }
.hst-footer-links a { color: #ffffff; margin: 0 10px; font-weight: 500; }
.hst-footer-links a:hover { color: var(--hst-primary); }

@media (max-width: 992px) {
    .hst-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hst-grid-3 { grid-template-columns: 1fr; }
    .hst-grid-2 { grid-template-columns: 1fr; }
    .hst-detail-layout { flex-direction: column; }
    .hst-detail-media { flex: 1; }
}
@media (max-width: 640px) {
    .hst-grid-5, .hst-grid-4 { grid-template-columns: 1fr; }
    .hst-nav-list li a { padding: 9px 12px; font-size: 13px; }
}
