/* ============================================================
   Body Marker Explorer — [svea_body_marker]
   ============================================================ */

.bme-wrap {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    border-radius: 20px;
    padding: 48px 56px;
    box-sizing: border-box;
    font-family: inherit;
}

/* --- Body diagram ----------------------------------------- */

.bme-body-side {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #163440;
    padding: 2em;
    border-radius: 18px;
}

.bme-body-svg {
    width: 100%;
    max-width: 200px;
    height: auto;
    overflow: visible;
}

.bme-dot {
    fill: #e8b84b;
    cursor: pointer;
    transition: fill 0.15s ease, transform 0.15s ease;
    transform-origin: center;
    transform-box: fill-box;
}

.bme-dot:hover {
    fill: #f5cd6a;
    transform: scale(1.35);
}

.bme-dot.active {
    fill: #a07540;
    transform: scale(1.2);
}

/* --- Info panel ------------------------------------------- */

.bme-info-side {
    flex: 1;
    min-width: 0;
}

.bme-panel {
    background: #163440;
    border-radius: 16px;
    padding: 36px 40px;
    min-height: 280px;
    border-radius: 18px;
}

.bme-eyebrow {
    color: #e8b84b !important;
    font-family: 'IBM Plex Mono', monospace !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    font-style: normal !important;
    line-height: 100% !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase;
    margin: 0 0 10px;
    padding: 0;
}

.bme-cat-title {
    color: #ffffff !important;
    font-family: 'IBM Plex Serif', serif !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    font-style: normal !important;
    line-height: 114.99999999999999% !important;
    letter-spacing: 0% !important;
    margin: 0 0 10px;
    padding: 0;
}

.bme-cat-desc {
    color: #94b8c8 !important;
    font-family: 'IBM Plex Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    line-height: 160% !important;
    letter-spacing: 0% !important;
    margin: 0 0 24px;
    padding: 0;
}

/* --- Product rows ----------------------------------------- */

.bme-product-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 340px;
    overflow-y: auto;
}

.bme-product-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    background: #143647;
    border-radius: 10px;
    text-decoration: none !important;
    color: #ffffff !important;
    transition: background 0.15s ease;
}

.bme-product-row:hover {
    background: #1b4a62;
    text-decoration: none !important;
}

.bme-badge {
    background: #1e4a60;
    color: #e8b84b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 5px;
    min-width: 38px;
    text-align: center;
    flex-shrink: 0;
    font-family: monospace;
}

.bme-product-name {
    flex: 1;
    font-size: 0.92rem;
    color: #ffffff;
}

.bme-product-price {
    color: #e8b84b;
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
}

/* --- Responsive ------------------------------------------- */

@media (max-width: 800px) {
    .bme-wrap {
        flex-direction: column;
        padding: 28px 24px;
        gap: 28px;
    }

    .bme-body-side {
        flex: none;
        width: 240px;
        margin: 0 auto;
    }

    .bme-cat-title {
        font-size: 1.5rem;
    }

    .bme-panel {
        padding: 24px;
        min-height: auto;
    }
}
