:root{

    --hm-green:#6FA86A;
    --hm-dark-green:#4F8A57;

    --hm-brown:#7A5A42;

    --hm-beige:#F3EBDD;

    --hm-cream:#FAF8F3;

    --hm-white:#FFFFFF;

    --hm-text:#2F2F2F;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    color:var(--hm-text);
    background:var(--hm-cream);
}

.container{
    width:95%;
    max-width:1280px;
    margin:auto;
}

/* ==========================
   PREMIUM HEADER
========================== */

.hm-header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 3px 20px rgba(0,0,0,.06);
}

.hm-header-inner{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    min-height:95px;
}

.hm-nav-left{
    justify-self:start;
}

.hm-menu{
    display:flex;
    gap:45px;
    list-style:none;
}

.hm-menu a{
    text-decoration:none;
    color:#222;
    position:relative;
    font-size:17px;
    font-weight:600;
    letter-spacing:.3px;
}

.hm-menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--hm-green);
    transition:.3s;
}

.hm-menu a:hover::after{
    width:100%;
}

.hm-logo{
    text-align:center;
}

.hm-logo img{
    max-height:95px;
    width:auto;
    transition:.3s;
}

.hm-header-right{
    justify-self:end;
    display:flex;
    align-items:center;
    gap:25px;
}

.hm-header-right a{
    text-decoration:none;
    color:#222;
    font-weight:600;
}
.hm-icon-link{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#222;
    font-weight:600;
    position:relative;
}

.hm-icon-link i{
    font-size:18px;
}

.hm-cart-link{
    padding-right:10px;
}

.hm-cart-count{
    position:absolute;
    top:-10px;
    right:-12px;

    width:20px;
    height:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:var(--hm-green);
    color:#fff;

    font-size:11px;
    font-weight:700;
}

/* ==========================
   CATEGORY SECTION
========================== */

.hm-categories{
    padding:90px 0;
    background:#fff;
}

.hm-section-heading{
    text-align:center;
    margin-bottom:50px;
}

.hm-section-heading span{
    color:var(--hm-green);
    font-weight:700;
    letter-spacing:1px;
}

.hm-section-heading h2{
    font-size:42px;
    color:var(--hm-brown);
    margin:15px 0;
}

.hm-section-heading p{
    max-width:600px;
    margin:auto;
}


/* ==========================
   CATEGORY SECTION
========================== */

.hm-categories{
    padding:100px 0;
    background:#fff;
}

.hm-category-slider{
    overflow:hidden;
}

.hm-category-card{
    display:block;
    text-decoration:none;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.hm-category-card:hover{
    transform:translateY(-8px);
}

.hm-category-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:contain;
    display:block;
}

.hm-category-content{
    padding:20px;
    text-align:center;
}

.hm-category-content h3{
    font-size:22px;
    color:var(--hm-brown);
    margin-bottom:8px;
}

.hm-category-content span{
    color:#777;
    font-size:14px;
}
/* featured products section */
.hm-featured-products{
    padding:100px 0;
    background:var(--hm-cream);
}

.hm-product-card{
    display:flex;
    flex-direction:column;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.hm-product-card:hover img{
    transform:scale(1.05);
}

.hm-product-card img{
      width:100%;
    height:320px;
    object-fit:cover;
    transition:.4s;
}

.hm-product-content{
    padding:20px;
}

.hm-product-content h3 {
    min-height:65px;
  
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.hm-product-content a{
    text-decoration:none;
    color:var(--hm-brown);
}

.hm-price{
    color:var(--hm-green);
    font-size:20px;
    font-weight:700;
    margin-bottom:15px;
}

.hm-product-btn {
    display:block;
    width:100%;
    text-align:center;
    background:var(--hm-green);
    color:#fff !important;
    padding:12px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.hm-product-btn:hover{
    background:var(--hm-dark-green);
}


/* HERO SECTION */
/* ==========================
   HERO SECTION
========================== */

.hm-hero{
    background:var(--hm-cream);
    padding:60px 0;
}

.hm-hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hm-hero-text{
    flex:1;
}

.hm-hero-tag{
    display:inline-block;
    background:var(--hm-beige);
    color:var(--hm-dark-green);
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.hm-hero-text h1{
    font-size:58px;
    line-height:1.1;
    color:var(--hm-brown);
    margin-bottom:25px;
}

.hm-hero-text p{
    font-size:18px;
    line-height:1.8;
    max-width:600px;
    margin-bottom:30px;
}

.hm-hero-buttons{
    display:flex;
    gap:15px;
}

.hm-btn-primary{
    background:var(--hm-green);
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:10px;
    font-weight:600;
}

.hm-btn-primary:hover{
    background:var(--hm-dark-green);
}

.hm-btn-secondary{
    background:#fff;
    color:var(--hm-brown);
    text-decoration:none;
    padding:15px 30px;
    border-radius:10px;
    border:2px solid var(--hm-brown);
    font-weight:600;
}

.hm-hero-image{
    flex:1;
}

.hm-hero-image img{
    width:100%;
    display:block;
    border-radius:24px;
}

.hm-product-tabs-section{
    padding:100px 0;
    background:#fff;
}

.hm-tabs-nav{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:40px 0;
    flex-wrap:wrap;
}

.hm-tab-btn{
    border:none;
    background:#f5f5f5;
    padding:14px 30px;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
}

.hm-tab-btn.active{
    background:var(--hm-green);
    color:#fff;
}

.hm-tab-content{
    display:none;
}

.hm-tab-content.active{
    display:block;
}

.hm-product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);

    height:100%;

    display:flex;
    flex-direction:column;
}

.hm-product-content{
    padding:20px;

    display:flex;
    flex-direction:column;

    flex-grow:1;
}
.hm-product-image{
    display:block;
    overflow:hidden;
    background:#f8f8f8;
}

.hm-product-image img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:contain;
    padding:20px;
    display:block;
    transition:.4s;
}

.hm-product-content{
    padding:20px;
}

.hm-product-content h3{

    font-size:20px;
    line-height:1.5;

    min-height:60px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    overflow:hidden;
}

.hm-product-content h3 a{
    color:var(--hm-brown);
    text-decoration:none;
}

.hm-price{
    margin-top:auto;

    font-size:22px;
    font-weight:700;

    color:var(--hm-green);

    margin-bottom:20px;
}
.hm-product-btn{

    display:block;
    width:100%;

    text-align:center;

    padding:12px 20px;

    border-radius:12px;

    background:var(--hm-green);

    color:#fff;

    text-decoration:none;

    font-weight:600;
}

.hm-product-slider{
    overflow:hidden;
}

/* ==========================
   WHY HEALTHY MONK
========================== */

.hm-why-section{
    padding:120px 0;
    background:var(--hm-beige);
}

.hm-why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.hm-why-image img{
    width:100%;
    border-radius:24px;
    display:block;
}

.hm-section-tag{
    color:var(--hm-green);
    font-weight:700;
    letter-spacing:1px;
}

.hm-why-content h2{
    font-size:48px;
    color:var(--hm-brown);
    margin:15px 0 25px;
}

.hm-why-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.hm-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:35px;
}

.hm-feature-item{
    background:#fff;
    padding:15px 18px;
    border-radius:12px;
    font-weight:500;
    box-shadow:0 3px 12px rgba(0,0,0,.05);
}

/* ==========================
   KIDS NUTRITION
========================== */

.hm-kids-section{
    padding:120px 0;
    background:#fff;
}

.hm-kids-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.hm-kids-image img{
    width:100%;
    border-radius:24px;
    display:block;
}

.hm-kids-content h2{
    font-size:48px;
    color:var(--hm-brown);
    margin:15px 0 25px;
}

.hm-kids-content p{
    line-height:1.8;
    margin-bottom:25px;
}

.hm-kids-list{
    list-style:none;
    margin:0 0 30px;
    padding:0;
}

.hm-kids-list li{
    margin-bottom:15px;
    padding-left:30px;
    position:relative;
}

.hm-kids-list li::before{
    content:"✓";
    color:var(--hm-green);
    position:absolute;
    left:0;
}











/* FOOTER */

.hm-footer{
    background:var(--hm-brown);
    color:#fff;
    text-align:center;
    padding:30px 0;
    margin-top:60px;
}
