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