.cart-page {
    min-height: 100vh;
    background: #07070e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
}

.cart-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.cart-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 32px;
    padding: 48px 32px;
    text-align: center;
}

.cart-icon {
    width: 80px;
    height: 80px;
    background: rgba(124,58,237,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.cart-icon span {
    font-size: 48px;
    color: #a78bfa;
}

.cart-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #eeeef8;
    margin-bottom: 8px;
}

.cart-card p {
    color: #8888aa;
    margin-bottom: 32px;
}

.cart-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
    text-align: left;
}

.cart-option:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(124,58,237,0.3);
    transform: translateY(-2px);
}

.cart-option span:first-child {
    font-size: 32px;
}

.cart-option.guest span:first-child { color: #a78bfa; }
.cart-option.login span:first-child { color: #60a5fa; }
.cart-option.register span:first-child { color: #10b981; }
.cart-option.logged span:first-child { color: #10b981; }
.cart-option.logout span:first-child { color: #f87171; }

.option-text {
    flex: 1;
}

.option-text strong {
    font-size: 16px;
    font-weight: 600;
    color: #eeeef8;
    display: block;
    margin-bottom: 4px;
}

.option-text span {
    font-size: 13px;
    color: #8888aa;
}

.cart-option span:last-child {
    font-size: 20px;
    color: #6b6b90;
}

@media (max-width: 768px) {
    .cart-card {
        padding: 32px 20px;
    }
    .cart-option {
        padding: 16px 20px;
    }
    .cart-option span:first-child {
        font-size: 28px;
    }
}