.cart-empty-page {
    max-width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}
.cart-wrapper {
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow:
        0 20px 60px rgba(53, 94, 59, 0.12),
        inset 0 0 0 1px rgba(53, 94, 59, 0.08);
    padding: 80px 70px;
    position: relative;
    overflow: hidden;
}
.cart-wrapper::before,
.cart-wrapper::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(53,94,59,0.15), transparent 65%);
    animation: floatGlow 14s ease-in-out infinite;
}
.cart-wrapper::before {
    top: -120px;
    left: -140px;
}
.cart-wrapper::after {
    bottom: -140px;
    right: -120px;
    animation-delay: 6s;
}
@keyframes floatGlow {
    0% { transform: translateY(0); }
    50% { transform: translateY(40px); }
    100% { transform: translateY(0); }
}
.cart-icon-box {
    width: 160px;
    height: 160px;
    margin: 0 auto 40px auto;
    border-radius: 50%;
    background: linear-gradient(145deg, #e6f4eb, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        inset 0 0 0 1px rgba(53,94,59,0.12),
        0 18px 40px rgba(53,94,59,0.18);
    animation: iconPop 1.4s ease-out;
}
@keyframes iconPop {
    from {
        opacity: 0;
        transform: scale(0.6);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.cart-icon {
    font-size: 68px;
    color: #355e3b;
    opacity: 0.85;
}
.cart-title {
    text-align: center;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.6px;
}
.cart-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #4d6d57;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 60px auto;
}
.cart-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.action-card {
    background: linear-gradient(180deg, #ffffff, #f4fbf7);
    border-radius: 22px;
    padding: 34px 30px;
    text-align: center;
    box-shadow:
        inset 0 0 0 1px rgba(53,94,59,0.1),
        0 14px 30px rgba(53,94,59,0.12);
    transition: all 0.45s ease;
    position: relative;
    overflow: hidden;
}
.action-card::before {
    pointer-events: none;
}
.action-card:hover::before {
    opacity: 1;
}
.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(53,94,59,0.2);
}
.action-icon {
    font-size: 38px;
    margin-bottom: 18px;
    color: #355e3b;
}
.action-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.action-text {
    font-size: 1rem;
    color: #4d6d57;
    line-height: 1.6;
    margin-bottom: 22px;
}
.action-link {
    display: inline-block;
    padding: 12px 32px;
    background: #355e3b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.35s ease;
}
.action-link:hover {
    background: #2c4e31;
    transform: scale(1.05);
}
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(53,94,59,0.18);
    border-radius: 50%;
    animation: particleFloat 16s linear infinite;
}
@keyframes particleFloat {
    from {
        transform: translateY(80vh) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(-10vh) scale(1.4);
        opacity: 1;
    }
}
@media (max-width: 768px) {
    .cart-wrapper {
        padding: 60px 30px;
    }
    .cart-icon-box {
        width: 130px;
        height: 130px;
    }
    .cart-icon {
        font-size: 54px;
    }
}