/* =====================================================
   FURNXPERT PRODUCT PAGE
===================================================== */

.fx-section {
    padding: 40px 0;
}

.fx-light {
    background: #fafafa;
}

.fx-container {
    width: 100%;
    padding: 0;
}

/*
.fx-container {
    max-width: 1150px;
    margin: auto;
    padding: 0 20px;
}
*/

.fx-split {
    display: flex;
    align-items: center;
    gap: 35px;
}

.fx-split.reverse {
    flex-direction: row-reverse;
}

.fx-text-col {
    flex: 1;
}

.fx-image-col {
    flex: 1;
}

.fx-image-col img {
    width: 100%;
    border: 1px solid #e5e5e5;
}

.fx-title-line {
    width: 4px;
    height: 28px;
    background: #f8951d;
    margin-bottom: 20px;
}

.fx-h2 {
    font-size: 34px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

.fx-h3 {
    font-size: 30px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

/* MORE DETAILS BUTTON */

.fx-more-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 22px;
    border: 2px solid #f8951d;
    color: #f8951d !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.fx-more-btn:hover {
    background: #f8951d;
    color: #fff !important;
}

.fx-text {
    font-size: 15px;
    line-height: 30px;
    color: #555;
    margin-bottom: 18px;
}

/* STEP LIST */

.fx-step-list {
    margin-top: 20px;
}

.fx-step {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}

.fx-step span {
    width: 34px;
    height: 34px;
    background: #f8951d;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.fx-step p {
    margin: 0;
    font-size: 15px;
    line-height: 28px;
    color: #555;
}

/* BULLET LIST */

.fx-results-list {
    padding-left: 18px;
}

.fx-results-list li {
    font-size: 15px;
    line-height: 30px;
    color: #555;
    margin-bottom: 8px;
}

/* RESPONSIVE */

@media(max-width: 991px) {

    .fx-split,
    .fx-split.reverse {
        flex-direction: column;
    }

    .fx-h2 {
        font-size: 28px;
    }

    .fx-h3 {
        font-size: 24px;
    }
}}

.fx-more-btn {
    display: inline-block;
    margin-top: 10px;
    color: #f8951d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fx-more-btn:hover {
    color: #222;
    text-decoration: none;
}

