:root {
    --tch-primary: #c5a059;
    --tch-primary-dark: #b08d48;
    --tch-accent: #e5a93c;
    --tch-bg: #0e0e0e;
    --tch-card-bg: #181818;
    --tch-card-sub: #222222;
    --tch-border: #2c2c2c;
    --tch-text: #c9d1d9;
    --tch-text-bright: #ffffff;
    --tch-sub: #8b949e;
    --tch-gold-light: #f5eedb;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--tch-bg); color: var(--tch-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; }

.tch-topbar { background: #050505; border-bottom: 1px solid var(--tch-border); font-size: 12px; height: 36px; line-height: 36px; color: var(--tch-sub); }
.tch-topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; display: flex; justify-content: flex-end; align-items: center; }

.tch-header { background: var(--tch-bg); padding: 18px 0; border-bottom: 1px solid var(--tch-border); }
.tch-header-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; display: flex; justify-content: space-between; align-items: center; }
.tch-logo img { height: 42px; width: auto; max-width: 180px; object-fit: contain; filter: brightness(1.2); }

.tch-nav-bar { background: #121212; border-bottom: 1px solid var(--tch-border); }
.tch-nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; }
.tch-nav-list { display: flex; list-style: none; flex-wrap: wrap; }
.tch-nav-list li a { display: block; padding: 12px 22px; color: var(--tch-text); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.tch-nav-list li a:hover, .tch-nav-list li.active a { color: var(--tch-primary); }

.tch-notice { max-width: 1280px; margin: 15px auto 0; padding: 10px 15px; background: rgba(197, 160, 89, 0.1); border-left: 4px solid var(--tch-primary); border-radius: 4px; color: var(--tch-primary); font-size: 13px; }

.tch-container { max-width: 1280px; margin: 25px auto; padding: 0 15px; min-height: 60vh; }

.tch-hero-banner { background: linear-gradient(135deg, #181818 0%, #0a0a0a 100%); border: 1px solid var(--tch-border); color: #ffffff; padding: 45px 25px; text-align: center; border-radius: 8px; margin-bottom: 30px; }
.tch-hero-banner h1 { font-family: "Georgia", serif; font-size: 32px; font-weight: bold; letter-spacing: 2px; color: #f5eedb; margin-bottom: 6px; }
.tch-hero-banner p { font-size: 13px; color: var(--tch-sub); text-transform: uppercase; letter-spacing: 1px; }

.tch-section-head { text-align: center; margin: 40px 0 25px; }
.tch-section-title { font-family: "Georgia", serif; font-size: 22px; font-weight: bold; color: var(--tch-text-bright); letter-spacing: 1px; }
.tch-section-sub { font-size: 12px; color: var(--tch-primary); margin-top: 3px; text-transform: uppercase; letter-spacing: 1px; }

.tch-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.tch-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tch-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tch-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.tch-card-item { background: var(--tch-card-bg); border: 1px solid var(--tch-border); border-radius: 6px; padding: 18px 14px; text-align: center; transition: 0.2s; position: relative; }
.tch-card-item:hover { border-color: var(--tch-primary); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.6); }
.tch-card-badge { position: absolute; top: 10px; right: 10px; background: rgba(197, 160, 89, 0.2); color: var(--tch-primary); border: 1px solid var(--tch-primary); font-size: 10px; font-weight: bold; padding: 1px 5px; border-radius: 2px; }

.tch-card-img-box { width: 100%; height: 120px; background: #0a0a0a; border-radius: 4px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--tch-border); }
.tch-card-img-box img { max-width: 75px; max-height: 75px; object-fit: contain; }
.tch-card-name { font-size: 13px; font-weight: 700; color: var(--tch-text-bright); height: 36px; overflow: hidden; margin-bottom: 8px; }
.tch-card-price { font-size: 16px; font-weight: 800; color: var(--tch-primary); margin-bottom: 10px; font-family: monospace; }
.tch-btn-buy { display: block; width: 100%; padding: 7px 0; background: var(--tch-primary); color: #0e0e0e; font-size: 12px; font-weight: bold; text-align: center; border-radius: 4px; text-transform: uppercase; }
.tch-btn-buy:hover { background: var(--tch-primary-dark); }

.tch-box { background: var(--tch-card-bg); border: 1px solid var(--tch-border); margin-bottom: 25px; padding: 20px; border-radius: 6px; }
.tch-row-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 8px; border-bottom: 1px dashed var(--tch-border); font-size: 13px; }
.tch-row-item:last-child { border-bottom: none; }

.tch-detail-layout { display: flex; gap: 30px; background: var(--tch-card-bg); border: 1px solid var(--tch-border); padding: 30px; border-radius: 8px; }
.tch-detail-media { flex: 0 0 280px; text-align: center; }
.tch-detail-img-wrap { width: 230px; height: 230px; margin: 0 auto 12px; border: 1px solid var(--tch-border); border-radius: 6px; display: flex; align-items: center; justify-content: center; background: #0a0a0a; padding: 12px; }
.tch-detail-img-wrap img { max-width: 190px; max-height: 190px; object-fit: contain; }
.tch-detail-info { flex: 1; }
.tch-detail-name { font-size: 20px; font-weight: bold; color: var(--tch-text-bright); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--tch-border); }
.tch-detail-meta-box { background: var(--tch-card-sub); border: 1px solid var(--tch-border); padding: 15px 20px; border-radius: 6px; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }

.tch-form-group { margin-bottom: 15px; }
.tch-form-label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 13px; color: var(--tch-text); }
.tch-input { width: 100%; height: 40px; background: var(--tch-card-sub); border: 1px solid var(--tch-border); border-radius: 4px; padding: 0 12px; outline: none; font-size: 13px; color: #ffffff; }
.tch-input:focus { border-color: var(--tch-primary); }
.tch-btn-submit { width: 100%; height: 44px; background: var(--tch-primary); color: #0e0e0e; font-size: 15px; font-weight: bold; border: none; border-radius: 4px; cursor: pointer; transition: 0.2s; text-transform: uppercase; }
.tch-btn-submit:hover { background: var(--tch-primary-dark); }

.tch-footer { background: #050505; border-top: 1px solid var(--tch-border); color: #8b949e; padding: 35px 15px; text-align: center; margin-top: 40px; font-size: 13px; }
.tch-footer-links { margin-bottom: 10px; }
.tch-footer-links a { color: var(--tch-text); margin: 0 10px; font-weight: 500; }
.tch-footer-links a:hover { color: var(--tch-primary); }

@media (max-width: 992px) {
    .tch-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .tch-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .tch-grid-3 { grid-template-columns: 1fr; }
    .tch-grid-2 { grid-template-columns: 1fr; }
    .tch-detail-layout { flex-direction: column; }
    .tch-detail-media { flex: 1; }
}
@media (max-width: 640px) {
    .tch-grid-5, .tch-grid-4 { grid-template-columns: 1fr; }
    .tch-nav-list li a { padding: 9px 12px; font-size: 12px; }
}
