/* Why Choose BB Apron Section */
.why-choose {
    padding: 6em 2em;
}

.why-choose .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5em;
}

.why-choose .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 3em;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--g-gap);
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Item */
.feature-item {
    background-color: var(--color-white);
    border-radius: var(--card-radius);
    padding: 2em 1.5em;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.5s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.7s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.9s;
}

.feature-item:nth-child(5) {
    animation-delay: 1.1s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Feature Icon */
.feature-icon {
    font-size: 2rem;
    color: var(--color-highlight);
    margin-bottom: 1em;
}

/* Feature Title */
.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Responsive */
@media screen and (max-width: 576px) {
    .why-choose .section-title {
        font-size: 2rem;
    }

    .why-choose .section-subtitle {
        font-size: 1rem;
    }

    .feature-item h3 {
        font-size: 1rem;
    }
}