/* Base strip background styling with the warm pinkish-white tint hue */
.features-section {
    width: 100%;
    background: linear-gradient(90deg, #fff5f7 0%, #ffffff 50%, #fff7f2 100%);
    padding: 24px 20px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 1px solid #f6f0f2;
    border-bottom: 1px solid #f6f0f2;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Flex layout mapping the badges across a single horizontal row line */
.seller-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Individual Feature Item row structure matching the reference style */
.feature-item {
    display: flex;
    align-items: center;
    gap: 14px; /* Separation between vectors and block strings */
    flex: 1;
    justify-content: center;
}

/* Icon box boundaries holding clean SVG stroke lines */
.feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

/* Typography container block rules */
.feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-content h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #8b2645; /* Dark crimson accent color matching headers */
    line-height: 1.2;
}

.feature-content p {
    margin: 0;
    font-size: 12px;
    color: #666666;
    line-height: 1.2;
}

/* Specific text highlight styling rule matching image_3deea3 */
.feature-content p strong {
    color: #ff007f;
    font-weight: 700;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Grid conversion for mobile screens)
   ========================================================================== */
@media (max-width: 992px) {
    .seller-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Spreads out 2x2 on tablets */
        gap: 24px 15px;
    }
    
    .feature-item {
        justify-content: flex-start;
        padding-left: 15%;
    }
}

@media (max-width: 540px) {
    .seller-features {
        grid-template-columns: 1fr; /* Single column stack for small phones */
        gap: 20px;
    }
    
    .feature-item {
        padding-left: 10%;
    }
}