/* ==============================================
   ONE PRODUCT FEATURE - BASE STYLES
   ============================================== */
.oe-product-feature {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ==============================================
   IMAGE SECTION
   ============================================== */
.oe-pf-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oe-pf-image img {
    width: 100%;
    height: auto;
    display: block;
}

.oe-pf-badge {
    position: absolute;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.oe-pf-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Badge Positions */
.oe-pf-badge-bottom-center {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.oe-pf-badge-bottom-left {
    bottom: 30px;
    left: 30px;
}

.oe-pf-badge-bottom-right {
    bottom: 30px;
    right: 30px;
}

.oe-pf-badge-top-center {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.oe-pf-badge-top-left {
    top: 30px;
    left: 30px;
}

.oe-pf-badge-top-right {
    top: 30px;
    right: 30px;
}

.oe-pf-badge-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ==============================================
   CONTENT SECTION
   ============================================== */
.oe-pf-content {
    flex: 1;
}

.oe-pf-features {
    display: flex;
    flex-direction: column;
}

.oe-pf-feature-item {
    position: relative;
}

.oe-pf-feature-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Image on left - lines on right */
.oe-pf-image-left .oe-pf-line {
    order: 1;
}

.oe-pf-image-left .oe-pf-feature-text {
    order: 2;
}

/* Image on right - lines on left */
.oe-pf-image-right .oe-pf-line {
    order: 2;
}

.oe-pf-image-right .oe-pf-feature-text {
    order: 1;
    text-align: right;
}

/* ==============================================
   CONNECTOR LINES
   ============================================== */
.oe-pf-line {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.oe-pf-line-solid {
    background-color: #8B4513;
}

.oe-pf-line-image {
    height: auto !important;
}

.oe-pf-line-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Line Vertical Alignment */
.oe-pf-feature-row.oe-pf-line-align-top {
    align-items: flex-start;
}

.oe-pf-feature-row.oe-pf-line-align-center {
    align-items: center;
}

.oe-pf-feature-row.oe-pf-line-align-bottom {
    align-items: flex-end;
}

/* ==============================================
   FEATURE TEXT
   ============================================== */
.oe-pf-feature-text {
    flex: 1;
}

.oe-pf-feature-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.4;
}

.oe-pf-feature-desc {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
    .oe-product-feature {
        flex-direction: column;
        gap: 40px;
    }

    .oe-pf-image {
        width: 100% !important;
    }

    .oe-pf-content {
        width: 100% !important;
    }

    .oe-pf-badge {
        position: relative;
        bottom: auto;
        left: auto;
        top: auto;
        right: auto;
        transform: none;
        margin-top: 20px;
    }

    .oe-pf-line-image {
        width: 100% !important;
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .oe-product-feature {
        gap: 30px;
    }

    .oe-pf-feature-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .oe-pf-line {
        width: 100% !important;
        max-width: 150px;
    }

    .oe-pf-image-right .oe-pf-feature-text {
        text-align: left;
    }

    .oe-pf-feature-title {
        font-size: 16px;
    }

    .oe-pf-feature-desc {
        font-size: 14px;
    }
}