.lmc-wrap {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
}

/* Header */
.lmc-header {
    background: #0F6E56;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.lmc-header-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.lmc-header-icon .dashicons { color: #fff; font-size: 22px; width: 22px; height: 22px; }
.lmc-header-title { color: #fff; font-size: 18px; font-weight: 600; margin: 0; }
.lmc-header-sub   { color: rgba(255,255,255,0.75); font-size: 13px; margin: 2px 0 0; }
.lmc-live-badge {
    margin-left: auto;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 11px;
    color: #fff;
    display: flex; align-items: center; gap: 5px;
    white-space: nowrap;
}
.lmc-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #9FE1CB; flex-shrink: 0; }

/* Body */
.lmc-body { padding: 1.5rem 1.75rem; }

/* Labels */
.lmc-section-label {
    font-size: 11px;
    font-weight: 600;
    color: #0F6E56;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin: 1.25rem 0 8px;
}
.lmc-section-label:first-child { margin-top: 0; }

/* Tabs */
.lmc-tabs { display: flex; gap: 6px; margin-bottom: 1rem; flex-wrap: wrap; }
.lmc-tab {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 13px;
    cursor: pointer;
    background: #fff;
    color: #666;
    transition: background 0.15s, color 0.15s;
}
.lmc-tab.active { background: #0F6E56; color: #fff; border-color: #0F6E56; }
.lmc-tab:hover:not(.active) { background: #f5f5f5; }

/* Products */
.lmc-products { display: flex; flex-direction: column; gap: 6px; }
.lmc-product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.15s, background 0.15s;
}
.lmc-product-row:hover { border-color: #aaa; background: #fafafa; }
.lmc-product-row.selected { border-color: #0F6E56; background: #E1F5EE; }
.lmc-product-left { display: flex; align-items: center; gap: 10px; }
.lmc-radio-dot {
    width: 16px; height: 16px; border-radius: 50%;
    border: 1.5px solid #ccc;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lmc-product-row.selected .lmc-radio-dot { border-color: #0F6E56; }
.lmc-radio-inner { width: 8px; height: 8px; border-radius: 50%; background: #0F6E56; }
.lmc-product-name  { font-size: 14px; color: #1a1a1a; font-weight: 500; }
.lmc-product-grade { font-size: 11px; color: #888; margin-top: 2px; }
.lmc-product-price { font-size: 13px; font-weight: 600; color: #0F6E56; white-space: nowrap; }

/* Divider */
.lmc-divider { height: 1px; background: #eee; margin: 1.25rem 0; }

/* Fields */
.lmc-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 1rem; }
@media (max-width: 500px) { .lmc-field-row { grid-template-columns: 1fr; } }
.lmc-field-group { display: flex; flex-direction: column; gap: 5px; }
.lmc-field-group label { font-size: 12px; color: #555; font-weight: 500; }
.lmc-field-group input {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
}
.lmc-field-group input:focus { border-color: #0F6E56; }

/* Incoterm */
.lmc-incoterm-opts { display: flex; gap: 8px; margin-top: 5px; }
.lmc-incoterm-btn {
    flex: 1; border: 1px solid #ccc; border-radius: 8px;
    padding: 7px 6px; font-size: 13px; cursor: pointer;
    background: #fff; color: #555; text-align: center;
    transition: all 0.15s;
}
.lmc-incoterm-btn.active { border-color: #0F6E56; background: #E1F5EE; color: #0F6E56; font-weight: 600; }
.lmc-incoterm-btn:hover:not(.active) { background: #f5f5f5; }

/* CNF note */
.lmc-cnf-note {
    background: #E1F5EE;
    border: 1px solid #9FE1CB;
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 10px;
    font-size: 13px;
    color: #085041;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.lmc-cnf-note .dashicons { font-size: 18px; color: #0F6E56; flex-shrink: 0; }
.lmc-wa-btn {
    margin-left: auto;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    text-decoration: none;
    font-weight: 500;
}
.lmc-wa-btn:hover { background: #1ebe57; color: #fff; text-decoration: none; }

/* Result box */
.lmc-result-box {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-top: 1.25rem;
}
.lmc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}
.lmc-result-row:last-of-type { border-bottom: none; }
.lmc-result-label { font-size: 13px; color: #888; }
.lmc-result-val   { font-size: 14px; font-weight: 500; color: #1a1a1a; }
.lmc-result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid #ddd;
}
.lmc-result-total-label { font-size: 15px; font-weight: 600; color: #1a1a1a; }
.lmc-result-total-val   { font-size: 22px; font-weight: 700; color: #0F6E56; }

/* Calculate button */
.lmc-calc-btn {
    width: 100%;
    background: #0F6E56;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.15s;
}
.lmc-calc-btn:hover { background: #085041; }

/* Disclaimer */
.lmc-disclaimer {
    font-size: 11px;
    color: #999;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #eee;
    line-height: 1.6;
}
