*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{

background:
radial-gradient(circle at 28% 50%,
#8A33FF 0%,
#6D0EEB 40%,
#5216A8 75%,
#2E0A57 100%);
}

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 60px;

    background:rgba(25,15,55,.75);
    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:1000;
}


.logo{
    font-size:32px;
    font-weight:700;
    color:#B7FF00;
    cursor:pointer;
    transition:.3s;
}


nav ul{
    display:flex;
    align-items:center;
    gap:42px;
    list-style:none;
}

nav li{
    color:white;
    font-size:17px;
    font-weight:500;
    cursor:pointer;
    transition:.25s;
}

nav li{

position:relative;

}

nav li::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#B7FF00;

transition:.3s;

}

nav li:hover{

color:#B7FF00;

}

nav li:hover::after{

width:100%;

}

header{
    position:relative;
    height:100vh;
    min-height:850px;
    overflow:hidden;

    display:flex;
    align-items:center;

    background:
    radial-gradient(circle at 30% 50%,
    #8730ff 0%,
    #6D0EEB 45%,
    #42106c 100%);
}

.overlay{

position:absolute;

inset:0;

background:
radial-gradient(circle at top,
rgba(255,255,255,.18),
transparent 60%);

pointer-events:none;

}

.hero{
    width:100%;
    max-width:1600px;
    margin:auto;
    height:100%;

    display:flex;
    align-items:center;

    padding:0 70px;

    position:relative;
}
.hero-text{
    width:50%;
    z-index:2;
}

.hero-text h2{

font-size:clamp(22px,2vw,30px);

font-weight:500;

margin-bottom:10px;

}

.hero-text h1{

font-size:clamp(48px, 7vw, 92px);

font-weight:700;

line-height:1;

margin-bottom:40px;

}

.hero-image{
    position:absolute;
    right:-110px;
    bottom:0;
}

.hero-image img{
   width:760px;
    height:auto;
    display:block;
}

.overlay{

position:absolute;

width:100%;

height:100%;

background:

radial-gradient(circle at top,#ffffff15,transparent 60%);

}



.buttons{

display:flex;

justify-content:center;

gap:20px;

margin-top:30px;

}

.buttons{

display:flex;

gap:18px;

}

.primary{

padding:16px 42px;

background:#B7FF00;

color:#111;

border:none;

border-radius:50px;

font-size:22px;

font-weight:600;

cursor:pointer;

transition:.35s;

}

.primary:hover{

transform:translateY(-4px);

box-shadow:0 0 35px rgba(183,255,0,.45);

}

.secondary{

padding:16px 42px;

background:transparent;

border:2px solid rgba(255,255,255,.55);

color:white;

border-radius:50px;

font-size:22px;

cursor:pointer;

transition:.35s;

}

.secondary:hover{

background:white;

color:#6D0EEB;

}

.products{

padding:120px 8%;

}

.products h2{

text-align:center;

font-size:45px;

margin-bottom:70px;

}

.cards{

display:flex;

gap:40px;

justify-content:center;

flex-wrap:wrap;

}

.card{

width:280px;

background:#181818;

padding:25px;

border-radius:25px;

transition:.4s;

text-align:center;

}

.card:hover{

transform:translateY(-12px);

box-shadow:0 0 35px #6f00ff;

}

.card img{

width:100%;

border-radius:20px;

}

.card h3{

margin:20px 0;

}

.card p{

margin-bottom:20px;

font-size:20px;

}

.smokelab{

padding:150px 10%;

text-align:center;

background:#121212;

}

.smokelab h2{

font-size:60px;

margin-bottom:20px;

}

.smokelab p{

max-width:700px;

margin:auto;

font-size:22px;

margin-bottom:40px;

}

footer{

padding:40px;

text-align:center;

background:black;

}

.cart{

    position:relative;

    width:70px;
    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    transition:.3s;

}


.cart img{

    width:60px;
    height:60px;

    filter:invert(1);

    transition:.3s;

}

.cart:hover img{

    transform:scale(1.15);

}

.cart-count{

    position:absolute;

    top:0px;
    right:0px;

    width:22px;
    height:22px;

    border-radius:50%;

    background:#B7FF00;

    color:#111;

    font-size:15px;

    font-weight:bold;

    display:flex;
    justify-content:center;
    align-items:center;

}
@media (max-width: 1100px){

.hero{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    padding-top:120px;
}

.hero-text{
    width:100%;
}

.hero-image{
    position:relative;
    right:0;
    bottom:0;
    margin-top:40px;
}

.hero-image img{
    width:min(85vw,500px);
}

.hero-text h1{
    font-size:clamp(42px,8vw,72px);
}

.buttons{
    justify-content:center;
    flex-wrap:wrap;
}

}