/* Hero Section ====================== */
.gHero{
    padding-top: 12rem;
    padding-bottom: 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, rgba(46,204,113,.15), rgba(255,255,255,.85));
    position: relative;
    overflow: hidden;
}

.gHeroRow{
    width: 100%;
    padding: 0 9%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Content */
.gHeroBadge{
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: .8rem 1.6rem;
    border-radius: 30px;
    background: rgba(46,204,113,.18);
    color: var(--darkGreen);
    font-size: 1.4rem;
    font-weight: 700;
}

.gHeroBadge i{
    color: var(--green);
}

.gHeroContent h1{
    margin-top: 2rem;
    font-size: 5.2rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--black);
}

.gHeroContent h1 span{
    color: var(--darkGreen);
}

.gHeroContent p{
    margin-top: 1.8rem;
    font-size: 1.6rem;
    color: var(--gray);
    line-height: 1.9;
    max-width: 55rem;
}

/* Hero Buttons */
.gHeroBtn{
    margin-top: 2.6rem;
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.gBtnMain{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    padding: 1.1rem 2.2rem;
    border-radius: 14px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(90deg, var(--green), var(--darkGreen));
    box-shadow: 0 .9rem 1.8rem rgba(46,204,113,.25);
}

.gBtnMain:hover{
    transform: translateY(-2px);
}

.gBtnOutline{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    padding: 1.1rem 2.2rem;
    border-radius: 14px;
    font-size: 1.6rem;
    font-weight: 800;
    border: 2px solid rgba(30,143,77,.35);
    color: var(--darkGreen);
    background: rgba(255,255,255,.6);
}

.gBtnOutline:hover{
    background: rgba(46,204,113,.10);
    transform: translateY(-2px);
}

/* Mini Cards */
.gHeroMini{
    margin-top: 3.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.gMiniCard{
    display: flex;
    gap: 1.3rem;
    align-items: flex-start;
    padding: 1.6rem 1.6rem;
    border-radius: 18px;
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 .7rem 1.6rem rgba(0,0,0,.06);
}

.gMiniCard i{
    font-size: 2.2rem;
    color: var(--darkGreen);
    background: rgba(46,204,113,.15);
    width: 45px;
    height: 45px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gMiniCard h4{
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--black);
}

.gMiniCard p{
    margin-top: .5rem;
    font-size: 1.35rem;
    color: var(--gray);
}

/* Hero Image */
.gHeroImage{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gHeroCircle{
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,204,113,.35), transparent 70%);
    z-index: 1;
}

.gHeroImage img{
    width: 100%;
    z-index: 2;
    filter: drop-shadow(0px 20px 30px rgba(0,0,0,.18));
    animation: plantFloat 4s ease-in-out infinite;
}

@keyframes plantFloat{
    0%, 100%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-18px);
    }
}

/* 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);
}

/* About Section ====================== */
.gAbout{
    padding: 9rem 0;
    background: rgba(255,255,255,.6);
}

.gAboutRow{
    padding: 0 9%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4.5rem;
    align-items: flex-start;
}

/* Left Content */
.gAboutBadge{
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: .8rem 1.6rem;
    border-radius: 30px;
    background: rgba(46,204,113,.16);
    color: var(--darkGreen);
    font-size: 1.4rem;
    font-weight: 800;
}

.gAboutBadge i{
    color: var(--green);
}

.gAboutContent h2{
    margin-top: 1.8rem;
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--black);
}

.gAboutContent p{
    margin-top: 1.5rem;
    font-size: 1.55rem;
    color: var(--gray);
    line-height: 1.9;
    max-width: 62rem;
}

/* Right Side */
.gAboutRight{
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

/* Checklist */
.gAboutList{
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.gAboutPoint{
    display: flex;
    gap: 1.1rem;
    align-items: center;
    background: rgba(255,255,255,.85);
    padding: 1.4rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 .6rem 1.4rem rgba(0,0,0,.05);
}

.gAboutPoint i{
    font-size: 1.5rem;
    color: var(--white);
    background: linear-gradient(90deg, var(--green), var(--darkGreen));
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gAboutPoint p{
    margin: 0;
    font-size: 1.45rem;
    font-weight: 600;
    color: #333;
}

/* Stats */
.gAboutStats{
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
}

.gStatBox{
    flex: 1 1 140px;
    padding: 1.6rem 1.6rem;
    background: rgba(46,204,113,.12);
    border-radius: 18px;
    border: 1px solid rgba(46,204,113,.18);
    text-align: center;
}

.gStatBox h3{
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--darkGreen);
}

.gStatBox span{
    display: block;
    margin-top: .6rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #444;
}

/* Button */
.gAboutRight .gBtnMain{
    width: fit-content;
}

/* Gallery Section ====================== */
.gGallery{
    padding: 9rem 0;
    background: rgba(255,255,255,.7);
}

.gGalleryGrid{
    padding: 0 9%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

/* Gallery Card */
.gGalleryCard{
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    box-shadow: 0 1rem 2.2rem rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.05);
}

.gGalleryCard img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}

.gGalleryCard:hover img{
    transform: scale(1.12);
}

/* Overlay */
.gGalleryOverlay{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.35);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.gGalleryOverlay i{
    font-size: 3rem;
    color: #fff;
    background: rgba(46,204,113,.85);
    padding: 1.4rem;
    border-radius: 50%;
}

.gGalleryCard:hover .gGalleryOverlay{
    opacity: 1;
}

/* Modal Popup */
.gModal{
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    padding: 2rem;
}

.gModal.active{
    opacity: 1;
    visibility: visible;
}

.gModalBox{
    position: relative;
    max-width: 800px;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 2rem 4rem rgba(0,0,0,.25);
    animation: modalZoom 0.35s ease;
}

@keyframes modalZoom{
    0%{
        transform: scale(.8);
        opacity: 0;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}

.gModalBox img{
    width: 100%;
    display: block;
    max-height: 80vh;
    object-fit: cover;
}

.gModalClose{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,.6);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.gModalClose i{
    font-size: 2rem;
    color: #fff;
}

.gModalClose:hover{
    background: rgba(46,204,113,.9);
}

/* Contact Section ====================== */
.gContact{
    padding: 9rem 0;
    background: rgba(255,255,255,.75);
}

.gContactRow{
    padding: 0 9%;
    display: flex;
    justify-content: center;
}
/* Contact Form ====================== */
.gContactForm{
    background: rgba(255,255,255,.92);
    border-radius: 22px;
    padding: 3rem 2.7rem;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 1.2rem 2.6rem rgba(0,0,0,.08);
    width: 100%;
    max-width: 800px;
}

.gContactForm h3{
    font-size: 2.6rem;
    font-weight: 900;
    text-align: center;
    color: var(--black);
    margin-bottom: 2.2rem;
}

/* Input Box */
.gInputBox{
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: rgba(46,204,113,.08);
    border: 1px solid rgba(46,204,113,.20);
    border-radius: 18px;
    padding: 1.4rem 1.6rem;
    margin-bottom: 1.6rem;
    transition: 0.25s;
}

.gInputBox:hover{
    background: rgba(46,204,113,.11);
    border: 1px solid rgba(46,204,113,.32);
}

.gInputBox:focus-within{
    background: rgba(46,204,113,.14);
    border: 1px solid rgba(46,204,113,.55);
    box-shadow: 0 0 0 4px rgba(46,204,113,.18);
}

.gInputBox i{
    font-size: 1.9rem;
    color: var(--darkGreen);
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(46,204,113,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .2rem;
}

/* Input */
.gInputBox input,
.gInputBox textarea{
    width: 100%;
    background: transparent;
    font-size: 1.5rem;
    color: #222;
    resize: none;
    outline: none;
    border: none;
    padding: .6rem .2rem;
}

.gInputBox textarea{
    height: 140px;
    padding-top: .4rem;
}

.gInputBox input::placeholder,
.gInputBox textarea::placeholder{
    color: rgba(0,0,0,.45);
    font-weight: 500;
}

/* Send Button */
.gSendBtn{
    width: 100%;
    padding: 1.35rem;
    border-radius: 18px;
    font-size: 1.65rem;
    font-weight: 900;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(90deg, var(--green), var(--darkGreen));
    box-shadow: 0 1rem 2rem rgba(46,204,113,.25);
    border: none;
    transition: 0.25s;
}

.gSendBtn:hover{
    transform: translateY(-3px);
    box-shadow: 0 1.4rem 2.6rem rgba(46,204,113,.32);
}

.gSendBtn:active{
    transform: scale(.98);
}

/* Products Responsive ====================== */
@media(max-width: 991px){
    .gHeroRow{
        padding: 0 5%;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .gHeroContent p{
        margin-left: auto;
        margin-right: auto;
    }
    .gHeroBtn{
        justify-content: center;
    }

    .gHeroMini{
        align-items: center;
    }

    .gMiniCard{
        max-width: 480px;
        width: 100%;
        text-align: left;
    }

    .gSectionTitle{
        padding: 0 5%;
    }
    .gProductGrid{
        padding: 0 5%;
    }
    .gContactRow{
        padding: 0 5%;
    }

    .gAboutRow{
        padding: 0 5%;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gAboutContent p{
        margin-left: auto;
        margin-right: auto;
    }

    .gAboutRight{
        align-items: center;
    }

    .gAboutPoint{
        text-align: left;
        max-width: 520px;
        width: 100%;
    }

    .gAboutStats{
        justify-content: center;
    }
}

@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;
    }
    .gAboutContent h2{
        font-size: 3.2rem;
    }

    .gAboutStats{
        flex-direction: column;
        width: 100%;
    }

    .gStatBox{
        width: 100%;
        flex: none;
    }

    .gAboutRight .gBtnMain{
        width: 100%;
        justify-content: center;
    }

    .gGalleryCard img{
        height: 220px;
    }
}