/* Products Section ====================== */
.gProducts{
    padding: 10rem 0;
    background: var(--softGreen);
}

.gSectionTitle{
    padding: 0 9%;
    text-align: center;
    margin-bottom: 4.5rem;
}

.gSectionTitle span{
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: .8rem 1.7rem;
    border-radius: 30px;
    background: rgba(46,204,113,.16);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--darkGreen);
}

.gSectionTitle span i{
    color: var(--green);
}

.gSectionTitle h2{
    margin-top: 1.8rem;
    font-size: 4rem;
    font-weight: 900;
    color: var(--black);
}

.gSectionTitle p{
    margin-top: 1.3rem;
    font-size: 1.55rem;
    line-height: 1.8;
    color: var(--gray);
    max-width: 65rem;
    margin-left: auto;
    margin-right: auto;
}

/* Product Grid */
.gProductGrid{
    padding: 0 9%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
}

/* Card */
.gProductCard{
    position: relative;
    background: rgba(255,255,255,.85);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 1rem 2.2rem rgba(0,0,0,.08);
    transition: 0.3s;
}

.gProductCard:hover{
    transform: translateY(-12px);
    box-shadow: 0 1.8rem 3.2rem rgba(0,0,0,.12);
}

/* Badge */
.gProductBadge{
    position: absolute;
    top: 15px;
    left: 15px;
    padding: .6rem 1.2rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    z-index: 2;
}

.gProductBadge.best{
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

.gProductBadge.new{
    background: linear-gradient(90deg, #2ecc71, #1e8f4d);
}

/* Image */
.gProductImg{
    width: 100%;
    height: 220px;
    background: linear-gradient(120deg, rgba(46,204,113,.15), rgba(255,255,255,.75));
    overflow: hidden;
}

.gProductImg img{
    width: 100%;
    height: 220px;
    filter: drop-shadow(0px 14px 20px rgba(0,0,0,.10));
    transition: 0.3s;
    object-position: center;
    object-fit: cover;
}

.gProductCard:hover .gProductImg img{
    transform: scale(1.08);
}

/* Info */
.gProductInfo{
    padding: 2.2rem 2rem;
}

.gProductInfo h3{
    font-size: 1.9rem;
    font-weight: 900;
    color: #222;
}

.gProductInfo p{
    margin-top: 1rem;
    font-size: 1.4rem;
    color: #666;
    line-height: 1.7;
    min-height: 55px;
}

/* Price */
.gProductPrice{
    margin-top: 1.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newPrice{
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--darkGreen);
}

.oldPrice{
    font-size: 1.4rem;
    font-weight: 700;
    color: #888;
    text-decoration: line-through;
}

/* Order Button */
.gOrderBtn{
    margin-top: 1.8rem;
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: .8rem;
    padding: 1.1rem;
    border-radius: 14px;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--green), var(--darkGreen));
    color: #fff;
    box-shadow: 0 .8rem 1.6rem rgba(46,204,113,.22);
}

.gOrderBtn:hover{
    transform: translateY(-2px);
}

@media(max-width: 991px){
    .gProductGrid{
        padding: 0 5%;
    }
}

@media(max-width: 781px){
    .gProductGrid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 560px){
    .gSectionTitle h2{
        font-size: 3.2rem;
    }
    .gProductInfo p{
        min-height: auto;
    }
    .gProductGrid{
        grid-template-columns: 1fr;
    }
}