* {
    box-sizing: border-box;
}

.row{
    margin: 0;
    padding: 0;
}

:root{
    --color-text: #333;
}

.btn-success{
    background-color: var(--color-text)!important;
    border: #333;
}

body {
    color: var(--color-text);

}

.navbar {
    background-color: #fff;
    color: var(--color-text);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adăugăm umbra pentru un efect mai elegant */


}

.navbar a,
.navbar-brand {
    color: var(--color-text) ;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-transform: uppercase; /* Ușor de citit și modern */
    transition: color 0.3s ease;
    font-size: 14px;
}

.navbar a.btn-success {
    color: #fff;
}

.navbar a:hover,
.navbar-brand:hover {
    color: #f0b400; /* Culori dinamice la hover */
}

.navbar .center{
    flex-direction: column;
}

.navbar-collapse{
    justify-content: center;
}

.navbar a.btn-viber{
    background-color: #8950a1;
    color: #fff;
    
}

.navbar a.btn-whatsapp{
    background-color: #23d367;
    color: #fff;
}

.navbar .social-button a{
    font-size: 12px;
}

ul.navbar-nav a.nav-link {
    color: var(--color-text);
    font-weight: 600;
    padding: 10px 0;
    padding-left: 0!important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition:  0.3s ease, color 0.3s ease;
}

ul.navbar-nav a.nav-link:hover {
    color: var(--color-text); /* Detalii care pun în evidență legăturile active */
    text-decoration: underline;
}



/* Navbar toggler */
.navbar-toggler {
    border-color: #fff;
    padding: 10px; /* Mai mult spațiu pentru un buton mai ușor de apăsat */
    transition: border-color 0.3s ease;
}

.navbar-toggler-icon {
    background-color: white;
    transition: background-color 0.3s ease;
}

.navbar-toggler:hover,
.navbar-toggler-icon:hover {
    background-color: #f0b400; /* Culoare de hover pentru un efect vizual interesant */
}

/* Logo */
.navbar a.logo {
    width: 225px;
    display: block;
    transition: transform 0.3s ease;
}

.navbar a.logo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.navbar a.logo:hover img {
    transform: scale(1.1); /* Ușor efect de zoom pe logo la hover */
}

/* Language Button */
.lang_button {
    background-color: transparent;
    border: none;
    cursor: pointer; /* Arată că este un buton interactiv */
    transition: transform 0.3s ease;
}

.lang_button a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px; /* Marginile rotunjite pentru un aspect mai modern */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.lang_button:hover a {
    background-color: #f0b400;
    color: white; /* Culoare de hover pentru text și fundal */
}

.lang_button:active a {
    transform: scale(0.95); /* Mică scădere a dimensiunii pentru un efect de apăsare */
}

.header {
    position: relative;
    background: url('../img/header-bg.webp') no-repeat center center/cover;

    text-align: center;
}

.header .row{
    align-items: center;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Fundal semi-transparent */
}

.header h1 {
    color: var(--color-text);
}

.header h1,
.header p,
.header form {
    position: relative;
    z-index: 1;
}

.header form p{
    font-size: 20px;
    margin-bottom: 20px;
}

.header p:nth-child(1) {
    margin-bottom: 0;
}

.header form {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    margin: 20px auto;
}

.header form input, .header form button{
    padding: 10px 20px;
}

header .logo {
    width: 295px;
}

header .image_block{
    position: relative;
    z-index: 9999;

    height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;
}

header .image_block .img_div{
    width: 455px;
}

header .image_block .img_div img{

}


.header .image_block .discount{
    background-color: #fff;
    width: 100px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    bottom: 50%;
    transform: translateY(-50%);
    left: 15%;

    border-radius: 50%;

    font-weight: 600;
    font-size: 18px;

    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.2);
}

header .features{
    position: absolute;
    bottom: 125px;

    display: flex;
    align-items: center;
    gap: 25px;

    justify-content: space-evenly;
}

header .features  .features_item{
    padding: 7px 12px;

    border-radius: 15px;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;


    background: linear-gradient(0.35turn,rgba(255,200,0,1) 0%,rgba(255,173,0,1) 46%,rgba(255,118,0,1) 100%);
}


header .features h4{
    font-size: 14px;
    margin: 0;
}



header .image_block img{
    width: 100%;
    border-radius: 15px;
}

.header-cards{
    width: 100%;

    position: absolute;
    bottom: -65px;
    z-index: 10000;

    justify-content: center;
}

.header-cards .card-item{
    display: flex;
    flex-direction: column;

    border-radius: 15px;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.2);

    padding: 10px 15px;
    background-color: #fff;
    width: 350px;

    align-items: center;
    justify-content: center;
}

.header-cards .card-item p{
    font-weight: 500;
    font-size: 15px;
}

.header-cards .card-item .top{
    align-items: center;
    justify-content: center;

    margin: 10px 0;
}

.header-cards .card-item .icon img{
    width: 50px;
}

#catalog {
    background-color: #fff;
    padding-top: 100px;
}

#catalog h2{
    text-transform: uppercase;
}


.card-title {
    font-size: 1.5rem;
}

.card,
.card-container {
    transition: transform 0.6s, box-shadow 0.3s;
    border: 0;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
}

.card {
    min-height: 270px;
}

.card p {
    text-align: justify;
    text-align-last: center;


}

.card .card-text{
    font-size: 30px;
}


.card-body {
    position: relative;
}


.bonus-item-product {
    position: absolute;

    right: 5px;
    top: -25%;
    transform: translateY(0%);
    width: 95px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    padding-bottom: 7px;

}

.bonus-item-product span{
    display: block;
    width: 75%;

    margin: 5px auto;
}

.bonus-item-product img {
    width: 55%;
}

.card-img-top {
    min-height: 250px;
    position: relative;
}

.bonus-item {
    position: absolute;
    top: 15px;
    left: 5px;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bonus-item button {
    border-radius: 10px;
    font-weight: 300;
    padding: 3px 5px;
}


.price-text {
    font-size: 28px;
    color: var(--color-text);
    font-weight: 600;

    justify-content: space-between;
}

.price-text p {
    margin: 0;
    padding: 0;
}

.price-text .old {
    text-decoration: line-through;
    font-size: 20px;
    font-weight: 300;
}

.card-container:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.card-body ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.card-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.card-slider {
    display: flex;
    transition: transform 0.6s ease;
}

.card-products,
.card-details {
    min-width: 100%;
}

.card-container.slid .card-slider {
    transform: translateX(-100%);
}

#advantages .card i {
    font-size: 32px;
    color: var(--color-text);
}

#advantages .card p{
    padding: 0 25px;
}



#faq {
    background-color: #fff;
}


.accordion {
    margin: 0px 5px;
}

.faq .accordion-button {
    background-color: #198754;
    color: white;
}

.faq .accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #f1f8e9;
}

.accordion-button {
    background-color: #f1f8e9;
    color: var(--color-text);
    font-weight: 500;
}

.faq-bg {
    background-image: url('../img/bg-faq.webp');
    /* Înlocuiește cu imaginea dorită */
    background-size: cover;
    background-position: center;
    min-height: 500px;
    /* Ajustează înălțimea după necesități */

    border-radius: 15px;
}

.review-slider {
    margin-top: 30px;
    display: flex;
    align-items: center;
    /* Centrează vertical cardurile */
    gap: 20px;
}

.slick-slide {
    margin: 0 15px;
    /* Spațiu între carduri */
    display: flex;
    justify-content: center;
}

.slick-list {
    margin: 0 -15px;
    /* Compensează margin-ul pentru aliniere corectă */
}

.slick-track{
    margin: 15px 0;

}

.slick-prev:before, .slick-next:before{
    font-size: 25px;
    color: var(--color-text);
}

.review-card {
    background: #fff;
    padding: 20px;
    min-height: 280px;
    /* Asigură o înălțime flexibilă */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Distribuie conținutul corect */
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;

}

.review-card>img{
    max-height: 330px;
    max-width: 250px;
    margin: 0 auto;
}

video.product-image{
    width: 46%;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.product-image {
    width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 8px;
}

.stars {
    font-size: 20px;
    color: #FFD700;
    margin-bottom: 10px;
}

.review-text {
    font-size: 16px;
    color: #555;
}

.footer {
    background-color: var(--color-text);
    color: white;
    padding: 20px;
    text-align: center;
}

.mobile-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--color-text);
    display: flex;
    justify-content: space-around;
    padding: 10px;
    display: none;
    align-items: center;
}

.mobile-bar a {
    color: white;
    font-size: 20px;
    
}

.order-popup {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    width: 300px;

    text-align: center;
}

.order-popup .btn-danger{
    position: absolute;

    top: 5px;
    right: 10px;

    padding: 0px 6px;
    font-size: 12px;
    border-radius: 35px;
}

.order-popup input {
    width: 100%;
    margin-bottom: 10px;
    padding: 5px;
}

#livrare-achitare{
    background-color: #fff;
    padding: 15px 0;
}

#livrare-achitare .beneficiu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: #f1f8e9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;

    text-align: center;
}

#livrare-achitare i {
    font-size: 1.8rem;
    color: var(--color-text);
}

#livrare-achitare img{
    height: 225px;
    margin: 0 auto;
    display: block;

    margin-bottom: 10px;
}

.btn-light{
    color: var(--color-text)!important;
    font-weight: 500;
}


footer iframe{
    width: 100%;
    height: 100%;
}

footer .logo{
    width: 350px;
    margin-left: -20px;
}

footer ul{
    list-style-type: none;
    padding-left: 0;
}

footer ul li span{
    font-size: 18px;
    font-weight: 500;
}

footer ul li a{
    color: var(--color-text);
    text-decoration: none;

}

footer form{
    align-items: center;
    width: 50%;
}

.modal-layout{
    display: none;

    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);

    width: 100vw;
    height: 100vh;


    z-index: 99999;
}

@media (max-width: 1650px){
    #catalog{
        padding-top: 145px;
    }

    .header-cards{
        bottom: -95px;
    }

    header .image_block img{
        width: 115%;
    }
    
}


@media (max-width: 768px) {
    .mobile-bar {
        display: flex;
        z-index: 199999;
    }
    .navbar{
        padding: 5px 15px;
    }

    .navbar .center{
        align-items: left;
    }

    .navbar-nav{
        margin: 0!important;
    }
    .social-button{
        margin-bottom: 25px;
    }

    .navbar a.logo{
        margin-left: -10px;
    }

    .call-buttons{
        justify-content: space-between;
        width: 100%;
    }

    header .image_block img{
        width: 100%;
    }

    .header-cards{
        flex-direction: column;
        bottom: -45%;


        align-items: center;
    }
    .header form{
        max-width: 355px;
    }

    .header form p{
        font-size: 17px;
    }
    header .image_block{
        height: 335px;
    }

    header .image_block .img_div{
        width: 300px;
    }

    header .features{
        bottom: 15px;
    }

    .header .image_block .discount{
        width: 80px;
        height: 80px;

        font-size: 16px;
    }

    #catalog{
        padding-top: 345px;
    }

    .card-img-top{
        min-height: 150px;
        width: 80%;
        margin: 0 auto;

        text-align: center;
    }

    .card-details p{
        font-size: 18px;
        line-height: 20px;

        padding: 55px 15px;
    }
    

    .bonus-item-product{
        right: 5px;
        top: -20%;
        width: 125px;
        height: 105px;

        padding: 5px 5px 15px 5px;
    }

    .bonus-item-product span{
        width: 85%;
        margin: 2px auto;
    }

    .bonus-item-product img{
        width: 50%;
    }

    .bonus-item{
        top: 5px;
    }

    .bonus-item button{
        padding: 5px 8px;
        font-size: 14px;
        font-weight: 600;
    }

    #catalog .card-container, #catalog .card{
        border-radius: 10px;
    }

    #catalog .card-container:hover{
        transform: none;
    }

    #catalog .card-title{
        margin-top: 40px;
    }

    #catalog .card-body ul{
        text-align: center;
    }

    #catalog .card .card-text{
        font-size: 28px;
    }

    #catalog .card .old{
        font-size: 14px;
    }

    #catalog .buttons-card{
        flex-direction: column;
    }

    #catalog .buttons-card button{
        width: 50%;
        padding: 7px 5px;
        font-weight: 700;
        margin: 0 auto;
    }

    #catalog .card-body{
        padding: 0 10px;
        height: 350px;
    }

    #catalog .price-text{
        justify-content: center;
        gap: 20px;
    }

    #advantages .card p{
        padding: 0;
    }

    #advantages .card, #advantages .card-container{
        border-radius: 10px;
    }

    #faq .accordion{
        margin: 0 20px;
    }

    .faq-bg{
        min-height: 250px;
        width: 380px;

        margin: 0 auto;
    }

    #reviews .review-slider{
        margin: 30px 15px;
    }
    
    #livrare-achitare img{
        height: 180px;
    }
    
    .slick-prev:before, .slick-next:before{
        display: none;
    }
    .slick-dots li.slick-active button:before{
        font-size: 32px;
    }

    .slick-dots li.slick-active button:before{
        color: var(--color-text);
        font-size: 38px;
    }

    .beneficiu{
        width: 85%;
    }

    #advantages .card{
        width: 90%;
        margin: 0 auto;
    }

    footer .logo{
        width: 315px;
    }

    .container{
        padding: 0;
    }
}


@media (max-width: 400px) {

    .faq-bg{
        width: 320px;
    }

    #catalog .card-title{
        font-size: 1.3rem;
    }

    #catalog .card-body{
        padding: 0 5px;
    }

    .bonus-item-product{
        top: -10%;
    }
}