:root {
    --a-bg: #faf8f4;
    --a-card: #ffffff;
    --a-border: rgba(0, 0, 0, 0.03);
    --a-accent: #af9882;
    --a-text: #2e3135;
    --a-text-sub: #7b8085;
    --a-red: #ef4444;
    --a-shadow: 0 4px 24px rgba(175, 152, 130, 0.03), 0 2px 8px rgba(0, 0, 0, 0.01);
}
body.ashwood-body {
    margin: 0;
    padding: 0;
    background: var(--a-bg);
    color: var(--a-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
}
a {
    color: var(--a-text);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: var(--a-accent);
}
.ashwood-header {
    height: 64px;
    background: var(--a-card);
    border-bottom: 1px solid var(--a-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.ashwood-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.ashwood-logo img {
    height: 24px;
}
.ashwood-header-nav {
    display: flex;
    gap: 24px;
}
.ashwood-header-link {
    color: var(--a-text-sub);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
}
.ashwood-header-link.ashwood-active, .ashwood-header-link:hover {
    color: var(--a-accent);
}
.ashwood-notice-bar {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 0 20px;
}
.ashwood-notice-inner {
    background: var(--a-card);
    border-radius: 12px;
    box-shadow: var(--a-shadow);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ashwood-notice-dot {
    width: 6px;
    height: 6px;
    background: var(--a-accent);
    border-radius: 50%;
}
.ashwood-notice-text {
    font-size: 13px;
    color: var(--a-text);
    font-weight: 600;
}
.ashwood-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
.ashwood-section-title {
    font-size: 20px;
    font-weight: 800;
    margin: 40px 0 20px;
    color: var(--a-text);
    letter-spacing: -0.015em;
}
.ashwood-asymmetric-wall {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
@media (min-width: 1024px) {
    .ashwood-asymmetric-wall {
        grid-template-columns: repeat(4, 1fr);
    }
    .ashwood-card:nth-child(even) {
        margin-top: 32px;
    }
}
.ashwood-card {
    background: var(--a-card);
    border-radius: 16px;
    padding: 24px;
    box-sizing: border-box;
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    box-shadow: var(--a-shadow);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ashwood-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(175, 152, 130, 0.08), 0 4px 10px rgba(0, 0, 0, 0.02);
}
.ashwood-badge-auto {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--a-card);
    border: 1.5px solid var(--a-accent);
    color: var(--a-accent);
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    z-index: 10;
}
.ashwood-product-img-box {
    width: 100%;
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--a-bg);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}
.ashwood-product-img-box img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}
.ashwood-product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ashwood-product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--a-text);
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}
.ashwood-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ashwood-product-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--a-text);
}
.ashwood-product-sales {
    font-size: 11px;
    color: var(--a-text-sub);
    font-weight: 600;
    letter-spacing: 0.05em;
}
.ashwood-detail-flex {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media (min-width: 768px) {
    .ashwood-detail-flex {
        flex-direction: row;
    }
    .ashwood-detail-left {
        flex: 1;
    }
    .ashwood-detail-right {
        width: 380px;
        flex-shrink: 0;
    }
}
.ashwood-detail-img {
    width: 100%;
    height: 200px;
    background: var(--a-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
}
.ashwood-detail-img img {
    max-width: 40%;
    max-height: 80%;
    object-fit: contain;
}
.ashwood-detail-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--a-text);
    margin: 0 0 10px;
    line-height: 1.3;
}
.ashwood-status-tag {
    display: inline-block;
    background: var(--a-bg);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 8px;
    color: var(--a-text-sub);
    font-weight: 600;
}
.ashwood-desc-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--a-text);
    margin-bottom: 15px;
}
.ashwood-desc-content {
    line-height: 1.8;
    color: var(--a-text);
}
.ashwood-desc-content img {
    max-width: 100%;
}
.ashwood-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--a-bg);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.ashwood-price-large {
    font-size: 24px;
    font-weight: 800;
    color: var(--a-text);
}
.ashwood-stock-status {
    font-size: 12px;
    color: var(--a-text-sub);
    font-weight: 600;
}
.ashwood-form-item {
    margin-bottom: 16px;
}
.ashwood-form-label {
    display: block;
    font-size: 12px;
    color: var(--a-text-sub);
    margin-bottom: 6px;
    font-weight: 600;
}
.ashwood-form-input {
    width: 100%;
    height: 42px;
    background: var(--a-bg);
    border: none;
    border-radius: 8px;
    color: var(--a-text);
    padding: 0 12px;
    box-sizing: border-box;
    outline: none;
    font-weight: 600;
}
.ashwood-submit-btn {
    width: 100%;
    height: 46px;
    background: var(--a-accent);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}
.ashwood-submit-btn:hover {
    background: #c7a991;
}
.ashwood-submit-btn:disabled {
    background: rgba(0,0,0,0.05);
    color: #888;
    cursor: not-allowed;
}
.ashwood-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ashwood-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--a-card);
    box-shadow: var(--a-shadow);
    padding: 16px 20px;
    border-radius: 12px;
    flex-wrap: wrap;
    gap: 12px;
}
.ashwood-item-name {
    flex: 1;
    min-width: 200px;
    font-weight: 700;
}
.ashwood-item-price {
    font-weight: 800;
    color: var(--a-text);
}
.ashwood-item-stock {
    font-size: 12px;
    color: var(--a-text-sub);
    font-weight: 600;
}
.ashwood-btn-buy {
    background: var(--a-card);
    box-shadow: var(--a-shadow);
    color: var(--a-text-sub);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}
.ashwood-btn-buy:hover {
    color: var(--a-accent);
}
.ashwood-btn-lock {
    background: rgba(0,0,0,0.05);
    color: #888;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    cursor: not-allowed;
}
.ashwood-small-box {
    max-width: 500px;
    margin: 40px auto;
}
.ashwood-tab-bar {
    display: flex;
    border-bottom: 2px solid var(--a-border);
    margin-bottom: 20px;
}
.ashwood-tab-item {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 13px;
    color: var(--a-text-sub);
    font-weight: 700;
    border-bottom: 3px solid transparent;
}
.ashwood-tab-item.ashwood-active {
    color: var(--a-text);
    border-bottom-color: var(--a-accent);
}
.ashwood-table {
    width: 100%;
    border-collapse: collapse;
}
.ashwood-table-header {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--a-bg);
    padding: 12px;
    font-size: 12px;
    color: var(--a-text-sub);
    text-align: center;
    border-bottom: 1px solid var(--a-border);
}
.ashwood-table-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 16px 12px;
    text-align: center;
    align-items: center;
    border-bottom: 1px solid var(--a-border);
}
.ashwood-payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.ashwood-pay-btn {
    background: var(--a-bg);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}
.ashwood-pay-btn img {
    height: 24px;
}
.ashwood-footer {
    background: var(--a-card);
    border-top: 1px solid var(--a-border);
    padding: 30px 0;
    margin-top: 60px;
}
.ashwood-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;
}
.ashwood-footer-copyright {
    font-size: 12px;
    color: var(--a-text-sub);
    font-weight: 600;
}
.ashwood-footer-nav {
    display: flex;
    gap: 20px;
}
.ashwood-footer-nav a {
    font-size: 12px;
    color: var(--a-text-sub);
    font-weight: 600;
}
.ashwood-footer-nav a:hover {
    color: var(--a-accent);
}
.ashwood-title {
    font-size: 18px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--a-accent);
}
.ashwood-title-sub {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}
.ashwood-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--a-border);
}
.ashwood-price-total {
    border-bottom: none;
    font-size: 16px;
    font-weight: 800;
    color: var(--a-accent);
    margin-top: 10px;
}
.ashwood-pay-success {
    color: #10b981;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}
.ashwood-mobile-card {
    background: var(--a-card);
    box-shadow: var(--a-shadow);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ashwood-drawer-panel {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--a-card);
    box-shadow: var(--a-shadow);
    z-index: 1001;
    padding: 30px 24px;
    box-sizing: border-box;
    transition: right 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ashwood-drawer-panel.is-open {
    right: 0;
}
.ashwood-side-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--a-text-sub);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.ashwood-side-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ashwood-side-menu a {
    display: block;
    padding: 12px 16px;
    background: var(--a-bg);
    border-radius: 12px;
    font-weight: 600;
    color: var(--a-text-sub);
    transition: all 0.3s;
}
.ashwood-side-menu a:hover {
    color: var(--a-accent);
}
.ashwood-hamburger {
    cursor: pointer;
    font-size: 20px;
    color: var(--a-text-sub);
    transition: color 0.3s;
}
.ashwood-hamburger:hover {
    color: var(--a-accent);
}
.ashwood-drawer-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(2px);
    z-index: 1000;
    display: none;
}
.ashwood-mt-20 {
    margin-top: 20px;
}