﻿.header-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

    .header-buttons .aspNetDisabled {
        display: none;
    }

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: 25px;
    background: #8e24aa;
    border: 1px solid #e5e5e5;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: .3s;
    line-height: 1;
}

    .header-btn:hover {
        background: #fff;
        border-color: #8e24aa;
        color: #8e24aa;
        text-decoration: none;
    }

.user-btn {
    background: #8e24aa;
    border-color: #8e24aa;
    color: #fff;
}

.logout-btn {
    background: #fff5f5;
    border-color: #ffd9d9;
    color: #dc3545;
}

.cart-btn {
    background: #9b23a1;
    border-color: #9b23a1;
    color: #fff;
}

    .cart-btn:hover {
        background: #8e24aa;
        border-color: #8e24aa;
    }

@media(max-width:600px) {
    .header-buttons {
        justify-content: center;
        gap: 6px;
        position: absolute;
        top: -43px;
    }

    

    .header-btn {
        font-size: 12px;
        padding: 7px 12px;
    }
}

.preheader-area-wrapper h3 {
    color: #fff;
    font-family: sans-serif;
}

@media only screen and (min-width: 991px) {
    /*  .preheader-area-wrapper {
        display:none !important;
    }*/
}




.announcement-bar {
    color: #fff;
    text-align: center;
}


@keyframes blink {
    0%, 100% {
        color: #070505;
        text-shadow: 0 0 5px rgba(255,255,255,.5);
    }

    50% {
        color: #feff1f;
        text-shadow: 0 0 10px rgba(255,0,0,.8);
    }
}
.announcement-text {
    display: inline-block;
    font-weight: 500;
    font-size: 15px;
}

.blink {
    animation: blink 1s ease-in-out infinite;
    font-weight: 500;
    font-size: 15px;
}

@media (max-width:768px) {
    .mobil_account {
        width: 100% !important;
        margin: 0 auto;
        padding: 19px;
        background-color: white;
        border-radius: 20px;
        box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    }
    .header-five-middle-area .row {
        display: flex;
        flex-wrap: wrap;
    }
    .announcement-text {
        display: inline-block;
        font-weight: 500;
        font-size: 13px;
    }

    .blink {
        animation: blink 1s ease-in-out infinite;
        font-weight: 500;
        font-size: 12px;
    }

   

    .logo-area {
        text-align: left;
    }

        .logo-area img {
            max-width: 140px;
        }

    .header-buttons {
        position: static;
        justify-content: flex-end;
        margin-top: 0;
        gap: 5px;
    }

    .header-btn {
        padding: 8px 10px;
        font-size: 11px;
    }

    .search-box-wrap {
        width: 100%;
        margin-top: 10px !important;
    }
}