:root {
    --n-bg: #faf8f5;
    --n-card-bg: #ffffff;
    --n-border: rgba(0, 0, 0, 0.05);
    --n-accent: #b08e72;
    --n-text: #2c2d30;
    --n-text-sub: #7a7d85;
    --n-red: #ef4444;
}
body.nordic-body {
    margin: 0;
    padding: 0;
    background: var(--n-bg);
    color: var(--n-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
}
a {
    color: var(--n-text);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: var(--n-accent);
}
.nordic-header {
    height: 64px;
    background: var(--n-card-bg);
    border-bottom: 1px solid var(--n-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nordic-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.nordic-logo img {
    height: 24px;
}
.nordic-header-nav {
    display: flex;
    gap: 20px;
}
.nordic-header-link {
    color: var(--n-text-sub);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}
.nordic-header-link.nordic-active, .nordic-header-link:hover {
    color: var(--n-accent);
}
.nordic-notice-bar {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 0 20px;
}
.nordic-notice-inner {
    background: var(--n-card-bg);
    border: 1px solid var(--n-border);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nordic-notice-dot {
    width: 6px;
    height: 6px;
    background: var(--n-accent);
    border-radius: 50%;
}
.nordic-notice-text {
    font-size: 13px;
    color: var(--n-text);
}
.nordic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
.nordic-double-layout {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
@media (min-width: 1024px) {
    .nordic-double-layout {
        flex-direction: row;
    }
    .nordic-double-sidebar {
        width: 300px;
        flex-shrink: 0;
        display: flex;
        gap: 12px;
    }
    .nordic-sidebar-col {
        flex: 1;
    }
    .nordic-main-panel {
        flex-grow: 1;
    }
}
.nordic-sidebar-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--n-text-sub);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nordic-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nordic-sidebar-menu a {
    display: block;
    padding: 10px 14px;
    background: var(--n-card-bg);
    border: 1px solid var(--n-border);
    border-radius: 8px;
    font-weight: 600;
    color: var(--n-text-sub);
    font-size: 13px;
    transition: all 0.3s;
}
.nordic-sidebar-menu a:hover {
    color: var(--n-accent);
    border-color: var(--n-accent);
}
.nordic-section-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--n-text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.nordic-section-title::before {
    content: "";
    width: 4px;
    height: 14px;
    background: var(--n-accent);
    border-radius: 2px;
}
.nordic-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}
@media (min-width: 1200px) {
    .nordic-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.nordic-card {
    background: var(--n-card-bg);
    border: 1px solid var(--n-border);
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.nordic-card:hover {
    transform: translateY(-2px);
    border-color: var(--n-accent);
}
.nordic-badge-auto {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--n-card-bg);
    border: 1px solid var(--n-accent);
    color: var(--n-accent);
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    z-index: 10;
}
.nordic-product-img-box {
    width: 100%;
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--n-bg);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}
.nordic-product-img-box img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}
.nordic-product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.nordic-product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--n-text);
    margin-bottom: 12px;
    line-height: 1.4;
}
.nordic-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nordic-product-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--n-text);
}
.nordic-product-sales {
    font-size: 12px;
    color: var(--n-text-sub);
    font-weight: 600;
}
.nordic-detail-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (min-width: 768px) {
    .nordic-detail-flex {
        flex-direction: row;
    }
    .nordic-detail-left {
        flex: 1;
    }
    .nordic-detail-right {
        width: 380px;
        flex-shrink: 0;
    }
}
.nordic-detail-img {
    width: 100%;
    height: 200px;
    background: var(--n-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--n-border);
}
.nordic-detail-img img {
    max-width: 40%;
    max-height: 80%;
    object-fit: contain;
}
.nordic-detail-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--n-text);
    margin: 0 0 10px;
    line-height: 1.3;
}
.nordic-status-tag {
    display: inline-block;
    background: var(--n-bg);
    border: 1px solid var(--n-border);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 8px;
    color: var(--n-text-sub);
    font-weight: 600;
}
.nordic-desc-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--n-text);
    margin-bottom: 15px;
}
.nordic-desc-content {
    line-height: 1.8;
    color: var(--n-text);
}
.nordic-desc-content img {
    max-width: 100%;
}
.nordic-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--n-bg);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--n-border);
    margin-bottom: 20px;
}
.nordic-price-large {
    font-size: 24px;
    font-weight: 800;
    color: var(--n-text);
}
.nordic-stock-status {
    font-size: 12px;
    color: var(--n-text-sub);
    font-weight: 600;
}
.nordic-form-item {
    margin-bottom: 16px;
}
.nordic-form-label {
    display: block;
    font-size: 12px;
    color: var(--n-text-sub);
    margin-bottom: 6px;
    font-weight: 600;
}
.nordic-form-input {
    width: 100%;
    height: 42px;
    background: var(--n-bg);
    border: 1px solid var(--n-border);
    border-radius: 8px;
    color: var(--n-text);
    padding: 0 12px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s;
    font-weight: 600;
}
.nordic-form-input:focus {
    border-color: var(--n-accent);
}
.nordic-submit-btn {
    width: 100%;
    height: 46px;
    background: var(--n-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}
.nordic-submit-btn:hover {
    background: #c3a48e;
}
.nordic-submit-btn:disabled {
    background: rgba(0,0,0,0.05);
    color: #888;
    cursor: not-allowed;
}
.nordic-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nordic-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--n-card-bg);
    border: 1px solid var(--n-border);
    padding: 16px 20px;
    border-radius: 12px;
    flex-wrap: wrap;
    gap: 12px;
}
.nordic-item-name {
    flex: 1;
    min-width: 200px;
    font-weight: 700;
}
.nordic-item-price {
    font-weight: 800;
    color: var(--n-text);
}
.nordic-item-stock {
    font-size: 12px;
    color: var(--n-text-sub);
    font-weight: 600;
}
.nordic-btn-buy {
    background: var(--n-card-bg);
    border: 1px solid var(--n-border);
    color: var(--n-text-sub);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}
.nordic-btn-buy:hover {
    color: var(--n-accent);
    border-color: var(--n-accent);
}
.nordic-btn-lock {
    background: rgba(0,0,0,0.05);
    color: #888;
    border: 1px solid var(--n-border);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    cursor: not-allowed;
}
.nordic-small-box {
    max-width: 500px;
    margin: 40px auto;
}
.nordic-tab-bar {
    display: flex;
    border-bottom: 2px solid var(--n-border);
    margin-bottom: 20px;
}
.nordic-tab-item {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 13px;
    color: var(--n-text-sub);
    font-weight: 700;
    border-bottom: 3px solid transparent;
}
.nordic-tab-item.nordic-active {
    color: var(--n-text);
    border-bottom-color: var(--n-accent);
}
.nordic-table {
    width: 100%;
    border-collapse: collapse;
}
.nordic-table-header {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--n-bg);
    padding: 12px;
    font-size: 12px;
    color: var(--n-text-sub);
    text-align: center;
    border-bottom: 1px solid var(--n-border);
}
.nordic-table-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 16px 12px;
    text-align: center;
    align-items: center;
    border-bottom: 1px solid var(--n-border);
}
.nordic-payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.nordic-pay-btn {
    background: var(--n-bg);
    border: 1px solid var(--n-border);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s;
}
.nordic-pay-btn:hover {
    border-color: var(--n-accent);
}
.nordic-pay-btn img {
    height: 24px;
}
.nordic-footer {
    background: var(--n-card-bg);
    border-top: 1px solid var(--n-border);
    padding: 30px 0;
    margin-top: 60px;
}
.nordic-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 16px;
}
.nordic-footer-copyright {
    font-size: 12px;
    color: var(--n-text-sub);
    font-weight: 600;
}
.nordic-footer-nav {
    display: flex;
    gap: 20px;
}
.nordic-footer-nav a {
    font-size: 12px;
    color: var(--n-text-sub);
    font-weight: 600;
}
.nordic-footer-nav a:hover {
    color: var(--n-accent);
}
.nordic-title {
    font-size: 18px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--n-accent);
}
.nordic-title-sub {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}
.nordic-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--n-border);
}
.nordic-price-total {
    border-bottom: none;
    font-size: 16px;
    font-weight: 800;
    color: var(--n-accent);
    margin-top: 10px;
}
.nordic-pay-success {
    color: #10b981;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}
.nordic-mobile-card {
    background: var(--n-card-bg);
    border: 1px solid var(--n-border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nordic-mt-20 {
    margin-top: 20px;
}
@media (max-width: 768px) {
    .nordic-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}