@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;900&display=swap");

body {
    font-family: "Montserrat", sans-serif;
    background-color: #f9f8ff;
    font-size: 14px;
    color: #363636;
    position: relative;
}
a {
    text-decoration: none;
    color: #7255d9;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: inherit;
}
.title {
    font-weight: 700;
}
.btn {
    border-radius: 50px;
}
.btn-primary {
    background-color: #7255d9;
    border-color: #7255d9;
}
.btn-primary:hover {
    background-color: #502fcb;
    border-color: #502fcb;
}
.btn-primary:active {
    background-color: #3e16d0 !important;
    border-color: #3e16d0 !important;
}
.btn-primary:focus {
    background-color: #3e16d0 !important;
    border-color: #3e16d0 !important;
}
.btn-outline-primary {
    color: #7255d9;
    border-color: #7255d9;
}
.btn-outline-primary:hover {
    background-color: #7255d9;
    border-color: #7255d9;
    color: #fff !important;
}
.btn-outline-primary:active {
    background-color: #3e16d0 !important;
    border-color: #3e16d0 !important;
    color: #fff !important;
}
.btn-outline-primary:focus {
    background-color: #3e16d0 !important;
    border-color: #3e16d0 !important;
    color: #fff !important;
}
.purple {
    color: #7255d9;
}
.btn-lg {
    font-weight: 700;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.page {
    margin-top: 120px;
    min-height: 70vh;
}
.smartest-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0px 4px 35px 0px rgba(114, 85, 217, 0.2);
}

/*
** Navigation
*/
.navigation {
    width: 100%;
    height: 65px;
    display: flex;
    border-bottom: 1px solid #ebebeb;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: #f9f8ff;
}
.navigation .navigation-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navigation-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}
.navigation-lang {
    font-size: 16px;
    position: relative;
    font-weight: 600;
    color: #7255d9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}
.navigation-lang-dropdown {
    position: absolute;
    right: 0;
    top: 25px;
    width: 140px;
    padding: 5px 7px;
    display: none;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.navigation-lang-dropdown a {
    padding: 5px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    font-size: 14px;
    color: #213c5a;
}
.navigation-lang-dropdown a:hover {
    background-color: #f5f5f5;
    color: #7255d9;
}
.navigation-lang-dropdown a img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.navigation-lang i {
    font-size: 10px;
    margin-left: 3px;
}
.navigation-auth {
    display: flex;
    align-items: center;
    gap: 10px;
}
.navigation-actions .btn {
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    padding: 7px 50px;
}
.navigation-logo img {
    height: 50px;
}
.navigation-profile-link {
    font-weight: 600;
    color: #7255d9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    position: relative;
}
.navigation-profile-link .bi-person-circle {
    font-size: 30px;
    margin-right: 5px;
    line-height: 1;
}
.navigation-profile-link .bi-caret-down-fill {
    font-size: 10px;
    line-height: 1;
    margin-left: 3px;
}
.navigation-profile-dropdown {
    position: absolute;
    right: 0;
    top: 40px;
    width: 100%;
    min-width: 210px;
    padding: 7px 10px;
    display: none;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.navigation-profile-dropdown a {
    padding: 5px 10px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    font-size: 14px;
    color: #213c5a;
}
.navigation-profile-dropdown a:hover {
    background-color: #f5f5f5;
    color: #7255d9;
}
.navigation-profile-dropdown-icon {
    margin-top: 3px;
    width: 25px;
}
.navigation-profile-dropdown a i {
    font-size: 18px !important;
    line-height: 1;
}

/*
** Scrolled navigation
*/
.snavigation {
    background-color: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

/*
** Footer
*/
.footer {
    border-top: 1px solid #ebebeb;
    padding-top: 25px;
    margin-top: 92px;
}
.footer .row {
    display: flex;
    align-items: center;
}
.mail-link {
    font-size: 18px;
    color: #7255d9;
    font-weight: 500;
}
.mail-link:hover {
    color: #3b2296;
}
.social-link {
    margin-left: 5px;
    font-size: 32px;
    color: #7255d9;
}
.social-link:hover {
    color: #3b2296;
}
.footer-payments-logo {
    margin-top: 10px;
    text-align: center;
}
.footer-mastercard-logo {
    width: 40px;
}
.footer-visa-logo {
    width: 60px;
}
.footer-policy-terms {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-bottom: 25px;
}
.footer-policy-terms a {
    color: #363636;
    font-weight: 500;
}

.footer-policy-terms a:hover {
    color: #7255d9;
}

.footer-email {
    text-align: center;
}

.footer-links {
    text-align: end;
}

/*
** Cookies Notification
*/
.notification-cookies{
    display: none;
    opacity: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 70%;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    z-index: 99;
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
}
.notification-cookies .row{
    display: flex;
    align-items: center;
}
@-webkit-keyframes slide {
    0% {
        bottom: 0;
        opacity: 0;
    }
    100% {
        bottom: 50px;
        opacity: 1;
    }
}
@keyframes slide {
    0% {
        bottom: 0;
        opacity: 0;
    }
    100% {
        bottom: 50px;
        opacity: 1;
    }
}
.disabled {
    pointer-events: none; /* Dezactivează click-ul */
    opacity: 0.6; /* Îl face vizual "închis" */
    background-color: #ccc !important; /* Fundal gri */
    color: #666 !important; /* Text mai "stins" */
    cursor: not-allowed; /* Cursor de interzis */
    user-select: none; /* Nu permite selectarea textului */
}
