/* ============================================
   Product Intro Section
   ============================================ */

.product-intro {
    background: #f7f5f0;
    padding: 3rem 0;
}

.product-intro__layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}

.product-intro__heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3a6b30;
    margin: 0 0 1.75rem;
}

/* Reasons grid */
.product-intro__reasons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-bottom: 1.75rem;
}

.product-intro__reason {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    border-right: 1px solid #ddd;
}

.product-intro__reason:last-child {
    border-right: none;
}

.product-intro__reason-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 0.6rem;
    opacity: 0.75;
}

.product-intro__reason-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    display: block;
}

.product-intro__reason-text {
    font-size: 0.8rem;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

.product-intro__rule {
    border: none;
    border-top: 1px solid #ddd;
    margin: 0 0 1.5rem;
}

.product-intro__body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #222;
    margin-bottom: 1.75rem;
}

.product-intro__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #4a7c3f;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.product-intro__cta:hover {
    background: #3a6b30;
    color: #fff;
}

/* ============================================
   Advisor card
   ============================================ */

.product-advisor {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.product-advisor__heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3a6b30;
    margin: 0 0 1rem;
}

.product-advisor__profile {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.product-advisor__image {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.product-advisor__body {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

.product-advisor__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: background 0.2s, color 0.2s;
}

.product-advisor__btn--primary {
    background: #4a7c3f;
    color: #fff;
}

.product-advisor__btn--primary:hover {
    background: #3a6b30;
    color: #fff;
}

.product-advisor__btn--secondary {
    background: #fff;
    color: #3a6b30;
    border: 1px solid #4a7c3f;
}

.product-advisor__btn--secondary:hover {
    background: #f0f7ee;
}

/* ============================================
   Fits list
   ============================================ */

.product-fits {
    background: #f0ebe0;
    border-radius: 8px;
    padding: 1.5rem;
}

.product-fits__heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3a6b30;
    margin: 0 0 0.75rem;
}

.product-fits__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.product-fits__item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
}

.product-fits__item svg {
    flex-shrink: 0;
    margin-top: 1px;
}

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

@media (max-width: 900px) {
    .product-intro__layout {
        grid-template-columns: 1fr;
    }

    .product-intro__reasons {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .product-intro__reason {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding-bottom: 1rem;
    }

    .product-intro__reason:last-child {
        border-bottom: none;
    }
}

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