/* =======================================
            HERO SECTION
======================================= */

.hero-section{

    min-height:85vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:
        radial-gradient(circle at top right,
        rgba(32,201,151,.12),
        transparent 35%),

        radial-gradient(circle at bottom left,
        rgba(13,110,253,.08),
        transparent 35%),

        #ffffff;

}

.hero-content{

    animation:fadeUp .8s ease;

}

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:40px;

    background:#EAFBF6;

    color:var(--primary);

    font-weight:700;

    margin-bottom:22px;

}

.hero-title{

    font-size:3.5rem;

    font-weight:800;

    line-height:1.3;

    margin-bottom:25px;

    color:#1E293B;

}

.hero-title span{

    color:var(--primary);

}

.hero-description{

    font-size:1.15rem;

    color:#6B7280;

    line-height:2;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-image{

    width:100%;

    max-width:560px;

    animation:floatImage 5s ease-in-out infinite;

}

/* =======================================
            FEATURES
======================================= */

.features-section{

    padding:90px 0;

    background:#fff;

}


.feature-box{

    background:#fff;

    border-radius:22px;

    padding:35px 25px;

    height:100%;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.feature-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.feature-box i{

    font-size:2.8rem;

    color:#18C7B8;

    margin-bottom:20px;

}

.feature-box h5{

    font-weight:800;

    margin-bottom:15px;

}

.feature-box p{

    color:#777;

    line-height:1.9;

}

/* =======================================
        SECTION TITLE
======================================= */

.section-header{

    text-align:center;

    margin-bottom:55px;

}

.section-header h2{

    font-size:2.3rem;

    font-weight:800;

}

.section-header p{

    color:#888;

}

/* =======================================
        PRODUCTS
======================================= */

.products-section{

    padding:90px 0;

}

.product-card{

    background:white;

    border-radius:24px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    height:100%;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.product-image{

    width:100%;

    height:290px;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover .product-image{

    transform:scale(1.07);

}

.product-body{

    padding:22px;

}

.product-brand{

    color:var(--primary);

    font-size:.9rem;

}

.product-title{

    font-size:1.1rem;

    font-weight:700;

    margin:12px 0;

    min-height:55px;

}

.price-box{

    display:flex;

    align-items:center;

    gap:12px;

    margin:18px 0;

}

.old-price{

    color:#999;

    text-decoration:line-through;

}

.new-price{

    color:#E53935;

    font-size:1.3rem;

    font-weight:800;

}

.discount-badge{

    background:#E53935;

    color:white;

    padding:7px 14px;

    border-radius:30px;

    font-size:.85rem;

}

/* =======================================
            ANIMATIONS
======================================= */

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-14px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* =======================================
            MOBILE
======================================= */

@media(max-width:992px){

.hero-section{

min-height:auto;

padding:80px 0;

}

.hero-title{

font-size:2.5rem;

text-align:center;

}

.hero-description{

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-badge{

display:block;

width:max-content;

margin:auto auto 20px;

}

.hero-image{

margin-top:50px;

}

}

/* ==========================
        HERO BACKGROUND
========================== */

.hero-circle{

    position:absolute;

    border-radius:50%;

    filter:blur(70px);

    opacity:.28;

    pointer-events:none;

}

.hero-circle-1{

    width:320px;

    height:320px;

    background:#27d7c5;

    top:-80px;

    right:-80px;

}

.hero-circle-2{

    width:240px;

    height:240px;

    background:#9fe9dd;

    bottom:0;

    left:-60px;

}

.hero-circle-3{

    width:180px;

    height:180px;

    background:#d6b56d;

    top:45%;

    left:40%;

    opacity:.18;

}

.hero-buttons .btn{

    padding:14px 28px;

    border-radius:16px;

    font-weight:700;

    transition:.35s;

}

.hero-buttons .btn:hover{

    transform:translateY(-4px);

}

.product-card{

    border:none;

    border-radius:22px;

    overflow:hidden;

    background:#fff;

    transition:.35s;

    box-shadow:0 8px 28px rgba(0,0,0,.06);

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 50px rgba(0,0,0,.12);

}

.product-image{

    height:280px;

    object-fit:cover;

    transition:.45s;

}

.product-card:hover .product-image{

    transform:scale(1.06);

}

.product-body{

    padding:20px;

}

.product-brand{

    color:#18C7B8;

    font-weight:700;

    font-size:.9rem;

}

.product-title{

    font-size:1rem;

    font-weight:700;

    line-height:1.8;

    min-height:58px;

    margin-top:10px;

}

.old-price{

    color:#999;

    text-decoration:line-through;

    display:block;

}

.new-price{

    font-size:1.3rem;

    color:#E53935;

    font-weight:800;

}

.discount-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:#E53935;

    color:white;

    padding:7px 14px;

    border-radius:30px;

    font-size:.8rem;

    font-weight:700;

}

/* ===========================
        PRODUCT CARD
=========================== */

.product-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    position:relative;

    transition:.35s;

    border:none;

    box-shadow:0 8px 30px rgba(0,0,0,.05);

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 45px rgba(0,0,0,.12);

}

.product-image-box{

    position:relative;

    overflow:hidden;

}

.product-image{

    width:100%;

    height:290px;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover .product-image{

    transform:scale(1.08);

}

.discount-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:#E53935;

    color:#fff;

    padding:7px 14px;

    border-radius:40px;

    font-size:.8rem;

    font-weight:700;

    z-index:5;

}

.product-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.35);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    transition:.35s;

}

.product-card:hover .product-overlay{

    opacity:1;

}

.quick-view{

    background:#18C7B8;

    color:white;

    text-decoration:none;

    padding:12px 26px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.quick-view:hover{

    background:#0ea798;

    color:white;

}

.product-body{

    padding:22px;

}

.product-brand{

    color:#18C7B8;

    font-weight:700;

    font-size:.9rem;

}

.product-title{

    font-size:1rem;

    font-weight:700;

    margin:10px 0;

    min-height:60px;

    line-height:1.8;

}

.price-box{

    margin:18px 0;

}

.old-price{

    display:block;

    color:#999;

    text-decoration:line-through;

    font-size:.9rem;

}

.new-price{

    color:#E53935;

    font-size:1.35rem;

    font-weight:800;

}

.product-card .btn{

    border-radius:14px;

    font-weight:700;

}


/* ===========================
        HERO ANIMATION
=========================== */

.hero-content{

    animation:heroLeft 1s ease;

}


.hero-image{

    animation:
        heroRight 1s ease,
        floatImage 5s ease-in-out infinite;

    animation-delay:
        0s,
        1s;

    animation-fill-mode:both;

}

@keyframes heroLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes heroRight{

    from{

        opacity:0;

        transform:translateX(60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

.hero-image{

    transition:.5s;

}

.hero-image:hover{

    transform:scale(1.03);

}

.hero-buttons .btn{

    padding:14px 34px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.hero-buttons .btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(24,199,184,.35);

}

.hero-buttons .btn-outline-primary:hover{

    transform:translateY(-4px);

}

.product-card,
.feature-box{

    opacity:0;

    transform:translateY(60px);

    transition:.7s;

}

.show-item{

    opacity:1;

    transform:translateY(0);

}