﻿.header-top-container {
    background-color: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top-content {
    grid-template-columns: 1fr auto;
}

.header-logo {
    max-width: 200px;
    height: auto;
}

.button-account {
    background-color: transparent;
    border: none;
}

.sign-in-text {
    font-size: 15px;
    line-height: 15px;
    color: #1E8AE7;
    font-weight: 700;
}

.icon-account {
    width: 30px;
    height: 30px;
}

.header-bg {
    position: relative;
    background-size: cover;
    background-position: 55% center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .header-bg.default-header {
        min-height: 250px;
    }

    .header-bg.product-header {
        min-height: 180px;
    }

        .header-bg.product-header .header-subtitle {
            display: none;
        }

        .header-bg.product-header .header-title {
            font-size: 25px;
        }

    .header-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

.breadcrumbs-container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 6px;
    margin-bottom: 10px;
    list-style: none;
}

.breadcrumb-item a {
    color: #fff;
}

.breadcrumb-separator {
    color: #fff;
}

.header-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.header-title {
    font-size: 40px;
    line-height: 45px;
    max-width: 800px;
    text-align: left;
}

.header-subtitle {
    font-size: 18px;
    line-height: 24px;
    text-align: left;
}

@media (max-width: 1024px) {
    .header-logo {
        max-width: 180px;
    }

    .header-bg {
        height: 250px;
        padding: 30px 0;
    }

    .breadcrumb-item
    .breadcrumb-item a {
        font-size: 14px;
    }

    .header-title {
        font-size: 38px;
        line-height: 40px;
        max-width: 800px;
    }

    .header-subtitle {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .header-logo {
        max-width: 150px;
    }

    .header-bg {
        height: 200px;
        padding: 25px 0;
    }

    .breadcrumb-item
    .breadcrumb-item a {
        font-size: 13px;
    }

    .header-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        max-width: 130px;
    }

    .header-bg {
        height: 150px;
        padding: 20px 0;
    }

        .header-bg.product-header .header-title {
            font-size: 24px;
        }

    .header-text-container {
        flex: 1;
    }

    .breadcrumbs-container {
        display: none;
    }

    .header-title {
        font-size: 30px;
        line-height: 33px;
        margin-top: 10px;
    }
}
