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