:root{
    --green:#138a2e;
    --green-dark:#08651f;
    --green-light:#eaf8ef;
    --red:#ed1c24;
    --orange:#ff5b00;
    --blue:#1f62ff;
    --text:#172033;
    --muted:#667085;
    --border:#e8edf3;
    --bg:#f7faf8;
    --white:#ffffff;
}

*{box-sizing:border-box}

html,body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

body{
    margin:0;
    background:#fff;
    color:var(--text);
    font-family:'Figtree',Arial,sans-serif;
    font-size:14px;
}

a{text-decoration:none}

.lhp-container{
    width:100%;
    max-width:100%;
    margin:0;
    padding-left:30px;
    padding-right:30px;
}

/* TOP */
.lhp-top-strip{
    background:var(--green-dark);
    color:#fff;
    font-size:13px;
    padding:6px 0;
}

.lhp-top-strip span,
.lhp-top-strip a{
    color:#fff;
    margin-right:18px;
}

.lhp-top-right{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
}

/* HEADER */
.lhp-main-header{
    background:#fff;
    border-bottom:1px solid var(--border);
    padding:16px 0;
}

.lhp-header-row{
    display:flex;
    align-items:center;
    gap:22px;
}

.lhp-logo,
.lhp-footer-logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--green);
    min-width:240px;
}

.lhp-logo:hover,
.lhp-footer-logo:hover{color:var(--green)}

.lhp-logo-mark{
    width:38px;
    height:38px;
    border-radius:8px;
    background:linear-gradient(135deg,var(--green),#32c75a);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.lhp-logo strong,
.lhp-footer-logo strong{
    display:block;
    font-size:23px;
    line-height:1;
    letter-spacing:.8px;
    font-weight:900;
}

.lhp-logo small,
.lhp-footer-logo small{
    display:block;
    color:var(--red);
    font-size:11px;
    font-weight:900;
    letter-spacing:.5px;
}

.lhp-header-search{
    flex:1;
    height:44px;
    border:1px solid var(--border);
    border-radius:8px;
    display:flex;
    overflow:hidden;
    background:#fff;
}

.lhp-header-search input{
    flex:1;
    border:0;
    outline:0;
    padding:0 16px;
    font-size:14px;
}

.lhp-header-search button{
    width:58px;
    border:0;
    background:var(--green);
    color:#fff;
    font-size:18px;
}

.lhp-header-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.lhp-header-actions a{
    color:var(--text);
    font-weight:800;
}

.lhp-cart-link{
    position:relative;
    background:var(--red);
    color:#fff!important;
    width:44px;
    height:44px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.lhp-cart-link span{
    position:absolute;
    top:-8px;
    right:-8px;
    background:var(--green);
    color:#fff;
    font-size:11px;
    border-radius:50%;
    width:20px;
    height:20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* NAV */
.lhp-nav{
    background:#fff;
    border-bottom:1px solid var(--border);
}

.lhp-nav-row{
    min-height:52px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

.lhp-category-btn{
    border:0;
    background:var(--green-light);
    color:var(--green-dark);
    height:38px;
    border-radius:7px;
    padding:0 16px;
    font-weight:900;
}

.lhp-menu{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    margin:0;
    padding:0;
    flex:1;
}

.lhp-menu a{
    color:var(--text);
    font-size:15px;
    font-weight:800;
}

.lhp-menu a:hover{color:var(--green)}

.lhp-prescription-btn{
    background:var(--red);
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
    font-weight:900;
}

/* HERO */
.lhp-hero-section{
    width:100%;
    padding:26px 0 18px;
    background:#fff;
}

.lhp-hero-banner{
    width:100%;
    min-height:380px;
    border-radius:8px;
    background:linear-gradient(100deg,#24b64a 0%,#31bd50 58%,#22a842 100%);
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:58px 90px;
    color:#fff;
}

.lhp-hero-content h5{
    font-size:20px;
    font-weight:900;
    margin-bottom:12px;
}

.lhp-hero-content h1{
    font-size:58px;
    font-weight:900;
    line-height:1.05;
    margin-bottom:18px;
    letter-spacing:-1px;
}

.lhp-hero-content p{
    font-size:18px;
    max-width:520px;
    margin-bottom:24px;
}

.lhp-hero-content .btn{
    background:#111;
    border:0;
    border-radius:5px;
    font-size:14px;
    padding:10px 24px;
    font-weight:900;
}

.lhp-hero-image img{
    max-height:300px;
    object-fit:contain;
    filter:drop-shadow(0 15px 25px rgba(0,0,0,.18));
}

.lhp-help-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:26px;
    height:100%;
    box-shadow:0 8px 22px rgba(0,0,0,.05);
}

.lhp-help-box h4{
    font-size:24px;
    font-weight:900;
    margin-bottom:20px;
}

.lhp-help-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px 0;
    border-bottom:1px solid var(--border);
    color:var(--green-dark);
    font-weight:900;
}

.lhp-help-item:last-child{border-bottom:0}

.lhp-help-item i{
    color:var(--green);
    font-size:20px;
}

/* SERVICES */
.lhp-services{
    width:100%;
    padding:18px 0 30px;
    background:#fff;
}

.lhp-service-card{
    background:#effaf2;
    border-radius:10px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:18px;
    height:96px;
}

.lhp-service-card i{
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--green);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.lhp-service-card h6{
    font-size:17px;
    font-weight:900;
    margin:0 0 4px;
}

.lhp-service-card p{
    margin:0;
    color:var(--muted);
    font-size:13px;
}

/* SECTIONS */
.lhp-section{
    width:100%;
    padding:24px 0 34px;
    background:#fff;
}

.lhp-title-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:18px;
}

.lhp-title-row h2{
    font-size:28px;
    font-weight:900;
    margin:0;
    letter-spacing:-.3px;
}

.lhp-title-row a{
    color:var(--green);
    font-size:14px;
    font-weight:900;
}

/* PRODUCTS */
.lhp-product-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:12px;
    position:relative;
    height:100%;
    box-shadow:0 3px 10px rgba(0,0,0,.04);
    transition:.2s;
}

.lhp-product-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.lhp-product-image{
    height:168px;
    background:#f5f6f7;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:10px;
    overflow:hidden;
}

.lhp-product-image img{
    max-width:100%;
    max-height:155px;
    object-fit:contain;
}

.lhp-product-card h6{
    font-size:14px;
    line-height:1.3;
    min-height:38px;
    font-weight:800;
    margin-bottom:6px;
}

.lhp-price{
    color:var(--red);
    font-weight:900;
    font-size:14px;
    margin-bottom:8px;
}

.lhp-product-card .btn{
    background:var(--green);
    border-color:var(--green);
    font-size:12px;
    font-weight:900;
    height:32px;
    border-radius:6px;
}

/* COLORED BLOCKS */
.lhp-colored-section{
    width:100%;
    max-width:100%;
    margin:24px 0 34px;
    border-radius:0;
    padding:28px 30px;
    background:linear-gradient(135deg,#20b94b,#8b7435);
}

.lhp-colored-section .lhp-title-row h2,
.lhp-colored-section .lhp-title-row a{
    color:#fff;
}

.lhp-colored-section.orange{
    background:linear-gradient(135deg,#ff2b00,#ff7200);
}

.skin-care{
    background:linear-gradient(135deg,#2aba55,#9b7a39);
}

.discount-badge{
    position:absolute;
    top:8px;
    left:8px;
    background:var(--red);
    color:#fff;
    font-size:11px;
    font-weight:900;
    padding:4px 7px;
    border-radius:5px;
    z-index:2;
}

/* EXPERIENCE */
.lhp-experience{
    width:100%;
    padding:44px 0;
    background:#f7faf8;
}

.lhp-experience h2{
    font-size:30px;
    font-weight:900;
}

.lhp-experience p{
    color:var(--muted);
    max-width:560px;
    font-size:15px;
}

.lhp-mini-icon{
    background:#fff;
    border-radius:10px;
    padding:16px;
    text-align:center;
    border:1px solid var(--border);
}

.lhp-mini-icon i{
    color:var(--green);
    font-size:25px;
    display:block;
    margin-bottom:8px;
}

.lhp-mini-icon span{
    font-weight:900;
    font-size:12px;
}

/* FOOTER */
.lhp-footer{
    width:100%;
    margin-top:40px;
    background:linear-gradient(135deg,#117c28,#7b230f);
    color:#fff;
    padding:54px 0 24px;
}

.lhp-footer a{
    display:block;
    color:#e9fff0;
    margin-bottom:8px;
    font-size:13px;
}

.lhp-footer h5{
    font-size:15px;
    font-weight:900;
    margin-bottom:14px;
}

.lhp-footer p{
    color:#e9fff0;
    max-width:420px;
}

.lhp-footer-logo{
    color:#fff;
    margin-bottom:15px;
}

.lhp-footer-logo small{color:#fff}

.lhp-socials{
    display:flex;
    gap:10px;
}

.lhp-socials a{
    width:34px;
    height:34px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
}

.lhp-footer-bottom{
    border-top:1px solid rgba(255,255,255,.2);
    margin-top:32px;
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    color:#e9fff0;
    font-size:13px;
}

/* WHATSAPP */
.lhp-whatsapp{
    position:fixed;
    right:22px;
    bottom:85px;
    width:56px;
    height:56px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    z-index:999;
    box-shadow:0 8px 25px rgba(0,0,0,.2);
}

/* MOBILE BOTTOM */
.lhp-mobile-bottom{display:none}

/* RESPONSIVE */
@media(max-width:1199px){
    .lhp-hero-content h1{font-size:44px}
    .lhp-menu{gap:16px}
}

@media(max-width:991px){
    .lhp-container{
        padding-left:18px;
        padding-right:18px;
    }

    .lhp-top-strip,
    .lhp-nav{
        display:none;
    }

    .lhp-header-row{
        flex-wrap:wrap;
    }

    .lhp-logo{min-width:auto}

    .lhp-header-search{
        order:3;
        flex-basis:100%;
    }

    .lhp-header-actions a:first-child,
    .lhp-header-actions a:nth-child(2){
        display:none;
    }

    .lhp-hero-banner{
        padding:32px;
        min-height:auto;
    }

    .lhp-hero-content h1{
        font-size:36px;
    }

    .lhp-help-box{
        margin-top:16px;
    }

    .lhp-colored-section{
        width:100%;
        margin:18px 0;
        border-radius:0;
        padding:22px 18px;
    }

    .lhp-mobile-bottom{
        position:fixed;
        left:0;
        right:0;
        bottom:0;
        height:64px;
        background:#fff;
        border-top:1px solid var(--border);
        display:flex;
        justify-content:space-around;
        align-items:center;
        z-index:998;
    }

    .lhp-mobile-bottom a{
        color:#667085;
        font-size:11px;
        text-align:center;
        font-weight:900;
    }

    .lhp-mobile-bottom i{
        display:block;
        font-size:20px;
        margin-bottom:3px;
    }

    body{padding-bottom:70px}
}

@media(max-width:576px){
    .lhp-container{
        padding-left:12px;
        padding-right:12px;
    }

    .lhp-main-header{
        padding:12px 0;
    }

    .lhp-logo strong{
        font-size:18px;
    }

    .lhp-logo small{
        font-size:9px;
    }

    .lhp-hero-section{
        padding-top:12px;
    }

    .lhp-hero-banner{
        display:block;
        padding:22px;
        border-radius:0;
        margin-left:-12px;
        margin-right:-12px;
        width:calc(100% + 24px);
    }

    .lhp-hero-image{
        margin-top:18px;
        text-align:center;
    }

    .lhp-hero-content h1{
        font-size:32px;
    }

    .lhp-title-row h2{
        font-size:23px;
    }

    .lhp-service-card{
        height:auto;
    }

    .lhp-product-image{
        height:125px;
    }

    .lhp-colored-section{
        padding:18px 12px;
    }

    .lhp-footer-bottom{
        flex-direction:column;
        gap:8px;
    }
}

.lhp-header-logo{
    min-width:260px;
}

.lhp-logo-text strong{
    display:block;
    font-size:28px;
    line-height:1;
    font-weight:900;
}

.lhp-logo-text small{
    color:var(--red);
    font-weight:800;
    letter-spacing:.5px;
}

.lhp-header-search-wrapper{
    flex:1;
}

.lhp-search-category{
    width:180px;
    border-right:1px solid var(--border);
}

.lhp-search-category select{
    width:100%;
    height:100%;
    border:none;
    outline:none;
    padding:0 12px;
    background:#fff;
}

.lhp-search-input{
    flex:1;
}

.lhp-prescription-header-btn{
    display:flex;
    align-items:center;
    gap:10px;
    background:var(--red);
    color:#fff;
    padding:10px 16px;
    border-radius:8px;
    font-weight:700;
}

.lhp-prescription-header-btn small{
    display:block;
}

.lhp-header-icon-box,
.lhp-header-cart{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--text);
}

.lhp-icon,
.lhp-cart-icon{
    width:44px;
    height:44px;
    border-radius:50%;
    background:#f3f5f8;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.lhp-cart-icon span{
    position:absolute;
    top:-5px;
    right:-5px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:var(--red);
    color:#fff;
    font-size:11px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.lhp-header-actions small{
    display:block;
    color:var(--muted);
    font-size:12px;
}

.lhp-header-actions strong{
    font-size:13px;
}

/* ===============================
   HOMEPAGE ADVANCED SECTIONS
================================ */

.lhp-home-hero{
    padding:24px 0 16px;
    background:#fff;
}

.lhp-home-category-panel{
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:16px;
    height:100%;
    box-shadow:0 4px 14px rgba(0,0,0,.04);
}

.lhp-home-category-panel h5{
    font-size:16px;
    font-weight:900;
    margin-bottom:12px;
}

.lhp-home-category-panel a{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--text);
    padding:10px 0;
    border-bottom:1px solid var(--border);
    font-weight:800;
    font-size:13px;
}

.lhp-home-category-panel a:last-child{
    border-bottom:0;
}

.lhp-home-category-panel i{
    color:var(--green);
    width:20px;
}

.lhp-main-slide{
    min-height:420px;
    border-radius:12px;
    padding:55px 70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    overflow:hidden;
    color:#fff;
}

.green-slide{
    background:linear-gradient(120deg,#0f8f31,#39c65b);
}

.red-slide{
    background:linear-gradient(120deg,#ed1c24,#ff7a00);
}

.lhp-slide-label{
    display:inline-block;
    background:rgba(255,255,255,.18);
    padding:7px 14px;
    border-radius:30px;
    font-weight:900;
    margin-bottom:15px;
}

.lhp-main-slide h1{
    font-size:54px;
    line-height:1.05;
    font-weight:900;
    margin-bottom:15px;
}

.lhp-main-slide p{
    font-size:17px;
    max-width:460px;
    margin-bottom:24px;
}

.lhp-slide-btn{
    display:inline-block;
    background:#111;
    color:#fff;
    padding:11px 24px;
    border-radius:6px;
    font-weight:900;
}

.lhp-slide-visual{
    position:relative;
    width:330px;
    height:300px;
}

.lhp-medicine-pack{
    position:absolute;
    width:190px;
    height:230px;
    background:#fff;
    color:var(--green);
    border-radius:18px;
    right:30px;
    top:25px;
    box-shadow:0 18px 40px rgba(0,0,0,.18);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transform:rotate(-5deg);
}

.lhp-medicine-pack strong{
    font-size:32px;
    font-weight:900;
}

.lhp-medicine-pack small{
    color:var(--red);
    font-weight:900;
}

.lhp-medicine-bottle{
    position:absolute;
    width:90px;
    height:170px;
    border-radius:18px;
    background:#7b4a25;
    left:35px;
    bottom:20px;
    box-shadow:0 18px 30px rgba(0,0,0,.18);
}

.lhp-pill-strip{
    position:absolute;
    width:160px;
    height:55px;
    border-radius:12px;
    background:#f3f6fb;
    right:75px;
    bottom:20px;
}

.lhp-rx-card{
    width:260px;
    height:210px;
    background:#fff;
    border-radius:20px;
    color:var(--red);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}

.lhp-rx-card i{
    font-size:54px;
    margin-bottom:12px;
}

.lhp-rx-card strong{
    font-size:24px;
    font-weight:900;
}

.lhp-rx-card small{
    color:var(--muted);
    font-weight:800;
}

.lhp-right-offers{
    display:flex;
    flex-direction:column;
    gap:16px;
    height:100%;
}

.lhp-small-offer{
    flex:1;
    border-radius:12px;
    padding:24px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.prescription-offer{
    background:linear-gradient(135deg,#ed1c24,#ff6b00);
}

.delivery-offer{
    background:linear-gradient(135deg,#138a2e,#2fc85a);
}

.lhp-small-offer span{
    font-weight:900;
    opacity:.9;
}

.lhp-small-offer h4{
    font-weight:900;
    margin:8px 0;
}

.lhp-small-offer a{
    color:#fff;
    font-weight:900;
}

.lhp-categories-strip{
    background:#fff;
    padding:24px 0 30px;
}

.lhp-category-grid{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:14px;
}

.lhp-category-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:18px 12px;
    text-align:center;
    color:var(--text);
    box-shadow:0 4px 12px rgba(0,0,0,.04);
    transition:.2s;
}

.lhp-category-card:hover{
    transform:translateY(-4px);
    color:var(--green);
}

.lhp-category-icon{
    width:54px;
    height:54px;
    border-radius:50%;
    background:var(--green-light);
    color:var(--green);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 10px;
    font-size:23px;
}

.lhp-category-card h6{
    font-size:13px;
    font-weight:900;
    margin:0;
}

.lhp-product-category{
    color:var(--muted);
    font-size:11px;
    font-weight:800;
    margin-bottom:4px;
}

.lhp-product-rating{
    color:#f6b100;
    font-size:11px;
    margin-bottom:5px;
}

.lhp-product-price{
    margin-bottom:8px;
}

.lhp-product-price .current{
    color:var(--red);
    font-size:14px;
    font-weight:900;
}

.lhp-product-price .old{
    color:#98a2b3;
    text-decoration:line-through;
    font-size:12px;
    margin-left:5px;
}

.lhp-discount-badge{
    position:absolute;
    top:10px;
    left:10px;
    background:var(--red);
    color:#fff;
    font-size:11px;
    font-weight:900;
    padding:4px 7px;
    border-radius:5px;
    z-index:2;
}

.lhp-wishlist-btn{
    position:absolute;
    top:10px;
    right:10px;
    width:30px;
    height:30px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:var(--red);
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    z-index:2;
}

.lhp-add-cart-btn,
.lhp-prescription-product-btn{
    width:100%;
    height:34px;
    border-radius:6px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:6px;
    font-size:12px;
    font-weight:900;
}

.lhp-add-cart-btn{
    background:var(--green);
    color:#fff;
}

.lhp-prescription-product-btn{
    background:var(--red);
    color:#fff;
}

.lhp-experience-label{
    display:inline-block;
    color:var(--green);
    font-weight:900;
    margin-bottom:8px;
}

.lhp-experience-visual{
    position:relative;
    min-height:360px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.lhp-phone-mockup{
    width:240px;
    min-height:330px;
    background:#fff;
    border:10px solid #111;
    border-radius:34px;
    padding:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.lhp-phone-bar{
    width:80px;
    height:6px;
    border-radius:10px;
    background:#111;
    margin:0 auto 18px;
}

.lhp-phone-mockup h5{
    color:var(--green);
    font-weight:900;
}

.lhp-phone-search{
    height:36px;
    background:#eef6f0;
    border-radius:10px;
    margin:15px 0;
}

.lhp-phone-card{
    height:70px;
    background:linear-gradient(135deg,#eaf8ef,#fff);
    border:1px solid var(--border);
    border-radius:12px;
    margin-bottom:12px;
}

.lhp-phone-card.short{
    width:75%;
}

.lhp-floating-card{
    position:absolute;
    right:90px;
    bottom:55px;
    background:#fff;
    border-radius:12px;
    padding:14px 18px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    font-weight:900;
    color:var(--green);
}

.lhp-floating-card i{
    margin-right:8px;
}

.lhp-promo-grid-section{
    padding:28px 0;
    background:#fff;
}

.lhp-promo-card{
    min-height:220px;
    border-radius:14px;
    padding:34px;
    color:#fff;
}

.lhp-promo-card.green{
    background:linear-gradient(135deg,#138a2e,#37c85c);
}

.lhp-promo-card.red{
    background:linear-gradient(135deg,#ed1c24,#ff7a00);
}

.lhp-promo-card span{
    font-weight:900;
}

.lhp-promo-card h3{
    font-size:32px;
    font-weight:900;
    margin:8px 0;
}

.lhp-promo-card p{
    max-width:360px;
}

.lhp-promo-card a{
    color:#fff;
    font-weight:900;
    text-decoration:underline;
}

.lhp-health-condition-section{
    padding:28px 0 40px;
    background:#fff;
}

.lhp-condition-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:14px;
}

.lhp-condition-grid a{
    background:#f7faf8;
    border:1px solid var(--border);
    border-radius:12px;
    padding:18px;
    color:var(--text);
    font-weight:900;
    display:flex;
    align-items:center;
    gap:12px;
}

.lhp-condition-grid i{
    color:var(--green);
    font-size:22px;
}

/* RESPONSIVE EXTRA */
@media(max-width:1199px){
    .lhp-category-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .lhp-condition-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .lhp-main-slide{
        padding:42px;
    }

    .lhp-main-slide h1{
        font-size:42px;
    }
}

@media(max-width:991px){
    .lhp-home-category-panel{
        display:none;
    }

    .lhp-main-slide{
        min-height:auto;
        padding:32px;
    }

    .lhp-slide-visual{
        display:none;
    }

    .lhp-right-offers{
        margin-top:16px;
    }

    .lhp-category-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .lhp-condition-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .lhp-floating-card{
        right:20px;
    }
}

@media(max-width:576px){
    .lhp-main-slide{
        border-radius:0;
        margin-left:-12px;
        margin-right:-12px;
        padding:28px 20px;
    }

    .lhp-main-slide h1{
        font-size:32px;
    }

    .lhp-main-slide p{
        font-size:14px;
    }

    .lhp-category-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .lhp-condition-grid{
        grid-template-columns:1fr;
    }

    .lhp-promo-card{
        min-height:180px;
        padding:24px;
    }

    .lhp-promo-card h3{
        font-size:25px;
    }
}