:root {
    --spt-primary: #e67e22;
    --spt-primary-dark: #d35400;
    --spt-accent: #e74c3c;
    --spt-bg: #fdfdfd;
    --spt-card-bg: #ffffff;
    --spt-border: #eaedf1;
    --spt-text: #2c3e50;
    --spt-sub: #7f8c8d;
    --spt-charcoal: #4a4a4a;
    --spt-dark: #2c3e50;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--spt-bg); color: var(--spt-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; }

.spt-topbar { background: #ffffff; border-bottom: 1px solid var(--spt-border); font-size: 12px; height: 36px; line-height: 36px; color: var(--spt-sub); }
.spt-topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; display: flex; justify-content: flex-end; align-items: center; }

.spt-header { background: #ffffff; padding: 15px 0; border-bottom: 1px solid var(--spt-border); }
.spt-header-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; display: flex; justify-content: space-between; align-items: center; }
.spt-logo img { height: 42px; width: auto; max-width: 180px; object-fit: contain; }

.spt-nav-bar { background: #ffffff; border-bottom: 2px solid var(--spt-primary); }
.spt-nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; }
.spt-nav-list { display: flex; list-style: none; flex-wrap: wrap; }
.spt-nav-list li a { display: block; padding: 12px 22px; color: #34495e; font-size: 14px; font-weight: 700; }
.spt-nav-list li a:hover, .spt-nav-list li.active a { color: var(--spt-primary); }

.spt-notice { max-width: 1280px; margin: 15px auto 0; padding: 10px 15px; background: #fef5e7; border-left: 4px solid var(--spt-primary); border-radius: 4px; color: var(--spt-primary-dark); font-size: 13px; }

.spt-container { max-width: 1280px; margin: 25px auto; padding: 0 15px; min-height: 60vh; }

.spt-section-head { display: flex; justify-content: space-between; align-items: center; margin: 35px 0 18px; }
.spt-section-title { font-size: 20px; font-weight: 800; color: #2c3e50; display: flex; align-items: center; }
.spt-section-title::before { content: ""; width: 4px; height: 18px; background: var(--spt-primary); margin-right: 8px; border-radius: 2px; }

.spt-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.spt-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.spt-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.spt-wood-card { background: linear-gradient(135deg, #e67e22 0%, #d35400 100%); color: #ffffff; padding: 25px 20px; border-radius: 8px; text-align: center; transition: 0.2s; }
.spt-wood-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(230,126,34,0.25); }

.spt-charcoal-section { background: var(--spt-charcoal); padding: 35px 25px; border-radius: 10px; margin-bottom: 35px; color: #ffffff; }
.spt-charcoal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }

.spt-card-item { background: #ffffff; border: 1px solid var(--spt-border); border-radius: 8px; padding: 16px; text-align: center; transition: 0.2s; position: relative; }
.spt-card-item:hover { border-color: var(--spt-primary); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(230,126,34,0.1); }
.spt-card-img-box { width: 100%; height: 110px; background: #f8fafc; border-radius: 6px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.spt-card-img-box img { max-width: 70px; max-height: 70px; object-fit: contain; }
.spt-card-name { font-size: 13px; font-weight: 700; color: var(--spt-text); height: 36px; overflow: hidden; margin-bottom: 8px; }
.spt-card-price { font-size: 16px; font-weight: 800; color: var(--spt-primary); margin-bottom: 10px; }
.spt-btn-buy { display: block; width: 100%; padding: 7px 0; background: var(--spt-primary); color: #ffffff; font-size: 12px; font-weight: bold; text-align: center; border-radius: 4px; }
.spt-btn-buy:hover { background: var(--spt-primary-dark); }

.spt-box { background: #ffffff; border: 1px solid var(--spt-border); margin-bottom: 25px; padding: 20px; border-radius: 8px; }
.spt-row-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 8px; border-bottom: 1px dashed var(--spt-border); font-size: 13px; }
.spt-row-item:last-child { border-bottom: none; }

.spt-detail-layout { display: flex; gap: 30px; background: #ffffff; border: 1px solid var(--spt-border); padding: 30px; border-radius: 10px; }
.spt-detail-media { flex: 0 0 280px; text-align: center; }
.spt-detail-img-wrap { width: 230px; height: 230px; margin: 0 auto 12px; border: 1px solid var(--spt-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; background: #f8fafc; padding: 12px; }
.spt-detail-img-wrap img { max-width: 190px; max-height: 190px; object-fit: contain; }
.spt-detail-info { flex: 1; }
.spt-detail-name { font-size: 20px; font-weight: bold; color: var(--spt-text); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--spt-border); }
.spt-detail-meta-box { background: #fef5e7; border: 1px solid #fdebd0; padding: 15px 20px; border-radius: 8px; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }

.spt-form-group { margin-bottom: 15px; }
.spt-form-label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 13px; color: #475569; }
.spt-input { width: 100%; height: 40px; background: #ffffff; border: 1px solid var(--spt-border); border-radius: 4px; padding: 0 12px; outline: none; font-size: 13px; }
.spt-input:focus { border-color: var(--spt-primary); }
.spt-btn-submit { width: 100%; height: 44px; background: var(--spt-primary); color: #ffffff; font-size: 15px; font-weight: bold; border: none; border-radius: 4px; cursor: pointer; transition: 0.2s; }
.spt-btn-submit:hover { background: var(--spt-primary-dark); }

.spt-footer { background: var(--spt-dark); color: #95a5a6; padding: 35px 15px; text-align: center; margin-top: 40px; font-size: 13px; }
.spt-footer-links { margin-bottom: 10px; }
.spt-footer-links a { color: #ffffff; margin: 0 10px; font-weight: 500; }
.spt-footer-links a:hover { color: var(--spt-primary); }

@media (max-width: 992px) {
    .spt-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .spt-grid-3 { grid-template-columns: 1fr; }
    .spt-grid-2 { grid-template-columns: 1fr; }
    .spt-detail-layout { flex-direction: column; }
    .spt-detail-media { flex: 1; }
}
@media (max-width: 640px) {
    .spt-grid-4 { grid-template-columns: 1fr; }
    .spt-nav-list li a { padding: 9px 12px; font-size: 13px; }
}
