﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    flex: 1 0 auto;
}

#main-content {
    padding-top: 70px;
    min-height: calc(100vh - 70px - 433px);
    flex: 1 0 auto;
    min-height: calc(100vh - 70px - 120px);
}

.header-f-3 {
    background: #000000;
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
}

.hamburger-menu {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-icon {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    line-height: 30px;
}

.hamburger-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -200px;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 220px;
    border-radius: 4px;
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
    position: fixed;
    top: 70px;
    width: 220px;
    z-index: 1002;
}

    .hamburger-dropdown.visible {
        display: block;
    }

    .hamburger-dropdown.active {
        transform: translateX(200px);
    }

    .hamburger-dropdown .dropdown-item,
    .account-dropdown a,
    .notification-dropdown .notification-item,
    .dropdown-item.language-item {
        display: block;
        padding: 10px 20px;
        color: #000000 !important;
        text-decoration: none;
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        width: 100%;
        font-weight: 500;
        text-align: left;
        text-transform: uppercase;
        border-bottom: 1px solid #f0f0f0;
    }

        .hamburger-dropdown .dropdown-item:hover,
        .account-dropdown a:hover,
        .notification-dropdown .notification-item:hover,
        .dropdown-item.language-item:hover {
            background: #f5f5f5;
        }

        .hamburger-dropdown .dropdown-item:last-child,
        .dropdown-item.language-item:last-child {
            border-bottom: none;
        }

.overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    z-index: 900;
    transition: opacity 0.3s ease-in-out;
}

body.hamburger-active .overlay {
    display: block;
}

body.hamburger-active #main-content {
    filter: blur(15px);
}

body.hamburger-active #footer-content {
    filter: blur(15px);
}

.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    width: 150px;
    height: auto;
    margin-top: 5px;
    margin-right: 15px;
}

.icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    height: 30px;
    line-height: 30px;
}

.search-bar {
    display: flex;
    align-items: center;
    position: relative;
    height: 30px;
}

.search-input {
    display: flex;
    align-items: center;
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    border-radius: 20px;
    z-index: 1000;
    transition: width 0.3s ease-in-out, background 0.3s ease-in-out;
}

    .search-input.expanded {
        width: 250px;
        height: 40px;
        background: #ffffff;
        border: 1px solid #000000;
        box-shadow: none;
    }

.search-field {
    flex: 1;
    height: 100%;
    padding: 0 10px 0 40px;
    background: transparent;
    border: none;
    font-size: 14px;
    color: #000000;
    outline: none;
    width: 0;
    opacity: 0;
    transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.search-input.expanded .search-field {
    width: 100%;
    opacity: 1;
}

.search-field::placeholder {
    color: #000000;
    opacity: 0.5;
    font-size: 14px;
}

.search {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease-in-out;
    vertical-align: middle;
    line-height: 30px;
}

.search-input.expanded .search {
    filter: brightness(0) invert(0);
}

.language-icon, .cart7, .account, .login-icon-link {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .language-icon i, .cart7, .account, .login-icon {
        width: 30px;
        height: 30px;
        object-fit: contain;
        vertical-align: middle;
        line-height: 30px;
    }

.language-dropdown {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 150px;
}

    .language-dropdown.show {
        display: block;
    }

.login-icon-link {
    color: inherit;
    text-decoration: none;
}

.header-f-3 i {
    vertical-align: middle;
    line-height: 30px;
}

.cart7 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 30px;
}

.account-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 150px;
    border-radius: 4px;
}

    .account-dropdown.show {
        display: block;
    }

.notification-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 300px;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 4px;
}

    .notification-dropdown.show {
        display: block;
    }

    .notification-dropdown .notification-item {
        border-bottom: 1px solid #f5f5f5;
    }

        .notification-dropdown .notification-item.unread {
            background: #ffffff;
        }

.header-icon {
    font-size: 25px;
    color: white;
}

.notification-bell {
    position: relative;
    cursor: pointer;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    display: none;
}

.dropdown-item.language-item {
    text-align: center;
}

.notification-item {
    padding: 10px 20px;
}

    .notification-item.no-notifications {
        text-align: center;
    }

    .notification-item.with-notifications {
        text-align: left;
    }

.account-dropdown a:last-child {
    border-bottom: none;
}

.notification-dropdown .notification-item {
    white-space: normal;
    word-break: break-word;
}

.footer {
    background: #000000;
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
}

.layout3 {
    display: flex;
    justify-content: center;
    padding: 20px;
    max-width: 1500px;
    margin: 0 auto;
    gap: 20px;
    align-items: stretch;
    flex-wrap: wrap;
    min-height: 393px;
}

.name, .contacts, .about, .download {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

    .name .company {
        font-size: 18px;
        font-weight: 700;
        margin: 10px 0;
        color: #ffffff;
    }

.logo2 {
    width: 200px;
    height: auto;
}

.partner-section {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.partner-text {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
}

.register-button {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    padding: 5px 10px;
    transition: background 0.5s ease, color 0.5s ease;
}

    .register-button:hover {
        background: #ffffff;
        color: #000000;
    }

    .register-button a {
        color: var(--bs-white);
        text-decoration: none;
        transition: 0.5s;
    }

    .register-button:hover a {
        color: #000000;
    }

.contacts .text12, .about .text13, .download .text13 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.address, .email, .phone, .privacy-policy, .terms-of-use, .faq, .contacts2, .text14 {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
}

.address {
    max-width: 315px;
    margin-bottom: 10px;
    white-space: normal;
    word-break: break-word;
}

.email {
    margin: 10px 0;
}

.phone {
    margin-top: 10px;
}

.privacy-policy, .terms-of-use, .faq, .contacts2 {
    margin: 8px 0;
}

    .privacy-policy a, .terms-of-use a, .faq a, .contacts2 a {
        color: var(--bs-white);
        text-decoration: none;
    }

.download {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .download .text13 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #ffffff;
        width: 100%;
    }

    .download .info2 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin: 15px 0;
        flex-wrap: wrap;
    }

.download-apps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.google-play, .app-store {
    width: 120px;
    height: 54px;
    border: 2px solid #ffffff;
    border-radius: 5px;
    padding: 5px;
}

.download-apps a {
    color: var(--bs-white);
    text-decoration: none;
}

.qr-code {
    width: 110px;
    height: 110px;
    border: 2px solid #ffffff;
    border-radius: 5px;
    background-color: white;
}

.qr2 {
    width: 100%;
    height: 100%;
}

.download .text14 {
    font-size: 14px;
    color: #ffffff;
    margin-top: 15px;
    width: 100%;
}

.icons2 {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

    .icons2 i {
        font-size: 30px;
        color: white;
    }

    .icons2 a {
        color: var(--bs-white);
        text-decoration: none;
    }

.copyright {
    border-top: 1px solid #ffffff;
    padding: 15px 0;
    text-align: center;
    width: 100%;
    margin-top: 0;
}

.text15, .text-15-span {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
}

@media (max-width: 750px) {
    #main-content {
        padding-top: 50px;
        min-height: calc(100vh - 50px - 200px);
    }

    .header-f-3 {
        height: 50px;
        padding: 5px 10px;
    }

    .hamburger-menu {
        width: 24px;
        height: 24px;
    }

    .hamburger-icon {
        line-height: 24px;
    }

    .hamburger-dropdown {
        top: 50px;
        min-width: 180px;
        width: 180px;
    }

        .hamburger-dropdown .dropdown-item {
            padding: 8px 15px;
            font-size: 12px;
        }

    .logo {
        width: 100px;
        margin-top: 5px;
    }

    .icons {
        gap: 10px;
        height: 24px;
        line-height: 24px;
    }

    .search-bar {
        height: 24px;
    }

    .search-input {
        width: 30px;
        height: 24px;
    }

        .search-input.expanded {
            width: 190px;
            height: 30px;
        }

    .search-field {
        padding: 0 8px 0 30px;
        font-size: 12px;
    }

    .search {
        width: 24px;
        height: 24px;
        left: 5px;
        line-height: 24px;
    }

    .language-icon, .cart7, .account, .login-icon-link {
        width: 24px;
        height: 24px;
    }

        .language-icon i, .cart7, .account, .login-icon {
            width: 24px;
            height: 24px;
            line-height: 24px;
        }

    .language-dropdown {
        top: 50px;
        width: 120px;
    }

        .language-dropdown .dropdown-item {
            padding: 8px 15px;
            font-size: 12px;
        }

    .header-f-3 i {
        line-height: 24px;
    }

    .cart7 {
        line-height: 24px;
    }

    .account-dropdown {
        min-width: 120px;
    }

        .account-dropdown a {
            padding: 8px 15px;
            font-size: 12px;
        }

    .notification-dropdown {
        top: 50px;
        min-width: 300px;
    }

    .header-icon {
        font-size: 18px;
    }

    .notification-badge {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 10px;
        right: -5px;
    }

    .notification-item {
        padding: 8px 15px;
        font-size: 11px;
        line-height: 1.4;
    }

    .notification-dropdown .notification-item {
        white-space: normal;
        word-break: break-word;
    }

    .footer {
        padding-bottom: 0;
    }

    .layout3 {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        min-height: auto;
    }

    .name, .contacts, .about, .download {
        width: auto;
        align-items: center;
        text-align: center;
    }

        .name .company {
            font-size: 20px;
            margin: 10px 0;
        }

    .logo2 {
        width: 150px;
    }

    .partner-section {
        margin-top: 10px;
        gap: 10px;
    }

    .partner-text {
        font-size: 14px;
    }

    .register-button {
        font-size: 12px;
        padding: 5px 10px;
    }

    .contacts .text12, .about .text13, .download .text13 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .address, .email, .phone, .privacy-policy, .terms-of-use, .faq, .contacts2, .text14 {
        font-size: 10px;
    }

    .address {
        margin-bottom: 10px;
    }

    .email {
        margin: 10px 0;
    }

    .phone {
        margin-top: 10px;
    }

    .privacy-policy, .terms-of-use, .faq, .contacts2 {
        margin: 8px 0;
    }

    .download .text13 {
        margin-bottom: 15px;
    }

    .download .info2 {
        flex-direction: row;
        gap: 15px;
        margin: 15px 0;
        justify-content: center;
    }

    .download-apps {
        gap: 8px;
    }

    .google-play, .app-store {
        width: 120px;
        height: 54px;
        padding: 5px;
    }

    .qr-code {
        width: 110px;
        height: 110px;
    }

    .download .text14 {
        font-size: 12px;
        margin-top: 15px;
    }

    .icons2 {
        gap: 15px;
        margin-top: 15px;
    }

        .icons2 i {
            font-size: 30px;
        }

    .copyright {
        padding: 15px 0;
    }

    .text15, .text-15-span {
        font-size: 12px;
    }

    .logo-container {
        display: none;
    }
}
