/*==================================================
Listed Codes PREMIUM HERO
File : /assets/css/hero.css
==================================================*/

:root{

    --primary:#F64F73;
    --secondary:#FF6F61;
    --accent:#FFA63D;

    --dark:#1b1b1b;

    --white:#ffffff;

    --light:#fff8f7;

    --shadow:0 30px 60px rgba(0,0,0,.08);

    --radius:28px;

    --transition:.35s ease;

}

/****************************************
RESET
****************************************/

.sv-hero{

    position:relative;

    overflow:hidden;

    background:linear-gradient(180deg,#ffffff 0%,#fffaf8 100%);

    padding:90px 0 50px;

}

.sv-hero *{

    box-sizing:border-box;

}

.sv-hero .container{

    position:relative;

    z-index:5;

}

/****************************************
BACKGROUND
****************************************/

.sv-bg{

    position:absolute;

    inset:0;

    overflow:hidden;

    pointer-events:none;

}

.blob{

    position:absolute;

    border-radius:50%;

    filter:blur(100px);

    opacity:.55;

}

.blob-1{

    width:420px;

    height:420px;

    background:#ffd2dc;

    top:-80px;

    left:-120px;

}

.blob-2{

    width:520px;

    height:520px;

    background:#ffe1b4;

    right:-120px;

    top:120px;

}

.blob-3{

    width:380px;

    height:380px;

    background:#ffe7ef;

    left:40%;

    bottom:-160px;

}

.hero-pattern{

    position:absolute;

    right:120px;

    top:120px;

    width:220px;

    height:220px;

    opacity:.18;

    background-image:radial-gradient(#ff8b8b 2px,transparent 2px);

    background-size:18px 18px;

}

/****************************************
LEFT COLUMN
****************************************/

.hero-left{

    max-width:620px;

    position:relative;

    z-index:10;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#fff;

    border-radius:999px;

    padding:12px 22px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    font-size:14px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:28px;

}

.hero-badge i{

    color:var(--primary);

}

.hero-title{

    font-size:78px;

    line-height:1.02;

    font-weight:900;

    color:#111;

    margin-bottom:28px;

    letter-spacing:-2px;

}

.hero-title span{

    background:linear-gradient(90deg,

    var(--primary),

    var(--secondary),

    var(--accent));

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero-text{

    font-size:24px;

    line-height:1.8;

    color:#555;

    max-width:560px;

    margin-bottom:40px;

}

.hero-text strong{

    color:#111;

}

/****************************************
SEARCH
****************************************/

.hero-search{

    display:flex;

    align-items:center;

    background:#fff;

    border-radius:24px;

    overflow:visible;

    box-shadow:var(--shadow);

    height:78px;

    margin-bottom:40px;

}

.search-icon{

    width:70px;

    text-align:center;

    color:#999;

    font-size:22px;

}

.hero-search input{

    flex:1;

    border:none;

    outline:none;

    background:none;

    font-size:18px;

    color:#444;

    padding-right:20px;

}

.hero-search input::placeholder{

    color:#999;

}

.hero-search button{

    border:none;

    height:62px;

    margin-right:8px;

    padding:0 42px;

    border-radius:18px;

    font-size:18px;

    font-weight:700;

    color:#fff;

    cursor:pointer;

    transition:.35s;

    background:linear-gradient(90deg,

    var(--primary),

    var(--secondary));

}

.hero-search button:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(246,79,115,.35);

}

/****************************************
FEATURES
****************************************/

.hero-features{

    display:flex;

    gap:22px;

    flex-wrap:wrap;

}

.feature-box{

    display:flex;

    align-items:center;

    gap:14px;

}

.feature-icon{

    width:58px;

    height:58px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    background:linear-gradient(180deg,

    var(--primary),

    var(--secondary));

    box-shadow:0 12px 25px rgba(246,79,115,.25);

}

.feature-box strong{

    display:block;

    font-size:17px;

    color:#222;

}

.feature-box span{

    display:block;

    color:#666;

    font-size:14px;

}
/*************************************************
RIGHT SIDE
*************************************************/

.hero-right{

    position:relative;

    min-height:760px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-circle{

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:linear-gradient(135deg,
        #FFD7D2 0%,
        #FFC7B4 35%,
        #FFB366 100%);

    z-index:1;

    animation:floatCircle 8s ease-in-out infinite;

    box-shadow:0 40px 80px rgba(255,166,61,.20);

}

.hero-image{

    position:relative;

    z-index:5;

    width:100%;

    max-width:560px;

    animation:heroFloat 6s ease-in-out infinite;

    user-select:none;

    pointer-events:none;

}

/*************************************************
DOTS
*************************************************/

.hero-dots{

    position:absolute;

    right:10px;

    top:40px;

    display:grid;

    grid-template-columns:repeat(4,10px);

    gap:12px;

    z-index:2;

}

.hero-dots span{

    width:8px;

    height:8px;

    border-radius:50%;

    background:#ffc2cb;

}

/*************************************************
OFFER CARDS
*************************************************/

.offer-card{

    position:absolute;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-radius:24px;

    padding:22px;

    width:220px;

    box-shadow:0 25px 60px rgba(0,0,0,.10);

    z-index:10;

    transition:.35s;

}

.offer-card:hover{

    transform:translateY(-8px);

    box-shadow:0 35px 70px rgba(0,0,0,.15);

}

.offer-logo{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:6px 16px;

    border-radius:999px;

    background:#fff3ef;

    color:var(--primary);

    font-weight:700;

    margin-bottom:15px;

}

.offer-card small{

    display:block;

    color:#777;

    font-size:14px;

}

.offer-card h3{

    margin:8px 0;

    font-size:30px;

    color:#111;

    font-weight:800;

}

.offer-card p{

    margin:0;

    color:#666;

    font-size:15px;

}

.offer-card .arrow{

    position:absolute;

    right:18px;

    bottom:18px;

    width:36px;

    height:36px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,
        var(--primary),
        var(--secondary));

    color:#fff;

}

/*************************************************
CARD POSITIONS
*************************************************/

.amazon-card{

    top:50px;

    left:-20px;

    animation:floatCard 5s ease-in-out infinite;

}

.nike-card{

    right:-30px;

    top:180px;

    animation:floatCard 6s ease-in-out infinite;

    animation-delay:1s;

}

.adidas-card{

    left:30px;

    bottom:70px;

    animation:floatCard 5.5s ease-in-out infinite;

    animation-delay:2s;

}

/*************************************************
STORE COUNTER
*************************************************/

.stores-counter{

    position:absolute;

    right:40px;

    bottom:10px;

    background:#fff;

    border-radius:22px;

    padding:18px 22px;

    display:flex;

    align-items:center;

    gap:16px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    z-index:15;

}

.counter-icon{

    width:56px;

    height:56px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:20px;

    background:linear-gradient(135deg,
        var(--primary),
        var(--secondary));

}

.stores-counter strong{

    display:block;

    font-size:24px;

    color:#111;

}

.stores-counter span{

    color:#666;

    font-size:14px;

}

/*************************************************
BOTTOM STATS
*************************************************/

.hero-bottom{

    margin-top:80px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

.hero-stat{

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    border-radius:26px;

    padding:26px;

    display:flex;

    align-items:center;

    gap:18px;

    box-shadow:0 18px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.hero-stat:hover{

    transform:translateY(-6px);

}

.stat-icon{

    width:64px;

    height:64px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,
        var(--primary),
        var(--secondary));

    color:#fff;

    font-size:22px;

}

.hero-stat strong{

    display:block;

    font-size:18px;

    color:#111;

}

.hero-stat span{

    color:#777;

    font-size:14px;

}
/*************************************************
ANIMATIONS
*************************************************/

@keyframes heroFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes floatCircle{

    0%{
        transform:scale(1) translateY(0);
    }

    50%{
        transform:scale(1.04) translateY(-15px);
    }

    100%{
        transform:scale(1) translateY(0);
    }

}

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-left{

    animation:fadeUp .8s ease;

}

.hero-right{

    animation:fadeUp 1s ease;

}

/*************************************************
HOVER EFFECTS
*************************************************/

.hero-title span{

    transition:.4s;

}

.hero-title:hover span{

    filter:brightness(110%);

}

.hero-search{

    transition:.35s;

}

.hero-search:hover{

    transform:translateY(-3px);

    box-shadow:0 35px 70px rgba(0,0,0,.12);

}

.hero-badge{

    transition:.35s;

}

.hero-badge:hover{

    transform:translateY(-3px);

}

.feature-box{

    transition:.35s;

}

.feature-box:hover{

    transform:translateY(-5px);

}

/*************************************************
RESPONSIVE
*************************************************/

@media(max-width:1400px){

.hero-title{

    font-size:66px;

}

.hero-right{

    min-height:680px;

}

.hero-circle{

    width:470px;

    height:470px;

}

.hero-image{

    max-width:500px;

}

}

@media(max-width:1199px){

.hero-title{

    font-size:58px;

}

.hero-bottom{

    grid-template-columns:repeat(2,1fr);

}

.offer-card{

    width:190px;

}

.hero-circle{

    width:420px;

    height:420px;

}

}

@media(max-width:991px){

.sv-hero{

    padding:70px 0;

}

.hero-left{

    text-align:center;

    margin-bottom:60px;

}

.hero-title{

    font-size:52px;

}

.hero-text{

    margin-left:auto;

    margin-right:auto;

}

.hero-search{

    max-width:700px;

    margin:auto;

    margin-bottom:35px;

}

.hero-features{

    justify-content:center;

}

.hero-right{

    min-height:620px;

}

.hero-circle{

    width:380px;

    height:380px;

}

.hero-image{

    max-width:420px;

}

.amazon-card{

    left:10px;

}

.nike-card{

    right:10px;

}

.adidas-card{

    left:40px;

}

.hero-bottom{

    margin-top:50px;

}

}

@media(max-width:767px){

.sv-hero{

    padding:55px 0;

}

.hero-title{

    font-size:40px;

    line-height:1.1;

}

.hero-text{

    font-size:18px;

}

.hero-search{

    flex-direction:column;

    height:auto;

    padding:12px;

    border-radius:22px;

}

.search-icon{

    display:none;

}

.hero-search input{

    width:100%;

    padding:18px;

    text-align:center;

}

.hero-search button{

    width:100%;

    margin:0;

    height:56px;

}

.hero-right{

    min-height:520px;

}

.hero-circle{

    width:300px;

    height:300px;

}

.hero-image{

    max-width:320px;

}

.offer-card{

    width:165px;

    padding:16px;

}

.offer-card h3{

    font-size:22px;

}

.offer-card p{

    font-size:13px;

}

.amazon-card{

    top:10px;

    left:0;

}

.nike-card{

    right:0;

    top:110px;

}

.adidas-card{

    left:15px;

    bottom:40px;

}

.stores-counter{

    right:50%;

    transform:translateX(50%);

    bottom:-15px;

}

.hero-bottom{

    grid-template-columns:1fr;

    gap:18px;

}

.hero-stat{

    padding:20px;

}

}

@media(max-width:480px){

.hero-title{

    font-size:34px;

}

.hero-badge{

    font-size:12px;

    padding:10px 16px;

}

.hero-image{

    max-width:270px;

}

.hero-circle{

    width:260px;

    height:260px;

}

.offer-card{

    width:145px;

}

.offer-card h3{

    font-size:18px;

}

.offer-card small{

    font-size:12px;

}

.offer-card p{

    display:none;

}

.stores-counter{

    width:90%;

}

}

/*************************************************
REDUCED MOTION
*************************************************/

@media (prefers-reduced-motion: reduce){

*{

    animation:none !important;

    transition:none !important;

    scroll-behavior:auto !important;

}

}
.hero-search button{

    position:relative;

    overflow:hidden;

}

.hero-ripple{

    position:absolute;

    width:10px;

    height:10px;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    transform:translate(-50%,-50%) scale(0);

    animation:ripple .6s linear;

}

@keyframes ripple{

    to{

        transform:translate(-50%,-50%) scale(30);

        opacity:0;

    }

}