*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Manrope,sans-serif;
    background:#fff;
    color:#222;
}

header{

    position:fixed;
    width:100%;
    top:0;
    left:0;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:24px 60px;

    z-index:100;

    backdrop-filter:blur(18px);
    background:rgba(255,255,255,.45);

}

.logo{

    text-decoration:none;
    color:#111;
    font-size:26px;
    font-weight:700;
    letter-spacing:7px;

}

.header-right{

    display:flex;
    align-items:center;
    gap:18px;

}

.lang-dropdown{

    position:relative;

}

.lang-btn{

    display:flex;
    align-items:center;
    gap:12px;

    padding:12px 18px;

    

    background:rgba(255,255,255,.92);

    border:none;

    border-radius:16px;

    font-size: 20px;
    font-weight:500;

    cursor:pointer;

    transition:.25s;

    box-shadow:
    0 8px 30px rgba(0,0,0,.08);

}

.lang-btn:hover{

    transform:translateY(-1px);

    box-shadow:
    0 12px 40px rgba(0,0,0,.12);

}


.lang-menu{

    position:absolute;
    min-width: 160px;
    top:60px;

    left:0;

    width:100%;

    overflow:hidden;

    opacity:0;
    visibility:hidden;
    transform:translateY(8px);

    background:white;

    border-radius:18px;

    box-shadow:
    0 18px 45px rgba(0,0,0,.12);

    transition:.25s;

}

.lang-menu.active{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}

.lang-menu.active + .arrow{

    transform:rotate(180deg);

}

.lang-item{

    display: block;

    color: inherit;
    text-decoration: none;

    padding:15px 18px;

    cursor:pointer;

    transition:.2s;

    font-size: 20px;

}

.lang-item:hover{

    background:#f6f6f6;

}

.login-btn{

    border:none;

    background:#111;
    color:white;

    padding:11px 24px;

    border-radius:30px;

    cursor:pointer;
    transition:.25s;

    font-size: 20px;
}

.login-btn:hover{

    background:#444;

}

.hero{

    height:100vh;

    position:relative;

    display:flex;
    align-items:center;

    padding:0 9%;

    background-image:url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1600&q=80");

    background-size:cover;
    background-position:center;

}

.overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.42);

}

.hero-content{

    position:relative;
    z-index:2;

    max-width:650px;

    color:white;

}

.badge{

    display:inline-block;

    padding:9px 18px;

    border-radius:40px;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    margin-bottom:28px;

}

.hero h1{

    font-size:72px;
    line-height:1.08;

    margin-bottom:28px;

}

.hero p{

    font-size:20px;
    line-height:1.8;

    max-width:560px;

    margin-bottom:40px;

}

.cta{

    border:none;

    background:white;
    color:#111;

    padding:18px 34px;

    font-size:17px;

    border-radius:50px;

    cursor:pointer;

    transition:.3s;

}

.cta:hover{

    transform:translateY(-2px);

}

.modal{

    position:fixed;
    inset:0;

    display:none;

    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.45);

    z-index:999;

}

.modal.active{

    display:flex;

}

.modal-box{

    background:white;

    width:420px;

    border-radius:24px;

    padding:40px;

    position:relative;

}

.modal-box h2{

    margin-bottom:14px;

}

.modal-box p{

    color:#666;

    margin-bottom:24px;

    line-height:1.6;

}

.modal input{

    width:100%;

    margin-bottom:16px;

    padding:16px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:15px;

}

.modal button[type=submit]{

    width:100%;

    padding:16px;

    border:none;

    background:#111;

    color:white;

    border-radius:12px;

    cursor:pointer;

}

.close{

    position:absolute;

    top:15px;
    right:18px;

    font-size:28px;

    border:none;
    background:none;

    cursor:pointer;

}

.products{

    padding:100px 8%;

    background:#fafafa;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:44px;

    margin-bottom:18px;

    color:#111;

}

.section-title p{

    color:#666;

    font-size:18px;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));

    gap:32px;

}

.product-card{

    background:white;

    border-radius:22px;

    overflow:hidden;

    transition:.3s;

    cursor:pointer;

    box-shadow:
    0 10px 35px rgba(0,0,0,.05);

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 22px 55px rgba(0,0,0,.10);

}

.product-card img{

    width:100%;

    height:320px;

    object-fit:cover;

}

.product-info{

    padding:24px;

}

.product-category{

    color:#8c8c8c;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:1px;

}

.product-name{

    margin-top:10px;

    font-size:21px;

    font-weight:700;

    color:#111;

}

.lock{

    margin-top:18px;

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    border-radius:50px;

    background:#f4f4f4;

    font-size:14px;

    color:#444;

}

.load-more{

    display:flex;
    justify-content:center;

    margin-top:70px;

}

.register-btn{

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;

    padding:22px 42px;

    border:none;

    border-radius:20px;

    background:#111;

    color:#fff;

    cursor:pointer;

    font-family:inherit;

    transition:.3s;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.register-btn:hover{

    transform:translateY(-3px);

    background:#222;

}

.register-btn:first-line{

    font-size:18px;

    font-weight:700;

}

.register-btn span{

    font-size:14px;

    opacity:.75;

}




.footer{

    background:#111;

    color:#fff;

    margin-top:60px;

}

.footer-container{

    max-width:1400px;

    margin:auto;

    padding:40px 35px 20px;

    display:flex;

    justify-content:space-between;

    gap:80px;

    flex-wrap:wrap;

}

.footer-brand{

    max-width:460px;

}

.footer-brand h3{

    font-size:28px;

    letter-spacing:6px;

    margin-bottom:18px;

}

.footer-brand p{

    color:#bfbfbf;

    line-height:1.8;

}

.footer-links,
.footer-social{

    display:flex;

    gap:16px;

}

.footer-links a,
.footer-social a{

    color:#d6d6d6;

    text-decoration:none;

    transition:.25s;

    font-size:15px;

}

.footer-links a:hover,
.footer-social a:hover{

    color:#fff;

    transform:translateX(4px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:24px;

    text-align:center;

    color:#9a9a9a;

    font-size:14px;

}
.footer-txt{
    text-align: center;
    padding-bottom: 16px;
}