.ghp-wrapper *{box-sizing:border-box;}
.ghp-wrapper{max-width:1200px; margin:0 auto; padding:0 20px; font-family:inherit;}

/* Hero */
.ghp-hero{
    background:linear-gradient(135deg,#EAF3DE,#C0DD97);
    border-radius:16px;
    padding:70px 40px;
    margin:24px 0;
    text-align:center;
}
.ghp-hero-tag{
    display:inline-block;
    background:#2E7D32;
    color:#fff;
    font-size:12px;
    font-weight:600;
    padding:4px 12px;
    border-radius:20px;
    margin-bottom:16px;
}
.ghp-hero h1{
    font-size:36px;
    line-height:1.2;
    margin:0 0 12px;
    color:#173404;
}
.ghp-hero p{
    font-size:16px;
    color:#3b6d11;
    margin:0 0 24px;
}
.ghp-btn{
    display:inline-block;
    background:#2E7D32;
    color:#fff;
    text-decoration:none;
    padding:12px 28px;
    border-radius:30px;
    font-weight:600;
    font-size:14px;
}
.ghp-btn:hover{background:#1B5E20; color:#fff;}

/* Sections */
.ghp-section{margin:48px 0;}
.ghp-heading{
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    color:#1f2937;
}

/* Category grid */
.ghp-cat-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(120px, 1fr));
    gap:16px;
}
.ghp-cat-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:20px 10px;
    text-align:center;
    text-decoration:none;
    color:#1f2937;
    transition:transform .15s, box-shadow .15s;
}
.ghp-cat-card:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 16px rgba(0,0,0,0.08);
    color:#2E7D32;
}
.ghp-cat-icon{display:block; font-size:32px; margin-bottom:8px;}
.ghp-cat-label{font-size:13px; font-weight:600;}

/* Deals countdown */
.ghp-deals-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:20px;
}
.ghp-countdown{
    background:#173404;
    color:#fff;
    font-size:14px;
    font-weight:600;
    padding:8px 16px;
    border-radius:8px;
}

/* Newsletter */
.ghp-newsletter{
    background:#173404;
    color:#fff;
    text-align:center;
    padding:50px 20px;
    border-radius:16px;
    margin:48px 0;
}
.ghp-newsletter h2{margin:0 0 8px; font-size:24px;}
.ghp-newsletter p{margin:0 0 20px; color:#C0DD97;}
.ghp-newsletter-form{
    display:flex;
    justify-content:center;
    gap:0;
    max-width:420px;
    margin:0 auto;
    flex-wrap:wrap;
}
.ghp-newsletter-form input{
    flex:1;
    min-width:200px;
    padding:12px 16px;
    border:none;
    border-radius:30px 0 0 30px;
    font-size:14px;
    outline:none;
}
.ghp-newsletter-form button{
    background:#2E7D32;
    color:#fff;
    border:none;
    padding:12px 24px;
    border-radius:0 30px 30px 0;
    font-weight:600;
    cursor:pointer;
}

/* Footer */
.ghp-footer{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:32px;
    padding:40px 0;
    border-top:1px solid #e5e7eb;
}
.ghp-footer-col h4{margin:0 0 14px; font-size:15px;}
.ghp-footer-col a{
    display:block;
    color:#6b7280;
    text-decoration:none;
    font-size:14px;
    margin-bottom:8px;
}
.ghp-footer-col a:hover{color:#2E7D32;}
.ghp-footer-bottom{
    grid-column:1 / -1;
    border-top:1px solid #e5e7eb;
    padding-top:20px;
    font-size:13px;
    color:#6b7280;
    text-align:center;
}

@media (max-width:768px){
    .ghp-hero h1{font-size:26px;}
    .ghp-footer{grid-template-columns:1fr;}
}
