*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background:#f7f7f7;
    color:#111;
    overflow-x: hidden
}

ul {
    text-decoration: none;
    list-style-type: none;
}

a {
    text-decoration: none;
    color: black;
    
}

.upbar_features {
    margin-right: 1rem;
}

/* NAVBAR */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding: 4px 16px;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
    position: fixed;
    width: 100vw;
    top: 20px;
    z-index: 100;
}


.navbar form {
    display: flex;
    align-items: center;
    flex: 1
}

.navbar input {
    height: 40px;
    padding-left: .5rem;
    padding-right: .5rem;
    flex: 1;
    margin-left: 1rem;
    border-radius: .5rem 0 0 .5rem ;
}

.navbar button {
    
    border-radius: 0 .5rem .5rem 0 ;
    margin-right: 1rem;
    height: 40px;
    width: 50px;
    background-color: #006bb4;
    color: white;
}

.navbar h2{
    letter-spacing: 2px;
}
.navbar a{
    margin-left:25px;
    text-decoration:none;
    color:#111;
    font-weight:500;
}

/* HERO */
.hero{
    height:90vh;
    background:linear-gradient(to right,rgba(0,0,0,.6),rgba(0,0,0,.2)),
    url("../images/sec3.jpg") center/cover;
    display:flex;
    align-items:center;
    padding:0 70px;
    color:#fff;
}
.hero h1{
    font-size:56px;
    max-width:500px;
}
.hero p{
    margin:20px 0;
    font-size:18px;
}
.hero button{
    padding:14px 30px;
    border:none;
    background:#fff;
    color:#000;
    font-weight:600;
    cursor:pointer;
}

/* CATEGORY GRID */
.categories{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    padding:80px 60px;
}
.cat-card{
    position:relative;
    overflow:hidden;
    border-radius:12px;
}
.cat-card img{
    width:100%;
    height:380px;
    object-fit:cover;
    transition:.5s;
}
.cat-card:hover img{
    transform:scale(1.08);
}
.cat-card span{
    position:absolute;
    bottom:20px;
    left:20px;
    background:#fff;
    padding:10px 20px;
    font-weight:600;
}

/* STRIP */
.strip{
    background:#111;
    color:#fff;
    text-align:center;
    padding:35px;
    letter-spacing:1px;
}

/* PRODUCTS */
.products{
    padding:70px 60px;
}
.products h2{
    margin-bottom:30px;
}
.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}
.product{
    background:#fff;
    border-radius:10px;
    padding:15px;
    text-align:center;
}
.product img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:8px;
}
.product h4{
    margin:10px 0;
}
.product p{
    font-weight:600;
}

/* BRAND PROMISE */
.promise{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    padding:60px;
    background:#fff;
    text-align:center;
}
.promise div{
    padding:20px;
}
.promise h3{
    margin-bottom:10px;
}

/* FOOTER */
.footer{
    background:#111;
    color:#aaa;
    padding:50px 60px;
}
footer a{
    color:#aaa;
    text-decoration:none;
    display:block;
    margin-top:10px;
}

.logo_con {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ll {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid black;
}
.name_logo {
    width: 100px
}

.head {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: .5rem;
}

.sign_btns {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 1rem;
}

.head .as {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.head h1 {
    font-size: 28px;
}

.signin_interface.active {
    display: flex;
}

.signin_interface.active ~ .categories {
    filter: blur(5px);
}

.may_be:hover {
    cursor: pointer;
    text-decoration: underline;
}

.signin_interface {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100

}

.signin_con {
    border: 1px solid white;
    padding: 1rem;
    background: white;
    border-radius:  .5rem;
    width: 400px

}
.sign_btn {
    width: 140px;
    height: 40px;
    background: black;
    color: white;
    font-weight: 700;
    cursor: pointer;
    border-radius: .5rem;
}

.sign_btn a {
    text-decoration: none;
    color: white
}


.ads {
    background: black;
    color: white;
    position: fixed;
    top: 0px;
    z-index: 100;
    width: 100vw;
}

.ad {
    text-align: center;
    align-items: center;
    gap: 20px;
    display: none;
    justify-content: center;
}

.ad .as {
    color: #006bb4
}

.ad.active {
    display: flex;
}



.footer {
    padding: 1rem;
    background: white;
    font-size: 18px;
}


.footer_det {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.social_media_icons, .footer_con, .footer_copy {
    display: flex;
    align-items: center;
    gap: 30px
}

.footer_copy {
    justify-content: space-between;
    margin-left: 1rem;
    margin-right: 1rem;
}

.footer_logo {
    width: 80px;
    height: 80px;
}

.footer_img {
    display: grid;
    font-size: 20px;
    width: 250px
}


.footer_name {
    width: 100px
}



@media only screen and (min-width: 0px) and (max-width: 600px) {
    .navbar form {
        display: none;
    }
}
