.product-text-feature {
    padding: 3rem 0;
}

.product-text-feature .feature-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.product-text-feature .feature-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

.product-text-feature .feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: translateX(-40px) scale(0.4);
    transform-origin: center;
}

.product-text-feature .feature-content {
    padding: 2.5rem 2.75rem;
    opacity: 0;
    transform: translateX(40px) scale(0.4);
    transform-origin: center;
}

.product-text-feature .feature-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-text-feature .feature-text {
    font-size: 1.05rem;
    color: #4f4f4f;
    margin-bottom: 1.5rem;
}

.product-text-feature .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.product-text-feature .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
    color: #3f3f3f;
}

.product-text-feature .feature-list i {
    color: #7a8769;
}

.product-text-feature .feature-cta {
    background: #7a8769;
    border-color: #7a8769;
    color: #fff;
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-text-feature .feature-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(122, 135, 105, 0.25);
    color: #fff;
}

.product-text-feature.feature-inview .feature-image {
    animation: zoomInLeft 0.85s ease forwards;
}

.product-text-feature.feature-inview .feature-content {
    animation: zoomInRight 1.1s ease forwards;
    animation-delay: 0.25s;
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px) scale(0.4);
    }
    70% {
        opacity: 1;
        transform: translateX(0) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: translateX(40px) scale(0.4);
    }
    70% {
        opacity: 1;
        transform: translateX(0) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 991px) {
    .product-text-feature .feature-content {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .product-text-feature .feature-image-wrapper {
        min-height: 240px;
    }

    .product-text-feature .feature-title {
        font-size: 1.6rem;
    }
}
