/* ================= PRODUCTS HERO ================= */

.products-hero {
    padding: 100px 20px;
    background: #f8faf9;
}

/* tag */
.products-tag {
    color: #2e8b6f;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* heading */
.products-hero h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* description */
.products-desc {
    color: #6c757d;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}


@media (max-width: 768px) {

    .products-hero {
        padding: 60px 15px;
    }

    .products-hero h1 {
        font-size: 26px;
    }

    .products-hero p {
        font-size: 14px;
    }
}



/*========================================================*/




/*==================== Product section =======================*/

/* ===== FILTER BUTTONS ===== */

.product-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.filter-btn {
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    background: #f1f1f1;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #2e8b6f;
    color: #fff;
}


/* ===== PRODUCT CARD ===== */

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
    margin-bottom: 50px;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-category {
    font-size: 12px;
    color: #2e8b6f;
    font-weight: 600;
}

.product-card h6 {
    font-weight: 600;
    margin: 5px 0;
}

.price {
    color: #2e8b6f;
    font-weight: 600;
}

/* Hover effect 🔥 */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/*===================================================================*/


/*======================= CUSTOM ORDER CTA =================================*/

.custom-order-section {
    padding: 60px 20px;
}

.custom-text {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 20px;
}

.custom-btn {
    display: inline-block;
    background: #2e8b6f;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.custom-btn:hover {
    background: #256f58;
}

/*============================================================================*/