/* Manufacturing Process Timeline — 531588ae */

.mpt-531588ae-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.mpt-531588ae-wrapper *,
.mpt-531588ae-wrapper *::before,
.mpt-531588ae-wrapper *::after {
    box-sizing: border-box;
}

/* Timeline container */
.mpt-531588ae-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    margin: 0 0 50px;
    padding: 0 35px;
}

/* Connecting line */
.mpt-531588ae-line {
    position: absolute;
    top: 35px;
    left: 35px;
    right: 35px;
    height: 3px;
    background-color: #E0E0E0;
    z-index: 0;
    border-radius: 2px;
}
.mpt-531588ae-line-fill {
    height: 100%;
    background-color: #E8491D;
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Step */
.mpt-531588ae-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 1;
    flex: 1 1 0%;
    min-width: 0;
    transition: opacity 0.3s ease;
}
.mpt-531588ae-step:hover {
    opacity: 0.85;
}

/* Icon circle */
.mpt-531588ae-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F5F5F5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    flex-shrink: 0;
}
.mpt-531588ae-step.mpt-531588ae-active .mpt-531588ae-icon-circle {
    background-color: #E8491D;
    box-shadow: 0 0 0 10px rgba(232, 73, 29, 0.35);
}

/* Icon */
.mpt-531588ae-icon-wrap {
    font-size: 24px;
    line-height: 1;
    color: #999;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mpt-531588ae-icon-wrap svg {
    width: 24px;
    height: 24px;
    fill: #999;
    transition: fill 0.3s ease;
}
.mpt-531588ae-step.mpt-531588ae-active .mpt-531588ae-icon-wrap {
    color: #fff;
}
.mpt-531588ae-step.mpt-531588ae-active .mpt-531588ae-icon-wrap svg {
    fill: #fff;
}

/* Step title */
.mpt-531588ae-step-title {
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: #666;
    transition: color 0.3s ease;
    line-height: 1.3;
    max-width: 160px;
    word-wrap: break-word;
}
.mpt-531588ae-step.mpt-531588ae-active .mpt-531588ae-step-title {
    color: #E8491D;
}

/* Panels */
.mpt-531588ae-panels {
    width: 100%;
    max-width: 100%;
}

/* Content area */
.mpt-531588ae-content-area {
    display: none;
    width: 100%;
    max-width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    animation: mptFadeIn531588ae 0.45s ease;
}
.mpt-531588ae-content-area.mpt-531588ae-panel-active {
    display: block;
}

@keyframes mptFadeIn531588ae {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Content grid */
.mpt-531588ae-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
    width: 100%;
}

/* Image */
.mpt-531588ae-content-image {
    width: 100%;
    overflow: hidden;
}
.mpt-531588ae-content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

/* Content info */
.mpt-531588ae-content-info {
    width: 100%;
    min-width: 0;
}
.mpt-531588ae-content-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 0 0 14px;
    line-height: 1.3;
}
.mpt-531588ae-content-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 22px;
}

/* Feature list */
.mpt-531588ae-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.mpt-531588ae-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.mpt-531588ae-feature-item:last-child {
    border-bottom: none;
}
.mpt-531588ae-feature-icon {
    flex-shrink: 0;
    color: #E8491D;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.mpt-531588ae-feature-icon svg {
    width: 16px;
    height: 16px;
    fill: #E8491D;
}
.mpt-531588ae-feature-text {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    min-width: 0;
    word-wrap: break-word;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 767px) {
    .mpt-531588ae-wrapper {
        padding: 24px 12px;
    }
    .mpt-531588ae-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        padding-left: 35px;
        padding-right: 0;
    }
    .mpt-531588ae-line {
        top: 0;
        bottom: 0;
        left: 35px;
        right: auto;
        width: 3px;
        height: auto;
    }
    .mpt-531588ae-line-fill {
        width: 100% !important;
        height: 0%;
        transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mpt-531588ae-step {
        flex-direction: row;
        align-items: center;
        width: 100%;
        padding: 14px 0;
    }
    .mpt-531588ae-step-title {
        margin-top: 0;
        margin-left: 16px;
        text-align: left;
        max-width: none;
    }
    .mpt-531588ae-icon-circle {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }
    .mpt-531588ae-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .mpt-531588ae-content-area {
        padding: 24px;
    }
}
