


 
/* Header styles */

header .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



/* Login button */

.login-button {

    display: inline-block;

    padding: 10px 20px;

    border-radius: 8px;

    text-decoration: none;

    background: #2563eb;

    color: #ffffff;

    font-size: 15px;

}



.login-button:hover {

    background: #1d4ed8;

}







/* Cart page styles */

.cart-container {

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 400px;

}



.cart-empty {

    text-align: center;

    padding: 40px;

    border-radius: 12px;

    background: #ffffff;

}



.cart-icon {

    font-size: 60px;

    margin-bottom: 20px;

}



.cart-empty h3 {

    font-size: 24px;

    margin-bottom: 10px;

}



.cart-empty p {

    color: #666;

    margin-bottom: 25px;

}



.btn {

    display: inline-block;

    padding: 12px 25px;

    border-radius: 8px;

    text-decoration: none;

}


