.ldc-floating-cart {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 12px 18px 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 172, 74, 0.28);
    background: linear-gradient(135deg, #fc312e 0%, #ff7c1f 56%, #ffb11f 100%);
    box-shadow: 0 18px 34px rgba(83, 24, 6, 0.28);
    color: #ffffff !important;
    text-decoration: none !important;
    transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.ldc-floating-cart:hover,
.ldc-floating-cart:focus {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 22px 40px rgba(83, 24, 6, 0.34);
    color: #ffffff !important;
    text-decoration: none !important;
}

.ldc-floating-cart.is-empty {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.ldc-floating-cart__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.ldc-floating-cart__icon svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: currentColor;
}

.ldc-floating-cart__label {
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

.ldc-floating-cart__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(49, 11, 3, 0.28);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 720px) {
    .ldc-floating-cart {
        right: 16px;
        bottom: 16px;
        min-height: 54px;
        padding: 11px 14px;
        gap: 10px;
    }

    .ldc-floating-cart__label {
        font-size: 14px;
    }
}
