.cart-shell {
    display: grid;
    gap: 1rem;
}

.cart-hero {
    display: flex;
    justify-content: center;
    text-align: center;
}

.cart-hero h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    margin-bottom: 0.4rem;
}

.cart-hero p {
    color: var(--muted);
}

.cart-empty {
    display: flex;
    justify-content: center;
}

.empty-card {
    width: min(760px, 100%);
    padding: clamp(1.2rem, 3.4vw, 1.8rem) clamp(1rem, 3vw, 1.2rem);
    border-radius: 18px;
    border: 1px dashed var(--border);
    background: linear-gradient(160deg, rgba(255, 196, 70, 0.11), rgba(127, 77, 255, 0.08));
    box-shadow: 0 16px 30px var(--shadow);
    display: grid;
    gap: 0.95rem;
    justify-items: center;
    text-align: center;
}

.empty-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: linear-gradient(160deg, rgba(255, 196, 70, 0.14), rgba(127, 77, 255, 0.1));
    display: grid;
    place-items: center;
}

.theme-light .empty-icon {
    background: linear-gradient(160deg, rgba(255, 250, 241, 0.95), rgba(247, 236, 216, 0.88));
}

.empty-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.empty-card h3 {
    margin: 0;
    font-size: 1.3rem;
}

.empty-card p {
    margin: 0;
    color: var(--muted);
}

.empty-card .cta {
    text-decoration: none;
    color: #f8fcff;
    font-weight: 800;
    padding: 0.7rem 1.1rem;
    border-radius: 12px;
    background: linear-gradient(130deg, var(--accent), var(--accent-strong));
    box-shadow: 0 12px 20px rgba(213, 138, 0, 0.35);
    transition: transform 0.16s ease, box-shadow 0.2s ease;
}

.empty-card .cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 24px rgba(213, 138, 0, 0.42);
}

@media (max-width: 560px) {
    .empty-card .cta {
        width: 100%;
        text-align: center;
    }
}
