.skart-cart-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 12px;
        border: 1px solid #ececec;
        border-radius: 999px;
        color: #222;
        text-decoration: none;
        background: #fff;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    }

    .skart-cart-icon-wrap {
        position: relative;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f8f8f8;
        font-size: 17px;
    }

    .skart-cart-text {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
    }

    .skart-cart-text small {
        color: #777;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .skart-cart-text strong {
        color: #161616;
        font-size: 13px;
        font-weight: 800;
    }

    .skart-cart-dropdown {
        display: none;
        position: absolute;
        right: 0;
        top: 100%;
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        width: 320px;
        z-index: 999;
        margin-top: 5px;
    }

    .skart-cart-dropdown.active {
        display: block;
    }

    .skart-cart-item {
        display: flex;
        padding: 12px;
        border-bottom: 1px solid #f0f0f0;
        gap: 12px;
    }

    .skart-cart-item img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 4px;
    }

    .skart-cart-item-info {
        flex: 1;
        font-size: 12px;
    }

    .skart-cart-item-info h6 {
        margin: 0;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .skart-cart-empty {
        padding: 30px 20px;
        text-align: center;
        color: #666;
    }

    .skart-cart-footer {
        padding: 15px;
        border-top: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    @media (max-width: 768px) {
        .skart-cart-link {
            padding: 6px;
            border: none;
            box-shadow: none;
        }

        .skart-cart-text {
            display: none;
        }
    }
