*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:
    linear-gradient(rgba(5,7,13,.94),rgba(5,7,13,.94)),
    url("images/poze/fundal.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

/* HEADER */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:80px;

    background:#050505;

    border-bottom:2px solid #1690ff;

    display:flex;

    align-items:center;

    padding:0 25px;

    z-index:1000;

}

.home{

    width:120px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:2px solid #1690ff;

    border-radius:30px;

    text-decoration:none;

    color:white;

    font-weight:bold;

    transition:.3s;

}

.home:hover{

    background:#1690ff;

}

.home i{

    margin-right:8px;

}

.logo{

    margin-left:20px;

}

.logo img{

    height:60px;

}

.search{
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
}

#rezultate{
    position:absolute;
    top:50px;
    left:0;
    width:100%;
    background:#111827;
    border:1px solid #1677ff;
    border-radius:12px;
    display:none;
    overflow:hidden;
    z-index:9999;
}

.rezultat{
    padding:12px 15px;
    color:white;
    cursor:pointer;
    border-bottom:1px solid rgba(255,255,255,.1);
    transition:.2s;
}

.rezultat:hover{
    background:#1677ff;
}

.search input{

    width:300px;

    height:42px;

    border:none;

    outline:none;

    border-radius:25px 0 0 25px;

    background:#111;

    color:white;

    padding:0 15px;

}

.search button{

    width:55px;

    height:45px;

    border:none;

    background:#1690ff;

    color:white;

    border-radius:0 25px 25px 0;

    cursor:pointer;

}

/* CARD */

.produs{

    padding:130px 25px 40px;

}

.card-produs{

    max-width:1250px;

    margin:auto;

    background:#10192a;

    border:2px solid #1690ff;

    border-radius:30px;

    display:grid;

    grid-template-columns:420px 1fr;

    gap:45px;

    padding:40px;

    box-shadow:0 0 30px rgba(22,144,255,.25);

}
/* POZA PRODUS */

.poze{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.poza-mare{
    width:100%;
    max-width:450px;   /* mai mare */
    height:450px;      /* mai mare */
    object-fit:contain;

    background:transparent; /* fără fundal alb */

    border:none;       /* fără contur */
    border-radius:0;
    padding:0;

    display:block;
    margin:0 auto;
}


/* PARTEA DREAPTĂ */

.detalii{
    display:flex;
    flex-direction:column;
}

.titlu{
    width:100%;
    border:2px solid #1690ff;
    border-radius:18px;
    padding:18px;
    margin-bottom:20px;
    background:#0b1220;
    box-shadow:0 0 18px rgba(22,144,255,.25);
}

.titlu h1{
    color:white;
    text-align:center;
    font-size:38px;
    letter-spacing:2px;
}

.detalii h2{
    color:#1690ff;
    text-align:center;
    font-size:34px;
    margin-bottom:30px;
}

.detalii h3{
    color:white;
    font-size:26px;
    margin-bottom:15px;
}

.descriere{
    color:#d8d8d8;
    line-height:2;
    padding-left:22px;
    margin-bottom:30px;
}
/* ETICHETE */

.detalii label{
    color:white;
    font-size:18px;
    font-weight:bold;
    margin:18px 0 8px;
}

/* CÂMPURI */

.detalii input{
    width:100%;
    height:55px;
    border:2px solid #1690ff;
    border-radius:15px;
    background:#0d1117;
    color:white;
    font-size:18px;
    padding:0 15px;
    outline:none;
    transition:.3s;
}

.detalii input:focus{
    border-color:#25D366;
    box-shadow:0 0 12px rgba(37,211,102,.35);
}

/* BUTON WHATSAPP */

.whatsapp{

    width:320px;

    height:65px;

    margin:40px auto 0;

    background:#25D366;

    color:white;

    border:none;

    border-radius:18px;

    font-size:22px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    box-shadow:0 0 20px rgba(37,211,102,.35);

}

.whatsapp:hover{

    transform:translateY(-3px);

    background:#1fb95a;

}
/* TELEFON */

@media(max-width:768px){

header{
    height:70px;
    padding:0 8px;
}

.home{
    width:70px;
    height:35px;
    font-size:13px;
    border-radius:20px;
}

.home i{
    margin-right:4px;
    font-size:12px;
}

.logo{
    margin:0 8px;
}

.logo img{
    height:35px;
}

.search{
        margin-left:auto;
    }

    .search input{
        width:110px;
        height:34px;
        font-size:13px;
        padding:0 10px;
    }

    .search button{
        width:40px;
        height:34px;
        font-size:16px;
    }

.produs{
    padding:90px 10px 20px;
}

.card-produs{
    grid-template-columns:1fr;
    gap:20px;
    padding:20px;
}

.poza-mare{
    max-width:260px;
    height:260px;
}

.detalii h1{
    font-size:24px;
}

.whatsapp{
    width:100%;
    font-size:16px;
    height:50px;
}}