.marquee-wrapper {
    background: linear-gradient(#e27890);
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.marquee-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.main-nav {
    background-color: white;
    padding: 10px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.nav-side {
    flex: 1;
    display: flex;
}

.nav-side:last-child {
    justify-content: flex-end;
}

.nav-logo img {
    height: 50px;
    display: block;
}

.cart-btn {
    cursor: pointer;
}

.sale-bar {
    background: black;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
}

.offer-timer{
    font-size: 18px;
}

.sale-bar-timer{
    color: #FD95AC;
}