/* =============================
   WHY CHOOSE BB APRON
   ============================= */

.why-choose {
    background: linear-gradient(180deg, #f9fafb, #ffffff);
    padding: 100px 0;
}

.why-choose .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.why-choose .section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 16px;
}

.why-choose .section-header p {
    color: var(--color-secondary);
    font-size: 17px;
    line-height: 1.6;
}

/* =============================
   2–1–2 Grid Layout
   ============================= */

.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

/* Top row */
.choose-item:nth-child(1) {
    grid-column: 1 / 3;
}

.choose-item:nth-child(2) {
    grid-column: 3 / 5;
}

/* Center highlight */
.choose-item:nth-child(3) {
    grid-column: 2 / 4;
}

/* Bottom row */
.choose-item:nth-child(4) {
    grid-column: 1 / 3;
}

.choose-item:nth-child(5) {
    grid-column: 3 / 5;
}

/* =============================
   Card Design
   ============================= */

.choose-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    /* reduced height */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef0f2;
    transition: all 0.35s ease;
}

.choose-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Icon */
.choose-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 125, 0, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.choose-icon img {
    width: 26px;
    height: 26px;
}

/* Text */
.choose-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-black);
}

.choose-item p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--color-secondary);
}

/* =============================
   Highlight Center Card
   ============================= */

.choose-item:nth-child(3) {
    background: #fffaf4;
    border: 1px solid rgba(255, 125, 0, 0.25);
    box-shadow: 0 30px 60px rgba(255, 125, 0, 0.12);
    position: relative;
}

/* Small badge */
.choose-item:nth-child(3)::after {
    content: "Best Value";
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--color-primary);
    color: #fff;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* =============================
   Responsive
   ============================= */

@media (max-width: 992px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .choose-item {
        grid-column: auto !important;
    }
}

@media (max-width: 576px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }

    .choose-item {
        padding: 26px 22px;
    }
}
