/* ===============================
   HOMEPAGE LAYOUT ONLY
================================ */

.homepage .featured-products {
    padding: 28px 0;
}

.homepage .section-header,
.homepage .section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.homepage .section-header h3,
.homepage .section-title h3 {
    font-size: 24px;
    font-weight: 700;
    position: relative;
}

/* accent line */
.homepage .section-header h3::before,
.homepage .section-title h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -13px;
    width: 55px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 20px;
}

.homepage .section-header h3 a {
    text-decoration: none;
    color: var(--dark);
}

.homepage .view-all {
    font-size: 14px;
    font-weight: 600;
    background: #ecfdf5;
    color: var(--primary-green);
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none;
}

.homepage .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}