header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    position: fixed;
    width: 100%;
    font-family: 'Nav-Font', Arial, sans-serif;
    background: var(--bg-color);
    z-index: 9999;
}

header .left {
    margin-left: 30px;
    font-size: 18pt;
    display: flex;
    align-items: center;
}

header .left a {
    color: var(--text-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
    cursor: pointer;
}

header .left .rotating-image {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    animation: spin 10s linear infinite;
}

.left-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    font-size: 20pt;
    gap: 6px;
}

header .center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

header .center .discount-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--discount-box-bg-color);
    color: var(--discount-box-text-color);
    padding: 5px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.discount-box-title {
    text-transform: uppercase;
    font-family: 'Title-Font', Arial, sans-serif;
    font-weight: bold;
    font-size: 20px;
}

.discount-box-text {
    text-decoration: none;
    font-family: 'Text-Font', Arial, sans-serif;
    font-size: 18px;
}

header .right {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

header .right a {
    margin-left: 25px;
    color: var(--text-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    transition: color 0.3s;
    cursor: pointer;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
