:root {
    --nnt-primary: #c87050;
    --nnt-primary-dark: #b35c3e;
    --nnt-accent: #2d3748;
    --nnt-bg: #fcfbfa;
    --nnt-card-bg: #ffffff;
    --nnt-border: #ede6dc;
    --nnt-text: #2d3748;
    --nnt-sub: #718096;
    --nnt-wood: #f5f2eb;
    --nnt-dark: #1a202c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--nnt-bg); color: var(--nnt-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; }

.nnt-topbar { background: #ffffff; border-bottom: 1px solid var(--nnt-border); font-size: 12px; height: 36px; line-height: 36px; color: var(--nnt-sub); }
.nnt-topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; display: flex; justify-content: flex-end; align-items: center; }

.nnt-header { background: #ffffff; padding: 18px 0; border-bottom: 1px solid var(--nnt-border); text-align: center; }
.nnt-header-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; display: flex; justify-content: space-between; align-items: center; }
.nnt-logo img { height: 42px; width: auto; max-width: 180px; object-fit: contain; }

.nnt-nav-bar { background: #ffffff; border-bottom: 2px solid var(--nnt-primary); }
.nnt-nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 15px; }
.nnt-nav-list { display: flex; list-style: none; flex-wrap: wrap; justify-content: center; }
.nnt-nav-list li a { display: block; padding: 12px 22px; color: #334155; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.nnt-nav-list li a:hover, .nnt-nav-list li.active a { color: var(--nnt-primary); }

.nnt-notice { max-width: 1280px; margin: 15px auto 0; padding: 10px 15px; background: #fdf5f2; border-left: 4px solid var(--nnt-primary); border-radius: 4px; color: var(--nnt-primary-dark); font-size: 13px; }

.nnt-container { max-width: 1280px; margin: 25px auto; padding: 0 15px; min-height: 60vh; }

.nnt-hero-split { display: grid; grid-template-columns: 1fr 2fr; gap: 20px; margin-bottom: 30px; }
.nnt-hero-card { background: #ffffff; border: 1px solid var(--nnt-border); border-radius: 6px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.nnt-hero-big { background: var(--nnt-wood); border: 1px solid var(--nnt-border); border-radius: 8px; padding: 35px; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; }

.nnt-section-head { text-align: center; margin: 40px 0 25px; }
.nnt-section-title { font-family: "Georgia", serif; font-size: 24px; font-weight: bold; color: #1e293b; }
.nnt-section-sub { font-size: 12px; color: var(--nnt-sub); margin-top: 3px; text-transform: uppercase; letter-spacing: 1px; }

.nnt-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.nnt-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nnt-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.nnt-card-item { background: #ffffff; border: 1px solid var(--nnt-border); border-radius: 6px; padding: 16px; text-align: center; transition: 0.2s; position: relative; }
.nnt-card-item:hover { border-color: var(--nnt-primary); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(200,112,80,0.12); }
.nnt-card-badge { position: absolute; top: 10px; left: 10px; background: var(--nnt-primary); color: #ffffff; font-size: 10px; font-weight: bold; padding: 2px 6px; border-radius: 2px; }

.nnt-card-img-box { width: 100%; height: 120px; background: var(--nnt-wood); border-radius: 4px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.nnt-card-img-box img { max-width: 75px; max-height: 75px; object-fit: contain; }
.nnt-card-name { font-size: 13px; font-weight: 700; color: var(--nnt-text); height: 36px; overflow: hidden; margin-bottom: 8px; }
.nnt-card-price { font-size: 16px; font-weight: 800; color: var(--nnt-primary); margin-bottom: 10px; }
.nnt-btn-buy { display: block; width: 100%; padding: 7px 0; background: var(--nnt-primary); color: #ffffff; font-size: 12px; font-weight: bold; text-align: center; border-radius: 4px; text-transform: uppercase; }
.nnt-btn-buy:hover { background: var(--nnt-primary-dark); }

.nnt-box { background: #ffffff; border: 1px solid var(--nnt-border); margin-bottom: 25px; padding: 20px; border-radius: 6px; }
.nnt-row-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 8px; border-bottom: 1px dashed var(--nnt-border); font-size: 13px; }
.nnt-row-item:last-child { border-bottom: none; }

.nnt-detail-layout { display: flex; gap: 30px; background: #ffffff; border: 1px solid var(--nnt-border); padding: 30px; border-radius: 8px; }
.nnt-detail-media { flex: 0 0 280px; text-align: center; }
.nnt-detail-img-wrap { width: 230px; height: 230px; margin: 0 auto 12px; border: 1px solid var(--nnt-border); border-radius: 6px; display: flex; align-items: center; justify-content: center; background: var(--nnt-wood); padding: 12px; }
.nnt-detail-img-wrap img { max-width: 190px; max-height: 190px; object-fit: contain; }
.nnt-detail-info { flex: 1; }
.nnt-detail-name { font-family: "Georgia", serif; font-size: 22px; font-weight: bold; color: var(--nnt-text); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--nnt-border); }
.nnt-detail-meta-box { background: var(--nnt-wood); border: 1px solid var(--nnt-border); padding: 15px 20px; border-radius: 6px; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }

.nnt-form-group { margin-bottom: 15px; }
.nnt-form-label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 13px; color: #475569; }
.nnt-input { width: 100%; height: 40px; background: #ffffff; border: 1px solid var(--nnt-border); border-radius: 4px; padding: 0 12px; outline: none; font-size: 13px; }
.nnt-input:focus { border-color: var(--nnt-primary); }
.nnt-btn-submit { width: 100%; height: 44px; background: var(--nnt-primary); color: #ffffff; font-size: 15px; font-weight: bold; border: none; border-radius: 4px; cursor: pointer; transition: 0.2s; text-transform: uppercase; }
.nnt-btn-submit:hover { background: var(--nnt-primary-dark); }

.nnt-footer { background: var(--nnt-dark); color: #94a3b8; padding: 35px 15px; text-align: center; margin-top: 40px; font-size: 13px; }
.nnt-footer-links { margin-bottom: 10px; }
.nnt-footer-links a { color: #ffffff; margin: 0 10px; font-weight: 500; }
.nnt-footer-links a:hover { color: var(--nnt-primary); }

@media (max-width: 992px) {
    .nnt-hero-split { grid-template-columns: 1fr; }
    .nnt-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .nnt-grid-3 { grid-template-columns: 1fr; }
    .nnt-grid-2 { grid-template-columns: 1fr; }
    .nnt-detail-layout { flex-direction: column; }
    .nnt-detail-media { flex: 1; }
}
@media (max-width: 640px) {
    .nnt-grid-4 { grid-template-columns: 1fr; }
    .nnt-nav-list li a { padding: 9px 12px; font-size: 12px; }
}
