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